/* ============================================================
   RAJAN BAHEL — COMPLETE SECTION STYLESHEET
   100% MATCH TO REFERENCE IMAGE (LIGHT SKY BLUE HERO + FLOATING NAVBAR + CARDS)
   ============================================================ */

/* Global Reset & Base Layout */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }

.container-custom {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 6rem;
}
@media (max-width: 1024px) { .container-custom { padding: 0 3rem; } }
@media (max-width: 640px)  { .container-custom { padding: 0 2rem; } }

.section-padding { padding: 10rem 0; }
@media (max-width: 768px) { .section-padding { padding: 6rem 0; } }

/* ---- Shared Typography ---- */
.heading-lg       { font-family: var(--font-heading); font-size: 4.2rem; font-weight: 700; line-height: 1.2; color: #000000; margin: 0 0 1.6rem; }
.heading-lg-dark  { font-family: var(--font-heading); font-size: 3.8rem; font-weight: 700; line-height: 1.2; color: #000000; margin: 0 0 1.6rem; }
.heading-about    { font-family: Georgia,'Times New Roman',serif; font-size: 4.4rem; font-weight: 400; line-height: 1.25; color: #000000; margin: 0 0 2rem; }
.highlight-blue        { color: var(--text-heading-accent); font-style: italic; }
.highlight-blue-italic { color: var(--text-heading-accent); font-style: italic; }
.text-light-body  { font-size: 1.5rem; color: var(--text-body); line-height: 1.65; }
.text-dark-muted  { font-size: 1.5rem; color: var(--text-body); line-height: 1.65; }

/* ============================================================
   FLOATING NAVBAR (WHITE PILL CONTAINER FLOATING OVER HERO)
   ============================================================ */
.site-navbar-floating {
  position: fixed;
  top: 1.6rem;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-navbar-floating .container-custom {
  max-width: 144rem;
}

.navbar-floating-card {
  background: #FFFFFF;
  border-radius: 999.9rem;
  padding: 0.6rem 0.8rem 0.6rem 1.8rem;
  box-shadow: 0 1rem 3rem rgba(11, 30, 51, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

.site-navbar__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-navbar__logo-img {
  height: 4rem;
  width: auto;
  max-width: 18rem;
  object-fit: contain;
  display: block;
}

.site-footer__logo-img {
  height: 4.5rem;
  width: auto;
  max-width: 20rem;
  object-fit: contain;
  display: block;
}

.site-navbar__logo-badge {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background: #0B1E33;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-navbar__brand-text {
  display: flex;
  flex-direction: column;
}

.site-navbar__brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-heading);
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}

.site-navbar__brand-sub {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

.site-navbar__nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

.site-navbar__link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all 0.25s ease;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

.site-navbar__link:hover {
  color: var(--btn-primary-bg);
}

.site-navbar__link.active {
  color: var(--btn-primary-bg);
  font-weight: 700;
}

.site-navbar__link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 0.25rem;
  background-color: var(--btn-primary-bg);
  border-radius: 2px;
}

.site-navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-navbar-dark-pill {
  background-color: var(--btn-primary-bg);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.9rem 1.8rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.25s ease;
  box-shadow: 0 0.4rem 1.4rem rgba(46, 139, 181, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-navbar-dark-pill:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 1.8rem rgba(46, 139, 181, 0.35);
}

.site-navbar__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-heading);
  cursor: pointer;
  padding: 0.4rem;
}

.mobile-nav-menu {
  display: none;
  position: absolute;
  top: 7rem;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
  padding: 2rem;
  flex-direction: column;
  gap: 1.4rem;
}

.mobile-nav-menu.open {
  display: flex;
}

@media (max-width: 1024px) {
  .site-navbar__nav-links { display: none; }
  .site-navbar__toggle { display: block; }
}

/* ============================================================
   HERO SECTION (EXACT REFERENCE 100% MATCH WITH ANIMATIONS)
   ============================================================ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(2.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoomIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(2rem);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.8rem);
  }
}

@keyframes heroPulseRing {
  0%, 100% {
    transform: translate(-50%, -55%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -55%) scale(1.05);
    opacity: 1;
  }
}

.hero-ref {
  position: relative;
  background: var(--bg-hero);
  background: var(--bg-hero-gradient);
  padding-top: 14.5rem;
  padding-bottom: 2rem;
  z-index: 5;
}

.hero-ref__grid-3col {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.65fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* White Pill Eyebrow Tag */
.hero-ref__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 999.9rem;
  padding: 0.7rem 1.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--btn-primary-bg);
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  box-shadow: 0 0.4rem 1.2rem rgba(31, 95, 122, 0.05);
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-badge-star {
  color: var(--btn-primary-bg);
  flex-shrink: 0;
}

/* Main Headline & Vibrant Blue Highlight */
.hero-ref__title {
  font-family: var(--font-heading);
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.16;
  color: #0F2942;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.highlight-sky-blue {
  color: #0082C8;
  font-weight: 700;
  font-style: normal;
}

.hero-ref__accent-bar {
  width: 6.5rem;
  height: 0.35rem;
  background-color: #0082C8;
  border-radius: 2px;
  margin-top: 1.8rem;
  margin-bottom: 2.8rem;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.highlight-sky-italic {
  color: var(--btn-primary-bg);
  font-style: italic;
  font-weight: 600;
}

.highlight-underline {
  position: relative;
  display: inline-block;
  border-bottom: 0.35rem solid var(--btn-primary-bg);
  padding-bottom: 2px;
}

.hero-ref__sub {
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.65;
  color: #4A607A;
  max-width: 50rem;
  margin-bottom: 3.6rem;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-ref__actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* Primary Button (Matching Reference Image) */
.btn-ref-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background-color: #0082C8;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.45rem;
  padding: 1.3rem 2.6rem;
  border-radius: 0.9rem;
  transition: all 0.25s ease;
  box-shadow: 0 0.4rem 1.4rem rgba(0, 130, 200, 0.2);
  border: 1.5px solid #0082C8;
  cursor: pointer;
}

.btn-ref-primary svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ref-primary:hover {
  background-color: #0070AE;
  border-color: #0070AE;
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 1.8rem rgba(0, 130, 200, 0.3);
}

.btn-ref-primary:hover svg {
  transform: translateX(0.4rem);
}

/* Outlined Secondary Button (Matching Reference Image) */
.btn-ref-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background-color: #FFFFFF;
  color: #0082C8;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.45rem;
  padding: 1.3rem 2.6rem;
  border-radius: 0.9rem;
  border: 1.5px solid #0082C8;
  transition: all 0.25s ease;
  box-shadow: 0 2px 0.8rem rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.btn-ref-secondary svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ref-secondary:hover {
  background-color: #F4F9FD;
  border-color: #0070AE;
  color: #0070AE;
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 130, 200, 0.12);
}

.btn-ref-secondary:hover svg {
  transform: translateX(0.4rem);
}

/* White Pill Secondary Button with Right Play Badge */
.btn-ref-secondary-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background-color: #FFFFFF;
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
  box-shadow: 0 0.4rem 1.4rem rgba(31, 95, 122, 0.05);
  cursor: pointer;
}

.btn-ref-secondary-white:hover {
  border-color: var(--btn-primary-bg);
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 1.8rem rgba(46, 139, 181, 0.15);
}

.btn-ref-secondary-white__play {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background-color: var(--btn-primary-bg);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-ref-secondary-white:hover .btn-ref-secondary-white__play {
  transform: scale(1.1);
  background-color: var(--color-primary-hover);
}

/* Center Portrait & Circle Backdrop Ring */
.hero-ref__center {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 44rem;
}

.hero-ref__bg-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  border: 2px solid rgba(56, 152, 236, 0.25);
  background: radial-gradient(circle, rgba(56, 152, 236, 0.15) 0%, rgba(235, 244, 251, 0) 70%);
  z-index: 1;
  animation: heroPulseRing 6s ease-in-out infinite;
}

.hero-ref__dots-center {
  position: absolute;
  top: 8rem;
  right: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  opacity: 0.35;
  z-index: 1;
}

.hero-ref__dots-center span {
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--btn-primary-bg);
  border-radius: 50%;
  display: block;
}

.hero-ref__portrait {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 42rem;
  max-height: 48rem;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 2rem 4rem rgba(31, 95, 122, 0.15));
  animation: heroZoomIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Right Column Floating White Quote Card */
.hero-ref__right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-ref__quote-card-white {
  background: #FFFFFF;
  border-radius: 2.4rem;
  padding: 2.4rem 2.2rem 2rem;
  width: 100%;
  max-width: 23rem;
  box-shadow: 0 1.6rem 4rem rgba(31, 95, 122, 0.08);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both, heroFloat 5s ease-in-out 1.4s infinite;
}

.hero-ref__quote-mark-sky {
  font-size: 4.2rem;
  font-family: Georgia, serif;
  color: var(--btn-primary-bg);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.hero-ref__quote-text-dark {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.55;
  margin: 0 0 2rem 0;
}

.hero-ref__quote-divider {
  width: 4rem;
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 1.6rem;
}

.hero-ref__quote-author-sky {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--btn-primary-bg);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-ref__quote-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-ref__quote-dots span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #CBD5E1;
}

.hero-ref__quote-dots span.active {
  background-color: var(--btn-primary-bg);
}

@media (max-width: 1100px) {
  .hero-ref__grid-3col { grid-template-columns: 1fr 1fr; }
  .hero-ref__right { grid-column: span 2; justify-content: center; margin-top: 2rem; }
  .hero-ref__quote-card-white { max-width: 24rem; }
}

@media (max-width: 768px) {
  .hero-ref__grid-3col { grid-template-columns: 1fr; gap: 4rem; }
  .hero-ref__right { grid-column: span 1; }
  .hero-ref__title { font-size: 3.8rem; }
}

/* ============================================================
   STEP 4: STATS BAR (FLOATING OVERLAP CARD)
   ============================================================ */
.stats-ref-wrapper {
  position: relative;
  z-index: 20;
  transform: translateY(50%);
  margin-bottom: 0;
}

.stats-ref-card {
  background: #FFFFFF;
  border-radius: 2.4rem;
  padding: 2.6rem 3.6rem;
  box-shadow: 0 2rem 5rem rgba(11, 30, 51, 0.08);
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.stat-ref-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.stat-ref-item__icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: rgba(46, 139, 181, 0.12);
  color: var(--btn-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-ref-item__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.6rem;
  color: #0B1E33;
  line-height: 1.1;
}

.stat-ref-item__label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #5A6B7A;
  line-height: 1.35;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .stats-ref-card { flex-wrap: wrap; gap: 2.4rem; }
  .stat-ref-item { min-width: 45%; }
}

@media (max-width: 640px) {
  .stats-ref-card { min-width: 100%; }
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-section { background-color: var(--bg-section-light); padding: 8.5rem 0; }
.programs-header-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem;
  align-items: flex-end; margin-bottom: 4.8rem;
}
.programs-header-right { max-width: 48rem; }
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.4rem; margin-bottom: 4.4rem; }
.program-card-ref {
  position: relative; background: var(--bg-white); border-radius: 1.6rem;
  border: 1px solid var(--border-color); box-shadow: var(--shadow-card);
  transition: all 0.3s ease; display: flex; flex-direction: column;
}
.program-card-ref:hover { transform: translateY(-0.6rem); box-shadow: var(--shadow-card-lg); }
.program-card-ref__image-wrap { position: relative; width: 100%; height: 23rem; border-radius: 1.6rem 1.6rem 0 0; overflow: hidden; }
.program-card-ref__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.4s ease; }
.program-card-ref__img--sales { object-position: left 15%; }
.program-card-ref__img--coaching { object-position: center 15%; }
.program-card-ref__img--launches { object-position: center 10%; }
.program-card-ref:hover .program-card-ref__img { transform: scale(1.05); }
.program-card-ref__badge {
  position: absolute; top: 20.6rem; left: 2.4rem; z-index: 10;
  width: 4.8rem; height: 4.8rem; border-radius: 50%;
  background-color: var(--btn-primary-bg); color: var(--btn-primary-text);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card); border: 0.3rem solid var(--bg-white);
}
.program-card-ref__content { padding: 3.4rem 2.4rem 2.6rem; display: flex; flex-direction: column; flex: 1; }
.program-card-ref__title { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--text-heading); margin-bottom: 1rem; }
.program-card-ref__desc { font-size: 1.4rem; color: var(--text-body); line-height: 1.6; margin-bottom: 2.2rem; flex: 1; }
.program-card-ref__link { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text-heading); font-weight: 700; font-size: 1.4rem; transition: gap 0.25s ease; }
.program-card-ref__link:hover { gap: 1rem; color: var(--btn-primary-bg-hover); }
.programs-footer-btn { text-align: center; }
@media (max-width: 1024px) { .programs-header-grid { grid-template-columns: 1fr; gap: 2rem; } .programs-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .programs-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT SECTION (100% MATCH TO NEW REFERENCE IMAGE)
   ============================================================ */
.about-section {
  background: linear-gradient(135deg, #fdfbf7 0%, #faf4ec 50%, #f7efe4 100%);
  padding: 8.5rem 0;
  position: relative;
  overflow: hidden;
}

.about-bg-dots-left {
  position: absolute;
  top: 5rem;
  left: 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.about-bg-dots-left span {
  width: 0.45rem;
  height: 0.45rem;
  background-color: #d4b387;
  border-radius: 50%;
  display: block;
}

.about-layout-2col-ref {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 6rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.about-header-left-ref {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading-about-serif-ref {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1.08;
  color: #211d19;
  margin: 1.4rem 0 2rem;
  letter-spacing: -0.02em;
}

.heading-about-serif-ref .highlight-gold-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #b38347;
}

.text-about-desc-ref {
  font-size: 1.55rem;
  color: #5c554e;
  line-height: 1.65;
  margin: 0 0 3.2rem;
  max-width: 50rem;
}

/* 3 Metric White Cards Row */
.about-3metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: 100%;
  margin-bottom: 2rem;
}

.about-metric-box {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.2rem 1.4rem 1rem;
  border: 1px solid #f2e8dc;
  box-shadow: 0 0.8rem 2.8rem rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.about-metric-box:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1.2rem 3.5rem rgba(179, 131, 71, 0.12);
  border-color: #e8d7c1;
}

.metric-icon-gold {
  margin-bottom: 0.5rem;
  color: #aa783c;
}

.metric-val-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #211d19;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.metric-val-label {
  font-size: 1.15rem;
  color: #666057;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.metric-gold-dash {
  width: 2.4rem;
  height: 0.15rem;
  background-color: #aa783c;
  margin-top: auto;
  border-radius: 2px;
}

/* Horizontal Timeline Strip */
.about-timeline-strip-ref {
  position: relative;
  width: 100%;
  padding-top: 1.8rem;
  margin-bottom: 3.2rem;
}

.timeline-line-gold {
  position: absolute;
  top: 2.4rem;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e8d7c1;
  z-index: 1;
}

.timeline-milestones-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}

.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 1rem;
  border-right: 1px solid rgba(232, 215, 193, 0.5);
  padding-left: 0.5rem;
}

.milestone-item:last-child {
  border-right: none;
}

.milestone-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #aa783c;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px #aa783c;
  margin-bottom: 1.2rem;
}

.milestone-year {
  font-size: 1.45rem;
  font-weight: 700;
  color: #aa783c;
  margin-bottom: 0.4rem;
}

.milestone-desc {
  font-size: 1.15rem;
  color: #666057;
  line-height: 1.35;
  font-weight: 500;
}

/* Bottom Quote Box */
.about-quote-box-ref {
  padding: 3rem 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.quote-mark-gold {
  display: none;
}

.quote-text-ref {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  color: #1e3a5f;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
}

/* Right Media Column */
/* Right Media Column */
.about-media-right-ref {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  padding-top: 0.5rem;
  width: 100%;
}

.about-portrait-stage {
  position: relative;
  width: 100%;
  max-width: 44rem;
  height: 56rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Thin Gold Outer Wireframe Frame */
.about-arch-outer-gold {
  position: absolute;
  inset: -1.4rem 1.4rem 1.4rem -1.4rem;
  border: 1px solid rgba(170, 120, 60, 0.4);
  border-radius: 16rem 16rem 2.4rem 2.4rem;
  pointer-events: none;
}

/* Dark Dome Frame */
.about-arch-dome-dark {
  width: 100%;
  height: 100%;
  border-radius: 16rem 16rem 2.4rem 2.4rem;
  background: linear-gradient(135deg, #2b2724 0%, #161311 100%);
  overflow: hidden;
  position: relative;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 179, 135, 0.2);
}

.about-speaker-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Top-Right Dot Matrix Overlay */
.about-topright-dots {
  position: absolute;
  top: 3rem;
  right: -2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  opacity: 0.4;
  pointer-events: none;
  z-index: 4;
}

.about-topright-dots span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d5b26a;
}

/* Floating Glass Signature Card */
.about-sig-card-glass {
  position: absolute;
  bottom: 2.5rem;
  right: -2.5rem;
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 2.2rem 2.8rem;
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.15);
  border: 1px solid #f2e8dc;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 22rem;
}

.sig-cursive-script {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 3.4rem;
  color: #d5b26a;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.sig-name-bold {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #211d19;
  margin-bottom: 0.2rem;
}

.sig-role-muted {
  font-size: 1.2rem;
  color: #666057;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sig-gold-accent-line {
  width: 2.8rem;
  height: 0.2rem;
  background-color: #aa783c;
  border-radius: 2px;
}

/* Secondary Workshop Photo Card (Fills Right Column Empty Space - Moved Down, Luxury Asymmetric Shape, Image Zoom) */
.about-tilted-card-wrapper {
  width: 100%;
  max-width: 44rem;
  margin-top: 8rem; /* Moved down to align with timeline & quote box */
  position: relative;
  z-index: 4;
}

/* Background Wireframe Frame Line behind Card */
.about-card-bg-wireframe {
  position: absolute;
  inset: -1.4rem 1.4rem 1.4rem -1.4rem;
  border: 1px solid rgba(170, 120, 60, 0.4);
  border-radius: 3.8rem 1.2rem 3.8rem 1.2rem;
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.about-tilted-card-wrapper:hover .about-card-bg-wireframe {
  border-color: rgba(170, 120, 60, 0.7);
  transform: translate(-0.2rem, -0.2rem);
}

.about-tilted-card {
  position: relative;
  z-index: 2;
  background: #1a1715;
  border-radius: 3.8rem 1.2rem 3.8rem 1.2rem; /* Luxury asymmetrical curved shape */
  padding: 0; /* Edge to edge image */
  overflow: hidden;
  border: 1px solid rgba(170, 120, 60, 0.35);
  box-shadow: 0 2.2rem 5.5rem rgba(33, 29, 25, 0.16), 0 0.6rem 2rem rgba(170, 120, 60, 0.1);
  /* Fixed shape - no movement */
  transform: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.about-tilted-card:hover {
  transform: none;
  border-color: #aa783c;
  box-shadow: 0 2.8rem 6.5rem rgba(33, 29, 25, 0.22), 0 0.8rem 2.5rem rgba(170, 120, 60, 0.18);
}

.tilted-card-inner {
  position: relative;
  width: 100%;
  height: 27rem;
  border-radius: 3.8rem 1.2rem 3.8rem 1.2rem;
  overflow: hidden;
}

.tilted-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Image zoom-in animation on hover */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-tilted-card:hover .tilted-card-img {
  transform: scale(1.08); /* Zoom image in! */
}

.tilted-card-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.tilted-card-badge {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  right: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.6rem 0.8rem 1.6rem 0.8rem;
  padding: 1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.tilted-badge-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #aa783c;
  box-shadow: 0 0 0 3px rgba(170, 120, 60, 0.2);
  flex-shrink: 0;
}

.tilted-badge-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #211d19;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tilted-card-gold-corner {
  display: none;
}

@media (max-width: 1024px) {
  .about-layout-2col-ref {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
  .about-3metrics-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-portrait-stage {
    max-width: 36rem;
    height: 48rem;
  }
  .about-tilted-card-wrapper {
    max-width: 36rem;
    margin-top: 1rem;
  }
  .about-tilted-card {
    transform: none;
  }
  .about-sig-card-glass {
    right: -1rem;
    bottom: 1.5rem;
  }
}

@media (max-width: 640px) {
  .heading-about-serif-ref {
    font-size: 3.8rem;
  }
  .about-3metrics-row {
    grid-template-columns: 1fr;
  }
  .timeline-milestones-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .about-tilted-card-wrapper {
    max-width: 100%;
  }
  .tilted-card-inner {
    height: 20rem;
  }
  .about-tilted-card {
    transform: none;
  }
}

/* ============================================================
   CAPABILITIES SECTION
   ============================================================ */
/* ============================================================
   CAPABILITIES SECTION (100% MATCH TO REFERENCE IMAGE)
   ============================================================ */
.capability-section { 
  background: linear-gradient(135deg, #fdfbf7 0%, #faf4ec 50%, #f7efe4 100%); 
  padding: 8.5rem 0; 
  position: relative;
  overflow: hidden;
}

.capability-bg-dots {
  position: absolute;
  top: 3.5rem;
  right: 3.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.capability-bg-dots span {
  width: 0.45rem;
  height: 0.45rem;
  background-color: #d4b387;
  border-radius: 50%;
  display: block;
}

.capability-bg-arc {
  position: absolute;
  top: -15rem;
  right: -15rem;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 135, 0.25);
  pointer-events: none;
  z-index: 1;
}

/* Consulting Main Headline & Lead Text */
.heading-consulting-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1.12;
  color: #211d19;
  text-align: center;
  margin: 1.2rem 0 2.2rem;
  letter-spacing: -0.02em;
}

.heading-consulting-main .highlight-gold-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #b38347;
}

.text-consulting-lead {
  text-align: center;
  max-width: 86rem;
  margin: 0 auto 5rem;
  font-size: 1.55rem;
  color: #5c554e;
  line-height: 1.65;
}

.text-consulting-lead p {
  margin-bottom: 1.2rem;
}

.text-consulting-lead .highlight-dark-bold {
  color: #211d19;
  font-weight: 700;
  margin-bottom: 0;
}

/* 4 Cards Grid */
.consulting-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 2;
}

.consulting-card {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 3rem 2.2rem 2.5rem;
  border: 1px solid #f2e8dc;
  border-bottom: 3.5px solid #b38347;
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.consulting-card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #aa783c, #d5b26a);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.consulting-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 2rem 5rem rgba(179, 131, 71, 0.14);
  border-color: #e8d7c1;
  border-bottom-color: #966832;
}

.consulting-card:hover .consulting-card-top-accent {
  opacity: 1;
}

.consulting-icon-circle {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d5b26a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #b38347;
  box-shadow: 0 0.8rem 2rem rgba(179, 131, 71, 0.12);
  transition: transform 0.3s ease;
}

.consulting-card:hover .consulting-icon-circle {
  transform: scale(1.08);
}

.consulting-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #211d19;
  line-height: 1.25;
  margin-bottom: 1.4rem;
  min-height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consulting-card-desc {
  font-size: 1.32rem;
  color: #666057;
  line-height: 1.55;
  margin-bottom: 1.6rem;
  min-height: 6.5rem;
}

.consulting-card-dash {
  width: 3.2rem;
  height: 2px;
  background-color: #d5b26a;
  margin-bottom: 1.8rem;
  border-radius: 2px;
}

.consulting-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
  width: 100%;
  text-align: left;
}

.consulting-bullets-list li {
  font-size: 1.3rem;
  color: #4a443e;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.consulting-bullets-list li .bullet-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #aa783c;
  flex-shrink: 0;
}

.consulting-card-divider {
  width: 100%;
  height: 1px;
  background-color: #f2e8dc;
  margin-top: auto;
  margin-bottom: 1.6rem;
}

.consulting-card-link {
  font-size: 1.35rem;
  font-weight: 700;
  color: #b38347;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.consulting-card-link:hover {
  color: #966832;
  transform: translateX(0.3rem);
}

/* Bottom Banner Grid (Why Work With Rajeev Bahl Card - Full Width) */
.consulting-bottom-banner-grid {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Crisp White Luxury Block for Why Work With Rajeev Bahl (High contrast against section background) */
.consulting-why-dark-card {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 3rem 3.5rem;
  color: #211d19;
  box-shadow: 0 1.4rem 4rem rgba(33, 29, 25, 0.07);
  border: 1px solid #e8d7c1;
  border-top: 4px solid #b38347;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-dark-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}

.why-dark-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, #d5b26a, transparent);
}

.why-dark-title-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #aa783c;
}

.why-dark-4cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-col-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid #f2e8dc;
  padding-right: 1.5rem;
}

.why-col-item:last-child {
  border-right: none;
  padding-right: 0;
}

.why-icon-gold {
  margin-bottom: 1.2rem;
  color: #b38347;
}

.why-item-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #211d19;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.why-item-text {
  font-size: 1.18rem;
  color: #5c554e;
  line-height: 1.45;
  margin: 0;
}

/* Light CTA Card */
.consulting-cta-light-card {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 3rem 2.8rem;
  border: 1px solid #f2e8dc;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-card-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #211d19;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-gold-dash {
  width: 3.2rem;
  height: 2px;
  background-color: #d5b26a;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.cta-card-sub {
  font-size: 1.35rem;
  color: #666057;
  margin-bottom: 2rem;
}

.btn-schedule-gold {
  background: linear-gradient(135deg, #b38347 0%, #966832 100%);
  color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.3rem 2.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0.8rem 2.4rem rgba(179, 131, 71, 0.3);
}

.btn-schedule-gold:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.2rem 3rem rgba(179, 131, 71, 0.45);
  color: #ffffff;
}

.btn-banner-consultation-gold {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, #b38347 0%, #966832 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.45rem;
  padding: 1.4rem 2.8rem;
  border-radius: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.8rem 2.4rem rgba(179, 131, 71, 0.3);
  text-decoration: none;
  white-space: nowrap;
}

.btn-banner-consultation-gold:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.2rem 3rem rgba(179, 131, 71, 0.45);
  color: #ffffff;
}

@media (max-width: 1200px) {
  .consulting-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .consulting-bottom-banner-grid {
    grid-template-columns: 1fr;
  }
  .why-navy-4cols,
  .why-dark-4cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
  }
  .why-col-item {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #f2e8dc;
    padding-bottom: 1.5rem;
  }
  .why-col-item:nth-child(3),
  .why-col-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .consulting-why-dark-card {
    padding: 2.2rem 1.6rem;
    border-radius: 1.4rem;
    box-shadow: 0 0.8rem 2.5rem rgba(33, 29, 25, 0.05);
  }
  .why-dark-header {
    gap: 0.6rem;
    margin-bottom: 1.8rem;
  }
  .why-dark-header .section-eyebrow-redesign {
    font-size: 0.95rem !important;
    letter-spacing: 0.06em !important;
    text-align: center;
  }
  .consulting-grid-4 {
    grid-template-columns: 1fr;
  }
  .why-navy-4cols,
  .why-dark-4cols {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .why-col-item {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px dashed #e8d7c1 !important;
    padding-bottom: 1.4rem !important;
  }
  .why-col-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
  .why-icon-gold {
    margin-bottom: 0.8rem;
  }
  .why-item-heading {
    font-size: 1.35rem !important;
    margin-bottom: 0.4rem;
  }
  .why-item-text {
    font-size: 1.1rem !important;
    line-height: 1.5;
  }
  .heading-consulting-main {
    font-size: 3.8rem;
  }
}

@media (max-width: 480px) {
  .capability-grid-6-ref {
    grid-template-columns: 1fr;
  }
}

.btn-banner-arrow {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

@media (max-width: 1200px) { 
  .capability-grid-6-ref { grid-template-columns: repeat(3, 1fr); } 
}

@media (max-width: 768px) { 
  .capability-header-row { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .capability-grid-6-ref { grid-template-columns: repeat(2, 1fr); } 
  .capability-banner-strip-ref { flex-direction: column; align-items: flex-start; } 
}

@media (max-width: 480px) { 
  .capability-grid-6-ref { grid-template-columns: 1fr; } 
  .heading-capability-ref { font-size: 3.4rem; }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
/* ============================================================
   TESTIMONIALS SECTION (100% MATCH TO REFERENCE IMAGE)
   ============================================================ */
/* ============================================================
   TESTIMONIALS SECTION (100% MATCH TO REFERENCE IMAGE)
   ============================================================ */
.testimonials-section { 
  background: linear-gradient(135deg, #fdfbf7 0%, #faf4ec 50%, #f7efe4 100%); 
  padding: 4.5rem 0 3.5rem !important; 
  position: relative; 
  overflow: hidden;
}

/* Background Ambient Elements */
.testimonials-bg-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.testimonials-bg-dots span {
  width: 0.45rem;
  height: 0.45rem;
  background-color: #d4b387;
  border-radius: 50%;
  display: block;
}

.testimonials-bg-arc-top {
  position: absolute;
  top: -15rem;
  right: -15rem;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 135, 0.25);
  pointer-events: none;
  z-index: 1;
}

.testimonials-bg-arc-bottom {
  position: absolute;
  bottom: -20rem;
  left: -20rem;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 135, 0.25);
  pointer-events: none;
  z-index: 1;
}

.testimonials-top-layout { 
  display: grid; 
  grid-template-columns: 0.85fr 1.15fr; 
  gap: 4rem; 
  align-items: flex-start; 
  margin-bottom: 0; 
  position: relative;
  z-index: 2;
}

.testimonials-left { 
  position: relative; 
}

.heading-testimonials-ref { 
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; 
  font-size: 4.5rem; 
  font-weight: 500; 
  line-height: 1.15; 
  color: #211d19; 
  margin: 0 0 0.8rem; 
  letter-spacing: -0.02em;
}

.heading-testimonials-ref .highlight-gold-italic { 
  font-family: 'Cormorant Garamond', Georgia, serif; 
  font-style: italic; 
  font-weight: 600;
  color: #a8783e; 
}

.text-testimonials-desc { 
  font-size: 1.5rem; 
  color: #5c554e; 
  line-height: 1.55; 
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}

.btn-testimonials-gold {
  display: inline-flex; 
  align-items: center; 
  gap: 1rem;
  background: #aa783c; 
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-weight: 600; 
  font-size: 1.35rem;
  padding: 1.1rem 2.2rem; 
  border-radius: 1rem;
  border: none; 
  transition: all 0.25s ease; 
  cursor: pointer;
  box-shadow: 0 0.8rem 2rem rgba(170, 120, 60, 0.28);
  margin-bottom: 2.2rem;
}

.btn-testimonials-gold:hover { 
  background: #966832; 
  transform: translateY(-2px); 
  box-shadow: 0 1.2rem 2.5rem rgba(170, 120, 60, 0.35);
  color: #FFFFFF;
}

.testimonial-arrows { 
  display: flex; 
  gap: 1.2rem; 
}

.testimonial-arrow-btn {
  width: 4.2rem; 
  height: 4.2rem; 
  border-radius: 50%;
  border: 1px solid #e8d7c1; 
  background: #FFFFFF;
  color: #b38347; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; 
  transition: all 0.25s ease;
  box-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.04);
}

.testimonial-arrow-btn:hover { 
  background-color: #aa783c; 
  border-color: #aa783c; 
  color: #FFFFFF; 
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 2rem rgba(170, 120, 60, 0.25);
}

.testimonials-right {
  position: relative;
  overflow: hidden;
}

.testimonials-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.testimonials-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 1.8rem;
}

.testimonial-card-ref {
  flex: 0 0 calc((100% - 3.6rem) / 3);
  max-width: calc((100% - 3.6rem) / 3);
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #f2e8dc;
  border-radius: 1.2rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 23.5rem;
  transition: all 0.3s ease;
}

.testimonial-card-ref:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.6rem 4rem rgba(179, 131, 71, 0.12);
  border-color: #e8d7c1;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.testimonial-stars-ref { 
  color: #cba160; 
  font-size: 1.4rem; 
  letter-spacing: 3px; 
}

.testimonial-quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-text { 
  font-size: 1.35rem; 
  color: #4a453f; 
  line-height: 1.6; 
  margin-bottom: 1.2rem; 
  font-style: italic; 
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

/* Testimonial Full Detail Modal Overlay */
.testimonial-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 24, 50, 0.75);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-modal-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 3.5rem 3rem;
  max-width: 60rem;
  width: 100%;
  position: relative;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  border: 1px solid #e8d7c1;
  transform: translateY(2rem) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  max-height: 85vh;
  overflow-y: auto;
}

.testimonial-modal-overlay.active .testimonial-modal-card {
  transform: translateY(0) scale(1);
}

.testimonial-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.8rem;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.testimonial-modal-close:hover {
  color: #1e293b;
}

.testimonial-modal-header {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.testimonial-modal-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #1e293b;
}

.testimonial-modal-author-role {
  font-size: 1.35rem;
  color: #AA783C;
  font-weight: 600;
}

.testimonial-modal-dash {
  width: 4rem;
  height: 2px;
  background-color: #e8d7c1;
  margin-bottom: 2rem;
}

.testimonial-modal-quote-text {
  font-size: 1.6rem;
  color: #334155;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-card-dash {
  width: 2.4rem;
  height: 0.15rem;
  background-color: #e8d7c1;
  margin-bottom: 1.8rem;
  border-radius: 2px;
}

.testimonial-author { 
  display: flex; 
  align-items: center; 
  gap: 1.4rem; 
}

.testimonial-avatar-img { 
  width: 4.6rem; 
  height: 4.6rem; 
  border-radius: 50%; 
  object-fit: cover; 
  border: 1px solid #e8d7c1; 
  flex-shrink: 0;
}

.testimonial-author-name { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: 1.45rem; 
  font-weight: 700; 
  color: #231f1a; 
  line-height: 1.2;
}

.testimonial-author-role { 
  font-size: 1.25rem; 
  color: #666057; 
  font-weight: 500;
  margin-top: 0.2rem;
}

.testimonial-dots-ref { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 0.8rem; 
}

.testimonial-dot-ref { 
  width: 0.6rem; 
  height: 0.6rem; 
  border-radius: 50%; 
  background: #e2cdb4; 
  cursor: pointer; 
  transition: all 0.25s ease; 
}

.testimonial-dot-ref.active { 
  width: 2.2rem; 
  border-radius: 99rem; 
  background-color: #b38347; 
}

/* Trusted By Section Divider & Logo Strip */
.trusted-by-section-ref { 
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.trusted-divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.8rem;
}

.trusted-divider-line {
  flex: 1;
  height: 1px;
  background-color: #e8d7c1;
}

.trusted-diamond-badge {
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-by-title-ref { 
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem; 
  font-weight: 700; 
  letter-spacing: 0.12em; 
  color: #b38347; 
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3.2rem; 
}

.trusted-by-logos-ref { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.trusted-logo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 4rem;
  border-right: 1px solid #e8d7c1;
  color: #666057;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.trusted-logo-item:last-child {
  border-right: none;
}

.trusted-logo-item:hover {
  color: #aa783c;
}

.trusted-logo-text-bold {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trusted-logo-text {
  font-size: 1.55rem;
  font-weight: 700;
}

@media (max-width: 1024px) { 
  .testimonials-top-layout { grid-template-columns: 1fr; gap: 4rem; } 
  .testimonials-grid-ref { grid-template-columns: repeat(2, 1fr); } 
  .trusted-logo-item { padding: 1.2rem 2.4rem; border-right: none; }
}

@media (max-width: 640px) { 
  .testimonials-grid-ref { grid-template-columns: 1fr; } 
  .heading-testimonials-ref { font-size: 3.4rem; }
  .trusted-by-logos-ref { gap: 2rem; }
}

/* ============================================================
   Redesign Global Utilities
   ============================================================ */

.section-eyebrow-redesign {
  font-size: 1.55rem;
  font-weight: 700;
  color: #aa783c;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}
.section-eyebrow-redesign.center {
  text-align: center;
}

/* ============================================================
   BLOG / INSIGHTS SECTION
   ============================================================ */
/* ============================================================
   INSIGHTS & RESOURCES SECTION (100% MATCH TO REFERENCE IMAGE)
   ============================================================ */
.blog-section { 
  background: linear-gradient(135deg, #fdfbf7 0%, #faf4ec 50%, #f7efe4 100%); 
  padding: 8.5rem 0; 
  position: relative;
  overflow: hidden;
}

.blog-bg-dots-left {
  position: absolute;
  bottom: 4rem;
  left: 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.blog-bg-dots-left span {
  width: 0.45rem;
  height: 0.45rem;
  background-color: #d4b387;
  border-radius: 50%;
  display: block;
}

.blog-bg-arc-top-right {
  position: absolute;
  top: -15rem;
  right: -15rem;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 135, 0.25);
  pointer-events: none;
  z-index: 1;
}

/* 2-Column Main Layout Grid */
.blog-layout-2col-ref {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 4.8rem;
  align-items: flex-start;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.blog-header-left-new {
  position: relative;
}

.heading-blog-ref-new {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.08;
  color: #211d19;
  margin: 0 0 1.4rem;
  letter-spacing: -0.02em;
}

.heading-blog-ref-new .highlight-gold-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #b38347;
}

.text-blog-desc-new {
  font-size: 1.48rem;
  color: #666057;
  line-height: 1.6;
  margin-top: 1.8rem;
  margin-bottom: 2.8rem;
  max-width: 38rem;
}

.btn-insights-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, #b38347 0%, #966832 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.45rem;
  padding: 1.4rem 2.8rem;
  border-radius: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.8rem 2.4rem rgba(179, 131, 71, 0.3);
  text-decoration: none;
  margin-bottom: 4rem;
}

.btn-insights-gold-pill:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.2rem 3rem rgba(179, 131, 71, 0.45);
  color: #ffffff;
}

/* Left Bottom Stats Glass Card */
.insights-stats-card-new {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2.4rem 2.8rem;
  border: 1px solid #f2e8dc;
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.insight-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-icon-gold {
  margin-bottom: 0.8rem;
  color: #aa783c;
}

.stat-num-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: #aa783c;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label-muted {
  font-size: 1.15rem;
  color: #666057;
  line-height: 1.3;
}

/* Right Content Area: Top Featured Card & 3 Small Cards */
.blog-content-right-new {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/* Top Featured Hero Dark Executive Glass Card */
.featured-insight-card-dark {
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(213, 178, 106, 0.25);
  min-height: 38rem;
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
}

.featured-insight-card-dark:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, 0.35);
  border-color: rgba(213, 178, 106, 0.45);
}

.featured-card-inner {
  position: relative;
  width: 100%;
  padding: 4rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.featured-card-content-left {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(213, 178, 106, 0.12);
  border: 1px solid rgba(213, 178, 106, 0.4);
  border-radius: 99rem;
  padding: 0.6rem 1.6rem;
  color: #d5b26a;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2);
}

.featured-category-gold {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d5b26a;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.featured-title-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.8rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.12;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}

.featured-dash {
  width: 2.8rem;
  height: 0.18rem;
  background-color: #d5b26a;
  margin: 0.8rem 0 1.6rem;
  border-radius: 2px;
}

.featured-desc-text {
  font-size: 1.45rem;
  color: #d8d2c9;
  line-height: 1.6;
  margin: 0 0 2.4rem;
  max-width: 44rem;
}

.featured-meta-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 1.3rem;
  color: #b8b2a8;
  font-weight: 500;
}

.meta-item-dark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.meta-divider-dark {
  color: rgba(255, 255, 255, 0.25);
}

.featured-arrow-circle-btn {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.25);
}

.featured-insight-card-dark:hover .featured-arrow-circle-btn {
  background: #b38347;
  border-color: #b38347;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 1rem 2.5rem rgba(179, 131, 71, 0.4);
}

/* Full-Width 5 Small Cards Grid Across Whole Section Container */
.insights-5cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 4.8rem;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 2;
}

.insight-mini-card {
  background: #ffffff;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid #f2e8dc;
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.insight-mini-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.4rem 3.5rem rgba(179, 131, 71, 0.14);
  border-color: #e8d7c1;
}

.mini-card-img-wrap {
  position: relative;
  height: 20rem;
  width: 100%;
  overflow: hidden;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.4s ease;
  padding: 0.5rem;
}

.insight-mini-card:hover .mini-card-img {
  transform: scale(1.06);
}

.mini-card-badge-gold {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #aa783c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.mini-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mini-card-cat {
  font-size: 1.15rem;
  font-weight: 700;
  color: #b38347;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.mini-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #211d19;
  line-height: 1.25;
  margin: 0 0 1.4rem;
  flex-grow: 1;
}

.mini-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f8f2ea;
  padding-top: 1.2rem;
  margin-top: auto;
}

.mini-meta-left {
  font-size: 1.15rem;
  color: #777067;
}

.mini-card-arrow-btn {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #fdfbf7;
  border: 1px solid #e8d7c1;
  color: #aa783c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mini-card-arrow-btn svg {
  stroke: #aa783c;
  transition: all 0.3s ease;
}

.insight-mini-card:hover .mini-card-arrow-btn,
.mini-card-arrow-btn:hover {
  background: #aa783c !important;
  color: #ffffff !important;
  border-color: #aa783c !important;
}

.insight-mini-card:hover .mini-card-arrow-btn svg,
.mini-card-arrow-btn:hover svg {
  stroke: #ffffff !important;
  transform: translateX(2px);
}

/* ============================================================
   INSIGHTS BOTTOM BANNER (100% EXACT MATCH TO REFERENCE IMAGE)
   ============================================================ */
.insights-bottom-banner-ref {
  background: #ffffff;
  border-radius: 2.8rem;
  border: 1px solid #f2e8dc;
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.04);
  padding: 2.8rem 3.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  margin-top: 5rem;
  position: relative;
  overflow: visible;
  z-index: 2;
}

/* Left Group */
.banner-ref-left {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  max-width: 48rem;
}

/* Glowing Multi-layered Icon Rings Aura */
.banner-aura-icon-wrap {
  position: relative;
  width: 7.2rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aura-ring-outer {
  position: absolute;
  inset: -1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 179, 135, 0.25) 0%, rgba(212, 179, 135, 0.05) 70%, transparent 100%);
  pointer-events: none;
}

.aura-ring-inner {
  position: absolute;
  inset: -0.4rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 135, 0.35);
  background: rgba(250, 244, 236, 0.6);
  pointer-events: none;
}

.aura-icon-box {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #faf4ec 0%, #f7efe4 100%);
  border: 1px solid rgba(170, 120, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.4rem 1.4rem rgba(170, 120, 60, 0.15);
  position: relative;
  z-index: 2;
}

.banner-ref-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #faf4ec;
  border: 1px solid #ebdccb;
  border-radius: 99rem;
  padding: 0.3rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #aa783c;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.tag-gold-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #aa783c;
}

.banner-ref-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #211d19;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.banner-ref-title .title-bold-dark {
  font-weight: 800;
  color: #120e0c;
}

.banner-ref-sub {
  font-size: 1.35rem;
  color: #666057;
  margin: 0;
}

.banner-vert-divider {
  width: 1px;
  height: 5.5rem;
  background-color: #f2e8dc;
  flex-shrink: 0;
}

/* Center 3 Features */
.banner-ref-center-features {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex-shrink: 0;
}

.banner-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.feature-icon-circle {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: #faf4ec;
  border: 1px solid #f0e2d2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aa783c;
  transition: all 0.3s ease;
}

.banner-feature-item:hover .feature-icon-circle {
  background: #aa783c;
  color: #ffffff;
  border-color: #aa783c;
  transform: translateY(-0.2rem);
}

.feature-item-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: #4a443e;
  line-height: 1.2;
}

/* 3D Cards Visual Stack */
.banner-ref-cards-stack {
  position: relative;
  width: 17rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stack-card {
  position: absolute;
  width: 6.8rem;
  height: 9rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.18);
  border: 2px solid #ffffff;
  transition: all 0.35s ease;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card-left {
  left: 0.8rem;
  transform: rotate(-14deg) scale(0.88);
  z-index: 1;
}

.stack-card-center {
  z-index: 3;
  transform: rotate(0deg) scale(1.08) translateY(-0.4rem);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28);
}

.stack-card-right {
  right: 0.8rem;
  transform: rotate(14deg) scale(0.88);
  z-index: 2;
}

.banner-ref-cards-stack:hover .stack-card-left {
  transform: rotate(-20deg) translateX(-0.8rem) scale(0.92);
}

.banner-ref-cards-stack:hover .stack-card-right {
  transform: rotate(20deg) translateX(0.8rem) scale(0.92);
}

/* Far Right CTA Button Wrap */
.banner-ref-cta-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-cta-aura-glow {
  position: absolute;
  inset: -1.2rem;
  border-radius: 99rem;
  background: radial-gradient(circle, rgba(179, 131, 71, 0.25) 0%, rgba(179, 131, 71, 0.05) 70%, transparent 100%);
  pointer-events: none;
}

.btn-browse-insights-gold-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, #aa783c 0%, #8c5d26 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1.4rem 2.8rem;
  border-radius: 99rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0.8rem 2.4rem rgba(140, 93, 38, 0.35);
  white-space: nowrap;
}

.btn-browse-insights-gold-pill:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1.2rem 3rem rgba(140, 93, 38, 0.5);
  color: #ffffff;
}

@media (max-width: 1200px) {
  .insights-5cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-insight-card-dark {
    min-height: 32rem;
  }
  .insights-5cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insights-bottom-banner-strip {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .insights-5cards-grid {
    grid-template-columns: 1fr;
  }
  .banner-strip-left-group {
    flex-direction: column;
  }
  .banner-strip-vert-line {
    display: none;
  }
}

/* ============================================================
   FOOTER (100% MATCH TO REFERENCE IMAGE - SPACIOUS & ELEGANT)
   ============================================================ */
.site-footer {
  background: linear-gradient(135deg, #fdfbf7 0%, #faf4ec 50%, #f7efe4 100%) !important; 
  color: #3d3832;
  padding-top: 6rem !important;
  padding-bottom: 2.4rem !important;
  /* No margin-top: it exposed a strip of body background between the last
     section and the footer. The 6rem padding-top provides the breathing room. */
  margin-top: 0 !important;
  position: relative;
  overflow: hidden;
  border-top: 2px solid #e8d7c1;
}

.footer-bg-arc-top {
  position: absolute;
  top: -15rem;
  right: -15rem;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 135, 0.25);
  pointer-events: none;
  z-index: 1;
}

.footer-bg-arc-bottom {
  position: absolute;
  bottom: -20rem;
  left: -20rem;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 179, 135, 0.25);
  pointer-events: none;
  z-index: 1;
}

.site-footer__grid { 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 6rem; 
  margin-top: 1rem !important;
  margin-bottom: 3.5rem !important; 
  position: relative;
  z-index: 2;
}

.footer-col-brand {
  position: relative;
}

.site-footer__brand-logo {
  display: inline-block;
  margin-bottom: 1.6rem;
}

.site-footer__logo-img {
  height: 4.8rem;
  width: auto;
  object-fit: contain;
}

.site-footer__brand-desc { 
  font-size: 1.42rem; 
  color: #5c554e; 
  line-height: 1.65; 
  margin-bottom: 2rem; 
  max-width: 32rem; 
}

.footer-accent-dash {
  width: 3.2rem;
  height: 0.2rem;
  background-color: #b38347;
  margin-bottom: 2.4rem;
  border-radius: 2px;
}

.site-footer__socials-ref { 
  display: flex; 
  gap: 1.2rem; 
}

.site-footer__social-btn-ref {
  width: 4.4rem; 
  height: 4.4rem; 
  border-radius: 50%;
  background: #FFFFFF; 
  border: 1px solid #e8d7c1;
  color: #b38347; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.25s ease;
  box-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.04);
}

.site-footer__social-btn-ref:hover { 
  background-color: #aa783c; 
  color: #FFFFFF; 
  border-color: #aa783c; 
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 2rem rgba(170, 120, 60, 0.25);
}

.site-footer__heading-ref { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: 1.35rem; 
  font-weight: 700; 
  letter-spacing: 0.1em; 
  color: #b38347; 
  margin: 0 0 0.6rem; 
  text-transform: uppercase; 
}

.footer-heading-dash {
  width: 2.2rem;
  height: 0.15rem;
  background-color: #d4b387;
  margin-bottom: 2rem;
  border-radius: 2px;
}

.site-footer__links-ref { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  flex-direction: column; 
}

.site-footer__link-ref { 
  font-size: 1.42rem; 
  color: #3d3832; 
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #f4e9db;
  transition: all 0.25s ease; 
}

.site-footer__links-ref li:last-child .site-footer__link-ref {
  border-bottom: none;
}

.link-chevron {
  color: #b38347;
  font-size: 1.6rem;
  line-height: 1;
}

.site-footer__link-ref:hover { 
  color: #aa783c; 
  padding-left: 0.4rem;
}

.site-footer__sub-ref { 
  font-size: 1.42rem; 
  color: #5c554e; 
  margin-bottom: 2.4rem; 
  line-height: 1.55; 
}

.footer-newsletter-pill-ref { 
  background: #FFFFFF; 
  border: 1px solid #e8d7c1; 
  border-radius: 99.9rem;
  padding: 0.5rem 0.5rem 0.5rem 2rem; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease;
}

.footer-newsletter-pill-ref:focus-within {
  border-color: #aa783c;
  box-shadow: 0 0.8rem 2.4rem rgba(170, 120, 60, 0.15);
}

.footer-newsletter-input-ref {
  width: 100%; 
  background: transparent; 
  border: none; 
  outline: none; 
  color: #231f1a; 
  font-size: 1.35rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-newsletter-input-ref::placeholder { 
  color: #99938b; 
}

.footer-newsletter-btn-ref {
  width: 4.6rem; 
  height: 4.2rem; 
  border-radius: 99.9rem;
  background-color: #aa783c; 
  border: none; 
  color: #FFFFFF;
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; 
  transition: all 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 0.6rem 1.6rem rgba(170, 120, 60, 0.25);
}

.footer-newsletter-btn-ref:hover { 
  background-color: #966832; 
  transform: translateY(-1px);
}

/* Bottom Bar */
.footer-divider-row-ref {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.2rem;
  position: relative;
  z-index: 2;
}

.footer-divider-line {
  flex: 1;
  height: 1px;
  background-color: #e8d7c1;
}

.footer-diamond-badge {
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__bottom-ref {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  font-size: 1.3rem; 
  color: #7a7267;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: #7a7267;
}

.footer-credit-sep {
  opacity: 0.35;
}

.site-footer__credit-link {
  color: #aa783c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.site-footer__credit-link:hover {
  color: #8c5d28;
  text-decoration: underline;
}

.footer-bottom-right-row {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.site-footer__legal-ref { 
  display: flex; 
  align-items: center; 
  gap: 1.2rem; 
}

.site-footer__legal-link-ref { 
  color: #7a7267; 
  transition: color 0.25s ease; 
}

.site-footer__legal-link-ref:hover { 
  color: #aa783c; 
  text-decoration: underline; 
}

.legal-divider {
  opacity: 0.3;
}

.footer-back-top-btn {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: #aa783c;
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0.8rem 2.4rem rgba(170, 120, 60, 0.35);
}

.footer-back-top-btn:hover {
  background: #966832;
  transform: translateY(-3px);
  box-shadow: 0 1.2rem 3rem rgba(170, 120, 60, 0.45);
}

@media (max-width: 1024px) { 
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } 
}

@media (max-width: 640px) { 
  .site-footer__grid { grid-template-columns: 1fr; } 
  .site-footer__bottom-ref { flex-direction: column; gap: 2rem; align-items: flex-start; } 
  .footer-bottom-right-row { width: 100%; justify-content: space-between; }
}

/* ============================================================
   CREDENTIALS SECTION (EXACT REFERENCE MATCH)
   ============================================================ */
.creds-ref-section {
  position: relative;
  background-color: #FAF6F0;
  padding: 10rem 0;
  overflow: hidden;
}

/* Background arcs & organic floral art (Top Right) */
.creds-bg-arc-right {
  position: absolute;
  top: -2rem;
  right: -2rem;
  pointer-events: none;
  z-index: 1;
}

/* Bottom Right Soft Leaf Blob */
.creds-bg-blob-bottom {
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(74, 107, 83, 0.12) 0%, rgba(250, 246, 240, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Faint Left Dot Matrix */
.creds-bg-dots-left {
  position: absolute;
  top: 15rem;
  left: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}
.creds-bg-dots-left span {
  width: 4px;
  height: 4px;
  background-color: #AA783C;
  border-radius: 50%;
}

.creds-header-ref {
  max-width: 60rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.creds-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #AA783C;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.creds-title-ref {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.15;
  color: #1E293B;
  margin: 0 0 1.6rem;
}

.creds-italic-gold {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #AA783C;
}

.creds-title-underline {
  width: 6.5rem;
  height: 2px;
  background-color: #AA783C;
  border-radius: 2px;
  margin-top: 1.8rem;
}

/* 2x2 Cards Grid */
.creds-cards-grid-ref {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
  position: relative;
  z-index: 2;
  margin-bottom: 6rem;
}

@media (max-width: 991px) {
  .creds-cards-grid-ref {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Individual Card Styling */
.creds-card-ref {
  background: #FFFFFF;
  border-radius: 1.4rem;
  padding: 3rem 3.2rem;
  position: relative;
  box-shadow: 0 1rem 3rem rgba(170, 120, 60, 0.05), 0 0 0 1px rgba(226, 215, 198, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Gold Left Border Highlight Line */
.creds-card-ref::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #AA783C 0%, #D4AF37 100%);
  border-radius: 1.4rem 0 0 1.4rem;
}

.creds-card-ref:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.6rem 3.5rem rgba(170, 120, 60, 0.1), 0 0 0 1px rgba(170, 120, 60, 0.5);
}

.creds-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}

@media (max-width: 576px) {
  .creds-card-inner {
    flex-direction: column;
    gap: 1.6rem;
  }
}

/* Soft Green Icon Circle */
.creds-icon-circle {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: #EEF4EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(74, 107, 83, 0.15);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.creds-card-content {
  flex-grow: 1;
}

.creds-card-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #AA783C;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.creds-card-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.creds-card-dash {
  width: 2.4rem;
  height: 1.5px;
  background-color: #AA783C;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.creds-card-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.45rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Bottom Divider Row with Botanical Leaf Icon */
.creds-divider-row-ref {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.creds-divider-line {
  flex-grow: 1;
  max-width: 40rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(170, 120, 60, 0) 0%, rgba(170, 120, 60, 0.35) 50%, rgba(170, 120, 60, 0) 100%);
}

.creds-leaf-badge {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAF6F0;
}

/* ============================================================
   WHY ORGANIZATIONS CHOOSE THESE PROGRAMS (EXACT REFERENCE MATCH)
   ============================================================ */
.why-choose-ref-section {
  position: relative;
  background-color: #FAF6F0;
  padding: 10rem 0;
  overflow: hidden;
}

/* Top Right Arc & Leaf Vector */
.why-bg-arc-right {
  position: absolute;
  top: -2rem;
  right: -2rem;
  pointer-events: none;
  z-index: 1;
}

.why-choose-header-ref {
  max-width: 70rem;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.why-choose-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #AA783C;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.why-choose-title-ref {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.15;
  color: #1E293B;
  margin: 0 0 1.6rem;
}

.why-choose-italic-gold {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #AA783C;
}

.why-choose-title-underline {
  width: 6.5rem;
  height: 2px;
  background-color: #AA783C;
  border-radius: 2px;
  margin-top: 1.8rem;
}

/* 4-Column Layout Grid */
.why-choose-grid-ref {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
}

.why-choose-col-ref {
  padding: 0 3.2rem;
  border-right: 1px solid rgba(210, 195, 175, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-choose-col-ref:first-child {
  padding-left: 0;
}

.why-choose-col-ref:last-child {
  padding-right: 0;
  border-right: none;
}

@media (max-width: 991px) {
  .why-choose-grid-ref {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .why-choose-col-ref {
    padding: 0;
    border-right: none;
  }
}

@media (max-width: 640px) {
  .why-choose-grid-ref {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Column Number & Underline */
.why-col-num-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.4rem;
}

.why-col-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #AA783C;
  line-height: 1;
}

.why-col-num-line {
  width: 3rem;
  height: 1.5px;
  background-color: #AA783C;
  margin-top: 0.6rem;
}

/* Center Soft Green Circle Icon */
.why-icon-circle-wrap {
  margin-bottom: 2.8rem;
}

.why-icon-circle {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, #FAF8F5 0%, #EEF4EB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 107, 83, 0.18);
  box-shadow: 0 8px 24px rgba(170, 120, 60, 0.08), inset 0 2px 4px rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-col-ref:hover .why-icon-circle {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 3rem rgba(170, 120, 60, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.why-choose-col-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.25;
  margin: 0 0 1.2rem;
}

.why-col-dash {
  width: 2.4rem;
  height: 1.5px;
  background-color: #AA783C;
  margin-bottom: 1.4rem;
  opacity: 0.7;
}

.why-choose-col-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.45rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ============================================================
   QUOTE BAND / TESTIMONIAL STRIP (SITE THEME MATCH)
   ============================================================ */
.quote-band {
  background: #FAF6F0 !important;
  color: #1E293B !important;
  text-align: center;
  padding: 8rem 0 !important;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E8D7C1;
  border-bottom: 1px solid #E8D7C1;
}

.quote-band__quote {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-style: italic !important;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em !important;
  color: #1E293B !important;
  max-width: 85rem !important;
  margin: 0 auto 2rem !important;
}

.quote-band__by {
  font-family: var(--font-body, 'Inter', sans-serif) !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #AA783C !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* ============================================================
   SENT QUERY ANIMATED MODAL & FIELD STYLES
   ============================================================ */
.required-star {
  color: #AA783C;
  font-weight: 700;
  margin-left: 0.3rem;
  font-size: 1.6rem;
  line-height: 1;
}

.form-error-msg {
  color: #DC2626;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  display: none;
  font-weight: 600;
}
.form-error-msg.show {
  display: block;
}

/* Sent Success Modal Overlay */
.sent-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sent-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sent Success Card */
.sent-modal-card {
  background: #FFFFFF;
  border: 1px solid #E8D7C1;
  border-radius: 2.4rem;
  padding: 4rem 3.6rem;
  max-width: 48rem;
  width: 100%;
  text-align: center;
  box-shadow: 0 2.5rem 5rem rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(170, 120, 60, 0.2);
  transform: scale(0.85) translateY(2rem);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.sent-modal-overlay.active .sent-modal-card {
  transform: scale(1) translateY(0);
}

/* Checkmark Icon Container with Pulsing Rings */
.sent-icon-container {
  position: relative;
  width: 9rem;
  height: 9rem;
  margin: 0 auto 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sent-icon-ring-outer {
  position: absolute;
  inset: -1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 107, 83, 0.25) 0%, rgba(74, 107, 83, 0) 75%);
  animation: sentPulseRing 2s infinite ease-out;
}

@keyframes sentPulseRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.sent-icon-circle-bg {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #EEF4EB 0%, #D8E6D3 100%);
  border: 2px solid #4A6B53;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1rem 2.5rem rgba(74, 107, 83, 0.25);
  position: relative;
  z-index: 2;
}

/* SVG Checkmark Animation */
.sent-check-svg {
  width: 4rem;
  height: 4rem;
}

.sent-check-path {
  stroke: #2D4A3E;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}

.sent-modal-overlay.active .sent-check-path {
  animation: drawCheck 0.6s 0.2s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.sent-modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #1E293B;
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.sent-modal-sub {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.5rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 2.8rem;
}

.sent-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.6rem;
  background: linear-gradient(135deg, #AA783C 0%, #966832 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 999.9rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 0.8rem 2rem rgba(170, 120, 60, 0.3);
  transition: all 0.25s ease;
}

.sent-modal-btn:hover {
  background: linear-gradient(135deg, #966832 0%, #825828 100%);
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 2.5rem rgba(170, 120, 60, 0.4);
}

/* ============================================================
   GLOBAL RESPONSIVE SPACING (MOBILE ≤ 768px)
   Ensures ALL sections have consistent 6rem padding on mobile
   ============================================================ */
@media (max-width: 768px) {
  .about-section,
  .capability-section,
  .testimonials-section,
  .blog-section,
  .creds-ref-section,
  .why-choose-ref-section,
  .programs-section-ref,
  .section,
  .quote-band {
    padding: 6rem 0 !important;
  }

  .site-footer {
    padding-top: 5rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
  }

  .site-footer__grid {
    margin-top: 2rem !important;
    margin-bottom: 4rem !important;
  }

  .narrative-section {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

/* ============================================================
   COMPANY LOGOS INFINITE MARQUEE STRIP
   ============================================================ */
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

.company-logos-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 215, 193, 0.6);
  position: relative;
  z-index: 2;
}

.company-logos-tag {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #aa783c;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.6rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 1rem 2.2rem;
  border-radius: 1rem;
  border: 1px solid #f2e8dc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 5.4rem;
}

.marquee-item:hover {
  transform: translateY(-3px);
  border-color: #aa783c;
  box-shadow: 0 8px 20px rgba(170, 120, 60, 0.12);
}

.marquee-item img {
  height: 3.4rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
  filter: grayscale(15%) opacity(0.9);
  transition: filter 0.3s ease;
}

.marquee-item:hover img {
  filter: grayscale(0%) opacity(1);
}
