.elementor-22 .elementor-element.elementor-element-170e7e2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22 .elementor-element.elementor-element-74147cd{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22 .elementor-element.elementor-element-68bc0b3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22 .elementor-element.elementor-element-48e6945{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22 .elementor-element.elementor-element-1e36ed9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-22 .elementor-element.elementor-element-000a519{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-c8a3d41 */@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');



.st-hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: 'Protest Riot', sans-serif;
  color: #fff;
  padding: 70px 20px;
}

/* Background layers */
.st-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #221A10; /* main section bg */
  z-index: 0;
}

.st-hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: #291F13; /* bottom-right color block */
  z-index: 0;
}

.st-hero-container {
  position: relative;
  z-index: 1; /* content above background layers */
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* Title */
.st-hero-heading {
  font-family: 'Caveat', cursive !important;
  font-weight: 700;
  font-size: 64px;       /* adjust size */
  text-transform: none;
  line-height: 1.1;
  margin: 0 0 30px 0;
  color: #fff;
  text-align: center;    /* center align */
}


/* Line + Paragraph */
.st-hero-line-row {
  position: relative;
  width: 95%;               
  margin-left: calc(-50vw + 50%); 
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 0;
}

.st-hero-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

.st-hero-intro {
  font-size: 1.1rem;
  margin: 0;
  padding-left: 20px;
  white-space: nowrap;
  color: #fff;
  max-width: 1200px;     /* keeps it aligned with title */
  margin-right: auto;    /* stays with the container flow */
}

/* Button */
.st-hero-btn-wrap {
  margin: 0 0 40px 0;
  text-align: center;   /* center the button */
}

.st-hero-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  background: transparent;
  transition: all 0.3s ease;
}

.st-hero-btn:hover {
  background: #f0b64d;
  color: #221A10;
  border-color: #f0b64d;
}

/* Blocks */
.st-hero-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fill, 280px); /* prottek column fixed 300px */
  gap: 0;      /* kono gap thakbena */
  margin: 0;
  padding: 0;
  justify-content: center; /* center align hobe */
}

.st-hero-block {
  width: 280px;
  height: 300px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none; /* background jate gap visible na hoy */
}

.st-hero-block img {
  width: 300px;
  height: 100%;
  object-fit: cover; /* pura image show, crop hobe na */
  display: flex-start;
}
.st-hero-block:last-child {
  grid-column: span 120px; /* last block duita column niye boro hobe */
}
.st-hero-text-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  padding-left: 20px;
}

.st-hero-text-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #fff;
  content: justify;
}

/* Fade Animation */
.st-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.st-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .st-hero-heading {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .st-hero-heading {
    font-size: 48px;
  }
  
  .st-hero-block img {
  width: 100%;
  height: 100%;
}

  .st-hero-line-row {
    flex-direction: column;
    gap: 10px;
    
  }

  .st-hero-intro {
    white-space: normal;
    text-align: center;
    padding-left: 20px;
  }

  .st-hero-blocks {
    flex-direction: column;
    align-items: flex-start;
  }

  .st-hero-block {
    max-width: 100%;
  }

  .st-hero-section::after {
    width: 100%;   /* full width on small screens */
    height: 30%;   /* less tall for balance */
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-a13cba2 *//* ==========================
   Products We Use Section
   ========================== */

/* পুরো সেকশন */
.products-section {
  background-color: #221A10;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  min-height: 100vh;
  width: 100%; /* 👈 পুরো সেকশনের প্রস্থ 100% */
}

/* ভেতরের কনটেইনার */
.products-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  gap: 20px;
  align-items: center;
  position: relative;
}

/* ইমেজ ব্লক */
.products-image-section {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;  /* ইমেজ vertical সেন্টার */
  overflow: hidden;
  height: 100%;
}

/* ইমেজের পেছনের কালার ব্লক */
.products-image-section::before {
  content: "";
  position: absolute;
  bottom: 0;   /* নিচ থেকে শুরু */
  left: 0;     /* বাঁ দিক থেকে শুরু */
  width: 45%;  /* বাঁ দিকের 25% প্রস্থ */
  height: 70%; /* শুধু নিচের দিক কভার করবে */
  background-color: #2B2219;
  z-index: 1;
}

/* ইমেজ */
.products-image-section img {
  width: 80%;
  height: 75%;        /* 👈 সেকশনের 65% উচ্চতা */
  max-height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  margin:0;
  padding: 0;
}

/* টেক্সট কার্ড */
.products-text-section {
  flex: 1;
  background-color: #2B2219;
  color: #fff;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

/* টেক্সট এরিয়া */
.products-text-content {
  max-width: 600px;
}

/* টাইটেল */
.products-text-content h1 {
  font-size: 42px;
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.2;
}

/* লিস্ট */
.products-text-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0 0 20px;
  font-size: 16px;
}

/* প্যারাগ্রাফ */
.products-text-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
}

/* ==========================
   Responsive Design
   ========================== */

/* ট্যাবলেট */
@media (max-width: 991px) {
  /* কনটেইনার */
  .products-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  /* টেক্সট কার্ড */
  .products-text-section {
    padding: 30px 20px;
    text-align: center;
  }

  /* টাইটেল */
  .products-text-content h1 {
    font-size: 34px;
  }

  /* ইমেজ ব্লকের পেছনের কালার */
  .products-image-section::before {
    width: 40%;
    height: 40%;
    margin:0;
    padding:0;
  }

  /* ইমেজ */
  .products-image-section img {
    height: 55%;   /* ট্যাবলেটে একটু ছোট */
    max-height: 55%;
  }
}

/* মোবাইল */
@media (max-width: 575px) {
  /* টাইটেল */
  .products-text-content h1 {
    font-size: 28px;
  }

  /* লিস্ট */
  .products-text-content ul {
    font-size: 14px;
    text-align: left;
  }

  /* প্যারাগ্রাফ */
  .products-text-content p {
    font-size: 14px;
  }

  /* ইমেজ ব্লকের পেছনের কালার */
  .products-image-section::before {
    width: 50%;
    height: 40%;
  }

  /* ইমেজ */
  .products-image-section img {
    width:90%;
    height: auto;   /* মোবাইলে আরও ছোট */
    max-height: 80%;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-f9e51c2 *//* Spa Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.sg-spa-section {
  font-family: 'Poppins', sans-serif;
  background: url('https://siamthaispabd.com/wp-content/uploads/2025/09/image-27.png?spa-bg') no-repeat center center / cover;
  color: #fff;
  width: 100%;
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}

/* Add a dark overlay so text stays readable */
.sg-spa-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 31, 19, 0.85); /* deep semi-transparent overlay */
  z-index: 1;
}

.sg-spa-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* keeps content above overlay */
}


.sg-spa-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Headings */
.sg-spa-heading {
  
  font-weight: 600;
  margin-bottom: 10px;
  text-align: right;
  padding: 0 50px;
}

.sg-spa-subheading {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: right;
  padding: 0 50px;
}

/* Service Cards */
.sg-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.sg-glass-card {
  background: rgba(34, 26, 16, 0.35); /* base: #221A10 with transparency */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(6px) saturate(180%); 
  -webkit-backdrop-filter: blur(6px) saturate(180%);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
  overflow: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease,
              box-shadow 0.35s ease, border-color 0.35s ease;
  transform: translateY(40px);
  opacity: 0;
  position: relative;
}

/* Shine overlay for liquid feel */
.sg-glass-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.18),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.4;
}


/* Scroll-in visible state */
.sg-glass-card.sg-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Hover Responsive Effect */
.sg-glass-card:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(240, 182, 77, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.35);
  border-color: rgba(240, 182, 77, 0.5);
}


/* Scroll-in visible state */
.sg-glass-card.sg-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Hover Responsive Effect */
.sg-glass-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5),
              0 0 16px rgba(240, 182, 77, 0.35);
  border-color: rgba(240, 182, 77, 0.45);
}

/* Staggered delays for service cards */
.sg-services .sg-service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.sg-services .sg-service-card:nth-child(2) {
  transition-delay: 0.3s;
}
.sg-services .sg-service-card:nth-child(3) {
  transition-delay: 0.5s;
}

.sg-service-card img {
  width: 100%;
  display: block;
}

.sg-service-content {
  padding: 20px;
}

.sg-service-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.sg-service-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.sg-service-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.sg-service-content ul li {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

/* Center CTA */
.sg-center-cta {
  text-align: center;
  margin-bottom: 60px;
}

.sg-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  background: rgba(240, 182, 77, 0.12);
  border: 1px solid rgba(240, 182, 77, 0.4);
  color: #f0b64d;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sg-btn:hover {
  background-color: #f0b64d;
  color: #291F13; /* contrast */
  box-shadow: 0 6px 18px rgba(240, 182, 77, 0.5);
}

/* Info Section */
.sg-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Stagger delays for info boxes */
.sg-info-section .sg-info-box:nth-child(1) {
  transition-delay: 0.2s;
}
.sg-info-section .sg-info-box:nth-child(2) {
  transition-delay: 0.4s;
}
.sg-info-section .sg-info-box:nth-child(3) {
  transition-delay: 0.6s;
}

.sg-info-box {
  padding: 20px;
  text-align: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: translateY(40px);
  opacity: 0;
}

.sg-info-box.sg-visible {
  transform: translateY(0);
  opacity: 1;
}

.sg-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  fill: #f0b64d;
}

.sg-info-box h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.sg-info-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .sg-spa-heading {
    font-size: 2rem;
    text-align: center;
    padding: 0 20px;
  }

  .sg-spa-subheading {
    font-size: 1rem;
    text-align: center;
    padding: 0 20px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-bb693b5 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.our-space-section {
  font-family: 'Poppins', sans-serif;
  background-color: #2a2118;
  color: #fff;
  padding: 40px 20px;
  min-height: 600px;
  position: relative;
}

.our-space-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative; /* allow overlay positioning */
}

/* Title */
.our-space-title {
  font-weight: 600;
  margin-bottom: 20px;
  text-align: right;
  padding: 0 50px;
}

/* Images wrapper */
.our-space-images {
  display: flex;
  height: 400px;
  width: 70%;          /* adjust width as needed */
  margin-left: auto;   /* push to right side */
  overflow: hidden;
  position: relative;  /* for overlay alignment */
  gap: 10px;           /* small gap between images */
}

.our-space-img {
  width: calc(100% / 3);   /* three equal images */
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 5px;
}

/* Paragraph overlay */
.our-space-text {
  position: absolute;
  bottom: 20px;         /* vertical position */
  left: 0;              /* start from left */
  width: 70%;           /* cover images partially */
  background: rgba(42, 33, 24, 0.7); /* semi-transparent for readability */
  padding: 20px;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  z-index: 2;
  border-radius: 8px;
}

/* Responsive for tablets and mobiles */
@media (max-width: 991px) {

  .our-space-section {
    min-height: auto;
    padding: 30px 15px;
  }

  .our-space-title {
    text-align: center;
    font-size: 36px;
    padding: 0 20px;
  }

  .our-space-images {
    flex-direction: column;
    width: 100%;       /* full width for mobile */
    height: auto;
    margin-left: 0;
  }

  .our-space-img {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }

  .our-space-text {
    position: static;   /* no overlay */
    width: 100%;
    margin-top: 15px;
    background: none;
    padding: 0;
    text-align: center;
  }
}

/* Optional: Small devices (phones) */
@media (max-width: 576px) {
  .our-space-title {
    font-size: 28px;
  }

  .our-space-img {
    height: 150px;
  }

  .our-space-text {
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-bca8cae *//* About Spa Section */
.spa-about-section {
  font-family: 'Poppins', sans-serif;
  background-color: #221A10;
  color: #fff;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  max-height: auto;
  min-height: 600px;
}

/* Decorative BG Block (Top Left) */
.spa-about-bg-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 55%;
  background-color: #2b2219; /* The accent block */
  z-index: 1;
}

/* Main Content */
.spa-about-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;   /* 🔥 vertically center content */
  min-height: 100%;      /* take full section height */
}

.spa-about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spa-about-heading {
  font-weight: 600;
  margin: 0 0 10px 50px;
  line-height: 1.2;
  text-align: left;   /* always center heading */
}


.spa-about-subtitle {
  font-size: 1rem;
  margin: 0 0 0 50px;
  opacity: 0.9;
}

/* Make Divider Full Width */
.spa-about-divider {
  position: relative;
  width: 70vw;
  margin-left: calc(-50vw + 50%);
  height: 2px;
  background: #fff;
  margin-top: 50px;
  margin-bottom: 20px;
  opacity: 0.6;
}


.spa-about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spa-about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;        /* ❌ no gap */
  margin: 0;
  padding: 0;
}

.spa-about-img {
  margin: 0;
  padding: 0;
}
.spa-about-img img {
  width: 100%;   /* full grid column */
  height: 150px;  /* full grid row */
  display: block;
  object-fit: cover;
  border-radius: 0; /* ❌ no border-radius */
}

.spa-about-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  padding-top: 10px;
}

@media (max-width: 991px) {
  .spa-about-section {
    padding-top: 20px;        /* reduce top space to remove white gap */
  }


.spa-about-divider {
    width: 50%;          /* or any suitable width */
    margin-left: auto;   /* center horizontally */
    margin-right: auto;
  }



  .spa-about-container {
    grid-template-columns: 1fr; /* single column layout */
    text-align: center;         /* center all content */
    gap: 20px;
    min-height: auto;           /* allow content to fit naturally */
    align-items: flex-start;    /* stack content from top */
  }

  .spa-about-text {
    justify-content: flex-start; /* align text to top */
    padding: 0 20px;             /* side padding */
  }

  .spa-about-heading {
    margin: 0 0 10px 0;          /* remove left margin */
    font-size: 2.2rem;
    text-align: center;
  }

  .spa-about-subtitle {
    margin: 0 0 10px 0;           /* spacing below subtitle */
    text-align: center;
  }

  .spa-about-description {
    display: block;               /* ensure description is visible */
    text-align: center;           /* center description */
    font-size: 1rem;
    margin-bottom: 20px;          /* spacing before images */
  }

  .spa-about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .spa-about-images {
    grid-template-columns: 1fr 1fr; /* 2 columns for tablets */
    gap: 10px;
  }

  .spa-about-img img {
    width: 100%;
    height: auto;                 /* scale images naturally */
  }

  .spa-about-bg-block {
    height: 35%;                   /* reduce top block height */
  }
}

@media (max-width: 575px) {
  .spa-about-images {
    grid-template-columns: 1fr;     /* 1 column on small phones */
  }
.spa-about-divider {
    display: none;
  }
  .spa-about-heading {
    font-size: 2rem;
  }

  .spa-about-description {
    font-size: 0.95rem;
  }

  .spa-about-img img {
    height: auto;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-d2aeefe *//* ==========================
   Testimonial Section
   ========================== */
.testimonial-section {
  font-family: 'Poppins', sans-serif;
  background: #1b130d;
  color: #fff;
  padding: 60px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Title */
.testimonial-title {
  position: absolute;
  bottom: 300px; /* adjust distance from bottom */
  left: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  z-index: 2;
}

/* Layout */
.testimonial-layout {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 30px;
  position: relative;
}

.testimonial-image {
  flex: 1;
  max-width: 450px;
  order: 2; /* image always right */
  position: relative;
  height: 100%; /* increased from 80% to 100% */
}
.testimonial-image img {
  width: 100%;
  height: 500px; /* fills 100% height now */
  border-radius: 16px;
  object-fit: cover;
}


/* Messages Left - overlapping image */
.testimonial-messages {
  position: absolute; /* absolute for bottom-left placement */
  bottom: 20px;
  left: 20px;
  width: 70%; /* adjust as needed */
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Individual Message (glassmorphism) */
.testimonial-message {
  display: none;
  padding: 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  text-align: left;
  animation: fadeIn 0.6s ease-in-out;
}
.testimonial-message.active {
  display: block;
}

/* Text Styles */
.testimonial-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.testimonial-stars {
  font-size: 1.5rem;
  color: #f9b33a;
  margin-bottom: 8px;
}

/* Progress Bar */
.testimonial-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 12px;
}
.testimonial-progress div {
  width: 0%;
  height: 100%;
  background: #f9b33a;
  border-radius: 3px;
}

/* Fade Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media(max-width: 992px) {
  .testimonial-title {
    position: static;       /* remove absolute positioning */
    order: -1;              /* move title above messages */
    width: 100%;
    text-align: center;
    margin-bottom: 20px;    /* gap between title and messages */
  }

  .testimonial-messages {
    position: static;       /* keep messages normal */
    width: 100%;
    margin-right: 0;
    margin-top: 0;          /* remove extra spacing */
    text-align: center;
  }

  .testimonial-layout {
    flex-direction: column; /* stack title, messages, image */
    align-items: center;
  }

  .testimonial-image {
    max-width: 100%;
    height: auto;
    order: 2;               /* keep image below messages */
  }
}/* End custom CSS */