/* ==========================================================================
   Aastha IAS — modern overlay (loaded LAST, after the BootstrapMade template).
   Themes (premium | bright | bold) are switched from admin → Appearance via a
   data-theme attribute on .ah-root. Tokens cascade; the hero adds its own
   per-theme treatment via [data-hero-theme]. Bootstrap grid/structure untouched.
   ========================================================================== */

/* ---- Theme tokens --------------------------------------------------------- */
.ah-root,
.ah-root[data-theme="premium"],
.ah-root[data-theme="bright"],
.ah-root[data-theme="bold"] {
  --ah-primary: #7c3aed;
  --ah-primary-2: #6d28d9;
  --ah-accent: #a855f7;
  --ah-accent-soft: #e9d5ff;
  --ah-ink: #0F172A;
  --ah-text-secondary: #475569;
  --ah-muted: #94a3b8;
  --ah-on-primary: #ffffff;
  --ah-surface: #ffffff;
  --ah-surface-2: rgba(255, 255, 255, 0.6);
  --ah-border: rgba(15, 23, 42, 0.08);
  --ah-hero-from: #F8FBFF;
  --ah-hero-via: #E8F0FE;
  --ah-hero-to: #B7D7E8;
  --ah-hero-ink: #0F172A;
  --ah-hero-sub: #475569;
  --ah-blob-1: rgba(183, 215, 232, 0.25);
  --ah-blob-2: rgba(167, 183, 231, 0.2);
  --ah-blob-3: rgba(245, 208, 215, 0.15);
}

/* Frosted Glassmorphism standard */
.ah-root .glass-card,
.glass-card {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03) !important;
  border-radius: 16px !important;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms ease !important;
}

.ah-root .glass-card:hover,
.glass-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px 0 rgba(31, 38, 135, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Fix: push the decorative dot ::before overlay BEHIND all content using z-index:-1
   This is simpler and more reliable than trying to set z-index on every content child */
.ah-root .bg-morning-mist::before,
.ah-root .bg-twilight-haze::before,
.ah-root .bg-soft-rose::before,
.ah-root .bg-sage-dew::before,
.ah-root .bg-peach-whisper::before,
.bg-morning-mist::before,
.bg-twilight-haze::before,
.bg-soft-rose::before,
.bg-sage-dew::before,
.bg-peach-whisper::before {
  z-index: -1 !important;
}

/* Fix hero section gap — override main.css 60px padding on all sections */
.ah-hero-v2.bg-morning-mist,
section.ah-hero-v2 {
  padding-top: 0 !important;
  padding-bottom: 16px !important;
  background-color: transparent !important;
}



/* Premium Ambient Gradient Section Flows */
.ah-root .bg-morning-mist,
.bg-morning-mist {
  background: radial-gradient(circle at 10% 20%, rgba(183, 215, 232, 0.28) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(248, 251, 255, 0.6) 0%, transparent 50%),
    #F8FBFF !important;
  position: relative;
}

.ah-root .bg-morning-mist::before,
.bg-morning-mist::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(183, 215, 232, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.ah-root .bg-twilight-haze,
.bg-twilight-haze {
  background: radial-gradient(circle at 20% 30%, rgba(167, 183, 231, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(216, 226, 255, 0.5) 0%, transparent 50%),
    #F9FAFF !important;
  position: relative;
}

.ah-root .bg-twilight-haze::before,
.bg-twilight-haze::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(167, 183, 231, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.ah-root .bg-soft-rose,
.bg-soft-rose {
  background: radial-gradient(circle at 15% 15%, rgba(245, 208, 215, 0.28) 0%, transparent 65%),
    radial-gradient(circle at 85% 85%, rgba(255, 245, 247, 0.6) 0%, transparent 50%),
    #FFFBFB !important;
  position: relative;
}

.ah-root .bg-soft-rose::before,
.bg-soft-rose::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 208, 215, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.ah-root .bg-sage-dew,
.bg-sage-dew {
  background: radial-gradient(circle at 30% 20%, rgba(216, 234, 215, 0.28) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(246, 241, 214, 0.4) 0%, transparent 55%),
    #FAFBF7 !important;
  position: relative;
}

.ah-root .bg-sage-dew::before,
.bg-sage-dew::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(216, 234, 215, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.ah-root .bg-peach-whisper,
.bg-peach-whisper {
  background: radial-gradient(circle at 25% 25%, rgba(255, 220, 194, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(255, 241, 227, 0.5) 0%, transparent 55%),
    #FFFBF7 !important;
  position: relative;
}

.ah-root .bg-peach-whisper::before,
.bg-peach-whisper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 220, 194, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

/* ---- Global polish (all themes) ------------------------------------------ */
.ah-root {
  scroll-behavior: smooth;
}

.ah-root section {
  position: relative;
  /* Reset the BootstrapMade template's blanket 60px padding — each section manages its own */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  /* Also reset the background-color override that blanket rule sets */
  background-color: transparent !important;
}

/* Restore explicit padding for specific sections that need it via their own class */
.ah-root section.contact,
.ah-root section.portfolio,
.ah-root section.services {
  padding: 60px 0 !important;
}


/* Global Content Container Unification (1280px standard) */
.ah-root .container {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

@media (min-width: 768px) {
  .ah-root .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (min-width: 1024px) {
  .ah-root .container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

/* Section heading refresh */
.ah-root .section-title h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ah-ink);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.ah-root .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ah-primary), var(--ah-accent));
}

.ah-root .section-title p {
  color: #5b6b7b;
  max-width: 680px;
  margin-inline: auto;
}

/* Section background tokens */
.ah-root .light-background {
  background: var(--ah-surface) !important;
}

.ah-root .accent-background {
  background: linear-gradient(120deg, var(--ah-primary-2), var(--ah-primary)) !important;
  color: var(--ah-on-primary);
}

/* Buttons (template CTAs) */
.ah-root .btn-get-started,
.ah-root .cta-btn {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2)) !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px -10px var(--ah-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ah-root .btn-get-started:hover,
.ah-root .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px var(--ah-primary);
}

/* Card hover lift for common template cards with smooth border-radius and scale animations */
.ah-root .course-item,
.ah-root .team .member,
.ah-root .card,
.ah-root .info-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ah-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ah-root .course-item:hover,
.ah-root .team .member:hover,
.ah-root .card:hover {
  transform: translateY(-6px) scale(1.02);
  border-radius: 24px;
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15);
}

.ah-root .course-item img,
.ah-root .team .member img {
  transition: transform 0.5s ease;
}

.ah-root .course-item:hover img {
  transform: scale(1.05);
}

.ah-root .header {
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Sticky-header subtle shadow once scrolled (template toggles .scrolled on body/header) */
.ah-root .scrolled .header,
.scrolled .header {
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.08);
}

/* Nicer scrollbar */
.ah-root ::-webkit-scrollbar {
  width: 11px;
}

.ah-root ::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--ah-primary) 60%, #94a3b8);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ah-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: center;
  padding-block: clamp(96px, 12vh, 150px) clamp(56px, 8vh, 104px);
  background: linear-gradient(135deg, var(--ah-hero-from), var(--ah-hero-via) 55%, var(--ah-hero-to));
  color: var(--ah-hero-ink);
}

.ah-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.ah-blob {
  position: absolute;
  width: 46vw;
  height: 46vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.85;
  will-change: transform;
}

.ah-blob--1 {
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, var(--ah-blob-1), transparent 70%);
  animation: ah-float1 16s ease-in-out infinite;
}

.ah-blob--2 {
  bottom: -18%;
  right: -6%;
  background: radial-gradient(circle, var(--ah-blob-2), transparent 70%);
  animation: ah-float2 20s ease-in-out infinite;
}

.ah-blob--3 {
  top: 28%;
  right: 22%;
  background: radial-gradient(circle, var(--ah-blob-3), transparent 70%);
  animation: ah-float3 24s ease-in-out infinite;
}

.ah-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
}

.ah-hero__wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.ah-eyebrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ah-hero-ink) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 22%, transparent);
  color: var(--ah-hero-ink);
}

.ah-hero__title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  margin: 18px 0 14px;
  color: var(--ah-hero-ink);
  animation: ah-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.ah-hero__desc {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  max-width: 36em;
  color: var(--ah-hero-sub);
  animation: ah-rise 0.7s 0.06s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.ah-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ah-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ah-btn--primary {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2));
  color: var(--ah-on-primary);
  box-shadow: 0 14px 30px -12px var(--ah-primary);
}

.ah-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -12px var(--ah-primary);
  color: #fff;
}

.ah-btn--primary i {
  transition: transform 0.25s ease;
}

.ah-btn--primary:hover i {
  transform: translateX(4px);
}

.ah-btn--ghost {
  background: color-mix(in srgb, var(--ah-hero-ink) 10%, transparent);
  color: var(--ah-hero-ink);
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 30%, transparent);
}

.ah-btn--ghost:hover {
  transform: translateY(-3px);
  background: color-mix(in srgb, var(--ah-hero-ink) 18%, transparent);
  color: var(--ah-hero-ink);
}

.ah-btn--app {
  background: color-mix(in srgb, var(--ah-hero-ink) 6%, transparent);
  color: var(--ah-hero-ink);
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 22%, transparent);
}

.ah-btn--app:hover {
  transform: translateY(-3px);
  color: var(--ah-hero-ink);
}

.ah-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 44px);
  margin-top: 38px;
}

.ah-stat b {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--ah-hero-ink);
  line-height: 1;
}

.ah-stat span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ah-hero-sub);
}

.ah-stat+.ah-stat {
  padding-left: clamp(20px, 4vw, 44px);
  border-left: 1px solid color-mix(in srgb, var(--ah-hero-ink) 18%, transparent);
}

/* Showcase visual / glass card — CSS entrance (no JS/AOS dependency) */
.ah-hero__visual {
  display: flex;
  justify-content: center;
  animation: ah-rise 0.8s 0.15s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.ah-showcase {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 4 / 3.4;
  border-radius: 24px;
  padding: 12px;
  background: color-mix(in srgb, var(--ah-hero-ink) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 18%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
  animation: ah-float-card 7s ease-in-out infinite;
}

.ah-showcase__media {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ah-hero-ink) 12%, transparent);
}

.ah-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ah-showcase__brand {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ah-hero-ink);
}

.ah-showcase__brand i {
  font-size: 3.4rem;
  opacity: 0.92;
}

.ah-showcase__brand span {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.ah-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  background: #fff;
  color: var(--ah-ink);
  box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.45);
}

.ah-chip i {
  color: var(--ah-accent);
}

.ah-chip--1 {
  top: 16px;
  left: -18px;
  animation: ah-float-card 6s ease-in-out infinite;
}

.ah-chip--2 {
  bottom: 22px;
  right: -16px;
  animation: ah-float-card 7.5s 0.5s ease-in-out infinite;
}

/* Hero carousel nav */
.ah-hero__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(20px, 4vh, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 3;
}

.ah-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 28%, transparent);
  background: color-mix(in srgb, var(--ah-hero-ink) 10%, transparent);
  color: var(--ah-hero-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ah-nav-arrow:hover {
  background: color-mix(in srgb, var(--ah-hero-ink) 20%, transparent);
  transform: scale(1.08);
}

.ah-dots {
  display: flex;
  gap: 9px;
}

.ah-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ah-hero-ink) 35%, transparent);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.ah-dots button.on {
  width: 26px;
  background: var(--ah-accent);
}

/* ---- BOLD theme: kinetic, no visual, gradient headline --------------------- */
.ah-hero[data-hero-theme="bold"] .ah-hero__wrap {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
}

.ah-hero[data-hero-theme="bold"] .ah-hero__visual {
  display: none;
}

.ah-hero[data-hero-theme="bold"] .ah-hero__cta,
.ah-hero[data-hero-theme="bold"] .ah-hero__stats {
  justify-content: center;
}

.ah-hero[data-hero-theme="bold"] .ah-hero__desc {
  margin-inline: auto;
}

.ah-hero[data-hero-theme="bold"] .ah-hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  background: linear-gradient(100deg, #fff 30%, var(--ah-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- BRIGHT theme: light bg → dark text, softer chrome -------------------- */
.ah-hero[data-hero-theme="bright"] .ah-hero__grid {
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 70%);
  background-image: linear-gradient(rgba(13, 43, 30, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 43, 30, 0.05) 1px, transparent 1px);
}

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes ah-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ah-float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes ah-float1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 30px) scale(1.12);
  }
}

@keyframes ah-float2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-46px, -28px) scale(1.15);
  }
}

@keyframes ah-float3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 36px) scale(0.9);
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
  .ah-hero__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ah-hero__cta,
  .ah-hero__stats {
    justify-content: center;
  }

  .ah-hero__desc {
    margin-inline: auto;
  }

  .ah-hero__visual {
    margin-top: 8px;
  }

  .ah-eyebrow {
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .ah-showcase {
    width: min(360px, 100%);
  }

  .ah-chip--1 {
    left: 6px;
  }

  .ah-chip--2 {
    right: 6px;
  }

  .ah-hero__stats {
    gap: 18px;
  }

  .ah-stat+.ah-stat {
    padding-left: 18px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  .ah-blob,
  .ah-showcase,
  .ah-chip,
  .ah-hero__title,
  .ah-hero__desc,
  .ah-hero__visual {
    animation: none !important;
  }

  .ah-root {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   WAVE C — inner pages, cards, tables, page headers
   ========================================================================== */

/* ══════════════════════════════════════════════════════════════════
   PAGE TITLE — Premium hero banner
   ══════════════════════════════════════════════════════════════════ */
.ah-root .page-title {
  position: relative;
  overflow: hidden;
  background: #0B132B !important;
  color: #fff;
  margin-bottom: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Very subtle linear gradient overlay */
.ah-root .page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B132B 0%, #111A35 100%);
  z-index: 0;
}

/* Remove decorative noise and background elements */
.ah-root .pt-bg-elements {
  display: none;
}

/* Minimal page title body with reduced height/padding */
.ah-root .pt-body {
  position: relative;
  z-index: 2;
  padding: 16px 0;
}

/* Clean, thin typography for H1 */
.ah-root .pt-heading {
  font-family: "Raleway", sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.35rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  color: #FFFFFF !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
  text-align: left !important;
}

/* Remove bottom gold underline bar */
.ah-root .pt-heading::after {
  display: none !important;
}

/* Elegant, smaller subtitle */
.ah-root .pt-subtitle {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.78rem !important;
  max-width: 650px;
  margin: 4px 0 0 !important;
  line-height: 1.4;
  font-weight: 400;
  text-align: left !important;
}

/* Ultra-minimal breadcrumb line without background bubble */
.ah-root .pt-breadcrumb {
  margin-top: 0 !important;
}

.ah-root .pt-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: none !important;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ah-root .pt-breadcrumb ol li {
  color: rgba(255, 255, 255, 0.45);
}

.ah-root .pt-breadcrumb ol li a {
  color: #C9A84C;
  text-decoration: none;
  transition: color 0.2s;
}

.ah-root .pt-breadcrumb ol li a:hover {
  color: #e2c97a;
}

.ah-root .pt-breadcrumb ol li+li::before {
  content: "›";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .ah-root .pt-circle-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -60px;
  }

  .ah-root .pt-circle-2 {
    display: none;
  }

  .ah-root .pt-eyebrow-line {
    width: 24px;
  }
}

/* ---- Course cards --------------------------------------------------------- */
.ah-root .customcourse-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(2, 20, 40, 0.06);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.04);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ah-root .col-lg-4.d-flex {
  margin-bottom: 26px;
}

.ah-root .customcourse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(13, 27, 62, 0.08);
}

.ah-root .customcourse-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ah-root .customcourse-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 22px;
  flex: 1;
}

.ah-root .customcourse-content h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ah-ink);
  margin: 0;
}

.ah-root .customcourse-content>span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ah-primary);
}

.ah-root .customcourse-content p {
  color: #5b6b7b;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 2px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ah-root .customcourse-price {
  margin-top: auto;
}

.ah-root .customcourse-price span {
  display: inline-block;
  font-weight: 700;
  color: var(--ah-ink);
  background: var(--ah-surface-2);
  padding: 6px 12px;
  border-radius: 999px;
}

.ah-root .customcourse-enroll-btn {
  margin-top: 12px;
  text-align: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2));
  color: #fff;
  box-shadow: 0 10px 22px -12px var(--ah-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ah-root .customcourse-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px var(--ah-primary);
  color: #fff;
}

/* ---- Faculty cards -------------------------------------------------------- */
.ah-root .team .member {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(2, 20, 40, 0.06);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.04);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ah-root .team .member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(13, 27, 62, 0.08);
}

.ah-root .team .member img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ah-root .team .member-content {
  padding: 18px 18px 20px;
  text-align: center;
}

.ah-root .team .member-content h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--ah-ink);
  margin-bottom: 2px;
}

.ah-root .team .member-content span {
  display: block;
  font-size: 0.82rem;
  color: var(--ah-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.ah-root .team .member-content p {
  color: #5b6b7b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.ah-root .team .member .social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.ah-root .team .member .social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ah-surface-2);
  color: var(--ah-primary);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ah-root .team .member .social a:hover {
  background: var(--ah-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Toppers / testimonials ---------------------------------------------- */
.ah-root .custom-snip1192 {
  height: 100%;
  margin: 0;
  padding: 26px 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(2, 20, 40, 0.06);
  box-shadow: 0 14px 34px -22px rgba(2, 20, 40, 0.45);
  text-align: center;
}

.ah-root .custom-snip1192 .custom-author img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 10px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--ah-primary);
}

.ah-root .custom-snip1192 .custom-author h5 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--ah-ink);
}

.ah-root .custom-snip1192 .rank-exam-batch {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ah-primary);
}

.ah-root .custom-snip1192 blockquote {
  border: 0;
  margin: 12px 0 0;
  padding: 0;
}

.ah-root .custom-snip1192 .custom-description {
  color: #5b6b7b;
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: italic;
}

.ah-root .custom-swiper-container {
  padding-bottom: 55px !important;
  overflow: visible !important;
}

.ah-root .custom-swiper-container .swiper-slide {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  opacity: 0.6 !important;
  transform: scale(0.9);
}

.ah-root .custom-swiper-container .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1.05) !important;
  z-index: 10;
}

.ah-root .custom-swiper-container .swiper-pagination {
  bottom: 12px !important;
}

.ah-root .custom-swiper-container .swiper-pagination-bullet {
  background: var(--ah-primary) !important;
  opacity: 0.3 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all 0.3s ease !important;
}

.ah-root .custom-swiper-container .swiper-pagination-bullet-active {
  background: var(--ah-primary) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ---- Call To Action Section (Premium Violet Gradient) --------------------- */
.ah-root .premium-cta-section {
  background: linear-gradient(135deg, #4c1d95 0%, #1e1b4b 100%) !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ah-root .premium-cta-section h3 {
  color: #ffffff !important;
}

.ah-root .premium-cta-section p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ---- FAQ Accordion summary reset ----------------------------------------- */
.ah-root details summary {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  list-style: none !important;
  cursor: pointer;
}

.ah-root details summary::-webkit-details-marker {
  display: none !important;
}

/* ---- Resource pages (filters + table) ------------------------------------ */
.ah-root .customresource-filters {
  background: #fff;
  border: 1px solid rgba(2, 20, 40, 0.06);
  border-radius: 16px;
  padding: 18px 18px 22px;
  margin: 26px 0;
  box-shadow: 0 12px 30px -22px rgba(2, 20, 40, 0.4);
}

.ah-root .customresource-filters label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ah-ink);
}

.ah-root .customresource-filters .form-control {
  border-radius: 10px;
  border: 1px solid rgba(2, 20, 40, 0.14);
  padding: 9px 12px;
}

.ah-root .customresource-filters .form-control:focus {
  border-color: var(--ah-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ah-primary) 22%, transparent);
}

.ah-root .customresource-filters .btn-primary {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2));
  border: 0;
  border-radius: 999px;
  padding: 9px 24px;
  font-weight: 600;
}

.ah-root .customresource-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(2, 20, 40, 0.08);
  box-shadow: 0 12px 30px -24px rgba(2, 20, 40, 0.4);
  background: #fff;
}

.ah-root .customresource-table thead th {
  background: linear-gradient(120deg, var(--ah-ink), var(--ah-primary-2));
  color: #fff;
  border: 0;
  font-weight: 600;
  padding: 14px 16px;
}

.ah-root .customresource-table tbody td {
  padding: 13px 16px;
  vertical-align: middle;
  border-color: rgba(2, 20, 40, 0.06);
}

.ah-root .customresource-table tbody tr:nth-child(even) {
  background: var(--ah-surface);
}

.ah-root .customresource-table tbody tr:hover {
  background: color-mix(in srgb, var(--ah-primary) 8%, #fff);
}

.ah-root .customresource-table .btn-success {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2));
  border: 0;
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ah-root .customresource-table .btn-success:hover {
  transform: translateY(-1px);
}

/* ---- Contact info cards --------------------------------------------------- */
.ah-root .contact .info-item {
  background: #fff;
  border: 1px solid rgba(2, 20, 40, 0.06);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px -22px rgba(2, 20, 40, 0.4);
  align-items: flex-start;
  gap: 14px;
}

.ah-root .contact .info-item i {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.2rem;
  background: color-mix(in srgb, var(--ah-primary) 14%, #fff);
  color: var(--ah-primary);
}

.ah-root .contact .info-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ah-ink);
  margin: 0 0 2px;
}

.ah-root .contact .info-item p {
  margin: 0;
  color: #5b6b7b;
}

.ah-root .contact .info-wrap iframe {
  border-radius: 14px;
  margin-top: 6px;
}

.ah-root .contact .php-email-form .form-control {
  border-radius: 10px;
}

.ah-root .contact .php-email-form .form-control:focus {
  border-color: var(--ah-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ah-primary) 20%, transparent);
}

/* ---- Generic content cards on inner pages (about "why choose" etc.) ------- */
.ah-root .why-box,
.ah-root .icon-box,
.ah-root .feature-box,
.ah-root .content-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(2, 20, 40, 0.06);
  box-shadow: 0 12px 30px -22px rgba(2, 20, 40, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ah-root .why-box:hover,
.ah-root .icon-box:hover,
.ah-root .feature-box:hover,
.ah-root .content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px -26px rgba(2, 20, 40, 0.4);
}

/* Links in body content adopt the theme accent */
.ah-root .main a:not(.btn):not(.ah-btn):not(.cta-btn):not(.btn-get-started):not(.customcourse-enroll-btn):not(.no-accent-link) {
  color: var(--ah-primary);
}

/* ---- Navbar & Header Overrides (Light theme - clean white) ------------ */
.ah-root .header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06) !important;
}

.ah-root .header .topbar {
  background: rgba(201, 168, 76, 0.12) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2) !important;
  color: var(--ah-ink) !important;
  font-weight: 500 !important;
}

.ah-root .header .topbar a,
.ah-root .header .topbar span {
  color: var(--ah-text-secondary) !important;
}

.ah-root .header .topbar a:hover {
  color: var(--ah-primary) !important;
  text-decoration: underline !important;
}

.ah-root .branding {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.ah-root .logo-text {
  color: var(--ah-ink) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  letter-spacing: 0.5px !important;
  transition: color 0.3s ease !important;
}

.ah-root .logo:hover .logo-text {
  color: var(--ah-primary) !important;
}

.ah-root .navmenu a {
  color: var(--ah-text-secondary) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  padding: 18px 6px !important;
  transition: padding 0.3s ease, font-size 0.3s ease, color 0.2s ease !important;
}

.ah-root .navmenu a:hover,
.ah-root .navmenu a.active,
.ah-root .navmenu a.active:focus,
.ah-root .navmenu .active>a {
  color: var(--ah-primary) !important;
}

.ah-root .navmenu .dropdown ul {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.15) !important;
}

.ah-root .navmenu .dropdown ul a {
  color: var(--ah-text-secondary) !important;
}

.ah-root .navmenu .dropdown ul a:hover,
.ah-root .navmenu .dropdown ul .active,
.ah-root .navmenu .dropdown ul li:hover>a {
  color: var(--ah-primary) !important;
  background-color: rgba(124, 58, 237, 0.05) !important;
}

.ah-root .mobile-nav-toggle {
  color: var(--ah-ink) !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.ah-root .counselling-btn {
  display: inline-flex;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  font-size: 13px !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2) !important;
}

.ah-root .counselling-btn:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3) !important;
}

/* ---- Footer Overrides ---------------------------------------------------- */
/* ---- Footer Modern Section ---------------------------------------------- */
.ah-root .footer-modern-section {
  background: #0D1B3E !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  padding-top: 56px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.ah-root .footer-modern-top {
  padding-bottom: 40px !important;
}

.ah-root .footer-modern-about {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.ah-root .footer-modern-brand-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #e6b83e !important;
  margin: 0 !important;
}

.ah-root .footer-modern-brand-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  max-width: 460px !important;
}

.ah-root .footer-modern-header {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin: 0 0 16px 0 !important;
}

.ah-root .footer-modern-links ul,
.ah-root .footer-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.ah-root .footer-modern-links a,
.ah-root .footer-contact-list li,
.ah-root .footer-contact-list a {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

.ah-root .footer-modern-links a:hover,
.ah-root .footer-contact-list a:hover {
  color: #e6b83e !important;
}

.ah-root .footer-modern-bottom {
  background: #08122c !important;
  padding: 24px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.ah-root .footer-bottom-flex {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  gap: 12px !important;
}

.ah-root .footer-copyright-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.ah-root .footer-bottom-links {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  flex-wrap: wrap !important;
}

.ah-root .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

.ah-root .footer-bottom-links a:hover {
  color: #e6b83e !important;
}

.ah-root .footer-link-divider {
  color: rgba(255, 255, 255, 0.15) !important;
  margin: 0 2px !important;
}

.ah-root .devizones-link {
  color: #e6b83e !important;
  font-weight: 600 !important;
}

.ah-root .devizones-link:hover {
  color: #e6b83e !important;
}

@media (max-width: 640px) {
  .ah-root .footer-bottom-flex {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .ah-root .footer-bottom-links {
    justify-content: center !important;
  }
}

/* ---- Section Padding Correction ------------------------------------------ */
.ah-root section:not(.ah-hero) {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.ah-root .page-title {
  margin-bottom: 60px !important;
}

/* ---- About Us Page Modern Styling ---- */
.ah-root .about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--ah-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ah-root .about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ah-root .about-image-wrapper:hover img {
  transform: scale(1.05);
}

.ah-root .about-image-wrapper:hover {
  border-radius: 24px;
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15);
}

.ah-root .topper-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.03);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ah-root .topper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(13, 27, 62, 0.07);
}

.ah-root .why-us-card {
  background: var(--ah-surface-2);
  border: 1px solid var(--ah-border);
  border-radius: 14px;
  padding: 32px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.ah-root .why-us-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-radius: 24px;
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15);
}

.ah-root .why-us-card-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ah-primary);
  display: block;
  margin-bottom: 12px;
  font-family: "Raleway", sans-serif;
}

.ah-root .why-us-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ah-ink);
  margin-bottom: 12px;
  font-family: "Raleway", sans-serif;
}

.ah-root .why-us-card-body {
  font-size: 0.9rem;
  color: var(--ah-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ---- About Us Page Layout & Visual Upgrades (TSX-safe overrides) ---- */
.ah-root .about .col-lg-6 img {
  border-radius: 16px !important;
  border: 1px solid var(--ah-border) !important;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ah-root .about .col-lg-6 img:hover {
  transform: translateY(-4px) scale(1.02) !important;
  border-radius: 24px !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.2) !important;
}

.ah-root .why-us .row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  justify-content: center !important;
}

.ah-root .why-us .row .card {
  flex: 1 1 300px !important;
  max-width: 360px !important;
  margin: 0 !important;
  border-radius: 16px !important;
  border: 1px solid var(--ah-border) !important;
  background: var(--ah-surface-2) !important;
  padding: 36px 30px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ah-root .why-us .row .card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  border-radius: 24px !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15) !important;
}

.ah-root .why-us .row .card span {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: var(--ah-primary) !important;
  margin-bottom: 12px !important;
  display: block !important;
  font-family: "Raleway", sans-serif !important;
}

.ah-root .why-us .row .card h4 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  margin-bottom: 12px !important;
  font-family: "Raleway", sans-serif !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.ah-root .why-us .row .card p {
  font-size: 0.9rem !important;
  color: var(--ah-text-secondary) !important;
  line-height: 1.6 !important;
}

/* ---- Latest Updates Page Layout & Visual Upgrades ---- */
.ah-root .latest-updates img {
  border-radius: 16px !important;
  border: 1px solid var(--ah-border) !important;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ah-root .latest-updates img:hover {
  transform: translateY(-4px) scale(1.02) !important;
  border-radius: 24px !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.2) !important;
}

.ah-root .latest-updates .content h2 {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--ah-ink) !important;
  margin-bottom: 24px !important;
  font-family: "Raleway", sans-serif !important;
}

.ah-root .latest-updates .content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.ah-root .latest-updates .content ul li {
  display: block !important;
}

.ah-root .latest-updates .content ul li a.update-link {
  display: flex !important;
  align-items: center !important;
  padding: 16px 20px !important;
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 12px !important;
  color: var(--ah-ink) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.ah-root .latest-updates .content ul li a.update-link::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  height: 100% !important;
  width: 4px !important;
  background: var(--ah-primary) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.ah-root .latest-updates .content ul li a.update-link:hover {
  transform: translateX(6px) !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.08) !important;
  color: var(--ah-primary) !important;
}

.ah-root .latest-updates .content ul li a.update-link:hover::before {
  opacity: 1 !important;
}

/* ---- Contact Us Page Layout & Visual Upgrades ---- */
.ah-root .contact .info-wrap {
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
}

.ah-root .contact .info-item {
  background: var(--ah-surface) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ah-root .contact .info-item:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.06) !important;
}

.ah-root .contact .info-item i {
  background: color-mix(in srgb, var(--ah-primary) 10%, transparent) !important;
  color: var(--ah-primary) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
}

.ah-root .contact .info-item h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  margin-bottom: 6px !important;
}

.ah-root .contact .info-item p {
  font-size: 0.9rem !important;
  color: var(--ah-text-secondary) !important;
  margin: 0 !important;
}

.ah-root .contact iframe {
  border-radius: 12px !important;
  border: 1px solid var(--ah-border) !important;
}

.ah-root .php-email-form {
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
}

.ah-root .php-email-form label {
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  color: var(--ah-ink) !important;
}

.ah-root .php-email-form .form-control {
  border-radius: 10px !important;
  border: 1px solid var(--ah-border) !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  background-color: var(--ah-surface) !important;
  color: var(--ah-ink) !important;
  transition: all 0.2s ease !important;
}

.ah-root .php-email-form .form-control:focus {
  background-color: var(--ah-surface-2) !important;
  border-color: var(--ah-primary) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ah-primary) 15%, transparent) !important;
  outline: 0 !important;
}

.ah-root .php-email-form button[type="submit"] {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2)) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 12px 36px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 24px -8px var(--ah-primary) !important;
}

.ah-root .php-email-form button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px -8px var(--ah-primary) !important;
}

/* ---- Blogs Page Layout & Visual Upgrades ---- */
.ah-root .service-details .service-box {
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  margin-bottom: 24px !important;
}

.ah-root .service-details .service-box h4 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  margin-bottom: 16px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--ah-border) !important;
  font-family: "Raleway", sans-serif !important;
}

.ah-root .service-details .services-list,
.ah-root .service-details .download-catalog {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.ah-root .service-details .services-list a,
.ah-root .service-details .download-catalog a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  background: var(--ah-surface) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 8px !important;
  color: var(--ah-text-secondary) !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  transition: all 0.25s ease !important;
}

.ah-root .service-details .services-list a i,
.ah-root .service-details .download-catalog a i {
  font-size: 14px !important;
  color: var(--ah-primary) !important;
  transition: transform 0.25s ease !important;
}

.ah-root .service-details .services-list a:hover,
.ah-root .service-details .download-catalog a:hover,
.ah-root .service-details .services-list a.active {
  background: var(--ah-surface-2) !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  color: var(--ah-primary) !important;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.05) !important;
}

.ah-root .service-details .services-list a:hover i,
.ah-root .service-details .download-catalog a:hover i {
  transform: translateX(3px) !important;
}

.ah-root .service-details .help-box {
  background: linear-gradient(135deg, var(--ah-primary), var(--ah-primary-2)) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 30px 24px !important;
  text-align: center !important;
  box-shadow: 0 10px 25px -8px var(--ah-primary) !important;
}

.ah-root .service-details .help-box h4 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  border: 0 !important;
  padding: 0 !important;
  margin-bottom: 12px !important;
}

.ah-root .service-details .help-box p,
.ah-root .service-details .help-box a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem !important;
}

.ah-root .service-details .help-box a:hover {
  text-decoration: underline !important;
}

.ah-root .service-details .help-icon {
  font-size: 36px !important;
  color: #fff !important;
  margin-bottom: 12px !important;
}

.ah-root .service-details img.services-img {
  border-radius: 16px !important;
  border: 1px solid var(--ah-border) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 30px !important;
}

.ah-root .service-details h3 {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: var(--ah-ink) !important;
  line-height: 1.4 !important;
  margin-bottom: 16px !important;
  font-family: "Raleway", sans-serif !important;
}

.ah-root .service-details h4 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  margin-top: 30px !important;
  margin-bottom: 14px !important;
  font-family: "Raleway", sans-serif !important;
  border: 0 !important;
  padding: 0 !important;
}

.ah-root .service-details p {
  font-size: 0.95rem !important;
  color: var(--ah-text-secondary) !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
}

.ah-root .service-details ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 24px !important;
}

.ah-root .service-details ul li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.95rem !important;
  color: var(--ah-text-secondary) !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
}

.ah-root .service-details ul li i {
  color: var(--ah-primary) !important;
  font-size: 16px !important;
  margin-top: 2px !important;
}

/* ---- BRAND DESIGN SYSTEM OVERRIDES ---- */
.ah-root {
  /* Enforce Inter for everything inside .ah-root by default */
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

.ah-root h1,
.ah-root h2,
.ah-root h3,
.ah-root h4,
.ah-root h5,
.ah-root h6,
.ah-root .logo-text,
.ah-root .section-title h2,
.ah-root .footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif !important;
}

/* ---- BUTTON BASE STYLES ---- */
.ah-root button,
.ah-root .counselling-btn,
.ah-root .btn-primary-gold,
.ah-root .btn-secondary-white,
.ah-root .btn-tertiary-navy,
.ah-root .btn-ghost-gold {
  display: inline-flex;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  border-radius: 6px !important;
  /* 6px consistent across all buttons */
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  text-decoration: none !important;
  padding: 11px 20px !important;
  /* Standard padding: vertical 10-12px, horizontal 18-24px */
  gap: 6px !important;
  /* 6px gap between leading icon and text */
}

/* Active press feedback */
.ah-root button:active,
.ah-root .counselling-btn:active,
.ah-root .btn-primary-gold:active,
.ah-root .btn-secondary-white:active,
.ah-root .btn-tertiary-navy:active,
.ah-root .btn-ghost-gold:active {
  transform: scale(0.98) !important;
}

/* Disabled state */
.ah-root button:disabled,
.ah-root .counselling-btn:disabled,
.ah-root .btn-primary-gold:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Compact (nav) button padding override */
.ah-root .counselling-btn {
  padding: 7px 14px !important;
  /* Compact: 7px x 14px */
}

/* Minimum width for standard buttons (except compact nav buttons) */
.ah-root button,
.ah-root .btn-primary-gold,
.ah-root .btn-secondary-white,
.ah-root .btn-tertiary-navy {
  min-width: 120px;
}

/* Button style rules */
.ah-root .btn-primary-gold {
  background-color: #C9A84C !important;
  color: #0D1B3E !important;
  border: none !important;
}

.ah-root .btn-primary-gold:hover {
  background-color: #B8943B !important;
  color: #0D1B3E !important;
}

.ah-root .btn-secondary-white {
  background-color: transparent !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.ah-root .btn-secondary-white:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}

.ah-root .btn-tertiary-navy {
  background-color: transparent !important;
  color: #0D1B3E !important;
  border: 1px solid #0D1B3E !important;
}

.ah-root .btn-tertiary-navy:hover {
  background-color: #F7F0DC !important;
  color: #0D1B3E !important;
}

.ah-root .btn-ghost-gold {
  background-color: rgba(201, 168, 76, 0.15) !important;
  color: #C9A84C !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
}

.ah-root .btn-ghost-gold:hover {
  background-color: rgba(201, 168, 76, 0.25) !important;
  color: #C9A84C !important;
}

/* ---- TYPE SCALE OVERRIDES ---- */
/* Hero H1 */
.ah-root .hero-h1 {
  font-size: 38px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}

@media (max-width: 768px) {
  .ah-root .hero-h1 {
    font-size: 26px !important;
  }
}

/* Section Heading (H2) */
.ah-root h2 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #0D1B3E !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}

@media (max-width: 768px) {
  .ah-root h2 {
    font-size: 22px !important;
  }
}

/* Sub-heading (H3) */
.ah-root h3 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #0D1B3E !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}

@media (max-width: 768px) {
  .ah-root h3 {
    font-size: 17px !important;
  }
}

/* Eyebrow Label */
.ah-root .eyebrow-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  color: #C9A84C !important;
  letter-spacing: 0.1em !important;
  font-family: 'Inter', sans-serif !important;
}

/* Body / Description */
.ah-root .body-text {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #4A4E6A !important;
  line-height: 1.7 !important;
  font-family: 'Inter', sans-serif !important;
}

@media (max-width: 768px) {
  .ah-root .body-text {
    font-size: 13px !important;
  }
}

/* Body / Description on Navy (dark) background */
.ah-root .body-text-navy {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #9BAEC8 !important;
  line-height: 1.7 !important;
  font-family: 'Inter', sans-serif !important;
}

@media (max-width: 768px) {
  .ah-root .body-text-navy {
    font-size: 13px !important;
  }
}

/* Form labels */
.ah-root .form-label {
  font-size: 11px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  color: #4A4E6A !important;
  letter-spacing: 0.05em !important;
  font-family: 'Inter', sans-serif !important;
}

/* Price / Stat Number */
.ah-root .stat-number-dark {
  font-size: 21px !important;
  font-weight: 700 !important;
  color: #C9A84C !important;
  font-family: 'Inter', sans-serif !important;
}

@media (max-width: 768px) {
  .ah-root .stat-number-dark {
    font-size: 18px !important;
  }
}

.ah-root .stat-number-light {
  font-size: 21px !important;
  font-weight: 700 !important;
  color: #0D1B3E !important;
  font-family: 'Inter', sans-serif !important;
}

@media (max-width: 768px) {
  .ah-root .stat-number-light {
    font-size: 18px !important;
  }
}

/* Badge / Pill Text */
.ah-root .badge-pill-text {
  font-size: 11px !important;
  font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important;
}

@media (max-width: 768px) {
  .ah-root .badge-pill-text {
    font-size: 10px !important;
  }
}

/* Footer text */
.ah-root .footer-text {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #9BAEC8 !important;
  font-family: 'Inter', sans-serif !important;
}

/* Ensure all stats columns in the hero bottom bar align perfectly */
.ah-root .hero-stats-col {
  padding-top: 0 !important;
  border-top: 0 !important;
  border-left: 0 !important;
}

@media (max-width: 768px) {

  /* On mobile/tablet (2-column layout) */
  .ah-root .hero-stats-col:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding-top: 16px !important;
  }

  .ah-root .hero-stats-col:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
}

@media (min-width: 769px) {

  /* On desktop (4-column layout) */
  .ah-root .hero-stats-col:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
}

/* Mobile nav menu counselling button styling override */
.ah-root .navmenu .counselling-btn {
  background-color: #C9A84C !important;
  color: #0D1B3E !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 18px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.15s ease !important;
  text-decoration: none !important;
  border: none !important;
}

.ah-root .navmenu .counselling-btn:hover {
  background-color: #B8943B !important;
  color: #0D1B3E !important;
}

.ah-root .navmenu .counselling-btn i,
.ah-root .navmenu .counselling-btn svg {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  width: 14px !important;
  height: 14px !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  transform: none !important;
}

/* ==========================================================================
   TESTIMONIALS / SUCCESS STORIES SECTION
   ========================================================================== */

.ah-root .testimonials-section {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid #e8ecf0;
}

@media (max-width: 768px) {
  .ah-root .testimonials-section {
    padding: 24px 0;
  }
}

.ah-root .testimonials-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 991px) {
  .ah-root .testimonials-inner {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .ah-root .testimonials-inner {
    padding: 0 16px;
  }
}

.ah-root .testimonials-header {
  margin-bottom: 36px;
}

.ah-root .testimonials-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ah-primary);
  margin-bottom: 10px;
}

.ah-root .testimonials-heading {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0D1B3E;
  margin: 0 0 8px;
  line-height: 1.2;
}

.ah-root .testimonials-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5a6a85;
  margin: 0;
}

/* Featured card */
.ah-root .topper-featured-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03);
}

.ah-root .topper-avatar-wrap {
  flex-shrink: 0;
  padding-top: 4px;
}

.ah-root .topper-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C9A84C;
  color: #0D1B3E;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ah-root .topper-featured-body {
  flex: 1;
  min-width: 0;
}

.ah-root .topper-quote {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ah-text-secondary);
  line-height: 1.65;
  margin: 0 0 16px;
}

.ah-root .topper-featured-info {
  margin-bottom: 16px;
}

.ah-root .topper-featured-name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ah-primary);
  margin-bottom: 3px;
}

.ah-root .topper-featured-rank {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #64748b;
}

.ah-root .topper-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ah-root .topper-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ah-root .topper-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #c8d8ec;
}

.ah-root .topper-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Other topper cards grid */
.ah-root .topper-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ah-root .topper-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ah-root .topper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px 0 rgba(31, 38, 135, 0.06);
  border-color: rgba(255, 255, 255, 0.8);
}

.ah-root .topper-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ah-ink);
}

.ah-root .topper-card-rank {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ah-primary);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .ah-root .topper-featured-card {
    flex-direction: column;
    gap: 14px;
  }

  .ah-root .topper-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ah-root .testimonials-heading {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .ah-root .topper-featured-actions {
    flex-direction: column;
  }

  .ah-root .topper-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   COURSES SECTION — matching reference image (no image cards, dark navy)
   ========================================================================== */

.ah-root .courses-section {
  background: #f8f4ef;
  padding: 64px 0 56px;
}

.ah-root .courses-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 991px) {
  .ah-root .courses-inner {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .ah-root .courses-inner {
    padding: 0 16px;
  }
}

.ah-root .courses-header {
  margin-bottom: 36px;
}

.ah-root .courses-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}

.ah-root .courses-heading {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0D1B3E;
  margin: 0 0 8px;
  line-height: 1.2;
}

.ah-root .courses-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5a6a85;
  margin: 0;
}

.ah-root .courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* Course Card — split design: dark navy header + white body */
.ah-root .course-card-wrap {
  display: flex;
}

.ah-root .course-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ah-root .course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.ah-root .course-card--popular {
  border-color: rgba(201, 168, 76, 0.40);
}

/* ── Dark navy header ── */
.ah-root .course-card-header {
  background: #0D1B3E;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Badge */
.ah-root .course-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.10);
  color: #c8d8ec;
  width: fit-content;
}

.ah-root .course-badge--gold {
  background: rgba(201, 168, 76, 0.20);
  color: #C9A84C;
}

.ah-root .course-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
}

.ah-root .course-card-subject {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #C9A84C;
  margin: 0;
}

/* ── White body ── */
.ah-root .course-card-body {
  background: #ffffff;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.ah-root .course-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Checklist */
.ah-root .course-card-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.ah-root .course-card-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #2d3748;
}

.ah-root .course-card-check-icon {
  color: #C9A84C;
  flex-shrink: 0;
}

/* Price */
.ah-root .course-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ah-root .course-card-price {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0D1B3E;
}

.ah-root .course-card-price-original {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #a0aec0;
  text-decoration: line-through;
}

/* CTA Button */
.ah-root .course-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  margin-top: auto;
}

.ah-root .course-card-btn--gold {
  background: #C9A84C;
  color: #0D1B3E;
  border: none;
}

.ah-root .course-card-btn--gold:hover {
  background: #b8943b;
  color: #0D1B3E;
}

.ah-root .course-card-btn--dark {
  background: #0D1B3E;
  color: #ffffff;
  border: 1px solid #0D1B3E;
}

.ah-root .course-card-btn--dark:hover {
  background: #162545;
  color: #ffffff;
}

/* View all */
.ah-root .courses-view-all {
  display: flex;
  justify-content: center;
}

.ah-root .courses-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid #c8c0b0;
  background: transparent;
  color: #4a4e6a;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}

.ah-root .courses-view-all-btn:hover {
  background: #f0ebe4;
  border-color: #a09070;
  color: #0D1B3E;
}

/* Responsive */
@media (max-width: 1024px) {
  .ah-root .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ah-root .courses-grid {
    grid-template-columns: 1fr;
  }

  .ah-root .courses-heading {
    font-size: 22px;
  }
}

/* ==========================================================================
   FREE RESOURCES SECTION — dark navy bg, white cards, WhatsApp form
   ========================================================================== */

.ah-root .free-resources-section {
  background: #F8FAFC;
  padding: 40px 0;
  border-bottom: 1px solid #E2E8F0;
}

@media (max-width: 768px) {
  .ah-root .free-resources-section {
    padding: 24px 0;
  }
}

/* Reset Bootstrap heading color inside section header */
.ah-root .free-resources-header h1,
.ah-root .free-resources-header h2,
.ah-root .free-resources-header h3,
.ah-root .free-resources-header h4,
.ah-root .free-resources-header h5,
.ah-root .free-resources-header h6 {
  color: #0D1B3E !important;
}

/* Reset Bootstrap heading color inside white resource cards */
.ah-root .free-resource-card h1,
.ah-root .free-resource-card h2,
.ah-root .free-resource-card h3,
.ah-root .free-resource-card h4,
.ah-root .free-resource-card h5,
.ah-root .free-resource-card h6 {
  color: #0D1B3E !important;
}

.ah-root .free-resources-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 991px) {
  .ah-root .free-resources-inner {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .ah-root .free-resources-inner {
    padding: 0 16px;
  }
}

/* Header */
.ah-root .free-resources-header {
  margin-bottom: 32px;
}

.ah-root .free-resources-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}

.ah-root .free-resources-heading {
  font-family: 'Inter', sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #0D1B3E !important;
  margin: 0 0 10px !important;
  line-height: 1.25 !important;
}

.ah-root .free-resources-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #475569;
  margin: 0;
  max-width: 480px;
  line-height: 1.6;
}

/* 3 Cards */
.ah-root .free-resources-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.ah-root .free-resource-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ah-root .free-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px 0 rgba(31, 38, 135, 0.06);
  border-color: rgba(255, 255, 255, 0.8);
}

.ah-root .free-resource-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.ah-root .free-resource-icon {
  color: #7c3aed;
}

.ah-root .free-resource-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0D1B3E !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.ah-root .free-resource-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #4a5568;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

.ah-root .free-resource-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  background: rgba(124, 58, 237, 0.06);
  color: #7c3aed;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 4px;
}

.ah-root .free-resource-btn:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.25);
  color: #6d28d9;
}

/* WhatsApp Form */
.ah-root .free-resources-form {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  border-radius: 16px !important;
  margin: 24px 0 0;
  padding: 22px 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03) !important;
}

.ah-root .free-resources-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ah-text-secondary);
  margin: 0 0 14px;
}

.ah-root .free-resources-form-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.ah-root .free-resources-form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 160px;
}

.ah-root .free-resources-form-field--select {
  max-width: 220px;
  flex: 0 0 220px;
  position: relative;
}

.ah-root .free-resources-field-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ah-primary);
}

.ah-root .free-resources-input {
  background: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 100px !important;
  padding: 9px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: var(--ah-ink) !important;
  outline: none !important;
  width: 100% !important;
  transition: border-color 0.15s ease !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  height: 38px !important;
}

.ah-root select.free-resources-input {
  padding-right: 28px !important;
  cursor: pointer;
}

.ah-root .free-resources-input option {
  background-color: #ffffff !important;
  color: #0D1B3E !important;
}

.ah-root .free-resources-input::placeholder {
  color: #718096 !important;
}

.ah-root .free-resources-input:focus {
  border-color: var(--ah-primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15) !important;
}

/* Select arrow */
.ah-root .free-resources-form-field--select {
  position: relative;
}

.ah-root .free-resources-form-field--select::after {
  content: '▼';
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #0D1B3E;
  pointer-events: none;
  font-size: 10px;
}

.ah-root .free-resources-submit {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 0 20px !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  height: 38px !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2) !important;
}

.ah-root .free-resources-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%) !important;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3) !important;
}

/* Responsive */
@media (max-width: 900px) {
  .ah-root .free-resources-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ah-root .free-resources-form {
    padding: 18px 16px !important;
    margin: 20px 0 0 !important;
  }

  .ah-root .free-resources-form-row {
    flex-direction: column;
    align-items: stretch !important;
    gap: 16px !important;
  }

  .ah-root .free-resources-form-field {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .ah-root .free-resources-form-field--select {
    max-width: 100% !important;
    flex: 1 1 auto !important;
  }

  .ah-root .free-resources-submit {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 8px !important;
  }

  .ah-root .free-resources-heading {
    font-size: 20px;
  }
}

/* Faculty cards grid system */
.ah-root .faculty-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ah-root .faculty-cards-grid>div {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .ah-root .faculty-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.ah-root .faq-section {
  background: #f9f5ee;
  padding: 40px 0;
  border-top: 1px solid #e8dfcc;
}

@media (max-width: 768px) {
  .ah-root .faq-section {
    padding: 24px 0;
  }
}

.ah-root .faq-list {
  border-top: none !important;
}

.ah-root .faq-item {
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  margin-bottom: 8px !important;
  padding: 0 16px !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
}

.ah-root .faq-item:hover {
  background: rgba(255, 255, 255, 0.5) !important;
  border-color: rgba(124, 58, 237, 0.15) !important;
}

.ah-root .faq-item[open] {
  background: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(124, 58, 237, 0.25) !important;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.04) !important;
}

.ah-root .faq-summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  outline: none;
}

.ah-root .faq-summary::-webkit-details-marker {
  display: none;
}

.ah-root .faq-check {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ah-root .faq-question {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0D1B3E;
  line-height: 1.4;
}

.ah-root .faq-chevron {
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.22s ease;
}

.ah-root .faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.ah-root .faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.7;
  padding: 0 4px 18px 34px;
  margin: 0;
}

/* Faculty Section Header */
.ah-root .faculty-header {
  margin-bottom: 32px;
}

.ah-root .faculty-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C !important;
  margin-bottom: 10px;
}

.ah-root .faculty-heading {
  font-family: 'Inter', sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #0D1B3E !important;
  margin: 0 0 10px !important;
  line-height: 1.25 !important;
}

.ah-root .faculty-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #4a5568 !important;
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */

.ah-root .cta-banner-section {
  padding: 40px 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .ah-root .cta-banner-section {
    padding: 24px 16px;
  }
}

.ah-root .cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ah-root .cta-banner-heading {
  font-family: 'Inter', sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.ah-root .cta-banner-accent {
  color: var(--ah-primary) !important;
}

.ah-root .cta-banner-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ah-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.ah-root .cta-banner-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.ah-root .cta-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 11px 22px !important;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  white-space: nowrap !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2) !important;
}

.ah-root .cta-btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%) !important;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3) !important;
  color: #ffffff !important;
}

.ah-root .cta-btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 11px 22px !important;
  background: rgba(15, 23, 42, 0.05) !important;
  color: var(--ah-ink) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
}

.ah-root .cta-btn-secondary:hover {
  border-color: rgba(15, 23, 42, 0.15) !important;
  background: rgba(15, 23, 42, 0.08) !important;
  color: var(--ah-ink) !important;
}

.ah-root .cta-banner-phone {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ah-muted);
  margin: 4px 0 0;
}

.ah-root .cta-banner-phone strong {
  color: var(--ah-primary);
  font-weight: 600;
}

/* Responsive enhancements */
@media (max-width: 640px) {

  /* CTA Banner adjustments */
  .ah-root .cta-banner-section {
    padding: 40px 16px;
  }

  .ah-root .cta-banner-heading {
    font-size: 20px !important;
    line-height: 1.4 !important;
  }

  .ah-root .cta-banner-subtext {
    font-size: 12px;
  }

  .ah-root .cta-banner-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .ah-root .cta-btn-primary,
  .ah-root .cta-btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 0 !important;
  }

  .ah-root .cta-banner-phone {
    font-size: 11px;
    text-align: center;
  }

  /* FAQ adjustments */
  .ah-root .faq-section {
    padding: 40px 0;
  }

  .ah-root .faq-question {
    font-size: 14px;
  }

  .ah-root .faq-answer {
    font-size: 12px;
    padding-left: 30px;
  }

  .ah-root .faq-summary {
    gap: 10px;
    padding: 14px 4px;
  }

  /* Faculty section and heading adjustments */
  .ah-root #team {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .ah-root .faculty-heading {
    font-size: 20px !important;
  }

  .ah-root .faculty-header {
    margin-bottom: 24px;
  }
}

/* ---- MOBILE APP SECTION READABILITY & CONTRAST (Light Theme) ---- */
.ah-root #mobile-app h2 {
  color: var(--ah-ink, #0F172A) !important;
  font-family: 'Inter', sans-serif !important;
}

.ah-root #mobile-app span.text-\[\#7c3aed\],
.ah-root #mobile-app span.text-\[\#C9A84C\] {
  color: var(--ah-primary, #7c3aed) !important;
}

.ah-root #mobile-app p {
  color: var(--ah-text-secondary, #475569) !important;
}

/* Ensure mobile app checkmark features look extremely readable */
.ah-root #mobile-app h5 {
  color: var(--ah-ink, #0F172A) !important;
  font-family: 'Inter', sans-serif !important;
}

.ah-root #mobile-app p.text-slate-400,
.ah-root #mobile-app p.text-slate-500 {
  color: var(--ah-text-secondary, #475569) !important;
}

.ah-root #mobile-app svg.text-\[\#7c3aed\],
.ah-root #mobile-app svg.text-\[\#C9A84C\] {
  color: var(--ah-primary, #7c3aed) !important;
}

.ah-root #mobile-app a.bg-\[\#7c3aed\] {
  color: #ffffff !important;
  background: var(--ah-primary, #7c3aed) !important;
}

.ah-root #mobile-app a.border-\[\#7c3aed\] {
  color: var(--ah-primary, #7c3aed) !important;
  border-color: var(--ah-primary, #7c3aed) !important;
}

.ah-root #mobile-app a.border-\[\#7c3aed\]:hover {
  color: #ffffff !important;
  background: var(--ah-primary, #7c3aed) !important;
}