/* ==========================================================================
   KAVYA GLOBAL NETWORK — FULL WIDTH & HIGH-END CATCHY DESIGN SYSTEM
   ========================================================================== */

:root {
  --kgn-primary:       #004a3e;
  --kgn-primary-light: #006051;
  --kgn-primary-dark:  #00332a;
  --kgn-secondary:     #fc9b09;
  --kgn-secondary-lt:  #ffb84d;
  --kgn-accent:        #03989e;
  --kgn-white:         #ffffff;
  --kgn-off-white:     #f4f8f7;
  --kgn-bg-outer:      #e5ecea;
  --kgn-gray-50:       #f0f5f4;
  --kgn-gray-100:      #e0e9e7;
  --kgn-gray-300:      #9eb0ab;
  --kgn-gray-500:      #5b6e6a;
  --kgn-gray-700:      #263633;
  --kgn-gray-900:      #0e1b19;
  --kgn-dark:          #081715;
  --kgn-font:          'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --kgn-radius-sm:     10px;
  --kgn-radius-md:     16px;
  --kgn-radius-lg:     24px;
  --kgn-radius-xl:     32px;
  --kgn-radius-full:   50px;
  --kgn-boxed-width:   1240px;
  --kgn-container-width: 1380px;
  --kgn-shadow-boxed:  0 0 60px rgba(0, 40, 30, 0.12);
  --kgn-shadow-card:   0 10px 30px rgba(0, 74, 62, 0.07);
  --kgn-shadow-hover:  0 20px 45px rgba(0, 74, 62, 0.15);
  --kgn-transition:    all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Resets */
*, *::before, *::after {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--kgn-font);
  background-color: var(--kgn-bg-outer);
  color: var(--kgn-gray-700);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
}

/* Layout Wrappers: 100% Full Width and Robust Multi-Resolution Support */
.boxed-site-wrapper,
.full-width-site-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: var(--kgn-white);
  box-shadow: none;
  position: relative;
}

.site-container {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(16px, 3.5vw, 48px);
  padding-right: clamp(16px, 3.5vw, 48px);
}

/* -------------------------------------------------------------
   HEADER NAVIGATION
   ------------------------------------------------------------- */
.header-main {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px clamp(16px, 2.5vw, 36px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 74, 62, 0.08);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 40, 30, 0.07);
  transition: all 0.3s ease;
  min-height: 64px;
}

.header-logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 246, 0.9) 100%);
  border: 1.5px solid rgba(0, 96, 81, 0.12);
  box-shadow: 0 2px 10px rgba(0, 74, 62, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0;
}

.header-logo-container::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(252, 155, 9, 0.4), rgba(0, 96, 81, 0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-logo-container:hover {
  transform: translateY(-1px) scale(1.01);
  border-color: rgba(252, 155, 9, 0.5);
  box-shadow: 0 6px 18px rgba(252, 155, 9, 0.18);
}

.header-logo-container:hover::after {
  opacity: 1;
}

.header-logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 1px 4px rgba(0, 40, 30, 0.08));
}

.header-logo-container:hover .header-logo-img {
  transform: scale(1.02);
  filter: drop-shadow(0 2px 8px rgba(0, 40, 30, 0.12));
}

@media (max-width: 768px) {
  .header-logo-img {
    height: 38px;
    max-width: 170px;
  }
  .header-logo-container {
    padding: 3px 6px;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--kgn-gray-700);
  font-weight: 700;
  font-size: 14.5px;
  position: relative;
  padding: 6px 0;
  transition: var(--kgn-transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--kgn-secondary);
  border-radius: 2px;
  transition: var(--kgn-transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--kgn-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-header-counseling {
  background: linear-gradient(135deg, #004a3e 0%, #006051 100%);
  color: var(--kgn-white);
  font-weight: 800;
  font-size: 12.5px;
  padding: 14px 28px;
  border-radius: var(--kgn-radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border: none;
  cursor: pointer;
  transition: var(--kgn-transition);
  box-shadow: 0 6px 20px rgba(0, 74, 62, 0.25);
  animation: pulseGlow 3s infinite;
}

.layout-toggle-pill {
  background: var(--kgn-gray-50);
  border: 1px solid var(--kgn-gray-100);
  color: var(--kgn-gray-700);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: var(--kgn-radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--kgn-transition);
}

.layout-toggle-pill:hover {
  background: var(--kgn-primary);
  color: var(--kgn-white);
  border-color: var(--kgn-primary);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(252, 155, 9, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(252, 155, 9, 0); }
  100% { box-shadow: 0 0 0 0 rgba(252, 155, 9, 0); }
}

.btn-header-counseling:hover {
  background: linear-gradient(135deg, #fc9b09 0%, #ffb84d 100%);
  color: var(--kgn-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 155, 9, 0.35);
}

/* -------------------------------------------------------------
   HERO SLIDER SECTION (PURE IMAGE-ONLY CAROUSEL)
   ------------------------------------------------------------- */
.hero-slider-section {
  width: 100%;
  position: relative;
  background: #001e17;
  overflow: hidden;
  user-select: none;
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.hero-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  max-height: 800px;
  overflow: hidden;
  background: #001e17;
}

@media (max-width: 1024px) {
  .hero-carousel-track {
    aspect-ratio: 2.4 / 1;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .hero-carousel-track {
    aspect-ratio: 2.4 / 1;
    min-height: 0;
  }
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #001e17;
}

.hero-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 2;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #001e17;
}

/* Subtle clean accent overlay that never obscures left/right content */
.hero-carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 80%, rgba(0, 30, 22, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-carousel-slide::after {
    display: none;
  }
}

/* Gold accent bar at slide bottom */
.hero-carousel-slide::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #004a3e 0%, #fc9b09 50%, #004a3e 100%);
  z-index: 3;
  pointer-events: none;
}


/* Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 40, 34, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-slider-arrow:hover {
  background: var(--kgn-accent, #fc9b09);
  color: #00332a;
  border-color: var(--kgn-accent, #fc9b09);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(252, 155, 9, 0.45);
}

.hero-slider-prev {
  left: clamp(14px, 3vw, 36px);
}

.hero-slider-next {
  right: clamp(14px, 3vw, 36px);
}

/* Dots Navigation */
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 30, 25, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-dot-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-dot-indicator.active {
  width: 32px;
  border-radius: 12px;
  background: var(--kgn-accent, #fc9b09);
  box-shadow: 0 2px 10px rgba(252, 155, 9, 0.6);
}

@media (max-width: 600px) {
  .hero-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .hero-slider-dots {
    bottom: 12px;
    padding: 6px 12px;
    gap: 8px;
  }
  .hero-dot-indicator {
    width: 9px;
    height: 9px;
  }
  .hero-dot-indicator.active {
    width: 24px;
  }
}

/* -------------------------------------------------------------
   HERO SECTION (SPLIT CATCHY LAYOUT - LEGACY / FALLBACK)
   ------------------------------------------------------------- */
.hero-section {
  width: 100%;
  position: relative;
  background: 
    radial-gradient(circle at 5% 10%, rgba(3, 152, 158, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 95% 85%, rgba(252, 155, 9, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%);
  overflow: hidden;
}

.hero-inner-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(50px, 6vw, 90px) clamp(16px, 3.5vw, 48px) clamp(60px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 4.5vw, 60px);
  align-items: center;
  box-sizing: border-box;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseDot 2s infinite;
  display: inline-block;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.est-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 74, 62, 0.07);
  border: 1.5px solid rgba(0, 74, 62, 0.16);
  color: var(--kgn-primary);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 74, 62, 0.06);
}

.hero-eyebrow {
  color: var(--kgn-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-main-title {
  font-size: 52px;
  font-weight: 800;
  color: #00332a;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -1.2px;
}

.hero-main-title .highlight-usa {
  background: linear-gradient(135deg, #004a3e 0%, #03989e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.hero-main-title .highlight-aus {
  background: linear-gradient(135deg, #fc9b09 0%, #ffb84d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-style: italic;
}

.hero-description {
  font-size: 16px;
  color: var(--kgn-gray-500);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 540px;
}

/* Trust Proof Bar */
.trust-proof-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--kgn-white);
  padding: 14px 22px;
  border-radius: var(--kgn-radius-full);
  border: 1px solid var(--kgn-gray-100);
  box-shadow: var(--kgn-shadow-card);
  width: fit-content;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--kgn-white);
  margin-left: -12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.star-rating {
  color: #ffb400;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.trust-info p {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--kgn-gray-700);
}

/* Hero Right Banner Composition */
.hero-right-composition {
  position: relative;
  background: linear-gradient(145deg, #003e34 0%, #006051 60%, #03989e 100%);
  border-radius: 220px 220px 40px 40px;
  padding: 30px 25px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 540px;
  box-shadow: 0 25px 60px rgba(0, 74, 62, 0.2);
}

.hero-student-model {
  width: 95%;
  height: 500px;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 180px 180px 0 0;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

/* PTE / IELTS Card Overlay */
.pte-badge-card {
  position: absolute;
  top: 30px;
  right: -15px;
  background: rgba(8, 30, 25, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--kgn-white);
  padding: 18px 22px;
  border-radius: var(--kgn-radius-md);
  max-width: 270px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  animation: floatSlow 4s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.pte-header-tag {
  background: var(--kgn-secondary);
  color: var(--kgn-white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pte-badge-card h4 {
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 6px;
}

.pte-badge-card p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
}

/* 3 Feature Pills Stacked */
.hero-features-stack {
  position: absolute;
  bottom: 30px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.feature-pill-card {
  background: var(--kgn-white);
  border-radius: var(--kgn-radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--kgn-transition);
}

.feature-pill-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.pill-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(0, 74, 62, 0.1), rgba(3, 152, 158, 0.15));
  color: var(--kgn-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.pill-info h5 {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--kgn-gray-900);
  line-height: 1.15;
}

.pill-info span {
  font-size: 10.5px;
  color: var(--kgn-gray-500);
  font-weight: 600;
}

/* -------------------------------------------------------------
   STATS COUNTER BAR
   ------------------------------------------------------------- */
.stats-bar-section {
  padding: clamp(36px, 4.5vw, 56px) 0 clamp(24px, 3vw, 36px);
  position: relative;
  z-index: 20;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--kgn-white);
  border-radius: var(--kgn-radius-md);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--kgn-gray-100);
  border-top: 4px solid var(--kgn-primary);
  box-shadow: var(--kgn-shadow-card);
  transition: var(--kgn-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stat-card:nth-child(2) { border-top-color: var(--kgn-secondary); }
.stat-card:nth-child(3) { border-top-color: var(--kgn-accent); }
.stat-card:nth-child(4) { border-top-color: var(--kgn-primary-light); }

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--kgn-shadow-hover);
  border-color: rgba(0, 74, 62, 0.2);
}

/* -------------------------------------------------------------
   UNIVERSITY PARTNERS LOGO MARQUEE
   ------------------------------------------------------------- */
.partners-marquee-section {
  padding: 36px 0 32px;
  background: #f8f9fc;
  border-top: 1px solid #e8ecf0;
  border-bottom: 1px solid #e8ecf0;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.partners-title {
  text-align: center;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--kgn-gray-500);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ---- Single-Line Smooth Scrolling Container ---- */
.partner-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0 24px;
  margin-top: 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.partner-scroll-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  align-items: stretch;
  animation: scrollSingleLine 110s linear infinite;
  will-change: transform;
}

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

@keyframes scrollSingleLine {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- Each Card in the Single Scrolling Line ---- */
.partner-scroll-card {
  background: #ffffff;
  border: 1.5px solid #e2e8e5;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  height: 164px;
  flex-shrink: 0;
  padding: 16px 14px 12px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-scroll-card:hover {
  border-color: #006051;
  box-shadow: 0 10px 28px rgba(0, 96, 81, 0.18);
  transform: translateY(-5px);
}

.partner-scroll-card:hover .partner-visit-link {
  color: #fc9b09;
}

.partner-card-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 4px;
}

.partner-scroll-img-wrap {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.partner-scroll-img {
  max-width: 165px;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.partner-scroll-name {
  font-size: 12px;
  font-weight: 700;
  color: #1a2e2b;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

.partner-scroll-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #006051;
  background: rgba(0, 96, 81, 0.08);
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.partner-visit-link {
  font-size: 10.5px;
  font-weight: 700;
  color: #667e78;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s ease;
}

/* ---- Fallback text when image fails to load ---- */
.partner-fallback-text {
  font-size: 11.5px;
  font-weight: 700;
  color: #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  max-width: 150px;
}

/* ---- Destination Filter Tabs ---- */
.partner-dest-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px auto 0;
  max-width: 860px;
}

.partner-dest-tab-btn {
  background: #ffffff;
  border: 1.5px solid #dce4e2;
  color: #273e3a;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.partner-dest-tab-btn:hover {
  border-color: #006051;
  color: #006051;
  transform: translateY(-1px);
}

.partner-dest-tab-btn.active {
  background: #006051;
  color: #ffffff;
  border-color: #006051;
  box-shadow: 0 4px 14px rgba(0, 96, 81, 0.28);
}

.partner-logo-pill {
  background: var(--kgn-white);
  border: 1px solid var(--kgn-gray-100);
  padding: 10px 22px;
  border-radius: var(--kgn-radius-full);
  font-weight: 800;
  font-size: 13px;
  color: var(--kgn-gray-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  transition: var(--kgn-transition);
}

.partner-logo-pill:hover {
  border-color: var(--kgn-primary);
  color: var(--kgn-primary);
  transform: translateY(-2px);
}

.bento-top-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.bento-flag-pill {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--kgn-gray-900);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: fit-content;
}

.bento-intake-badge {
  background: var(--kgn-secondary);
  color: var(--kgn-white);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--kgn-gray-100);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #004a3e, #fc9b09);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 40, 30, 0.12);
  border-color: rgba(0, 74, 62, 0.2);
}

.stat-icon {
  font-size: 32px;
  color: var(--kgn-primary);
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.15);
  color: var(--kgn-secondary);
}

.stat-number {
  font-size: 34px;
  font-weight: 800;
  color: #00332a;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--kgn-gray-500);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   SERVICES SECTION
   ------------------------------------------------------------- */
.services-section {
  padding: 60px 0;
  background-color: var(--kgn-off-white);
  text-align: center;
}

.section-header-center {
  max-width: 640px;
  margin: 0 auto 36px;
}

.section-tag-center {
  color: var(--kgn-accent);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title-center {
  font-size: 36px;
  font-weight: 800;
  color: var(--kgn-gray-900);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-desc-center {
  font-size: 15px;
  color: var(--kgn-gray-500);
  line-height: 1.65;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card-modern {
  background: var(--kgn-white);
  border-radius: var(--kgn-radius-md);
  padding: 34px 26px;
  text-align: left;
  border: 1px solid var(--kgn-gray-100);
  box-shadow: var(--kgn-shadow-card);
  transition: var(--kgn-transition);
  position: relative;
  overflow: hidden;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--kgn-primary), var(--kgn-accent));
  opacity: 0;
  transition: var(--kgn-transition);
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--kgn-shadow-hover);
  border-color: rgba(0, 74, 62, 0.15);
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-circle-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #004a3e 0%, #03989e 100%);
  color: var(--kgn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition: var(--kgn-transition);
  box-shadow: 0 8px 18px rgba(0, 74, 62, 0.2);
}

.service-card-modern:hover .service-circle-icon {
  background: linear-gradient(135deg, #fc9b09 0%, #ffb84d 100%);
  transform: scale(1.1) rotate(5deg);
}

.service-card-modern h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--kgn-gray-900);
  margin-bottom: 12px;
}

.service-card-modern p {
  font-size: 14px;
  color: var(--kgn-gray-500);
  line-height: 1.65;
}

/* -------------------------------------------------------------
   DESTINATIONS / BENTO GRID
   ------------------------------------------------------------- */
.destinations-section {
  padding: 60px 0;
}

.destinations-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.link-all-destinations {
  color: var(--kgn-primary);
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: var(--kgn-transition);
  padding: 8px 16px;
  border-radius: var(--kgn-radius-full);
  background: var(--kgn-gray-50);
}

.link-all-destinations:hover {
  background: var(--kgn-primary);
  color: var(--kgn-white);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  position: relative;
  height: 280px;
  border-radius: var(--kgn-radius-md);
  overflow: hidden;
  box-shadow: var(--kgn-shadow-card);
  text-decoration: none;
  display: block;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover img {
  transform: scale(1.08);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 30, 22, 0.88) 0%, rgba(0, 30, 22, 0.2) 60%, transparent 100%);
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--kgn-white);
}

.bento-overlay h3 {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff !important;
}

.bento-arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--kgn-white);
  color: var(--kgn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--kgn-transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bento-card:hover .bento-arrow-circle {
  background: var(--kgn-secondary);
  color: var(--kgn-white);
  transform: translateX(4px);
}

.bento-card-more {
  background: linear-gradient(145deg, #004a3e 0%, #006051 60%, #03989e 100%);
  border-radius: var(--kgn-radius-md);
  padding: 30px;
  height: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff !important;
  box-shadow: var(--kgn-shadow-card);
}

.bento-card-more i {
  font-size: 38px;
  margin-bottom: 14px;
  color: #fc9b09;
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bento-card-more h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff !important;
}

.bento-card-more p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92) !important;
}

/* -------------------------------------------------------------
   TEST PREP & BOOK MOCK TEST FORM
   ------------------------------------------------------------- */
.test-prep-section {
  width: 100%;
  background-color: var(--kgn-off-white);
  padding: 60px 0;
}

.test-prep-inner-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 4.5vw, 60px);
  align-items: center;
  box-sizing: border-box;
}

.prep-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.prep-feature-card {
  background: var(--kgn-white);
  border-radius: var(--kgn-radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--kgn-gray-100);
  box-shadow: var(--kgn-shadow-card);
}

.prep-icon {
  font-size: 26px;
  color: var(--kgn-primary);
}

.prep-info h5 {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--kgn-gray-900);
}

.prep-info span {
  font-size: 11.5px;
  color: var(--kgn-gray-500);
}

/* Dark Green Form Card */
.mock-form-dark {
  background: linear-gradient(145deg, #00332a 0%, #004a3e 100%);
  border-radius: var(--kgn-radius-lg);
  padding: 40px 36px;
  color: var(--kgn-white);
  box-shadow: 0 20px 50px rgba(0, 40, 30, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-form-header {
  margin-bottom: 28px;
}

.mock-form-header h3 {
  font-size: 22px;
  font-weight: 800;
}

.mock-form-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field-group {
  margin-bottom: 16px;
}

.form-field-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.form-field-group input,
.form-field-group select {
  width: 100%;
  height: 46px;
  background: var(--kgn-white);
  border: 1px solid var(--kgn-gray-100);
  border-radius: var(--kgn-radius-sm);
  padding: 8px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--kgn-gray-900);
  outline: none;
}

.btn-confirm-booking {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #fc9b09 0%, #ffb84d 100%);
  color: var(--kgn-white);
  border: none;
  border-radius: var(--kgn-radius-sm);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--kgn-transition);
  margin-top: 12px;
  box-shadow: 0 6px 20px rgba(252, 155, 9, 0.3);
}

.btn-confirm-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 155, 9, 0.45);
}

/* -------------------------------------------------------------
   ACCREDITATIONS & CERTIFICATIONS SECTION
   ------------------------------------------------------------- */
/* -------------------------------------------------------------
   ACCREDITATIONS & CERTIFICATIONS SECTION (LUXURY PRO DESIGN)
   ------------------------------------------------------------- */
.accreditations-section-pro {
  padding: 60px 0;
  background: #f4f8f7;
  position: relative;
}

.accred-banner-container {
  background: linear-gradient(135deg, #002c24 0%, #004a3e 50%, #00221c 100%);
  border-radius: 32px;
  padding: 60px 45px;
  box-shadow: 0 20px 60px rgba(0, 40, 30, 0.25);
  position: relative;
  overflow: hidden;
}

.accred-banner-container::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 155, 9, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.accred-banner-container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(3, 152, 158, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.accred-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.accred-tag-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252, 155, 9, 0.15);
  color: #ffb84d;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border-radius: 30px;
  border: 1px solid rgba(252, 155, 9, 0.3);
  text-transform: uppercase;
}

.accred-main-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  margin: 16px 0 12px;
  line-height: 1.25;
}

.accred-sub-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.accred-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
}

.accred-card-pro {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 36px 28px 24px;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accred-card-pro:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(252, 155, 9, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.accred-seal-top {
  position: absolute;
  top: -14px;
  background: linear-gradient(135deg, #fc9b09 0%, #ffb84d 100%);
  color: #00332a;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 12px rgba(252, 155, 9, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.accred-icon-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffb84d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.accred-card-pro:hover .accred-icon-ring {
  background: #fc9b09;
  color: #00332a;
  border-color: #ffffff;
  transform: scale(1.08);
}

.accred-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.accred-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.accred-card-footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.accred-trust-strip {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 2;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.trust-strip-item i {
  font-size: 26px;
  color: #ffb84d;
}

.trust-strip-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.trust-strip-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.trust-strip-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* -------------------------------------------------------------
   GOOGLE REVIEWS & TESTIMONIALS SECTION — Single Line Scrolling
   ------------------------------------------------------------- */
.testimonials-section {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Google Rating Summary Header Badge */
.google-rating-banner {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1.5px solid #e0eae6;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 50, 40, 0.06);
  margin-bottom: 30px;
}

.google-rating-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-brand-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #1f2937;
}

.google-rating-divider {
  width: 1px;
  height: 24px;
  background: #e2e8e5;
}

.google-stars-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-score-number {
  font-size: 16px;
  font-weight: 800;
  color: #00332a;
}

.google-stars-icons {
  color: #faaf00;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.google-review-count {
  font-size: 12.5px;
  font-weight: 600;
  color: #6b7280;
}

.btn-view-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #1a73e8;
  text-decoration: none;
  background: #f0f6ff;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.btn-view-google-reviews:hover {
  background: #1a73e8;
  color: #ffffff;
}

/* Google Review Topic Filter Pills (Authentic Google Profile design) */
.google-topics-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto 32px;
  max-width: 900px;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  cursor: default;
  transition: all 0.2s ease;
}

.topic-pill.active {
  background: #e8f0fe;
  color: #1a73e8;
  border-color: #b7d6fb;
}

.topic-pill:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.topic-count {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  background: rgba(0, 0, 0, 0.05);
  padding: 1px 7px;
  border-radius: 10px;
}

.topic-pill.active .topic-count {
  background: #c2e7ff;
  color: #1a73e8;
}

/* Testimonials Marquee Track */
.testimonials-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-scroll-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  width: max-content;
  align-items: stretch;
  animation: scrollTestimonials 55s linear infinite;
  will-change: transform;
}

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

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Individual Google Review Card */
.google-review-card {
  width: 360px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1.5px solid #e2ece8;
  border-radius: 20px;
  padding: 26px 24px 20px;
  box-shadow: 0 4px 18px rgba(0, 40, 30, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  user-select: none;
  text-align: left;
}

.google-review-card:hover {
  transform: translateY(-5px);
  border-color: #006051;
  box-shadow: 0 14px 34px rgba(0, 96, 81, 0.12);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0eae6;
}

.review-user-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #00332a;
  margin: 0 0 2px 0;
  text-transform: capitalize;
}

.review-destination {
  font-size: 11.5px;
  font-weight: 600;
  color: #006051;
  display: block;
}

.review-google-badge {
  flex-shrink: 0;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.review-stars-gold {
  color: #faaf00;
  font-size: 12.5px;
  display: flex;
  gap: 2px;
}

.review-date-badge {
  font-size: 11.5px;
  color: #83928f;
  font-weight: 500;
}

.review-body-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a5c58;
  margin: 0 0 18px 0;
  flex: 1;
}

.review-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #edf4f1;
  padding-top: 12px;
  font-size: 11px;
}

.google-verified-pill {
  color: #006051;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.google-verified-pill i {
  color: #10b981;
}

.review-posted-on {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.review-posted-on:hover {
  color: #1a73e8;
}

@media (max-width: 768px) {
  .google-review-card {
    width: 290px;
    padding: 20px 18px 16px;
  }
  .google-rating-banner {
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    padding: 14px 20px;
  }
  .google-rating-divider {
    display: none;
  }
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.footer-dark-section {
  background: #002821;
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 28px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.9fr 1.8fr 1.4fr;
  gap: 35px;
  margin-bottom: 36px;
}

.footer-col h4 {
  color: var(--kgn-white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.social-links-row {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--kgn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: var(--kgn-transition);
}

.social-icon-btn:hover {
  background: var(--kgn-secondary);
  transform: translateY(-2px);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--kgn-transition);
}

.footer-list a:hover {
  color: var(--kgn-secondary);
  padding-left: 4px;
}

.contact-items-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}

.contact-items-list li:first-child {
  align-items: flex-start;
}

.contact-whatsapp-item,
.contact-whatsapp-item span,
.contact-whatsapp-item a {
  white-space: nowrap !important;
}

.contact-items-list i {
  color: var(--kgn-secondary);
  font-size: 15px;
  flex-shrink: 0;
}

.newsletter-box input {
  width: 100%;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--kgn-radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--kgn-white);
  margin-bottom: 12px;
  outline: none;
}

.btn-subscribe {
  width: 100%;
  height: 44px;
  background: var(--kgn-secondary);
  color: var(--kgn-white);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--kgn-radius-sm);
  cursor: pointer;
  transition: var(--kgn-transition);
}

.btn-subscribe:hover {
  background: var(--kgn-secondary-lt);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--kgn-secondary);
}

/* Floating Modern Contact Dock Widget */
.floating-quick-dock {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.floating-dock-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 10px;
  border-radius: 50px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(0, 74, 62, 0.15);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.16), 0 2px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: right center;
}

.floating-dock-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 35px rgba(0, 40, 30, 0.22);
}

.floating-dock-pill.whatsapp {
  border-color: rgba(37, 211, 102, 0.35);
}

.floating-dock-pill.whatsapp:hover {
  background: #f4fdf7;
  border-color: #25d366;
}

.floating-dock-pill.phone {
  border-color: rgba(0, 74, 62, 0.25);
}

.floating-dock-pill.phone:hover {
  background: #f0f7f5;
  border-color: #004a3e;
}

.dock-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
}

.floating-dock-pill.whatsapp .dock-icon-circle {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.floating-dock-pill.phone .dock-icon-circle {
  background: linear-gradient(135deg, #004a3e 0%, #006051 100%);
  box-shadow: 0 4px 14px rgba(0, 74, 62, 0.35);
}

.dock-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.dock-badge {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #666666;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.live-dot.green {
  background: #25d366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.25);
  animation: pulseDot 2s infinite;
}

.live-dot.orange {
  background: #fc9b09;
  box-shadow: 0 0 0 2px rgba(252, 155, 9, 0.25);
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.dock-text {
  font-size: 13.5px;
  font-weight: 800;
  color: #00332a;
}

.floating-dock-pill.whatsapp:hover .dock-text {
  color: #0b8043;
}

.floating-dock-pill.phone:hover .dock-text {
  color: #004a3e;
}

@media (max-width: 600px) {
  .floating-quick-dock {
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }
  .floating-dock-pill {
    padding: 6px 14px 6px 8px;
  }
  .dock-icon-circle {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
  .dock-text {
    font-size: 12.5px;
  }
}

/* ONLINE COUNSELING POP-UP MODAL */
.counseling-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 18, 15, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.counseling-modal-card {
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--kgn-white);
  border-radius: var(--kgn-radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.counseling-modal-header {
  background: linear-gradient(135deg, var(--kgn-primary), var(--kgn-primary-light));
  color: var(--kgn-white);
  padding: 28px 30px;
  position: relative;
}

.counseling-modal-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.counseling-modal-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.btn-close-counseling {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--kgn-white);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--kgn-transition);
}

.btn-close-counseling:hover {
  background: var(--kgn-secondary);
  transform: rotate(90deg);
}

.counseling-modal-body {
  padding: 30px;
}

.counseling-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.counseling-field-group {
  margin-bottom: 16px;
}

.counseling-field-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--kgn-gray-700);
  margin-bottom: 6px;
}

.counseling-field-group input,
.counseling-field-group select,
.counseling-field-group textarea {
  width: 100%;
  background: var(--kgn-gray-50);
  border: 1.5px solid var(--kgn-gray-100);
  border-radius: var(--kgn-radius-sm);
  padding: 11px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--kgn-gray-900);
  outline: none;
  transition: var(--kgn-transition);
}

.counseling-field-group input:focus,
.counseling-field-group select:focus,
.counseling-field-group textarea:focus {
  background: var(--kgn-white);
  border-color: var(--kgn-primary);
  box-shadow: 0 0 0 4px rgba(0, 74, 62, 0.1);
}

.btn-submit-counseling {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--kgn-primary), var(--kgn-primary-light));
  color: var(--kgn-white);
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  border-radius: var(--kgn-radius-sm);
  cursor: pointer;
  transition: var(--kgn-transition);
  box-shadow: 0 6px 18px rgba(0, 74, 62, 0.2);
  margin-top: 6px;
}

.btn-submit-counseling:hover {
  background: linear-gradient(135deg, var(--kgn-primary-dark), var(--kgn-primary));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 74, 62, 0.3);
}

/* Admin Dashboard Modal UI */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 23, 21, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-dashboard-container {
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  background: var(--kgn-white);
  border-radius: var(--kgn-radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-header {
  background: var(--kgn-primary);
  color: var(--kgn-white);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h2 {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-close-admin {
  background: rgba(255, 255, 255, 0.15);
  color: var(--kgn-white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.admin-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.admin-sidebar {
  width: 240px;
  background: var(--kgn-gray-50);
  border-right: 1px solid var(--kgn-gray-100);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-nav-btn {
  background: transparent;
  border: none;
  padding: 12px 16px;
  border-radius: var(--kgn-radius-sm);
  text-align: left;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--kgn-gray-700);
  cursor: pointer;
  transition: var(--kgn-transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav-btn:hover,
.admin-nav-btn.active {
  background: var(--kgn-primary);
  color: var(--kgn-white);
}

.admin-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.admin-form-group {
  margin-bottom: 18px;
}

.admin-form-group label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--kgn-gray-700);
  margin-bottom: 6px;
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  width: 100%;
  padding: 10px 14px;
  background: var(--kgn-gray-50);
  border: 1.5px solid var(--kgn-gray-100);
  border-radius: var(--kgn-radius-sm);
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
}

.btn-save-admin {
  background: var(--kgn-secondary);
  color: var(--kgn-white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--kgn-radius-sm);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.leads-table th,
.leads-table td {
  padding: 10px 14px;
  border: 1px solid var(--kgn-gray-100);
  font-size: 13px;
}

.leads-table th {
  background: var(--kgn-primary);
  color: var(--kgn-white);
  font-weight: 700;
  text-align: left;
}

.badge-source-mock {
  background: #004a3e;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-source-counsel {
  background: #5c27b0;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-category {
  background: #eef6f4;
  color: #004a3e;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #cbe3dd;
  display: inline-block;
}

.lead-filter-tab {
  background: #fff;
  border: 1.5px solid #d0dfdc;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lead-filter-tab:hover,
.lead-filter-tab.active {
  background: var(--kgn-primary);
  color: #fff;
  border-color: var(--kgn-primary);
}

/* =============================================================
   STUDY WORLD INSPIRED HIGH-END COMPONENT STYLES
   ============================================================= */

/* Top Announcement / Contact Bar - Single Line */
.site-topbar {
  background: #00332a;
  color: #ffffff;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.1px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 100%;
  margin: 0;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.topbar-inner::-webkit-scrollbar {
  display: none;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  white-space: nowrap;
}

.topbar-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  margin-left: 3px;
}

.topbar-item a:hover {
  color: #fc9b09;
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  user-select: none;
  margin: 0 2px;
}

.topbar-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(252, 155, 9, 0.45);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.topbar-partner-link:hover,
.topbar-partner-link.active {
  background: #fc9b09;
  color: #00221c;
  border-color: #fc9b09;
  box-shadow: 0 2px 10px rgba(252, 155, 9, 0.35);
  transform: translateY(-1px);
}

.topbar-partner-link:hover i,
.topbar-partner-link.active i {
  color: #00221c !important;
}

.topbar-b2b-badge {
  font-size: 9.5px;
  font-weight: 800;
  background: #fc9b09;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: all 0.2s ease;
}

.topbar-partner-link:hover .topbar-b2b-badge,
.topbar-partner-link.active .topbar-b2b-badge {
  background: #00221c;
  color: #ffffff;
}

.topbar-social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.topbar-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.topbar-social-links a:hover {
  background: #fc9b09;
  color: #ffffff;
  transform: translateY(-1px);
}

.topbar-announcement {
  display: none;
}

/* Header Dropdown Menus */
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.header-nav-link {
  color: var(--kgn-gray-700);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  padding: 6px 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap !important;
}

.header-nav-link:hover, .header-nav-link.active {
  color: var(--kgn-primary);
}

.nav-arrow {
  font-size: 9px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown:hover .dropdown-menu-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 340px;
  max-width: calc(100vw - 24px);
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0, 40, 30, 0.14);
  border: 1px solid var(--kgn-gray-100);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  box-sizing: border-box;
}

.dropdown-menu-box.grid-2 {
  width: 610px;
  max-width: calc(100vw - 28px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  box-sizing: border-box;
}

.dropdown-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--kgn-gray-700);
  transition: background 0.2s ease;
  min-width: 0;
  box-sizing: border-box;
}

.dropdown-item-link:hover {
  background: #f4f8f7;
}

.dropdown-item-link > div:not(.dropdown-icon):not(.country-flag-icon) {
  min-width: 0;
  flex: 1;
}

.dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 74, 62, 0.08);
  color: var(--kgn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.country-flag-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dropdown-title {
  font-weight: 800;
  font-size: 13px;
  color: #00332a;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.dropdown-sub {
  font-size: 11px;
  color: #666;
  margin-top: 2px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.btn-primary-header {
  background: linear-gradient(135deg, #fc9b09 0%, #ff8500 50%, #e07200 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(252, 155, 9, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap !important;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
  height: 38px;
}

.btn-primary-header i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.btn-primary-header:hover {
  background: linear-gradient(135deg, #ffaa2b 0%, #fc9b09 50%, #f07b00 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(252, 155, 9, 0.5);
  color: #ffffff;
}

.btn-primary-header:hover i {
  transform: scale(1.15);
}

.btn-primary-header.btn-b2b-header {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-primary-header.btn-b2b-header:hover {
  background: linear-gradient(135deg, #2ae26d 0%, #075e54 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-switch-main-site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-weight: 700;
  font-size: 12.5px;
  text-decoration: none;
  border: 1px solid rgba(0, 74, 62, 0.15);
  transition: all 0.2s ease;
  white-space: nowrap !important;
  flex-shrink: 0;
  height: 38px;
}

.btn-switch-main-site:hover {
  background: #004a3e;
  color: #ffffff;
  border-color: #004a3e;
}

.btn-primary-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(25deg);
  pointer-events: none;
  animation: headerBtnShimmer 3.5s infinite;
}

@keyframes headerBtnShimmer {
  0% { left: -60%; }
  35% { left: 140%; }
  100% { left: 140%; }
}

/* University Finder Bar */
.finder-bar-section {
  padding: 0 40px 40px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.finder-bar-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 16px 45px rgba(0, 40, 30, 0.09);
  border: 1px solid var(--kgn-gray-100);
}

.finder-bar-header {
  margin-bottom: 20px;
}

.finder-bar-header h4 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.finder-bar-header p {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.finder-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 200px;
  gap: 16px;
  align-items: end;
}

.finder-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #004a3e;
  margin-bottom: 6px;
}

.finder-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #d0dfdc;
  font-size: 13.5px;
  font-weight: 600;
  outline: none;
  background: #fafcfb;
  transition: border-color 0.2s ease;
}

.finder-field select:focus {
  border-color: var(--kgn-primary);
}

.btn-finder-search {
  width: 100%;
  background: var(--kgn-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12.5px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-finder-search:hover {
  background: #fc9b09;
  transform: translateY(-2px);
}

/* Director Leadership Message Section */
.director-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f7 100%);
  position: relative;
}

.director-card-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 16px 50px rgba(0, 40, 30, 0.07);
  border: 1px solid var(--kgn-gray-100);
}

.director-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 40, 30, 0.16);
  border: 3px solid #ffffff;
  height: 450px;
}

.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  transform: scale(1.38);
  filter: contrast(1.08) brightness(1.05) saturate(1.1);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.director-img-wrapper:hover .director-img {
  transform: scale(1.43);
}

.director-badge-floating {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #004a3e;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 74, 62, 0.3);
}

.director-badge-floating i {
  font-size: 24px;
  color: #fc9b09;
}

.director-badge-floating strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.director-badge-floating span {
  font-size: 11px;
  opacity: 0.85;
}

.director-title {
  font-size: 32px;
  font-weight: 800;
  color: #00332a;
  margin: 12px 0 18px;
  line-height: 1.25;
}

.director-quote {
  font-size: 16px;
  font-weight: 700;
  color: #004a3e;
  font-style: italic;
  border-left: 4px solid #fc9b09;
  padding-left: 18px;
  margin-bottom: 18px;
}

.director-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.director-author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--kgn-gray-100);
  padding-top: 20px;
}

.director-author-name {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
}

.director-author-role {
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.btn-director-action {
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  border: 1.5px solid rgba(0, 74, 62, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-director-action:hover {
  background: #004a3e;
  color: #ffffff;
}

/* =====================================================
   VISA APPROVAL GALLERY — 1 Single Line Scrolling (Small Size)
   ===================================================== */
.visa-gallery-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f4f8f6 0%, #ffffff 100%);
  overflow: hidden;
}

/* 1 Single Line Smooth Scrolling Container */
.visa-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0 24px;
  margin-top: 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.visa-scroll-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  align-items: center;
  animation: scrollVisaLine 50s linear infinite;
  will-change: transform;
}

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

@keyframes scrollVisaLine {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Prominent Visa Card Showcase */
.visa-scroll-card {
  position: relative;
  width: 270px;
  height: 270px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 40, 30, 0.09), 0 2px 5px rgba(0, 0, 0, 0.04);
  border: 1.5px solid #e0eae6;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
  user-select: none;
}

.visa-scroll-card:hover {
  transform: translateY(-4px) scale(1.025);
  border-color: #006051;
  box-shadow: 0 12px 28px rgba(0, 74, 62, 0.2);
}

.visa-scroll-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.3s ease;
}

.visa-scroll-card:hover .visa-scroll-img {
  transform: scale(1.04);
}

/* Subtle Zoom Hover Hint */
.visa-zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 50, 40, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s ease;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.visa-scroll-card:hover .visa-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

/* High-End Conversion Banner below the Visa Gallery */
.visa-cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  margin-top: 36px;
  padding: 38px 46px;
  background: linear-gradient(135deg, #002821 0%, #004337 50%, #00332a 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 40, 30, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.visa-cta-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(252, 155, 9, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.visa-cta-left {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 2;
}

.visa-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252, 155, 9, 0.15);
  border: 1px solid rgba(252, 155, 9, 0.35);
  color: #ffb84d;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.visa-cta-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}

.visa-cta-heading {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.visa-cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 18px 0;
  max-width: 660px;
}

.visa-cta-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.visa-cta-trust-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.visa-cta-trust-tags span i {
  color: #4ade80;
  font-size: 13px;
}

.visa-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 260px;
  position: relative;
  z-index: 2;
}

.btn-visa-cta-primary {
  background: linear-gradient(135deg, #fc9b09 0%, #e68a00 100%);
  color: #002e26;
  font-size: 14.5px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(252, 155, 9, 0.35);
  transition: all 0.25s ease;
}

.btn-visa-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(252, 155, 9, 0.48);
  filter: brightness(1.06);
}

.btn-visa-cta-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #4ade80;
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-visa-cta-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .visa-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .visa-cta-left {
    text-align: center;
  }
  .visa-cta-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .visa-cta-trust-tags {
    justify-content: center;
  }
  .visa-cta-right {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* Keep old .visa-grid / .visa-card classes intact for admin panel */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.visa-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--kgn-gray-100);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 40, 30, 0.12);
}

@media (max-width: 1200px) {
  .visa-scroll-card {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 992px) {
  .visa-scroll-card {
    width: 215px;
    height: 215px;
  }
  .visa-scroll-track {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .visa-gallery-section {
    padding: 55px 0 40px;
  }
  .visa-scroll-card {
    width: 185px;
    height: 185px;
    border-radius: 14px;
  }
  .visa-scroll-track {
    gap: 14px;
  }
  .visa-scroll-container {
    padding: 12px 0 18px;
  }
}

@media (max-width: 480px) {
  .visa-scroll-card {
    width: 165px;
    height: 165px;
    border-radius: 12px;
  }
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--kgn-white);
  border-radius: var(--kgn-radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  padding: 35px 30px;
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-login-header {
  text-align: center;
  margin-bottom: 25px;
}

.admin-login-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kgn-primary), var(--kgn-primary-light));
  color: var(--kgn-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0, 74, 62, 0.25);
}

.admin-login-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--kgn-gray-900);
  margin-bottom: 6px;
}

.admin-login-header p {
  font-size: 13px;
  color: var(--kgn-gray-500);
  line-height: 1.4;
}

.admin-login-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  padding: 10px 14px;
  border-radius: var(--kgn-radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-submit-login {
  flex: 1;
  height: 44px;
  background: linear-gradient(135deg, var(--kgn-primary), var(--kgn-primary-light));
  color: var(--kgn-white);
  font-weight: 800;
  font-size: 13px;
  border: none;
  border-radius: var(--kgn-radius-sm);
  cursor: pointer;
  transition: var(--kgn-transition);
}

.btn-submit-login:hover {
  background: linear-gradient(135deg, var(--kgn-primary-dark), var(--kgn-primary));
  transform: translateY(-1px);
}

.btn-cancel-admin {
  height: 44px;
  padding: 0 18px;
  background: var(--kgn-gray-100);
  color: var(--kgn-gray-700);
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: var(--kgn-radius-sm);
  cursor: pointer;
}

/* Dedicated Full-Screen Professional Admin Portal */
.admin-login-fullscreen {
  min-height: 100vh;
  width: 100vw;
  background: radial-gradient(circle at top center, #004a3e 0%, #002821 65%, #001511 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.admin-login-card-pro {
  width: 100%;
  max-width: 440px;
  background: var(--kgn-white);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: 40px 35px;
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-portal-wrapper {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  background: #f4f8f7;
  color: var(--kgn-gray-900);
  font-family: var(--kgn-font);
}

.admin-portal-navbar {
  height: 66px;
  background: #002821;
  color: var(--kgn-white);
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.admin-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-nav-brand img {
  height: 38px;
  width: auto;
}

.admin-nav-brand-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--kgn-white);
  letter-spacing: 0.5px;
}

.admin-nav-brand-badge {
  background: var(--kgn-secondary);
  color: var(--kgn-white);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-view-live-site {
  background: rgba(255, 255, 255, 0.12);
  color: var(--kgn-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--kgn-transition);
}

.btn-view-live-site:hover {
  background: var(--kgn-secondary);
  border-color: var(--kgn-secondary);
}

.btn-logout-portal {
  background: rgba(220, 53, 69, 0.15);
  color: #ff6b7b;
  border: 1px solid rgba(220, 53, 69, 0.3);
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--kgn-transition);
}

.btn-logout-portal:hover {
  background: #dc3545;
  color: var(--kgn-white);
}

.admin-portal-body {
  display: flex;
  flex: 1;
  min-height: calc(100vh - 66px);
}

.admin-portal-sidebar {
  width: 270px;
  background: #001f1a;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.admin-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-sidebar-label {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 12px;
  margin-bottom: 6px;
}

.admin-sidebar-item {
  background: transparent;
  border: none;
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: var(--kgn-transition);
}

.admin-sidebar-item:hover,
.admin-sidebar-item.active {
  background: var(--kgn-primary);
  color: var(--kgn-white);
}

.admin-sidebar-item.active {
  box-shadow: 0 4px 12px rgba(0, 74, 62, 0.3);
}

.admin-portal-content {
  flex: 1;
  padding: 35px 45px;
  background: #f4f8f7;
  overflow-y: auto;
}

.admin-content-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e9e7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-content-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: #00332a;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section,
  .test-prep-section {
    grid-template-columns: 1fr;
  }
  .services-grid-4,
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* -------------------------------------------------------------
   INSTITUTIONS WE REPRESENT SECTION & LIGHTBOX
   ------------------------------------------------------------- */
.represented-section {
  padding: 90px 40px;
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
  border-top: 1px solid var(--kgn-gray-100);
  border-bottom: 1px solid var(--kgn-gray-100);
}

.inst-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.inst-tab-btn {
  background: var(--kgn-white);
  border: 1.5px solid var(--kgn-gray-200);
  padding: 10px 22px;
  border-radius: var(--kgn-radius-full);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--kgn-gray-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.inst-tab-btn:hover,
.inst-tab-btn.active {
  background: #004a3e;
  color: #ffffff;
  border-color: #004a3e;
  box-shadow: 0 6px 18px rgba(0, 74, 62, 0.25);
  transform: translateY(-2px);
}

.inst-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.inst-card-slide {
  background: var(--kgn-white);
  border: 1px solid var(--kgn-gray-200);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 36px rgba(0, 40, 30, 0.06);
  transition: all 0.35s ease;
}

.inst-card-slide:hover {
  box-shadow: 0 20px 50px rgba(0, 40, 30, 0.12);
  border-color: rgba(0, 74, 62, 0.25);
}

.inst-slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 15px;
}

.inst-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.inst-flag-badge {
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inst-header-left h3 {
  font-size: 22px;
  font-weight: 800;
  color: #00332a;
  margin: 0;
}

.inst-count-pill {
  background: linear-gradient(135deg, #fc9b09 0%, #ffb84d 100%);
  color: #00332a;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(252, 155, 9, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inst-slide-img-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--kgn-gray-200);
  cursor: pointer;
  margin-bottom: 28px;
  background: #fdfdfd;
}

.inst-slide-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.inst-slide-img-wrapper:hover .inst-slide-image {
  transform: scale(1.02);
}

.inst-image-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 30, 0.45);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inst-slide-img-wrapper:hover .inst-image-hover-overlay {
  opacity: 1;
}

.btn-expand-slide {
  background: #ffffff;
  color: #00332a;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.btn-expand-slide:hover {
  transform: scale(1.05);
  background: #fc9b09;
  color: #ffffff;
}

.inst-unis-list-box {
  background: rgba(0, 74, 62, 0.03);
  border: 1px solid rgba(0, 74, 62, 0.1);
  border-radius: 16px;
  padding: 22px;
}

.inst-unis-heading {
  font-size: 13.5px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inst-chips-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inst-chip-pill {
  background: #ffffff;
  border: 1px solid rgba(0, 74, 62, 0.15);
  color: #004a3e;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.inst-chip-pill:hover {
  background: #004a3e;
  color: #ffffff;
  border-color: #004a3e;
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 15, 0.92);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-container {
  background: #ffffff;
  border-radius: 24px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-header {
  padding: 18px 26px;
  background: #00332a;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lightbox-header h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close-btn:hover {
  background: #fc9b09;
  color: #00332a;
}

.lightbox-body {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  background: #f4f8f7;
}

.lightbox-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 600px) {
  .services-grid-4,
  .stories-grid-3,
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive: institution logo cards on smaller screens */
@media (max-width: 768px) {
  .partner-logo-card {
    width: 150px;
    height: 80px;
    padding: 10px 14px;
  }
  .partner-logo-img {
    max-width: 116px;
    max-height: 52px;
  }
  .marquee-track {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .partner-logo-card {
    width: 130px;
    height: 72px;
    padding: 8px 12px;
  }
  .partner-logo-img {
    max-width: 100px;
    max-height: 46px;
  }
  .marquee-track {
    gap: 10px;
  }
}

/* -------------------------------------------------------------
   SEO FAQ ACCORDION SECTION
   ------------------------------------------------------------- */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
  border-top: 1px solid #e7ecea;
}

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid #e2e9e6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: #006051;
  box-shadow: 0 6px 18px rgba(0, 96, 81, 0.08);
}

.faq-item.active {
  border-color: #006051;
  box-shadow: 0 8px 24px rgba(0, 96, 81, 0.1);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}

.faq-question-btn:hover {
  background: #f9fbfb;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: #00332a;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.faq-chevron {
  font-size: 14px;
  color: #006051;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 14px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-panel {
  padding: 0 24px 22px 24px;
  border-top: 1px solid #edf3f1;
}

.faq-answer-panel p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #4a5c58;
  margin: 14px 0 0;
}

/* =============================================================
   100% FULL-WIDTH & MULTI-RESOLUTION / ZOOM RESILIENCE
   Ensures seamless presentation on zoom-out (50%, 67%, 75%, 90%),
   standard screens, ultra-wide 4K/2K monitors, and mobile screens.
   ============================================================= */

/* Root and Layout Wrappers: Force true 100% width across the DOM tree */
html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

#app {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.boxed-site-wrapper,
.full-width-site-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-shadow: none !important;
  overflow-x: clip !important;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Fluid Horizontal Padding for All Main Sections (scales gracefully with viewport/zoom) */
.header-main,
.site-topbar,
.hero-section,
.stats-bar-section,
.services-section,
.destinations-section,
.test-prep-section,
.accreditations-section-pro,
.testimonials-section,
.faq-section,
.director-section,
.footer-dark-section,
.finder-bar-section {
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   UNIFIED DESKTOP SECTION SPACING ARCHITECTURE (BALANCED 60PX RHYTHM)
   ========================================================================== */
.hero-section {
  padding: clamp(36px, 5vw, 64px) clamp(16px, 3.5vw, 48px);
}

.stats-bar-section {
  padding: clamp(36px, 4.5vw, 56px) 0 clamp(24px, 3vw, 36px);
  margin: 0;
}

.partners-marquee-section {
  padding: 34px 0 30px;
  margin: 0;
}

/* Major Content Sections — Uniform 60px vertical padding on desktop */
.director-section,
.services-section,
.destinations-section,
.visa-gallery-section,
.test-prep-section,
.accreditations-section-pro,
.testimonials-section,
.faq-section,
.page-section {
  padding: 60px 0;
  margin: 0;
  box-sizing: border-box;
}

.test-prep-inner-grid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Callout and Conversion Strip */
.home-partner-cta-strip {
  padding: 48px 0;
  margin: 0;
  box-sizing: border-box;
}

.footer-dark-section {
  padding: 56px 0 28px;
  margin: 0;
  box-sizing: border-box;
}

/* Consistent Section Header Spacing on Desktop */
.section-header-center,
.destinations-header-row,
.accred-header,
.pro-section-header {
  margin-bottom: 36px;
}

/* Ensure all inner content containers center nicely on very large screens */
.site-container,
.topbar-inner,
.footer-main-grid,
.footer-bottom-bar {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Header inner layout constraint for ultra-wide / zoom-out */
.header-main {
  padding: 10px clamp(16px, 2.5vw, 36px);
}

/* Header inner container for ultra-wide and zoom-out screen alignment - strictly single-line */
.header-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  gap: clamp(12px, 2vw, 28px);
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap !important;
  flex-shrink: 0;
}

/* Prevent fixed-pixel grid blowups when resizing or zooming */
.director-card-grid {
  grid-template-columns: minmax(280px, 420px) 1fr;
}

@media (max-width: 992px) {
  .director-card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
  }
  .director-img-wrapper {
    height: 340px;
  }
}

/* Visa CTA Banner responsiveness */
.visa-cta-card {
  padding: clamp(24px, 3.5vw, 38px) clamp(20px, 3.5vw, 46px);
}

.visa-cta-right {
  min-width: unset;
}

/* Media query adjustments for seamless single-line navigation */
@media (max-width: 1240px) {
  .header-nav {
    gap: clamp(10px, 1.2vw, 16px);
  }
  .header-nav-link {
    font-size: 13px;
    padding: 6px 2px;
  }
  .dropdown-menu-box.grid-2 {
    width: 560px;
    max-width: calc(100vw - 24px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .header-nav {
    display: none !important; /* Switch directly to drawer before any horizontal squishing can occur */
  }
  .header-main {
    justify-content: space-between;
  }
}


/* =============================================================
   DEDICATED INNER PAGES STYLING (ABOUT & LEADERSHIP MESSAGE)
   ============================================================= */

/* Page Hero Banner */
.page-hero-banner {
  position: relative;
  background: linear-gradient(135deg, #002b24 0%, #004a3e 60%, #035c53 100%);
  color: #ffffff;
  padding: clamp(48px, 6vw, 75px) clamp(20px, 3.5vw, 40px);
  overflow: hidden;
  border-bottom: 4px solid #fc9b09;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252, 155, 9, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 152, 158, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-breadcrumb a:hover {
  color: #fc9b09;
}

.page-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.page-breadcrumb .current {
  color: #fc9b09;
  font-weight: 700;
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  line-height: 1.6;
}

/* Page Section Container */
.page-section {
  padding: 60px 0;
  background: #ffffff;
}

.page-section.bg-alt {
  background: #f8faf9;
  border-top: 1px solid rgba(0, 74, 62, 0.08);
  border-bottom: 1px solid rgba(0, 74, 62, 0.08);
}

.page-inner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 48px);
  box-sizing: border-box;
}

/* About Us: Story Grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about-story-content .story-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.about-story-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #00332a;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.about-story-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}

.about-highlights-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.about-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 74, 62, 0.12);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-pill-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-pill-text {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
}

.about-story-image-wrap {
  position: relative;
}

.about-story-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 74, 62, 0.15);
  border: 4px solid #ffffff;
}

.about-floating-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, #004a3e 0%, #035c53 100%);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 43, 36, 0.35);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.about-floating-stat .stat-num {
  font-size: 32px;
  font-weight: 900;
  color: #fc9b09;
  line-height: 1;
}

.about-floating-stat .stat-desc {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Vision & Mission Cards */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3.5vw, 40px);
}

.vm-card {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(30px, 4vw, 44px);
  border: 1.5px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 74, 62, 0.12);
}

.vm-card.vision-card {
  border-top: 5px solid #03989e;
}

.vm-card.mission-card {
  border-top: 5px solid #fc9b09;
}

.vm-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.vision-card .vm-icon-wrap {
  background: rgba(3, 152, 158, 0.12);
  color: #03989e;
}

.mission-card .vm-icon-wrap {
  background: rgba(252, 155, 9, 0.12);
  color: #fc9b09;
}

.vm-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 14px;
}

.vm-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #4a5568;
}

/* Core Values: 4-Col Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #004a3e;
  box-shadow: 0 12px 28px rgba(0, 74, 62, 0.1);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 74, 62, 0.1) 0%, rgba(3, 152, 158, 0.1) 100%);
  color: #004a3e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
  flex-grow: 1;
}

/* Milestones Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.timeline-card {
  background: #ffffff;
  border: 1.5px solid rgba(0, 74, 62, 0.12);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  border-color: #fc9b09;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.timeline-year-badge {
  display: inline-block;
  background: linear-gradient(135deg, #004a3e 0%, #035c53 100%);
  color: #fc9b09;
  font-size: 16px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.timeline-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

/* Page Action Banner (Universal CTA) */
.page-cta-banner {
  background: linear-gradient(135deg, #00332a 0%, #004a3e 70%, #035c53 100%);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 60px);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  box-shadow: 0 20px 48px rgba(0, 43, 36, 0.25);
  position: relative;
  overflow: hidden;
}

.page-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: radial-gradient(circle, rgba(252, 155, 9, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-cta-left h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.page-cta-left p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  line-height: 1.6;
}

.page-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.page-cta-btn-primary {
  background: linear-gradient(135deg, #fc9b09 0%, #e08702 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(252, 155, 9, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.page-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(252, 155, 9, 0.45);
}

.page-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease;
  white-space: nowrap;
}

.page-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* =============================================================
   LEADERSHIP MESSAGE PAGE LAYOUT
   ============================================================= */
.leadership-layout-grid {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: clamp(32px, 4.5vw, 60px);
  align-items: start;
}

/* Director Profile Sticky Card */
.director-sticky-sidebar {
  position: sticky;
  top: 110px;
}

.director-profile-card {
  background: #ffffff;
  border: 1.5px solid rgba(0, 74, 62, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 74, 62, 0.08);
}

.director-profile-card-img-box {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #00221c;
}

.director-profile-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.director-profile-card:hover .director-profile-card-img-box img {
  transform: scale(1.03);
}

.director-profile-badge-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0, 43, 36, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.director-profile-badge-overlay i {
  color: #fc9b09;
  font-size: 16px;
}

.director-profile-card-body {
  padding: 24px;
}

.director-profile-name {
  font-size: 22px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
}

.director-profile-role {
  font-size: 14px;
  font-weight: 700;
  color: #fc9b09;
  margin-bottom: 18px;
}

.director-meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
  margin-bottom: 20px;
}

.director-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a5568;
}

.director-meta-item i {
  width: 20px;
  color: #004a3e;
  text-align: center;
}

.director-btn-counsel {
  width: 100%;
  background: linear-gradient(135deg, #004a3e 0%, #035c53 100%);
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 74, 62, 0.25);
}

.director-btn-counsel:hover {
  background: linear-gradient(135deg, #00382f 0%, #004a3e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 74, 62, 0.35);
}

/* Executive Letter Body */
.executive-letter-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(0, 74, 62, 0.1);
  padding: clamp(28px, 4.5vw, 54px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.letter-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fc9b09;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.letter-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #00332a;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.executive-quote-box {
  background: linear-gradient(135deg, rgba(0, 74, 62, 0.05) 0%, rgba(3, 152, 158, 0.05) 100%);
  border-left: 5px solid #004a3e;
  border-radius: 0 16px 16px 0;
  padding: 22px 28px;
  margin-bottom: 30px;
  position: relative;
}

.executive-quote-box i {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 38px;
  color: rgba(0, 74, 62, 0.1);
}

.executive-quote-text {
  font-size: 17.5px;
  font-weight: 600;
  color: #00332a;
  line-height: 1.65;
  font-style: italic;
}

.letter-body-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 36px;
}

/* Leadership Pillars Grid */
.leadership-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.pillar-box {
  background: #f8faf9;
  border: 1px solid rgba(0, 74, 62, 0.12);
  border-radius: 14px;
  padding: 20px 18px;
  transition: all 0.25s ease;
}

.pillar-box:hover {
  background: #ffffff;
  border-color: #fc9b09;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.pillar-box i {
  font-size: 24px;
  color: #004a3e;
  margin-bottom: 12px;
  display: inline-block;
}

.pillar-box h5 {
  font-size: 15px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
}

.pillar-box p {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Formal Signature Block */
.executive-signature-block {
  border-top: 1.5px solid rgba(0, 74, 62, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.signature-details h5 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 4px;
}

.signature-details p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.signature-seal {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 74, 62, 0.06);
  border: 1px solid rgba(0, 74, 62, 0.15);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 800;
  color: #004a3e;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive adjustments for dedicated pages */
@media (max-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-image-wrap img {
    height: 380px;
  }
  .about-floating-stat {
    left: 12px;
    bottom: -15px;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-layout-grid {
    grid-template-columns: 1fr;
  }
  .director-sticky-sidebar {
    position: static;
  }
  .leadership-pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-highlights-pills {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .page-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-cta-actions {
    width: 100%;
  }
  .page-cta-btn-primary,
  .page-cta-btn-secondary {
    width: 100%;
  }
}

/* =============================================================
   COMPREHENSIVE SUB-PAGES & SEO UI SYSTEM (KAVYA GLOBAL)
   ============================================================= */

/* Universal SEO Keywords Banner */
.seo-keywords-strip {
  background: #f1f7f5;
  border-bottom: 1px solid rgba(0, 74, 62, 0.1);
  padding: 12px 20px;
}
.seo-keywords-strip .page-inner-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-tag-title {
  font-size: 12px;
  font-weight: 800;
  color: #004a3e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seo-kw-badge {
  background: #ffffff;
  color: #004a3e;
  border: 1px solid rgba(0, 74, 62, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.page-hero-tag-badge {
  display: inline-block;
  background: rgba(252, 155, 9, 0.2);
  color: #fc9b09;
  border: 1px solid rgba(252, 155, 9, 0.4);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-highlights-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-chip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-chip i {
  color: #fc9b09;
}

/* Universal Page CTA Strip */
.page-cta-strip-pro {
  padding: 60px 20px;
  background: #ffffff;
}
.cta-inner-card-pro {
  background: linear-gradient(135deg, #002e26 0%, #004a3e 60%, #006051 100%);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 20px 50px rgba(0, 40, 30, 0.2);
  border: 1px solid rgba(252, 155, 9, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-inner-card-pro::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(252, 155, 9, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-pill-label {
  display: inline-block;
  background: rgba(252, 155, 9, 0.2);
  color: #fc9b09;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.cta-main-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.cta-sub-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}
.cta-actions-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}
.btn-cta-gold {
  background: linear-gradient(135deg, #fc9b09 0%, #f57c00 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(252, 155, 9, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(252, 155, 9, 0.5);
  color: #ffffff;
}
.btn-cta-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}
.btn-cta-whatsapp:hover {
  transform: translateY(-2px);
  background: #20ba5a;
  color: #ffffff;
}

/* Destinations Overview Cards Grid */
.destinations-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.destination-pro-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.destination-pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 40, 30, 0.1);
  border-color: rgba(0, 74, 62, 0.25);
}
.dest-card-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
}
.dest-card-tag {
  display: inline-block;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.dest-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 12px;
  line-height: 1.3;
}
.dest-card-title a {
  color: #00332a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dest-card-title a:hover {
  color: #fc9b09;
}
.dest-card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.dest-card-data-strip {
  background: #f8faf9;
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 74, 62, 0.06);
}
.dest-data-point {
  display: flex;
  flex-direction: column;
}
.dest-data-point .lbl {
  font-size: 11px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
}
.dest-data-point .val {
  font-size: 12.5px;
  font-weight: 800;
  color: #004a3e;
  margin-top: 2px;
}
.dest-card-footer {
  margin-top: auto;
}
.btn-dest-explore {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #f1f7f5;
  color: #004a3e;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-dest-explore:hover {
  background: #004a3e;
  color: #ffffff;
}

/* Destination Detail Page Layout */
.destination-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: flex-start;
}
.destination-main-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.dest-overview-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
}
.dest-section-title {
  font-size: 24px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dest-overview-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
.dest-content-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
}
.dest-block-title {
  font-size: 22px;
  font-weight: 800;
  color: #004a3e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fc9b09;
}
.grid-3-intakes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.intake-card {
  background: #f8faf9;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(0, 74, 62, 0.08);
}
.intake-season {
  font-size: 12px;
  font-weight: 800;
  color: #fc9b09;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.intake-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 8px;
}
.intake-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.checklist-grid-pro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.chk-item {
  background: #f8faf9;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14.5px;
  color: #333;
  line-height: 1.6;
  border-left: 4px solid #004a3e;
}
.chk-item i {
  color: #28a745;
  margin-right: 8px;
  font-size: 16px;
}
.styled-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.styled-content-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.styled-content-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #fc9b09;
  font-weight: 900;
  font-size: 16px;
}

/* Sidebar Inquiry Card */
.destination-sidebar-inquiry {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 2px solid #004a3e;
  box-shadow: 0 14px 40px rgba(0, 40, 30, 0.08);
}
.sidebar-inquiry-header {
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-inquiry-header i {
  font-size: 32px;
  color: #fc9b09;
  margin-bottom: 8px;
}
.sidebar-inquiry-header h4 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
}
.sidebar-inquiry-header p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}
.form-group-sm {
  margin-bottom: 12px;
}
.form-group-sm input,
.form-group-sm select {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #d4deda;
  padding: 0 14px;
  font-size: 13.5px;
  color: #333;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-group-sm input:focus,
.form-group-sm select:focus {
  border-color: #004a3e;
  box-shadow: 0 0 0 3px rgba(0, 74, 62, 0.1);
}
.btn-sidebar-submit {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #004a3e 0%, #006051 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 13.5px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  margin-top: 14px;
}
.btn-sidebar-submit:hover {
  background: #00332a;
}
.sidebar-trust-box {
  background: #f8faf9;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 74, 62, 0.08);
  margin-top: 24px;
}
.sidebar-trust-box h4 {
  font-size: 16px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 14px;
}
.sidebar-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.sidebar-trust-list li {
  font-size: 13px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-trust-list li i {
  color: #fc9b09;
}
.sidebar-helpline {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 74, 62, 0.1);
}
.sidebar-helpline span {
  font-size: 12px;
  font-weight: 700;
  color: #666;
}
.sidebar-helpline a {
  font-size: 14px;
  font-weight: 800;
  color: #004a3e;
  text-decoration: none;
}

/* Data Tables */
.pro-table-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
}
.table-section-heading {
  font-size: 20px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-responsive-container {
  overflow-x: auto;
}
.pro-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pro-data-table th {
  background: #f1f7f5;
  color: #004a3e;
  font-weight: 800;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 2px solid #004a3e;
  white-space: nowrap;
}
.pro-data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eef3f1;
  color: #444;
}
.pro-data-table tr:hover td {
  background: #fafcfb;
}
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11.5px;
  font-weight: 800;
}
.status-badge.green {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}
.status-badge.yellow {
  background: rgba(252, 155, 9, 0.15);
  color: #f57c00;
}

/* Services Grid & Details */
.services-full-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.pro-service-detail-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.pro-service-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 74, 62, 0.25);
  box-shadow: 0 18px 40px rgba(0, 40, 30, 0.1);
}
.pro-serv-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pro-service-detail-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 12px;
}
.pro-service-detail-card h3 a {
  color: #00332a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pro-service-detail-card h3 a:hover {
  color: #fc9b09;
}
.pro-service-detail-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.pro-serv-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.pro-serv-features-list li {
  font-size: 13px;
  color: #444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pro-serv-features-list li i {
  color: #28a745;
}
.btn-service-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 800;
  color: #004a3e;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-service-view:hover {
  color: #fc9b09;
  transform: translateX(4px);
}

/* Service Detail 2-Column Layout */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}
.service-detail-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-intro-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
}
.serv-page-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-main-heading {
  font-size: 26px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 16px;
}
.service-intro-box p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
.service-features-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
}
.service-features-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: #004a3e;
  margin-bottom: 20px;
}
.service-detailed-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detailed-checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.service-detailed-checklist li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #28a745;
  font-size: 18px;
}
.service-cta-inner {
  background: #f1f7f5;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 74, 62, 0.15);
}
.service-cta-inner h4 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 8px;
}
.service-cta-inner p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}
.sidebar-services-nav {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
}
.sidebar-services-nav h4 {
  font-size: 17px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fc9b09;
}
.sidebar-services-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-services-nav ul li {
  margin-bottom: 8px;
}
.sidebar-services-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sidebar-services-nav ul li a:hover,
.sidebar-services-nav ul li a.active {
  background: #004a3e;
  color: #ffffff;
}
.sidebar-services-nav ul li a i {
  font-size: 11px;
}
.sidebar-contact-card {
  background: #f8faf9;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 74, 62, 0.08);
  margin-top: 24px;
  text-align: center;
}
.btn-sidebar-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 14px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

/* Process Flow Block */
.process-flow-block {
  background: #f8faf9;
  border-radius: 24px;
  padding: 48px 36px;
  margin-top: 50px;
  border: 1px solid rgba(0, 74, 62, 0.08);
}
.process-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.proc-step-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 18px;
  border: 1px solid rgba(0, 74, 62, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  text-align: center;
}
.proc-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fc9b09;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}
.proc-step-item h4 {
  font-size: 15px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 8px;
}
.proc-step-item p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Test Prep Options Grid */
.testprep-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.test-course-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  border: 2px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 12px 36px rgba(0, 40, 30, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.test-course-card:hover {
  transform: translateY(-6px);
  border-color: #004a3e;
  box-shadow: 0 18px 45px rgba(0, 40, 30, 0.1);
}
.test-badge-type {
  display: inline-block;
  background: rgba(252, 155, 9, 0.15);
  color: #f57c00;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.test-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.test-course-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 12px;
}
.test-desc {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.test-feature-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex-grow: 1;
}
.test-feature-points li {
  font-size: 13.5px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.test-feature-points li i {
  color: #28a745;
}
.test-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-test-primary {
  flex: 1;
  background: #004a3e;
  color: #ffffff;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
}
.btn-test-primary:hover {
  background: #00332a;
  color: #ffffff;
}
.btn-test-mock {
  flex: 1;
  background: #fc9b09;
  color: #ffffff;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.btn-test-mock:hover {
  background: #e68a00;
  color: #ffffff;
}

/* Test Prep Details */
.testprep-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}
.testprep-main-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 14px;
}
.testprep-main-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}
.module-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.module-card {
  background: #f8faf9;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 74, 62, 0.08);
}
.module-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #004a3e;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.module-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}
.batch-schedule-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
}
.batch-schedule-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.batch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.batch-slot {
  background: #f8faf9;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 74, 62, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.slot-time {
  font-size: 12px;
  font-weight: 800;
  color: #fc9b09;
}
.slot-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #00332a;
}
.slot-status.available {
  font-size: 11.5px;
  font-weight: 700;
  color: #28a745;
}
.testprep-inquiry-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 2px solid #004a3e;
  box-shadow: 0 14px 40px rgba(0, 40, 30, 0.08);
  text-align: center;
}
.testprep-inquiry-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 8px;
}
.testprep-inquiry-box p {
  font-size: 13px;
  color: #666;
  margin-bottom: 18px;
}

/* Mock Test Page */
.mock-test-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.mock-test-info-col h2 {
  font-size: 28px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 16px;
}
.mock-test-info-col p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
}
.mock-perks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mock-perk-item {
  display: flex;
  gap: 16px;
  background: #f8faf9;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 74, 62, 0.08);
}
.mock-perk-item i {
  font-size: 26px;
  color: #004a3e;
  margin-top: 2px;
}
.mock-perk-item h4 {
  font-size: 16px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 4px;
}
.mock-perk-item p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.mock-registration-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  border: 2px solid #004a3e;
  box-shadow: 0 16px 45px rgba(0, 40, 30, 0.08);
}
.mock-registration-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-registration-card p {
  font-size: 13.5px;
  color: #666;
  margin-bottom: 24px;
}
.form-row-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group-pro {
  margin-bottom: 18px;
}
.form-group-pro label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #00332a;
  margin-bottom: 6px;
}
.form-group-pro input,
.form-group-pro select,
.form-group-pro textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d4deda;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.2s ease;
}
.form-group-pro input:focus,
.form-group-pro select:focus,
.form-group-pro textarea:focus {
  border-color: #004a3e;
  box-shadow: 0 0 0 3px rgba(0, 74, 62, 0.1);
}
.btn-submit-mock-test,
.btn-submit-contact-form {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #fc9b09 0%, #f57c00 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(252, 155, 9, 0.3);
}
.btn-submit-mock-test:hover,
.btn-submit-contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(252, 155, 9, 0.4);
}
.form-disclaimer {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 14px;
}

/* Contact Page Layout */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}
.contact-title {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: #00332a;
  margin-bottom: 14px;
  line-height: 1.2;
}
.contact-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
}
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-card {
  display: flex;
  gap: 18px;
  background: #f8faf9;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 74, 62, 0.08);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 74, 62, 0.1);
  color: #004a3e;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-card h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 4px;
}
.contact-detail-card p {
  font-size: 14px;
  color: #444;
  margin: 0;
}
.contact-detail-card p a {
  color: #004a3e;
  text-decoration: none;
  font-weight: 700;
}
.contact-subtext {
  font-size: 12px;
  color: #777;
  display: block;
  margin-top: 2px;
}
.office-hours-banner {
  background: #f1f7f5;
  border-radius: 12px;
  padding: 16px;
  font-size: 13.5px;
  color: #004a3e;
  border-left: 4px solid #004a3e;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 16px 45px rgba(0, 40, 30, 0.06);
}
.contact-form-wrapper h3 {
  font-size: 22px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-wrapper p {
  font-size: 13.5px;
  color: #666;
  margin-bottom: 24px;
}

/* FAQ Accordion */
.faq-list-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-accordion-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-accordion-item.active {
  border-color: #004a3e;
  box-shadow: 0 6px 20px rgba(0, 40, 30, 0.06);
}
.faq-accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-q-text {
  font-size: 16px;
  font-weight: 800;
  color: #00332a;
}
.faq-chevron {
  color: #004a3e;
  transition: transform 0.25s ease;
  font-size: 14px;
}
.faq-accordion-item.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-accordion-body {
  display: none;
  padding: 0 24px 22px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  border-top: 1px solid rgba(0, 74, 62, 0.06);
  padding-top: 16px;
}
.faq-accordion-item.active .faq-accordion-body {
  display: block;
}

/* Accreditations Full Grid */
.accreditations-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.accred-pro-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
}
.accred-badge-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
}
.accred-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(252, 155, 9, 0.15);
  color: #fc9b09;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.accred-pro-feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
  line-height: 1.3;
}
.accred-code {
  font-size: 12.5px;
  color: #fc9b09;
  font-weight: 700;
  margin-bottom: 12px;
}
.accred-body {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.accred-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accred-check-list li {
  font-size: 12.5px;
  color: #444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.accred-check-list li i {
  color: #28a745;
}
.legal-assurance-card {
  margin-top: 40px;
  background: #f1f7f5;
  border-radius: 20px;
  padding: 28px 36px;
  border-left: 6px solid #004a3e;
  display: flex;
  align-items: center;
  gap: 24px;
}
.legal-assurance-icon {
  font-size: 38px;
  color: #004a3e;
  flex-shrink: 0;
}
.legal-assurance-text h4 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
}
.legal-assurance-text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* Visa Success Page */
.visa-stats-strip {
  background: #00332a;
  padding: 30px 20px;
  border-bottom: 3px solid #fc9b09;
}
.visa-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
.visa-stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.visa-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fc9b09;
}
.visa-stat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.visa-cards-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 992px) {
  .visa-cards-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .visa-cards-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.visa-story-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 62, 0.12);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visa-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 74, 62, 0.12);
  border-color: rgba(0, 74, 62, 0.25);
}

.visa-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #00221c;
  cursor: pointer;
}

.visa-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
  display: block;
}

.visa-card-img-wrap:hover .visa-story-img {
  transform: scale(1.04);
}

.visa-story-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 44, 36, 0.88);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.visa-card-img-wrap:hover .visa-story-zoom {
  background: #fc9b09;
  color: #00221c;
  transform: translateY(-2px);
}

.visa-card-banner {
  background: #f4f8f7;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 74, 62, 0.08);
}

.visa-destination-tag {
  font-size: 12.5px;
  font-weight: 800;
  color: #004a3e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.visa-intake-tag {
  background: #fc9b09;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 8px;
  letter-spacing: 0.3px;
}

.visa-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.visa-student-name {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 8px;
}

.visa-student-course,
.visa-student-uni {
  font-size: 13.5px;
  color: #445954;
  margin-bottom: 6px;
  line-height: 1.45;
}

.visa-scholarship-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(40, 167, 69, 0.12);
  color: #1a7e37;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 12px;
  margin: 10px 0 14px 0;
  width: fit-content;
}

.visa-approval-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #edf3f1;
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
}

.btn-view-visa-modal {
  width: 100%;
  margin-top: 14px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  border: 1.5px solid rgba(0, 74, 62, 0.2);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 12.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-view-visa-modal:hover {
  background: #004a3e;
  color: #ffffff;
  border-color: #004a3e;
}
.why-visa-success-card {
  margin-top: 50px;
  background: #f8faf9;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(0, 74, 62, 0.08);
}
.why-visa-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.why-visa-header i {
  font-size: 28px;
  color: #fc9b09;
}
.why-visa-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #00332a;
  margin: 0;
}
.why-visa-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.reason-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 74, 62, 0.08);
}
.reason-num {
  font-size: 22px;
  font-weight: 900;
  color: #004a3e;
  margin-bottom: 8px;
}
.reason-item h4 {
  font-size: 16px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 8px;
}
.reason-item p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

/* Legal Cards */
.legal-content-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 74, 62, 0.1);
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.04);
}
.legal-content-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #004a3e;
  margin: 24px 0 10px 0;
}
.legal-content-card h3:first-child {
  margin-top: 0;
}
.legal-content-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Responsive Media Queries for Sub-Pages */
@media (max-width: 991px) {
  .destination-detail-layout,
  .service-detail-grid,
  .testprep-detail-layout,
  .mock-test-page-grid,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }
  .cta-inner-card-pro {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions-group {
    width: 100%;
  }
  .btn-cta-gold,
  .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .form-row-pro {
    grid-template-columns: 1fr;
  }
  .dest-card-data-strip {
    grid-template-columns: 1fr;
  }
  .legal-assurance-card {
    flex-direction: column;
    text-align: center;
  }
}


/* =============================================================
   WHATSAPP VIDEO COUNSELING — HOME BANNER
   ============================================================= */
.wvc-banner-section {
  position: relative;
  background: linear-gradient(135deg, #00332a 0%, #004a3e 55%, #006050 100%);
  padding: 52px 0;
  overflow: hidden;
}

.wvc-banner-bg-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,211,102,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.wvc-banner-section::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(252,155,9,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.wvc-banner-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.wvc-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.wvc-banner-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
}

.wvc-banner-live-ring {
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  border: 2.5px solid rgba(37,211,102,0.5);
  animation: wvcRingPulse 2s ease-in-out infinite;
}

@keyframes wvcRingPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.wvc-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.35);
  color: #4ade80;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.wvc-dot-live {
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  animation: liveDotBlink 1.2s ease-in-out infinite;
}

@keyframes liveDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.wvc-banner-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.wvc-banner-title span {
  color: #25d366;
}

.wvc-banner-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 20px;
}

.wvc-banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.wvc-banner-features span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 7px;
}

.wvc-banner-features i {
  color: #25d366;
  font-size: 14px;
}

.wvc-banner-right {
  flex-shrink: 0;
}

.wvc-banner-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px 28px 22px;
  min-width: 290px;
  max-width: 320px;
  text-align: center;
}

.wvc-banner-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.wvc-banner-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.wvc-banner-card-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  line-height: 1.55;
}

.wvc-btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  letter-spacing: 0.3px;
}

.wvc-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}

.wvc-btn-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  margin-bottom: 14px;
  transition: all 0.2s ease;
}

.wvc-btn-chat:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  color: #ffffff;
}

.wvc-banner-card-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.wvc-banner-card-note i {
  color: #fc9b09;
}

@media (max-width: 900px) {
  .wvc-banner-inner {
    grid-template-columns: 1fr;
  }
  .wvc-banner-card {
    max-width: 100%;
    min-width: unset;
  }
  .wvc-banner-left {
    flex-direction: column;
    gap: 18px;
  }
}

/* =============================================================
   COUNSELING MODAL — UPGRADED WITH SESSION TYPE PICKER
   ============================================================= */
.counseling-modal-wide {
  max-width: 720px !important;
  width: 92vw !important;
}

.counseling-header-left {
  flex: 1;
}

.counseling-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.counseling-live-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: liveDotBlink 1.2s ease-in-out infinite;
}

.counseling-type-row {
  display: flex;
  gap: 10px;
  padding: 0 24px 18px;
  flex-wrap: wrap;
}

.counseling-type-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 2px solid #e0e9e7;
  border-radius: 12px;
  background: #f8faf9;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  text-align: left;
}

.counseling-type-btn:hover {
  border-color: #004a3e;
  background: #eef6f4;
}

.counseling-type-btn.active {
  border-color: #25d366;
  background: rgba(37,211,102,0.06);
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
}

.counseling-type-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #ffffff;
  flex-shrink: 0;
}

.counseling-type-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.counseling-type-info strong {
  font-size: 13px;
  font-weight: 800;
  color: #00332a;
}

.counseling-type-info small {
  font-size: 11px;
  color: #779188;
  font-weight: 600;
}

.counseling-type-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background: linear-gradient(135deg, #fc9b09, #e08600);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.whatsapp-video-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(18,140,126,0.06));
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 12px;
  padding: 14px 20px;
  margin: 0 24px 18px;
  flex-wrap: wrap;
}

.wvc-icon-wrap {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #fff;
  flex-shrink: 0;
}

.wvc-text {
  flex: 1;
  font-size: 13px;
  color: #334;
  line-height: 1.5;
}

.wvc-text strong {
  color: #00332a;
}

.wvc-direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.wvc-direct-btn:hover {
  background: #1ebe5a;
  color: #ffffff;
}

.btn-submit-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4) !important;
}

.btn-submit-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5a 0%, #0d7a6e 100%) !important;
  box-shadow: 0 12px 32px rgba(37,211,102,0.55) !important;
}

@media (max-width: 640px) {
  .counseling-type-row {
    flex-direction: column;
    padding: 0 16px 14px;
  }
  .wvc-banner-section {
    padding: 36px 0;
  }
  .whatsapp-video-callout {
    margin: 0 16px 14px;
  }
}

/* =============================================================
   PARTNER WITH US — PAGE & HOME CTA STYLES
   ============================================================= */

/* Home Page Partner CTA Strip */
.home-partner-cta-strip {
  padding: 48px 0;
  background: #ffffff;
}

.home-partner-cta-card {
  background: linear-gradient(135deg, #00332a 0%, #004a3e 70%, #006051 100%);
  border-radius: 20px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 51, 42, 0.16);
}

.home-partner-cta-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(252, 155, 9, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.home-partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(252, 155, 9, 0.18);
  border: 1px solid rgba(252, 155, 9, 0.4);
  color: #fc9b09;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.home-partner-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.home-partner-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 18px;
}

.home-partner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.home-partner-badges span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-partner-badges i {
  color: #25d366;
}

.home-partner-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.btn-home-partner-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #fc9b09 0%, #e08600 100%);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(252, 155, 9, 0.35);
  text-align: center;
}

.btn-home-partner-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(252, 155, 9, 0.5);
  color: #ffffff;
}

.btn-home-partner-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-home-partner-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

/* Partner With Us Page — Pillars */
.partner-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.partner-pillar-card {
  background: #ffffff;
  border: 1px solid #e7ecea;
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.partner-pillar-card:hover {
  transform: translateY(-5px);
  border-color: #004a3e;
  box-shadow: 0 16px 40px rgba(0, 74, 62, 0.1);
}

.partner-pillar-card .pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.partner-pillar-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.partner-pillar-card p {
  font-size: 14px;
  color: #556b63;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Partnership Tracks Grid */
.partner-tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.partner-track-card {
  background: #ffffff;
  border: 2px solid #e4eae7;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.partner-track-card.highlighted-track {
  border-color: #004a3e;
  box-shadow: 0 12px 36px rgba(0, 74, 62, 0.12);
}

.track-badge-top {
  position: absolute;
  top: -12px;
  right: 28px;
  background: linear-gradient(135deg, #fc9b09, #e08600);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.track-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.track-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0, 74, 62, 0.1), rgba(0, 96, 81, 0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #004a3e;
  flex-shrink: 0;
}

.partner-track-card.highlighted-track .track-icon {
  background: linear-gradient(135deg, #004a3e, #00332a);
  color: #ffffff;
}

.track-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #00332a;
  line-height: 1.25;
  margin-bottom: 4px;
}

.track-header span {
  font-size: 12px;
  color: #779188;
  font-weight: 600;
}

.track-desc {
  font-size: 14px;
  color: #556b63;
  line-height: 1.6;
  margin-bottom: 22px;
}

.track-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.track-features-list li {
  font-size: 13.5px;
  color: #2b4038;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.track-features-list li i {
  color: #25d366;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-track-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #004a3e, #00332a);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-track-action:hover {
  background: linear-gradient(135deg, #006051, #004a3e);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-track-action.secondary {
  background: #f0f4f2;
  color: #004a3e;
  border: 1px solid #d8e2df;
}

.btn-track-action.secondary:hover {
  background: #e2ebe7;
  color: #00332a;
}

/* 4-Step Flow */
.partner-steps-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.partner-step-item {
  background: #ffffff;
  border: 1px solid #e4eae7;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.partner-step-item:hover {
  transform: translateY(-4px);
  border-color: #004a3e;
  box-shadow: 0 12px 30px rgba(0, 74, 62, 0.08);
}

.step-circle-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fc9b09, #e08600);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(252, 155, 9, 0.4);
}

.partner-step-item h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.partner-step-item p {
  font-size: 13px;
  color: #556b63;
  line-height: 1.6;
  margin: 0;
}

.partner-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  padding-top: 40px;
  color: #b5ccc5;
  font-size: 18px;
}

/* Partner Logo Preview Strip */
.partner-logos-preview-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.p-preview-card {
  background: #ffffff;
  border: 1px solid #e8edea;
  border-radius: 12px;
  padding: 12px 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.p-preview-card:hover {
  border-color: #004a3e;
  transform: scale(1.04);
}

.p-preview-card img {
  max-height: 38px;
  max-width: 120px;
  object-fit: contain;
}

/* Partner Form Layout */
.partner-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: flex-start;
}

.corp-contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corp-contact-card {
  background: #ffffff;
  border: 1px solid #e7edea;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s ease;
}

.corp-contact-card:hover {
  border-color: #004a3e;
}

.corp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.corp-contact-card strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #779188;
  margin-bottom: 2px;
}

.corp-contact-card a {
  font-size: 14.5px;
  font-weight: 700;
  color: #00332a;
  text-decoration: none;
}

.corp-contact-card a:hover {
  color: #fc9b09;
}

.corp-contact-card span {
  font-size: 13.5px;
  font-weight: 600;
  color: #2b4038;
}

/* Partner Form Card */
.partner-form-card {
  background: #ffffff;
  border: 1px solid #e2eae6;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
}

.partner-form-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf2ef;
}

.partner-form-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
}

.partner-form-header p {
  font-size: 13.5px;
  color: #667d74;
  margin: 0;
}

.btn-submit-partner-form {
  width: 100%;
  background: linear-gradient(135deg, #004a3e 0%, #00332a 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 74, 62, 0.25);
  margin-top: 8px;
}

.btn-submit-partner-form:hover {
  background: linear-gradient(135deg, #006051 0%, #004a3e 100%);
  box-shadow: 0 12px 30px rgba(0, 74, 62, 0.35);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .home-partner-cta-card {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }
  .home-partner-cta-right {
    min-width: 100%;
  }
  .partner-form-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .partner-steps-flow {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .partner-step-connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .partner-steps-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .partner-step-connector {
    display: none;
  }
  .partner-form-card {
    padding: 24px 20px;
  }
}

/* Counseling Modal Highlights Strip */
.counseling-highlights-strip {
  display: flex;
  justify-content: space-between;
  background: #f0f7f5;
  border-top: 1px solid #d9e8e4;
  border-bottom: 1px solid #d9e8e4;
  padding: 10px 24px;
  gap: 10px;
  flex-wrap: wrap;
}

.c-hl-item {
  font-size: 12px;
  font-weight: 700;
  color: #004a3e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c-hl-item i {
  color: #25d366;
  font-size: 13px;
}

@media (max-width: 640px) {
  .counseling-highlights-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 16px;
  }
}

/* =============================================================
   MOBILE NAVIGATION DRAWER & TOGGLE
   ============================================================= */
.btn-mobile-menu-toggle {
  display: none;
  background: #f0f7f5;
  border: 1px solid #c9ded8;
  color: #004a3e;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-mobile-menu-toggle:hover {
  background: #004a3e;
  color: #ffffff;
}

@media (max-width: 1060px) {
  .btn-mobile-menu-toggle {
    display: flex;
  }
  .header-right-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 20, 16, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999998;
  display: flex;
  justify-content: flex-end;
  animation: drawerFadeIn 0.2s ease;
}

.mobile-drawer-card {
  width: 340px;
  max-width: 88vw;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.25);
  animation: drawerSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

@keyframes drawerFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drawerSlideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.mobile-drawer-header {
  padding: 14px 16px;
  border-bottom: 1px solid #eef3f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafcfb;
  gap: 8px;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mobile-drawer-logo {
  height: 34px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.mobile-drawer-license {
  font-size: 10px;
  font-weight: 800;
  color: #004a3e;
  background: #e6f3f0;
  padding: 3px 6px;
  border-radius: 6px;
  border: 1px solid #bfe0d8;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-close-mobile-drawer {
  background: #f0f4f3;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 15px;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-close-mobile-drawer:hover {
  background: #ffebe9;
  color: #d9381e;
}

.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobile-nav-group-title {
  font-size: 11px;
  font-weight: 800;
  color: #006051;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 14px 0 6px 6px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #e2edea;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #223;
  text-decoration: none;
  transition: all 0.15s ease;
  min-width: 0;
  word-break: break-word;
  line-height: 1.35;
}

.mobile-nav-item i {
  width: 18px;
  text-align: center;
  color: #004a3e;
  font-size: 14px;
  flex-shrink: 0;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  background: #eef6f4;
  color: #004a3e;
  font-weight: 700;
}

.mobile-b2b-pill {
  font-size: 9.5px;
  font-weight: 800;
  background: #fc9b09;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.mobile-dest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 4px 0 8px;
}

.mobile-dest-chip {
  background: #f7faf9;
  border: 1px solid #e0ebe8;
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #2c3e39;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-dest-chip:hover {
  background: #e8f4f0;
  border-color: #004a3e;
  color: #004a3e;
}

.mobile-dest-chip.all-chip {
  grid-column: 1 / -1;
  background: #004a3e;
  color: #ffffff;
  border-color: #004a3e;
  justify-content: center;
}

.mobile-drawer-footer {
  padding: 14px 16px;
  border-top: 1px solid #eef3f1;
  background: #fafcfb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer-counsel-btn {
  width: 100%;
  background: linear-gradient(135deg, #fc9b09 0%, #ff8500 100%);
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(252, 155, 9, 0.35);
}

.mobile-drawer-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-action-wa {
  background: #25d366;
  color: #ffffff;
  font-size: clamp(10.5px, 2.8vw, 12px);
  font-weight: 700;
  padding: 8px 6px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-action-call {
  background: #f0f7f5;
  color: #004a3e;
  border: 1px solid #c8ded7;
  font-size: clamp(10.5px, 2.8vw, 11.5px);
  font-weight: 700;
  padding: 8px 6px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =============================================================
   B2B DIRECT FILE & DOCUMENT DISPATCH PORTAL
   ============================================================= */

/* ─── B2B Dispatch Card (Main Upload Frame) ─── */
.b2b-dispatch-card {
  max-width: 1060px;
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid #d5e5df;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 12px 36px rgba(0, 74, 62, 0.08);
}

.b2b-form-step {
  background: #fbfdfc;
  border: 1px solid #e5edea;
  border-radius: 14px;
  padding: 22px;
}

.b2b-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.b2b-step-badge {
  background: #004a3e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.b2b-step-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #00332a;
}

.b2b-dropzone {
  border: 2px dashed #03989e;
  border-radius: 12px;
  background: #f4faf8;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.b2b-dropzone:hover,
.b2b-dropzone.b2b-drop-active {
  border-color: #fc9b09;
  background: #fffdf5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 155, 9, 0.15);
}

.b2b-drop-icon {
  font-size: 40px;
  color: #03989e;
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.b2b-dropzone:hover .b2b-drop-icon {
  transform: scale(1.1);
  color: #fc9b09;
}

.b2b-drop-title {
  font-size: 15px;
  font-weight: 700;
  color: #00332a;
  margin-bottom: 6px;
}

.b2b-browse-link {
  color: #004a3e;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 800;
}

.b2b-drop-sub {
  font-size: 12px;
  color: #72847f;
}

/* File Review Section */
.b2b-no-files-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f4f8f6;
  border: 1px dashed #cadcd5;
  padding: 16px 20px;
  border-radius: 10px;
  color: #4f6961;
}

.b2b-notice-icon {
  font-size: 26px;
  color: #03989e;
  flex-shrink: 0;
}

.b2b-notice-text strong {
  display: block;
  font-size: 13.5px;
  color: #00332a;
}

.b2b-notice-text span {
  font-size: 12px;
  color: #637c73;
}

.b2b-review-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: #e8f3ef;
  border: 1px solid #cce2d9;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.b2b-summary-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.b2b-count-badge {
  font-size: 12.5px;
  font-weight: 800;
  color: #004a3e;
}

.b2b-size-badge {
  font-size: 12px;
  font-weight: 600;
  color: #4a635b;
}

.b2b-summary-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-add-more-files {
  background: #004a3e;
  color: #ffffff;
  border: none;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-more-files:hover {
  background: #fc9b09;
  color: #00221c;
}

.btn-clear-all-files {
  background: #ffebe9;
  color: #d9381e;
  border: 1px solid #ffccd2;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-clear-all-files:hover {
  background: #d9381e;
  color: #ffffff;
}

.b2b-review-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.b2b-review-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #d8e6e1;
  border-radius: 10px;
  padding: 12px 16px;
  gap: 14px;
  transition: all 0.2s ease;
}

.b2b-review-item:hover {
  border-color: #03989e;
  box-shadow: 0 4px 14px rgba(0, 74, 62, 0.05);
}

.b2b-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.b2b-item-details {
  flex: 1;
  min-width: 0;
}

.b2b-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #00332a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.b2b-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3px;
  flex-wrap: wrap;
}

.b2b-file-size {
  font-size: 11.5px;
  color: #556c64;
  font-weight: 600;
}

.b2b-file-type {
  font-size: 11px;
  color: #004a3e;
  background: #e9f2ef;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.b2b-status-verified {
  font-size: 11px;
  color: #0b8043;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-remove-b2b-file {
  background: #fff1f0;
  color: #d9381e;
  border: 1px solid #ffccc7;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-remove-b2b-file:hover {
  background: #d9381e;
  color: #ffffff;
}

.b2b-review-foot-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #004a3e;
  background: #eef7f4;
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid #004a3e;
}

.btn-b2b-dispatch-submit {
  background: linear-gradient(135deg, #004a3e 0%, #00221c 100%);
  color: #ffffff;
  border: 2px solid #fc9b09;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 74, 62, 0.25);
  transition: all 0.25s ease;
  width: 100%;
  max-width: 580px;
}

.btn-b2b-dispatch-submit:hover {
  background: linear-gradient(135deg, #fc9b09 0%, #e08600 100%);
  color: #00221c;
  border-color: #00221c;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(252, 155, 9, 0.35);
}

.btn-b2b-dispatch-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.b2b-privacy-footnote {
  font-size: 12px;
  color: #637c73;
  margin-top: 14px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .b2b-dispatch-card {
    padding: 18px 14px;
  }
  .b2b-form-step {
    padding: 14px 10px;
  }
  .b2b-review-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .b2b-item-actions {
    width: 100%;
    margin-top: 6px;
  }
  .btn-remove-b2b-file {
    width: 100%;
    justify-content: center;
  }
  .btn-b2b-dispatch-submit {
    font-size: 13.5px;
    padding: 14px 20px;
  }
}

.b2b-subdomain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(252, 155, 9, 0.4);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 14px;
}

.b2b-subdomain-pill code {
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 7px;
  border-radius: 4px;
  color: #fc9b09;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.b2b-header-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #004a3e;
  color: #fc9b09;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.6px;
  border: 1px solid rgba(252, 155, 9, 0.4);
  margin-left: 6px;
}

.btn-switch-main-site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f7f5;
  color: #004a3e;
  border: 1.5px solid #004a3e;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-switch-main-site:hover {
  background: #004a3e;
  color: #ffffff;
}

/* Quick Nav Chips in Hero */
.b2b-quicknav-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.b2b-quicknav-chip:hover,
.b2b-quicknav-chip.active {
  background: #fc9b09;
  border-color: #fc9b09;
  color: #00221c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 155, 9, 0.3);
}

/* B2B Multi-Column Responsive Grid Architecture */
.b2b-track-chooser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.b2b-stats-quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.b2b-stat-card {
  background: #ffffff;
  border: 1px solid #dde9e6;
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b2b-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 74, 62, 0.08);
}

.b2b-stat-num {
  font-size: 34px;
  font-weight: 900;
  color: #004a3e;
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.b2b-stat-lbl {
  font-size: 12.5px;
  font-weight: 700;
  color: #556965;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

.b2b-benefits-triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.b2b-benefit-card {
  background: #ffffff;
  border: 1px solid #dde9e6;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b2b-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 74, 62, 0.07);
  border-color: #b5d5cc;
}

.b2b-benefit-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, #004a3e, #006051);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 74, 62, 0.2);
}

.b2b-benefit-body {
  flex: 1;
  min-width: 0;
}

.b2b-benefit-body h4 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 800;
  color: #00332a;
  line-height: 1.35;
}

.b2b-benefit-body p {
  margin: 0;
  font-size: 13px;
  color: #556662;
  line-height: 1.6;
}

.b2b-pathways-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.b2b-modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.b2b-modal-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

/* B2B Studio Two-Column Workstation Grid */
.b2b-studio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.b2b-studio-left {
  display: flex;
  flex-direction: column;
}

.b2b-studio-right {
  display: flex;
  flex-direction: column;
}

.b2b-sender-step {
  border-top: 3px solid #004a3e;
}

/* Corporate Recipient Callout Box */
.b2b-recipient-box {
  background: linear-gradient(135deg, #f0f7f5, #e8f2ee);
  border: 1.5px solid #c5dfd6;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.b2b-recip-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 6px;
  padding: 7px 0;
  border-bottom: 1px solid #d3e8e0;
}

.b2b-recip-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.b2b-recip-item:first-child {
  padding-top: 0;
}

.b2b-recip-label {
  color: #5a776e;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.b2b-recip-val {
  color: #004a3e;
  font-weight: 800;
  font-size: 13px;
}

.b2b-recip-sub {
  color: #637871;
  font-size: 12px;
  font-weight: 500;
}

.b2b-recip-zero {
  color: #0b8043;
  font-weight: 800;
  font-size: 11px;
  background: #d4edda;
  padding: 2px 9px;
  border-radius: 20px;
}

/* Real-Time Capacity Progress Bar */
.b2b-capacity-meter-wrap {
  background: #ffffff;
  border: 1px solid #dce8e4;
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 14px;
}

.b2b-capacity-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 12px;
}

.b2b-cap-label {
  color: #00332a;
  font-weight: 600;
}

.b2b-cap-label strong {
  color: #004a3e;
}

.b2b-cap-pct {
  font-size: 12px;
}

.b2b-capacity-bar {
  width: 100%;
  height: 8px;
  background: #eef3f1;
  border-radius: 10px;
  overflow: hidden;
}

.b2b-capacity-fill {
  height: 100%;
  transition: width 0.3s ease, background 0.3s ease;
  border-radius: 10px;
}

.b2b-capacity-alert {
  margin-top: 8px;
  font-size: 11.5px;
  color: #721c24;
  background: #f8d7da;
  padding: 6px 10px;
  border-radius: 6px;
  border-left: 3px solid #dc3545;
}

/* Image Thumbnail in Review Item */
.b2b-item-thumb-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cbe1d9;
  flex-shrink: 0;
  background: #000;
}

.b2b-item-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* B2B Mode Top Bar */
.site-topbar.b2b-mode-topbar {
  background: linear-gradient(90deg, #00332a 0%, #004a3e 100%);
  border-bottom: 2px solid #fc9b09;
}

.b2b-topbar-tag {
  letter-spacing: 0.5px;
  font-size: 11.5px;
}

.topbar-switch-student-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fc9b09;
  color: #00221c;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.topbar-switch-student-btn:hover {
  background: #ffffff;
  color: #004a3e;
}

/* B2B Active Header */
.header-main.header-b2b-active {
  border-bottom: 2px solid rgba(252, 155, 9, 0.4);
}

@media (max-width: 992px) {
  .b2b-studio-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   B2B Partner Portal & Application Flow Styles
   ========================================================================== */
.b2b-track-chooser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 74, 62, 0.3) !important;
}

.header-nav-b2b-link:hover {
  background: #d1ece5 !important;
  color: #00332a !important;
}

@media (max-width: 768px) {
  .b2b-track-chooser-grid,
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* Navbar non-scrollable & zero horizontal overflow enforcement */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Ensure header and all its inner components NEVER display scrollbars */
.header-main,
.header-main *,
.header-inner-container,
.header-nav,
.header-right-actions {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.header-main::-webkit-scrollbar,
.header-main *::-webkit-scrollbar,
.header-inner-container::-webkit-scrollbar,
.header-nav::-webkit-scrollbar,
.header-right-actions::-webkit-scrollbar {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  background: transparent !important;
}

.header-main {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

.header-inner-container {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  width: 100% !important;
  max-width: 1400px !important;
  flex-wrap: nowrap !important;
}

.header-nav {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  white-space: nowrap !important;
  flex-wrap: nowrap !important;
}

.header-right-actions {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  flex-shrink: 0 !important;
}

@media (max-width: 1080px) {
  .header-main.header-b2b-active .header-nav {
    display: none !important;
  }
  .header-main.header-b2b-active {
    justify-content: space-between;
  }
}

.header-main.header-b2b-active {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 14px rgba(0, 74, 62, 0.08) !important;
  border-bottom: 2px solid #fc9b09 !important;
}

.header-main.header-b2b-active .header-nav-link {
  font-weight: 700;
  font-size: 13.5px;
  color: #00332a;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.header-main.header-b2b-active .header-nav-link:hover {
  background: #eaf4f1;
  color: #004a3e;
}

.header-main.header-b2b-active .btn-switch-main-site {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f0f7f5;
  color: #004a3e;
  border: 1.5px solid #004a3e;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-main.header-b2b-active .btn-switch-main-site:hover {
  background: #004a3e;
  color: #ffffff;
}

.header-main.header-b2b-active .btn-b2b-header {
  background: linear-gradient(135deg, #fc9b09 0%, #e08600 100%);
  color: #00221c;
  font-weight: 800;
  border: none;
}

/* Clean B2B Document Dispatch Portal Styles */
.b2b-dispatch-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .b2b-dispatch-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}

.b2b-upload-col,
.b2b-sender-col {
  background: #f8faf9;
  border: 1px solid #dde9e6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 74, 62, 0.04);
}

.b2b-sender-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #00332a;
  margin: 0 0 18px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0ebe7;
}

.b2b-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .b2b-form-row {
    grid-template-columns: 1fr !important;
  }
}

.b2b-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.b2b-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #00332a;
}

.b2b-form-group input,
.b2b-form-group select,
.b2b-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #cce0da;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13.5px;
  background: #ffffff;
  color: #00332a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.b2b-form-group input:focus,
.b2b-form-group select:focus,
.b2b-form-group textarea:focus {
  border-color: #004a3e;
  box-shadow: 0 0 0 3px rgba(0, 74, 62, 0.12);
}

.b2b-format-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 8px;
}

.b2b-format-pills span {
  font-size: 11px;
  font-weight: 700;
  background: #e8f5f1;
  color: #004a3e;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid #c2e5dc;
}

.b2b-limit-notice {
  font-size: 12px;
  color: #6a827b;
  margin-top: 6px;
}

.btn-preview-b2b {
  background: #ffffff;
  color: #004a3e;
  border: 1.5px solid #004a3e;
  padding: 12px 18px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-preview-b2b:hover {
  background: #e8f5f1;
}

.btn-dispatch-b2b {
  background: linear-gradient(135deg, #fc9b09 0%, #e08600 100%);
  color: #00221c;
  border: none;
  padding: 12px 22px;
  border-radius: 25px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(252, 155, 9, 0.35);
  transition: all 0.2s ease;
}

.btn-dispatch-b2b:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(252, 155, 9, 0.45);
}

/* ==========================================================================
   GLOBAL ANTI-OVERLAPPING & MODAL Z-INDEX HIERARCHY SYSTEM
   ========================================================================== */

/* 1. Header & Navigation: Clean stacking context (1000) */
.header-main {
  z-index: 1000 !important;
}

.dropdown-menu-box {
  z-index: 1100 !important;
}

/* 2. Floating Action Widgets: Layered above page content (2000) */
.floating-quick-dock {
  z-index: 2000 !important;
}

/* 3. Off-Canvas Mobile Drawer: Above floating widgets (3000) */
.mobile-drawer-overlay {
  z-index: 3000 !important;
}

/* 4. Full-Screen Modals & Popups: Highest layer (90000) - Never overlapped by header/dock */
.lightbox-overlay,
.counseling-modal-overlay,
.admin-modal-overlay {
  z-index: 90000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding: clamp(10px, 3vw, 24px) !important;
}

.lightbox-overlay:not(.active) {
  display: none !important;
}

/* Ensure modal container cards never clip outside viewport or overlap scrollbars */
.lightbox-container,
.counseling-modal-card,
.admin-dashboard-container {
  max-height: 92vh !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  margin: auto !important;
  position: relative !important;
}

/* Anti-overlapping form grid rules across all screens */
@media (max-width: 768px) {
  .counseling-form-grid,
  .form-grid-2,
  .form-row-pro,
  .b2b-form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .counseling-type-row {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .counseling-type-btn {
    width: 100% !important;
  }

  .counseling-modal-body,
  .counseling-modal-header {
    padding: 20px 18px !important;
  }

  .lightbox-container {
    max-width: 96vw !important;
    border-radius: 16px !important;
  }
}

/* Prevent text input overflow and clipping */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="url"],
input[type="date"],
select,
textarea {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

/* 5. Dropdown Menu Overflow & Collision Protection */
.dropdown-menu-box {
  box-sizing: border-box !important;
}

.nav-dropdown:nth-last-child(-n+2) .dropdown-menu-box {
  left: auto !important;
  right: 0 !important;
}

.dropdown-item-link {
  min-width: 0 !important;
}

.dropdown-item-link > div:not(.dropdown-icon):not(.country-flag-icon) {
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

.dropdown-title,
.dropdown-sub {
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-height: 1.35 !important;
}

/* 6. Responsive Header & Navigation Safeguards */
@media (max-width: 768px) {
  .site-topbar {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .header-main {
    padding: 8px 14px !important;
  }
  .header-logo-img {
    height: 34px !important;
    max-width: 140px !important;
  }
  .btn-primary-header {
    height: 34px !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    gap: 6px !important;
  }
  .btn-mobile-menu-toggle {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 440px) {
  .header-logo-img {
    height: 30px !important;
    max-width: 120px !important;
  }
  .btn-primary-header {
    padding: 6px 10px !important;
    font-size: 11px !important;
  }
  .btn-mobile-menu-toggle {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 380px) {
  .btn-primary-header span {
    display: none !important;
  }
  .btn-primary-header::after {
    content: "Book" !important;
    display: inline !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
  }
  .btn-primary-header {
    padding: 6px 9px !important;
  }
}

/* 7. Mobile Floating Quick Action Icons (Compact Sleek FABs — Won't Cover Screen) */
@media (max-width: 768px) {
  .floating-quick-dock {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    right: 14px !important;
    bottom: calc(74px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 99980 !important;
    gap: 10px !important;
    align-items: flex-end !important;
    pointer-events: auto !important;
    animation: dockFloatIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .floating-dock-pill {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 16px rgba(0, 30, 22, 0.28) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  }

  .floating-dock-pill:active {
    transform: scale(0.9) !important;
  }

  .floating-dock-pill.whatsapp {
    background: #25d366 !important;
  }

  .floating-dock-pill.phone {
    background: #004a3e !important;
  }

  .floating-dock-pill .dock-icon-circle {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    margin: 0 !important;
    box-shadow: none !important;
  }

  .floating-dock-pill.phone .dock-icon-circle {
    font-size: 19px !important;
  }

  /* Hide the wide text banners on mobile screens so they never block cards, paragraphs, or buttons */
  .floating-dock-pill .dock-content {
    display: none !important;
  }
}

@keyframes dockFloatIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* 8. Additional Responsive Grids Safeguards */
@media (max-width: 992px) {
  .test-prep-inner-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 640px) {
  .prep-features-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .about-floating-stat {
    position: static !important;
    margin-top: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 900px) {
  .finder-form-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 600px) {
  .finder-form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 9. Universal Text Wrapping & Horizontal Blowout Prevention */
h1, h2, h3, h4, h5, h6,
p, span, a, li, label, div {
  overflow-wrap: break-word;
}

html, body {
  overflow-x: clip !important;
  max-width: 100vw !important;
}

/* ==========================================================================
   10. MOBILE BOTTOM NAVIGATION DOCK (THUMB-FRIENDLY APP-LIKE UX)
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  /* Reserve space at the bottom of the page so content is never covered */
  body, main {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 74, 62, 0.12);
    box-shadow: 0 -4px 20px rgba(0, 30, 22, 0.08);
    z-index: 99990;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    align-items: center;
    justify-content: space-around;
  }

  .mob-bottom-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #556c66;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 2px;
    transition: color 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-bottom-tab:active {
    transform: scale(0.94);
  }

  .mob-bottom-tab i {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.15s ease;
  }

  .mob-bottom-tab.active {
    color: var(--kgn-primary);
    font-weight: 800;
  }

  .mob-bottom-tab.active i {
    color: var(--kgn-primary);
    transform: translateY(-1px);
  }

  .mob-bottom-tab span {
    white-space: nowrap;
    line-height: 1.1;
  }

  @media (max-width: 360px) {
    .mob-bottom-tab span {
      font-size: 9px;
    }
    .mob-bottom-tab i {
      font-size: 15px;
    }
  }

  .mob-bottom-tab.mob-tab-whatsapp {
    color: #1b7a69;
  }
  .mob-bottom-tab.mob-tab-whatsapp:active {
    color: #25d366;
  }
  .mob-bottom-tab.mob-tab-whatsapp i {
    color: #25d366;
  }
  .mob-bottom-tab.mob-tab-menu.active {
    color: var(--kgn-primary);
  }
  .mob-bottom-tab.mob-tab-menu.active i {
    color: var(--kgn-primary);
  }

  /* Center Elevated Action: Free Counseling CTA */
  .mob-bottom-counsel-btn {
    position: relative;
    overflow: visible;
  }

  .mob-counsel-circle {
    width: 44px;
    height: 44px;
    margin-top: -18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fc9b09 0%, #ff8500 50%, #e07200 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 4px 16px rgba(252, 155, 9, 0.45);
    border: 3px solid #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: mobPulseGold 2.5s infinite;
  }

  @keyframes mobPulseGold {
    0% { box-shadow: 0 0 0 0 rgba(252, 155, 9, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(252, 155, 9, 0); }
    100% { box-shadow: 0 0 0 0 rgba(252, 155, 9, 0); }
  }

  .mob-bottom-counsel-btn:active .mob-counsel-circle {
    transform: scale(0.92);
  }

  .mob-bottom-counsel-btn span {
    font-weight: 800;
    color: #004a3e;
    margin-top: 1px;
  }
}

/* ==========================================================================
   11. QUICK DISCOVER DESTINATION & SERVICE CHIPS STRIP
   ========================================================================== */
.quick-discover-section {
  display: none !important;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 74, 62, 0.08);
  padding: 12px 0 14px;
  position: relative;
  z-index: 15;
}

.quick-discover-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-discover-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.quick-discover-tag {
  font-size: 11.5px;
  font-weight: 800;
  color: #004a3e;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quick-discover-swipe-hint {
  font-size: 11px;
  color: #8c9e99;
  font-weight: 600;
}

@media (min-width: 992px) {
  .quick-discover-swipe-hint {
    display: none;
  }
}

.quick-discover-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 8px;
  scroll-snap-type: x mandatory;
}

.quick-discover-scroll::-webkit-scrollbar {
  display: none;
}

.quick-chip-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: #f4f8f7;
  border: 1.5px solid #d8e8e4;
  font-size: 12.5px;
  font-weight: 700;
  color: #00332a;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 40, 30, 0.03);
  scroll-snap-align: start;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.quick-chip-pill:hover,
.quick-chip-pill:active {
  background: #e6f3f0;
  border-color: #004a3e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 74, 62, 0.1);
  color: #004a3e;
}

.quick-chip-flag {
  font-size: 17px;
  line-height: 1;
}

.quick-chip-flag-img {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 30, 22, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.country-flag-img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  margin-top: 3px;
}

.mobile-dest-flag-img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

.dest-flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.quick-chip-icon {
  font-size: 13px;
  color: #004a3e;
}

.quick-chip-badge {
  font-size: 9px;
  font-weight: 800;
  color: #004a3e;
  background: #e0edea;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.3px;
}

.quick-chip-pill.chip-highlight {
  background: linear-gradient(135deg, rgba(252, 155, 9, 0.12) 0%, rgba(255, 133, 0, 0.18) 100%);
  border-color: #fc9b09;
  color: #00221c;
}

.quick-chip-pill.chip-highlight .quick-chip-icon {
  color: #fc9b09;
}

.quick-chip-pill.chip-highlight .quick-chip-badge {
  background: #fc9b09;
  color: #ffffff;
}

/* ==========================================================================
   12. HERO SLIDER CONTROLS & DOTS INDICATORS
   ========================================================================== */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 30, 22, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  user-select: none;
}

.hero-nav-arrow:hover {
  background: #004a3e;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-nav-prev {
  left: 20px;
}

.hero-nav-next {
  right: 20px;
}

.hero-dots-container {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(0, 20, 15, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot-indicator.active {
  width: 24px;
  border-radius: 10px;
  background: #fc9b09;
  box-shadow: 0 0 10px rgba(252, 155, 9, 0.7);
}

@media (max-width: 600px) {
  .hero-nav-arrow {
    display: none !important; /* Swipe gesture takes over on mobile */
  }
  .hero-dots-container {
    bottom: 10px;
    padding: 4px 10px;
    gap: 6px;
  }
  .hero-dot-indicator {
    width: 6px;
    height: 6px;
  }
  .hero-dot-indicator.active {
    width: 18px;
  }
}

/* ==========================================================================
   13. COMPREHENSIVE MOBILE-FIRST GRIDS & TOUCH ERGONOMICS
   ========================================================================== */

/* 1-Line Stats Counter Bar on Mobile & All Screens (Strict 4-in-a-Row) */
@media (max-width: 768px) {
  .stats-bar-section {
    padding: 24px 10px 24px !important;
  }
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
    align-items: stretch !important;
  }
  .stat-card {
    padding: 12px 4px 10px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(0, 74, 62, 0.08) !important;
    border-top: 3.5px solid var(--kgn-primary) !important;
    background: #ffffff !important;
    box-shadow: 0 3px 10px rgba(0, 30, 22, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .stat-card:nth-child(1) {
    border-top-color: #fc9b09 !important;
  }
  .stat-card:nth-child(1) .stat-icon i {
    color: #fc9b09 !important;
  }
  .stat-card:nth-child(2) {
    border-top-color: #004a3e !important;
  }
  .stat-card:nth-child(2) .stat-icon i {
    color: #004a3e !important;
  }
  .stat-card:nth-child(3) {
    border-top-color: #006051 !important;
  }
  .stat-card:nth-child(3) .stat-icon i {
    color: #006051 !important;
  }
  .stat-card:nth-child(4) {
    border-top-color: #00332a !important;
  }
  .stat-card:nth-child(4) .stat-icon i {
    color: #004a3e !important;
  }
  .stat-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 15px !important;
    margin-bottom: 5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .stat-number {
    font-size: 17px !important;
    font-weight: 900 !important;
    color: #004a3e !important;
    letter-spacing: -0.3px !important;
    line-height: 1.15 !important;
    margin-bottom: 3px !important;
  }
  .stat-label {
    font-size: 8.5px !important;
    letter-spacing: 0.2px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    color: #556c66 !important;
    text-transform: uppercase !important;
    word-break: normal !important;
  }
}

/* Compact Bento Destinations on Mobile (2-Column Visual Catalog) */
@media (max-width: 640px) {
  .destinations-section {
    padding: 36px 16px !important;
  }
  .destinations-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }
  .link-all-destinations {
    font-size: 13px !important;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .bento-card {
    height: 175px !important;
    border-radius: 14px !important;
  }
  .bento-overlay {
    padding: 12px 14px !important;
  }
  .bento-overlay h3 {
    font-size: 14.5px !important;
    line-height: 1.2 !important;
  }
  .bento-top-badges {
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    gap: 4px !important;
  }
  .bento-flag-pill {
    font-size: 10px !important;
    padding: 3px 7px !important;
  }
  .bento-intake-badge {
    display: none !important;
  }
  .bento-arrow-circle {
    width: 28px !important;
    height: 28px !important;
    font-size: 10px !important;
  }
  .bento-card-more {
    height: 175px !important;
    padding: 14px !important;
    border-radius: 14px !important;
    color: #ffffff !important;
  }
  .bento-card-more i {
    font-size: 24px !important;
    margin-bottom: 6px !important;
    color: #fc9b09 !important;
  }
  .bento-card-more h3 {
    font-size: 14px !important;
    margin-bottom: 2px !important;
    color: #ffffff !important;
  }
  .bento-card-more p {
    font-size: 10.5px !important;
    line-height: 1.3 !important;
    color: rgba(255, 255, 255, 0.92) !important;
  }
}

/* Fix All Inner Page Grids on Screens <= 640px */
@media (max-width: 640px) {
  .destinations-cards-grid,
  .services-cards-grid,
  .testprep-options-grid,
  .b2b-tracks-grid,
  .visa-stories-full-grid,
  .accreditations-full-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .destination-pro-card,
  .service-card-modern,
  .test-course-card,
  .b2b-track-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  .page-section {
    padding: 36px 16px !important;
  }

  .page-hero-banner {
    padding: 36px 16px 42px !important;
  }

  .page-hero-title {
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1.25 !important;
  }

  .page-hero-subtitle {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  .director-section {
    padding: 40px 16px !important;
  }

  .director-img-wrapper {
    height: 240px !important;
    border-radius: 16px !important;
  }

  .director-author-info {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .btn-director-action {
    width: 100% !important;
    justify-content: center !important;
    margin-left: 0 !important;
  }
}

/* Touch Active Feedback on All Mobile Tappable Elements */
@media (max-width: 768px) {
  button, 
  .btn-primary-header,
  .btn-cta-gold,
  .btn-cta-whatsapp,
  .btn-dest-explore,
  .quick-chip-pill,
  .mobile-dest-chip,
  .mobile-nav-item,
  .service-card-modern,
  .bento-card {
    -webkit-tap-highlight-color: transparent;
  }

  button:active,
  .btn-primary-header:active,
  .btn-cta-gold:active,
  .btn-cta-whatsapp:active,
  .btn-dest-explore:active {
    transform: scale(0.97) !important;
  }
}

/* ==========================================================================
   12. INNER PAGES BREADCRUMBS, CHIPS & SECTION HEADERS
   ========================================================================== */
.page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s ease;
}
.page-breadcrumb a:hover {
  color: #fc9b09;
}
.page-breadcrumb-separator {
  font-size: 10px;
  opacity: 0.5;
}
.page-breadcrumb .current {
  color: #fc9b09;
  font-weight: 700;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-highlights-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  transition: background 0.2s ease;
}
.hero-chip i {
  color: #fc9b09;
}

.pro-section-header {
  margin-bottom: 36px;
}
.pro-section-header.text-center {
  text-align: center;
}
.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 74, 62, 0.08);
  color: #004a3e;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.pro-section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #00332a;
  line-height: 1.25;
  margin-bottom: 12px;
}
.pro-section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.65;
  color: #556c66;
  max-width: 760px;
  margin: 0 auto;
}

/* ==========================================================================
   13. COMPONENT STYLES: ROADMAPS, SERVICES, SIDEBARS & TEASERS
   ========================================================================== */
.step-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.roadmap-step-card {
  background: #ffffff;
  border: 1px solid rgba(0, 74, 62, 0.12);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 40, 30, 0.04);
}
.step-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #004a3e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.grid-2-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.pro-service-card {
  background: #f8faf9;
  border: 1px solid rgba(0, 74, 62, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
}
.pro-service-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pro-service-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.dest-faq-teaser {
  background: linear-gradient(135deg, #00332a 0%, #004a3e 100%);
  border-radius: 20px;
  padding: 30px;
  color: #ffffff;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0, 40, 30, 0.15);
}
.dest-faq-teaser h4 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dest-faq-teaser p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.destination-sidebar-inquiry {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px;
  border: 2px solid #004a3e;
  box-shadow: 0 12px 36px rgba(0, 40, 30, 0.08);
}
.sidebar-inquiry-header h4 {
  font-size: 17px;
  font-weight: 800;
  color: #00332a;
  margin-bottom: 6px;
}
.sidebar-inquiry-header p {
  font-size: 13px;
  color: #666;
  margin-bottom: 18px;
  line-height: 1.4;
}
.form-group-sm {
  margin-bottom: 12px;
}
.form-group-sm input,
.form-group-sm select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d4deda;
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group-sm input:focus,
.form-group-sm select:focus {
  border-color: #004a3e;
}
.btn-sidebar-submit {
  width: 100%;
  padding: 13px;
  background: #004a3e;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 74, 62, 0.2);
  transition: all 0.2s ease;
}
.btn-sidebar-submit:hover {
  background: #006050;
  transform: translateY(-1px);
}

.service-detail-sidebar,
.testprep-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-muted {
  color: #7b8e8a !important;
}
.map-container-pro {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 40, 30, 0.06);
  border: 1px solid rgba(0, 74, 62, 0.1);
  margin-top: 16px;
}
.map-container-pro iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-alert.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-alert.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}
.pro-serv-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #004a3e;
  color: #ffffff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 14px;
}
.pro-serv-card-btn:hover {
  background: #006050;
  color: #ffffff;
}

/* ==========================================================================
   14. DATA TABLES MOBILE HORIZONTAL SCROLL & TOUCH UX
   ========================================================================== */
.table-responsive-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid #dde9e6;
  margin-top: 18px;
  margin-bottom: 24px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 40, 30, 0.03);
}
.pro-data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

@media (max-width: 768px) {
  .table-responsive-container::before {
    content: '👉 Swipe horizontally to view full table';
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #004a3e;
    padding: 8px 12px;
    background: #eef6f4;
    border-bottom: 1px solid #dde9e6;
  }
  .pro-data-table th,
  .pro-data-table td {
    padding: 10px 12px !important;
    font-size: 12.5px !important;
  }
}

/* ==========================================================================
   15. MOBILE-SPECIFIC ATTENTION & RESPONSIVE POLISH (SCREEN <= 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Prevent iOS zoom on form elements */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Full-width Stacked Inner Page Grids */
  .destination-detail-layout,
  .service-detail-grid,
  .testprep-detail-layout,
  .mock-test-page-grid,
  .contact-page-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .services-full-cards-grid,
  .testprep-options-grid,
  .accreditations-full-grid,
  .visa-cards-showcase-grid,
  .partner-tracks-grid,
  .why-visa-reasons-grid,
  .grid-3-intakes,
  .module-cards-grid,
  .batch-grid,
  .step-roadmap-grid,
  .grid-2-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Compact Native App-like Card Padding */
  .dest-overview-card,
  .dest-content-block,
  .pro-service-detail-card,
  .mock-registration-card,
  .mock-perk-item,
  .contact-detail-card,
  .test-course-card,
  .accred-pro-feature-card,
  .visa-story-card,
  .destination-sidebar-inquiry,
  .roadmap-step-card,
  .pro-service-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  /* Conversion Strip Mobile Polish */
  .page-cta-strip-pro {
    padding: 32px 14px !important;
  }
  .cta-inner-card-pro {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
  .cta-main-heading {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  .cta-sub-description {
    font-size: 13.5px !important;
  }
  .cta-actions-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .btn-cta-gold,
  .btn-cta-whatsapp {
    width: 100% !important;
    justify-content: center !important;
    font-size: 14px !important;
    padding: 13px 18px !important;
  }

  /* FAQ Accordion Mobile Touch Targets */
  .faq-question-btn {
    padding: 16px 14px !important;
  }
  .faq-q-text {
    font-size: 14.5px !important;
    align-items: flex-start !important;
  }
  .faq-answer-panel {
    padding: 0 14px 16px 14px !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  /* Breadcrumb & Hero Tag Badges Wrap on Mobile */
  .page-breadcrumb {
    font-size: 11.5px !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
  }
  .page-breadcrumb .current {
    max-width: 170px !important;
  }
  .hero-highlights-strip {
    gap: 8px !important;
    margin-top: 14px !important;
  }
  .hero-chip {
    padding: 4px 10px !important;
    font-size: 11px !important;
  }

  /* ========================================================================
     HOMEPAGE ACCREDITATIONS BANNER MOBILE OPTIMIZATIONS
     ======================================================================== */
  .accreditations-section-pro {
    padding: 36px 12px !important;
  }
  .accred-banner-container {
    padding: 30px 16px 24px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 40, 30, 0.2) !important;
  }
  .accred-header {
    margin: 0 auto 24px !important;
  }
  .accred-tag-gold {
    font-size: 10px !important;
    padding: 5px 14px !important;
  }
  .accred-main-title {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    line-height: 1.25 !important;
    margin: 12px 0 10px !important;
  }
  .accred-sub-desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  .accred-grid-pro {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 24px !important;
  }
  .accred-card-pro {
    padding: 26px 18px 20px !important;
    border-radius: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .accred-seal-top {
    font-size: 10px !important;
    padding: 4px 12px !important;
    top: -12px !important;
  }
  .accred-icon-ring {
    width: 54px !important;
    height: 54px !important;
    font-size: 22px !important;
    margin-bottom: 12px !important;
  }
  .accred-card-title {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }
  .accred-card-sub {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
  }
  .accred-card-footer {
    padding-top: 12px !important;
    font-size: 11px !important;
  }
  .accred-trust-strip {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 16px 14px !important;
    border-radius: 16px !important;
  }
  .trust-strip-divider {
    display: none !important;
  }
  .trust-strip-item {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }
  .trust-strip-item i {
    font-size: 20px !important;
  }
  .trust-strip-item strong {
    font-size: 13px !important;
  }
  .trust-strip-item span {
    font-size: 11px !important;
  }

  /* ========================================================================
     HOMEPAGE TEST PREP & MOCK BOOKING MOBILE OPTIMIZATIONS
     ======================================================================== */
  .test-prep-section {
    padding: 36px 0 !important;
  }
  .test-prep-inner-grid {
    padding: 20px 14px 36px !important;
    gap: 24px !important;
  }
  .mock-form-dark {
    padding: 24px 16px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }
  .mock-form-header h3 {
    font-size: 18px !important;
  }

  /* ========================================================================
     HOMEPAGE TESTIMONIALS & B2B BANNER MOBILE OPTIMIZATIONS
     ======================================================================== */
  .testimonials-section {
    padding: 36px 14px !important;
  }
  .google-review-card {
    width: 285px !important;
    padding: 18px 16px !important;
    border-radius: 16px !important;
  }
  .review-text {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }
  .home-partner-cta-strip {
    padding: 24px 14px !important;
  }
  .home-partner-cta-card {
    padding: 26px 16px !important;
    border-radius: 18px !important;
    gap: 18px !important;
  }
  .home-partner-title {
    font-size: 19px !important;
    line-height: 1.25 !important;
  }
  .home-partner-desc {
    font-size: 13px !important;
  }
  .home-partner-cta-right {
    min-width: 100% !important;
    width: 100% !important;
  }
  .btn-home-partner-primary,
  .btn-home-partner-sub {
    width: 100% !important;
    justify-content: center !important;
    font-size: 13.5px !important;
    padding: 12px 18px !important;
  }

  /* ========================================================================
     B2B PORTAL & PARTNER SECTIONS MOBILE OPTIMIZATIONS
     ======================================================================== */
  .b2b-track-chooser-grid,
  .b2b-pathways-dual-grid,
  .b2b-benefits-triple-grid,
  .b2b-modal-form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .b2b-benefit-card {
    padding: 18px 16px !important;
    gap: 14px !important;
    border-radius: 14px !important;
  }
  .b2b-benefit-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 17px !important;
  }
  .b2b-benefit-body h4 {
    font-size: 15px !important;
    line-height: 1.35 !important;
    margin-bottom: 5px !important;
  }
  .b2b-benefit-body p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
  .b2b-stats-quad-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .b2b-stat-card {
    padding: 16px 10px !important;
    border-radius: 12px !important;
  }
  .b2b-stat-num {
    font-size: 26px !important;
    margin-bottom: 4px !important;
  }
  .b2b-stat-lbl {
    font-size: 11px !important;
  }
  .b2b-modal-dest-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  #admin-create-partner-form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* ========================================================================
     UNIFIED MOBILE SECTION SPACING (HARMONIZED 36PX RHYTHM ON ALL MOBILE DEVICES)
     ======================================================================== */
  .director-section,
  .services-section,
  .destinations-section,
  .visa-gallery-section,
  .test-prep-section,
  .accreditations-section-pro,
  .testimonials-section,
  .faq-section,
  .page-section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
  }

  /* Transition and Ribbon Strips on Mobile */
  .stats-bar-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }

  .partners-marquee-section {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
  }

  .home-partner-cta-strip {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }

  .footer-dark-section {
    padding-top: 38px !important;
    padding-bottom: 24px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }

  .page-hero-banner {
    padding-top: 32px !important;
    padding-bottom: 36px !important;
    margin: 0 !important;
  }

  /* Uniform Inner Container Gutters on Mobile */
  .site-container,
  .test-prep-inner-grid,
  .page-inner-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Consistent Section Header Margins on Mobile */
  .section-header-center,
  .destinations-header-row,
  .accred-header,
  .pro-section-header {
    margin-bottom: 20px !important;
  }

  .section-tag-pill,
  .section-tag-center {
    margin-bottom: 8px !important;
  }

  .section-title-center {
    font-size: clamp(22px, 6vw, 28px) !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }

  .section-desc-center {
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin: 0 auto 16px !important;
  }
}

/* ==========================================================================
   TABLET B2B GRID (769PX TO 992PX ONLY — WON'T OVERRIDE MOBILE)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 992px) {
  .b2b-stats-quad-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .b2b-benefits-triple-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}

/* ==========================================================================
   EXTRA COMPACT SMARTPHONES (MAX-WIDTH: 480PX)
   ========================================================================== */
@media (max-width: 480px) {
  .b2b-stats-quad-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .b2b-modal-dest-grid {
    grid-template-columns: 1fr !important;
  }
  .modal-box-pro {
    padding: 20px 14px !important;
    border-radius: 18px !important;
  }
  .page-hero-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }
  .page-hero-subtitle {
    font-size: 13.5px !important;
  }
  .section-title-center {
    font-size: 23px !important;
    line-height: 1.25 !important;
  }
}

/* ==========================================================================
   GLOBAL BULLETPROOF MOBILE RESPONSIVENESS & SCROLL CONTAINMENT
   ========================================================================== */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
}

.table-responsive-container {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  max-width: 100% !important;
}

/* ==========================================================================
   B2B REPRESENTED INSTITUTIONS DESTINATION TABS
   ========================================================================== */
.b2b-inst-tab-btn {
  background: #f4f8f7;
  border: 1.5px solid #d8e8e4;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  color: #00332a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  user-select: none;
}
.b2b-inst-tab-btn:hover {
  background: #e6f3f0;
  border-color: #004a3e;
  color: #004a3e;
  transform: translateY(-1px);
}
.b2b-inst-tab-btn.active {
  background: #004a3e;
  border-color: #004a3e;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 74, 62, 0.25);
}
@media (max-width: 600px) {
  .b2b-inst-tab-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
}



