@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

::selection {
  background: rgba(11, 59, 140, 0.2);
  color: #031736;
}

:root {
  --royal: #0b3b8c;
  --royal-dark: #031736;
  --royal-light: #e8f0fe;
  --gold: #d4a017;
  --gold-light: #fcf6e8;
  --soft-gray: #f5f7fa;
  --site-header-height: 118px;
  --site-logo-height: 110px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header-height);
}

section[id] {
  scroll-margin-top: calc(var(--site-header-height) + 12px);
}

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: #1e293b;
  overflow-x: hidden;
  background: radial-gradient(circle at top right, rgba(11, 59, 140, 0.05), transparent 35%), #fff;
  line-height: 1.65;
}

img,
video {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand strong,
.display-font {
  font-family: 'Poppins', system-ui, sans-serif;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0b3b8c, #1a5bc7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gold {
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 160, 23, 0.4);
}

.btn-primary-custom {
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #0b3b8c, #1a5bc7);
  box-shadow: 0 4px 15px rgba(11, 59, 140, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(11, 59, 140, 0.4);
}

.btn-gold::before,
.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
}

.btn-gold:hover::before,
.btn-primary-custom:hover::before {
  animation: btn-shine 0.75s ease;
}

.section-padding {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
}

/* Section heading rhythm — balanced, not oversized */
.section-intro {
  margin-bottom: 3rem !important;
}

@media (min-width: 992px) {
  .section-intro {
    margin-bottom: 3.75rem !important;
  }
}

.section-intro > .rounded-pill,
.section-intro > [class*='-badge'],
.section-intro > .d-inline-flex.rounded-pill {
  margin-bottom: 0.75rem !important;
}

.section-intro > h2,
.section-intro > h3.about-pillars-title {
  margin-bottom: 0.85rem !important;
}

.section-intro > p.lead,
.section-intro > p[class*='-subtitle'],
.section-intro .about-pillars-sub {
  max-width: 42rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0 !important;
  padding-bottom: 1.75rem;
  font-size: clamp(0.875rem, 1.15vw, 1.2rem);
  line-height: 1.5;
  text-wrap: balance;
  white-space: normal;
}

@media (min-width: 992px) {
  .section-intro > p.lead,
  .section-intro > p[class*='-subtitle'],
  .section-intro .about-pillars-sub {
    white-space: nowrap;
    max-width: none !important;
    width: fit-content;
    padding-bottom: 2rem;
  }
}

.hero-subtitle {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.95rem, 1.15vw, 1.45rem);
  line-height: 1.55;
  text-wrap: balance;
  white-space: normal;
}

@media (min-width: 992px) {
  #home .hero-subtitle.mx-lg-0 {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

.section-intro > .about-heading-rule,
.section-intro > .about-heading-rule-sm {
  margin-bottom: 1rem !important;
}

.section-intro > .about-pillar-chips {
  margin-bottom: 1.25rem !important;
}

.section-intro > .programs-chips {
  margin-top: 1.25rem;
}

.section-intro .about-pillars-eyebrow {
  margin-bottom: 0.65rem !important;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    will-change: transform, opacity;
  }
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* —— Premium site header —— */
.site-header {
  --bs-navbar-padding-y: 0;
  --bs-navbar-padding-x: 0;
  height: var(--site-header-height);
  min-height: var(--site-header-height);
  padding: 0 !important;
  align-items: center;
  background: #fff !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 59, 140, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, min-height 0.35s ease, height 0.35s ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  min-height: var(--site-header-height);
  height: var(--site-header-height);
  gap: 0.5rem 1rem;
  padding-top: 0;
  padding-bottom: 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.site-header .navbar-brand {
  margin: 0;
  padding: 0;
}

.site-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--site-logo-height);
  max-height: var(--site-header-height);
  overflow: visible;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  transition: transform 0.3s ease;
}

.site-brand:hover .site-logo-frame {
  transform: translateY(-1px);
}

.site-logo {
  display: block;
  height: var(--site-logo-height);
  width: auto;
  max-width: min(34rem, 54vw);
  min-width: 13rem;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 1px 3px rgba(11, 59, 140, 0.15));
  transition: height 0.35s ease, max-width 0.35s ease, filter 0.3s ease;
}

.site-brand:hover .site-logo {
  filter: drop-shadow(0 2px 6px rgba(11, 59, 140, 0.22));
}

.site-header-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-nav-toggler {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid rgba(11, 59, 140, 0.22) !important;
  border-radius: 0.55rem;
  padding: 0 !important;
  box-shadow: none !important;
  flex-shrink: 0;
  background: #fff;
  color: var(--royal) !important;
  position: relative;
  z-index: 30;
}

.site-nav-toggler-icon {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--royal);
  pointer-events: none;
}

.site-header .navbar-toggler {
  color: var(--royal) !important;
}

.site-header .navbar-toggler:focus,
.site-header .navbar-toggler:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(11, 59, 140, 0.22) !important;
}

.site-header .navbar-toggler-icon {
  display: none;
}

.site-header.header-scrolled .site-nav-toggler {
  border-color: rgba(11, 59, 140, 0.18) !important;
  background: #fff;
  color: var(--royal);
}

@media (min-width: 992px) {
  .site-header-inner {
    flex-wrap: nowrap;
  }

  .site-nav-toggler {
    display: none;
  }

  .site-header-nav {
    flex: 0 1 auto;
  }

  .site-header-nav.navbar-collapse {
    display: flex !important;
    align-items: center;
  }

  .nav-menu-list {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    padding: 0.28rem;
    margin: 0;
    border-radius: 999px;
    background: var(--royal-light);
    border: 1px solid #d1e1fd;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav-link-custom {
    padding: 0.48rem 0.9rem !important;
    font-size: 0.9375rem;
  }
}

.site-header.header-scrolled {
  --site-header-height: 96px;
  --site-logo-height: 88px;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1) !important;
  border-bottom: 1px solid rgba(11, 59, 140, 0.08);
}

.site-header.header-scrolled .site-logo-frame {
  box-shadow: none;
}

.site-header.header-scrolled .site-logo {
  max-width: min(28rem, 48vw);
}

.site-header.header-scrolled .navbar-collapse {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
}

.site-header.header-scrolled .navbar-toggler {
  color: var(--royal);
  border-color: rgba(11, 59, 140, 0.2);
}

.nav-link-custom {
  color: #475569 !important;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  padding: 0.48rem 0.9rem !important;
  line-height: 1.3;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  letter-spacing: 0.015em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-link-custom:hover {
  color: var(--royal) !important;
  background: rgba(11, 59, 140, 0.08) !important;
  box-shadow: none;
}

.nav-link-custom.active {
  color: #031736 !important;
  background: linear-gradient(135deg, #f0c040, #d4a017) !important;
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.35);
}

.site-header.header-scrolled .nav-link-custom {
  color: #475569 !important;
}

.site-header.header-scrolled .nav-link-custom:hover {
  color: var(--royal) !important;
  background: rgba(11, 59, 140, 0.08) !important;
  box-shadow: none;
}

.site-header.header-scrolled .nav-link-custom.active {
  color: #031736 !important;
  background: linear-gradient(135deg, #f0c040, #d4a017) !important;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.28);
}

.nav-link-custom::after {
  display: none;
}

@media (max-width: 991.98px) {
  :root {
    --site-header-height: 108px;
    --site-logo-height: 100px;
  }

  .site-header {
    height: auto;
    min-height: var(--site-header-height);
    align-items: stretch;
  }

  .site-header.header-scrolled {
    --site-header-height: 88px;
    --site-logo-height: 80px;
  }

  .site-header-inner {
    min-height: var(--site-header-height);
    height: auto;
    align-items: center;
  }

  .site-header-nav {
    flex: 1 1 100%;
    width: 100%;
  }

  #mainNav {
    width: 100%;
    margin-top: 0.45rem;
    padding-bottom: 0.65rem;
  }

  .nav-menu-list {
    width: 100%;
    padding: 0;
    gap: 0;
  }

  .site-header .navbar-collapse,
  .site-header.header-scrolled .navbar-collapse {
    background: #fff !important;
    border-radius: 0.75rem;
    padding: 0.35rem 0;
    border: 1px solid rgba(11, 59, 140, 0.08) !important;
    box-shadow: 0 16px 40px rgba(3, 23, 54, 0.16) !important;
  }

  .site-header .nav-link-custom,
  .site-header.header-scrolled .nav-link-custom {
    width: 100%;
    color: #334155 !important;
    border-radius: 0 !important;
    padding: 0.9rem 1.2rem !important;
    font-size: 1rem !important;
    justify-content: flex-start;
    border-bottom: 1px solid #eef2f7;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header .nav-menu-list .nav-item:last-child .nav-link-custom {
    border-bottom: none;
  }

  .site-header .nav-link-custom:hover,
  .site-header.header-scrolled .nav-link-custom:hover {
    color: var(--royal) !important;
    background: rgba(11, 59, 140, 0.04) !important;
  }

  .site-header .nav-link-custom.active,
  .site-header.header-scrolled .nav-link-custom.active {
    color: var(--royal) !important;
    background: rgba(11, 59, 140, 0.05) !important;
    box-shadow: none !important;
  }

  .site-header .nav-link-custom.active::after {
    display: block;
    content: '';
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), #f0c040);
  }

  .site-logo {
    max-width: min(26rem, 78vw);
  }
}

@media (max-width: 767.98px) {
  :root {
    --site-header-height: 100px;
    --site-logo-height: 92px;
  }

  .site-header.header-scrolled {
    --site-header-height: 84px;
    --site-logo-height: 76px;
  }

  .site-logo {
    max-width: min(24rem, 82vw);
  }
}

@media (max-width: 575.98px) {
  :root {
    --site-header-height: 96px;
    --site-logo-height: 88px;
  }

  .site-logo {
    max-width: min(22rem, 88vw);
  }
}

.footer-brand {
  display: inline-block;
}

.footer-logo {
  height: 88px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.footer-brand:hover .footer-logo {
  opacity: 1;
}

.logo-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
  transition: background 0.35s;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.35s;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: color 0.35s;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.btn-hero-outline:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

#home .hero-cta .btn-lg {
  border-radius: 0.5rem;
  padding: 0.72rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

#home .hero-cta .btn-gold {
  color: #0f172a;
  background: linear-gradient(135deg, #e8b923, #f5c842);
  box-shadow: 0 4px 18px rgba(212, 160, 23, 0.35);
}

#home .hero-cta .btn-gold:hover {
  color: #0f172a;
  background: linear-gradient(135deg, #f0c040, #ffd769);
}

.hero-bg-layer {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(3, 23, 54, 0.92) 0%,
    rgba(11, 59, 140, 0.78) 50%,
    rgba(3, 23, 54, 0.92) 100%
  );
}

#home {
  --hero-nav-btn: 3rem;
  --hero-nav-gap: 1rem;
  --hero-nav-edge: 1.25rem;
}

#home .hero-title {
  font-family: 'Poppins', system-ui, sans-serif;
  letter-spacing: -0.015em;
  line-height: 1.14;
  overflow: visible;
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(2, 8, 23, 0.45);
  margin-bottom: 0 !important;
}

#home .hero-title-accent {
  display: block;
  margin-top: 0.12em;
  padding-left: 0.06em;
  color: #f5c842;
  -webkit-text-fill-color: #f5c842;
  background: none;
  animation: none;
  line-height: 1.16;
  padding-bottom: 0.1em;
  text-shadow: none;
  overflow: visible;
}

#home .hero-copy-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

#home .hero-copy-panel .hero-badge {
  margin-bottom: 1.1rem !important;
}

#home .hero-copy-panel .hero-title {
  margin-bottom: 1rem !important;
}

#home .hero-copy-panel .hero-subtitle {
  margin-bottom: 1.65rem !important;
}

#home .hero-copy-panel .hero-cta {
  margin-top: 0;
}

#home .hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 26rem;
  text-shadow: none;
}

#home .hero-badge {
  background: rgba(3, 23, 54, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0.45rem 0.9rem;
  backdrop-filter: blur(8px);
  text-shadow: none;
}

#home .hero-badge-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

@media (min-width: 992px) {
  #home .hero-copy-panel {
    align-items: flex-start;
    text-align: left;
    max-width: 36rem;
    padding: 0.5rem 0;
  }

  #home .hero-subtitle {
    max-width: 22rem;
  }
}

.hero-cta .btn {
  min-width: 220px;
}

#home .hero-cta .btn {
  min-width: 0;
}

@media (min-width: 992px) {
  #home .hero-cta .btn {
    min-width: 10.75rem;
    flex: 0 1 auto;
  }
}

.hero-mini-points {
  margin-top: 0.6rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px);
}

.hero-chip i {
  color: #ffd769;
}

.shimmer-text {
  background: linear-gradient(100deg, #d4a017 15%, #ffd769 35%, #f7bf2f 50%, #fff0bf 65%, #d4a017 85%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-gold 4s linear infinite;
}

.hero-particles {
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.05));
  opacity: 0.28;
  filter: blur(0.4px);
  animation: particle-float var(--dur, 14s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.hero-luxury {
  isolation: isolate;
}

@media (max-width: 991.98px) {
  #home.hero-luxury {
    align-items: flex-start;
    overflow: visible !important;
    overflow-x: hidden !important;
    min-height: 100svh;
    min-height: 100dvh;
  }

  #home #heroBgCarousel {
    min-height: 100%;
  }

  #home #heroBgCarousel .carousel-inner,
  #home #heroBgCarousel .carousel-item {
    min-height: 100%;
  }

  #home .carousel-item > .container-xxl {
    height: auto !important;
    min-height: calc(100svh - var(--site-header-height));
    min-height: calc(100dvh - var(--site-header-height));
    align-items: flex-start !important;
    padding-top: calc(var(--site-header-height) + 1rem);
    padding-bottom: 4.25rem;
  }

  #home .hero-content {
    padding-top: 0 !important;
  }

  #home .hero-content.row {
    --bs-gutter-y: 1rem;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #home .hero-title {
    line-height: 1.12 !important;
    padding-top: 0.1rem;
  }

  .hero-carousel-indicators {
    margin-bottom: 1rem;
  }
}

.hero-luxury-bg {
  background:
    radial-gradient(1200px 700px at 75% 15%, rgba(80, 132, 255, 0.25), transparent 55%),
    radial-gradient(900px 600px at 15% 75%, rgba(212, 160, 23, 0.2), transparent 50%),
    linear-gradient(135deg, #031736 0%, #0b2c6b 45%, #123f8f 100%);
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-slide-bg--subject-right {
  background-position: 72% center;
}

.carousel-item.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 23, 54, 0.96) 0%,
      rgba(3, 23, 54, 0.92) 22%,
      rgba(3, 23, 54, 0.78) 38%,
      rgba(3, 23, 54, 0.45) 50%,
      rgba(3, 23, 54, 0.12) 58%,
      transparent 66%
    ),
    linear-gradient(to top, rgba(3, 23, 54, 0.38), transparent 28%);
  pointer-events: none;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c040, #d4a017);
  box-shadow: 0 0 10px rgba(240, 192, 64, 0.65);
  flex-shrink: 0;
}

#home .hero-content {
  padding-top: calc(var(--site-header-height) + 1rem);
}

#home .hero-content--split {
  min-height: 0;
}

#home .hero-copy-col {
  position: relative;
  z-index: 8;
  max-width: 100%;
  overflow: visible;
}

#home .carousel-item > .container-xxl {
  position: relative;
  z-index: 6;
}

#home .hero-copy-panel {
  overflow: visible;
}

@media (min-width: 992px) {
  #home .hero-content--split {
    flex-wrap: nowrap;
  }

  #home .carousel-item > .container-xxl {
    overflow: visible;
    padding-left: calc(var(--hero-nav-edge) + var(--hero-nav-btn) + var(--hero-nav-gap) + 0.5rem) !important;
    padding-right: calc(var(--hero-nav-edge) + var(--hero-nav-btn) + var(--hero-nav-gap) + 0.5rem) !important;
  }

  #home .hero-copy-col {
    flex: 0 1 42rem;
    max-width: 42rem;
    padding-right: 1.5rem;
    padding-left: 0;
  }

  #home .hero-media-reserve {
    flex: 1 1 auto;
    min-height: 1px;
    pointer-events: none;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-slide-bg--subject-right {
    background-position: 78% center;
  }
}

@media (max-width: 991.98px) {
  .hero-slide-bg--subject-right {
    background-position: center 30%;
  }

  .hero-slide-overlay {
    background:
      linear-gradient(180deg, rgba(3, 23, 54, 0.9) 0%, rgba(3, 23, 54, 0.72) 45%, rgba(3, 23, 54, 0.5) 100%),
      linear-gradient(to top, rgba(3, 23, 54, 0.2), transparent 18%);
  }

  #home .hero-copy-panel {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  #home .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.12;
  }

  #home .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  #home .hero-copy-panel .hero-subtitle {
    margin-bottom: 1.35rem !important;
  }
}

.hero-carousel-indicators {
  z-index: 12;
  margin-bottom: 1.75rem;
  gap: 0.35rem;
}

.hero-carousel-indicators [data-bs-target] {
  width: 2.25rem;
  height: 0.28rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: width 0.35s ease, background 0.35s ease;
}

.hero-carousel-indicators [data-bs-target].active {
  width: 3rem;
  background: linear-gradient(90deg, #d4a017, #f0c040);
}

.hero-carousel-control {
  width: auto;
  z-index: 5;
  opacity: 1;
}

.hero-control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(3, 23, 54, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.35rem;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero-carousel-control:hover .hero-control-btn {
  background: rgba(11, 59, 140, 0.85);
  border-color: rgba(240, 192, 64, 0.55);
  transform: scale(1.06);
}

.hero-glow {
  width: 240px;
  height: 240px;
  border-radius: 999px;
  filter: blur(45px);
  opacity: 0.3;
}

.hero-glow-1 {
  background: rgba(255, 219, 125, 0.75);
  top: 12%;
  right: 9%;
}

.hero-glow-2 {
  background: rgba(77, 143, 255, 0.8);
  bottom: 10%;
  left: 8%;
}

.hero-showcase {
  position: relative;
  width: min(560px, 100%);
  height: 430px;
}


#heroBgCarousel .carousel-control-prev,
#heroBgCarousel .carousel-control-next {
  width: auto;
  padding: 0;
}

@media (min-width: 992px) {
  #home #heroBgCarousel .carousel-control-prev {
    left: var(--hero-nav-edge);
  }

  #home #heroBgCarousel .carousel-control-next {
    right: var(--hero-nav-edge);
  }
}

@media (min-width: 1400px) {
  #home #heroBgCarousel .carousel-control-prev {
    left: max(var(--hero-nav-edge), calc((100vw - 1320px) / 2 - var(--hero-nav-btn) - var(--hero-nav-gap)));
  }

  #home #heroBgCarousel .carousel-control-next {
    right: max(var(--hero-nav-edge), calc((100vw - 1320px) / 2 - var(--hero-nav-btn) - var(--hero-nav-gap)));
  }
}

.hero-media-card {
  position: absolute;
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-showcase:hover .hero-media-card img {
  transform: scale(1.05);
}

.hero-media-main {
  top: 18px;
  left: 12px;
  width: 72%;
  height: 84%;
}

.hero-media-side {
  right: 8px;
  top: 80px;
  width: 42%;
  height: 58%;
}

.hero-floating {
  position: absolute;
  padding: 0.75rem 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-floating-top {
  right: 18px;
  top: 26px;
}

.hero-floating-bottom {
  left: 24px;
  bottom: 20px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 4s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-slide-up {
  animation: slide-up 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
  opacity: 0;
}

.services-pillars-grid {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.services-pillars-grid > [class*='col-'] {
  display: flex;
}

@media (min-width: 992px) {
  .services-pillars-grid {
    display: grid;
    /* 3 visible service cards (without Seminars) should occupy the full row */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .services-pillars-grid > [class*='col-'] {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
}

.service-pillar-card {
  --service-accent: #2563eb;
  --service-title-color: #1d4ed8;
  --service-tint: transparent;
  width: 100%;
}

.service-pillar-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
}

.service-pillar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.service-head-title {
  flex: 1;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: var(--service-title-color);
  transition: opacity 0.25s ease;
}

.service-pillar-card:hover .service-head-title {
  opacity: 0.88;
}

.service-title {
  line-height: 1.25;
  color: #0f172a;
}

.service-highlights {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
  color: #475569;
  line-height: 1.45;
}

.service-highlights li:last-child {
  margin-bottom: 0;
}

.service-highlights li i {
  color: var(--service-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-pillar-card .service-highlights {
  background: var(--service-tint);
  border: 1px solid color-mix(in srgb, var(--service-accent) 18%, transparent);
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
}

.service-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(11, 59, 140, 0.1);
  background: linear-gradient(165deg, #ffffff 0%, var(--service-tint) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(11, 59, 140, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(11, 59, 140, 0.13);
  border-color: color-mix(in srgb, var(--service-accent) 40%, #e8eef9);
}

.service-card-glow {
  position: absolute;
  inset: auto -35% -55% -35%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(39, 107, 231, 0.2), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.service-icon {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #0b3b8c, #1a5bc7);
  box-shadow: 0 10px 22px rgba(11, 59, 140, 0.28);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.service-pillar-card:hover .service-icon {
  transform: translateY(-3px) scale(1.05);
}

.service-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0b3b8c;
  background: #e8f0fe;
  border: 1px solid #cfe0fb;
}

.service-desc {
  line-height: 1.62;
  color: #64748b !important;
}

@media (min-width: 992px) {
  .service-pillar-card {
    min-height: 100%;
  }

  .service-pillar-card .service-card-inner {
    min-height: 21rem;
  }

  .service-desc {
    min-height: 5.25rem;
  }

  .service-highlights {
    min-height: 5.5rem;
  }
}

.services-title {
  letter-spacing: -0.01em;
}

.services-subtitle {
  color: #5d6a7c !important;
}

/* —— Programs section —— */
.programs-section.section-padding {
  padding-top: 2rem;
  padding-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .programs-section.section-padding {
    padding-top: 2.35rem;
    padding-bottom: 2.75rem;
  }
}

.programs-intro.section-intro {
  margin-bottom: 1.5rem !important;
}

.programs-intro > .programs-badge {
  margin-bottom: 0.6rem !important;
}

.programs-intro > p.lead {
  margin-bottom: 0 !important;
  padding-bottom: 0.5rem !important;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.5;
}

.programs-intro > .programs-chips {
  margin-top: 0.5rem !important;
}

.programs-section .programs-grid {
  --bs-gutter-y: 1.15rem;
  --bs-gutter-x: 1.15rem;
}

@media (min-width: 992px) {
  .programs-section .programs-grid {
    --bs-gutter-y: 1.35rem;
    --bs-gutter-x: 1.35rem;
  }
}

.programs-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f3f7fd 100%);
}

.programs-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.programs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.45;
  animation: programs-orb-drift 14s ease-in-out infinite;
}

.programs-orb-1 {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  left: -4rem;
  background: rgba(11, 59, 140, 0.22);
}

.programs-orb-2 {
  width: 18rem;
  height: 18rem;
  top: 20%;
  right: -5rem;
  background: rgba(212, 160, 23, 0.2);
  animation-delay: -4s;
}

.programs-orb-3 {
  width: 16rem;
  height: 16rem;
  bottom: -4rem;
  left: 35%;
  background: rgba(37, 99, 235, 0.16);
  animation-delay: -8s;
}

.programs-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(11, 59, 140, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 59, 140, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.programs-badge {
  background: var(--gold-light) !important;
  border-color: #f3dba3 !important;
  color: #80600e;
  animation: programs-badge-pop 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.programs-badge i {
  color: var(--gold);
}

.programs-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(11, 59, 140, 0.1);
  box-shadow: 0 4px 14px rgba(11, 59, 140, 0.06);
  animation: programs-chip-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.programs-chip:nth-child(2) {
  animation-delay: 0.1s;
}

.programs-chip:nth-child(3) {
  animation-delay: 0.2s;
}

.programs-chip i {
  color: var(--gold);
  font-size: 0.85rem;
}

.program-card {
  --program-accent: #60a5fa;
}

.program-card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    120deg,
    var(--program-accent),
    rgba(212, 160, 23, 0.85),
    rgba(11, 59, 140, 0.75),
    var(--program-accent)
  );
  background-size: 260% 260%;
  opacity: 0;
  transition: opacity 0.35s ease;
  animation: program-border-shift 6s linear infinite;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 2;
}

.program-card:hover .program-card-border {
  opacity: 1;
}

.program-card-head {
  height: 7.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem 1rem 0.85rem;
}

.program-card-head--photo {
  height: 11rem;
  min-height: 11rem;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.program-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:hover .program-card-photo {
  transform: scale(1.06);
}

.program-card-head-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.program-card-head-content,
.program-icon-wrap,
.program-tag,
.program-card-head .glass-badge,
.program-detail-hero-icon,
.program-detail-hero-tag {
  display: none !important;
}

.program-card-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.program-card-head--photo::after {
  display: none;
}

.program-float-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.program-float-shape-1 {
  width: 5.5rem;
  height: 5.5rem;
  top: -1.5rem;
  right: 1rem;
  animation: program-shape-float 7s ease-in-out infinite;
}

.program-float-shape-2 {
  width: 3rem;
  height: 3rem;
  bottom: 0.5rem;
  left: 35%;
  animation: program-shape-float 9s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.program-float-shape-3 {
  width: 2rem;
  height: 2rem;
  top: 1.25rem;
  left: 1rem;
  animation: program-shape-float 6s ease-in-out infinite;
  animation-delay: -4s;
}

.program-icon-wrap {
  position: relative;
  z-index: 1;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-icon {
  font-size: 1.45rem;
  color: #fff;
  transition: transform 0.4s ease;
}

.program-card:hover .program-icon-wrap {
  transform: translateY(-4px) scale(1.06) rotate(-4deg);
}

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

.program-tag {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 0.15rem;
}

.program-particle {
  display: none !important;
}

.program-title {
  transition: color 0.25s ease;
}

.program-card:hover .program-title {
  color: var(--royal);
}

.program-desc {
  line-height: 1.55;
  min-height: 4.5rem;
}

.program-meta {
  background: linear-gradient(135deg, #f8fbff, #f1f6ff);
  border: 1px solid #e3ecfb;
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
}

.program-meta-icon {
  color: var(--program-accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.program-card-body {
  padding: 1.35rem 1.25rem 1.4rem;
  flex: 1;
}

.program-btn {
  position: relative;
  overflow: hidden;
  border: none !important;
  text-decoration: none;
}

.program-btn-primary {
  min-height: 3.15rem;
  padding: 0.85rem 1.25rem !important;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 0.85rem !important;
  color: #fff !important;
  background: linear-gradient(135deg, #0b3b8c 0%, #1a5bc7 50%, #2563eb 100%) !important;
  border: 2px solid rgba(212, 160, 23, 0.65) !important;
  box-shadow:
    0 6px 20px rgba(11, 59, 140, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 0 24px rgba(212, 160, 23, 0.15);
}

.program-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.program-card:hover .program-btn-primary::after,
.program-btn-primary:hover::after,
.program-btn-primary:focus-visible::after {
  transform: translateX(120%);
}

.program-btn-primary:hover,
.program-btn-primary:focus-visible {
  color: #031736 !important;
  background: linear-gradient(135deg, #e8b923 0%, #f0c040 45%, #f5d060 100%) !important;
  border-color: #d4a017 !important;
  box-shadow:
    0 12px 28px rgba(212, 160, 23, 0.45),
    0 0 0 2px rgba(11, 59, 140, 0.12);
  transform: translateY(-2px);
}

.program-btn-arrow {
  transition: transform 0.3s ease;
  line-height: 1;
}

.program-btn-primary:hover .program-btn-arrow,
.program-btn-primary:focus-visible .program-btn-arrow {
  transform: translateX(5px);
}

.programs-grid [data-reveal-item] {
  animation-duration: 0.85s;
}

@keyframes programs-orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -16px) scale(1.06);
  }
}

@keyframes programs-badge-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes programs-chip-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes program-border-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes program-shape-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

@keyframes program-particle-drift {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .programs-orb,
  .program-float-shape,
  .program-card-border,
  .program-particle,
  .programs-badge,
  .programs-chip {
    animation: none !important;
  }
}

.course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e8eef9;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  transform-style: preserve-3d;
  position: relative;
}

.course-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 38px rgba(11, 59, 140, 0.14);
  border-color: rgba(11, 59, 140, 0.25);
}

.course-card .course-head {
  height: 8rem;
  position: relative;
  overflow: hidden;
}

.course-card .program-card-head--photo {
  height: 11rem;
}

.course-card .course-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

.course-card-glow {
  position: absolute;
  inset: auto -30% -65% -30%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(41, 105, 225, 0.22), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.course-card:hover .course-card-glow {
  opacity: 1;
}

.glass-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 600;
}

.course-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.course-title {
  color: #0f172a;
  line-height: 1.25;
}

.course-desc {
  color: #64748b !important;
  min-height: 3.8rem;
}

.course-meta {
  margin-top: auto;
}

.program-card .course-meta {
  margin-bottom: 1rem;
}

/* Pixel-perfect program card alignment on desktop */
@media (min-width: 992px) {
  .program-card.course-card {
    display: flex;
    flex-direction: column;
    min-height: 460px;
    height: 100%;
  }

  .program-card-head--photo {
    height: 12rem;
    min-height: 12rem;
  }

  .program-card .program-card-head {
    flex-shrink: 0;
  }

  .program-desc {
    min-height: 4.25rem;
  }
}

.testimonial-card {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(11, 59, 140, 0.1);
  box-shadow: 0 8px 32px rgba(11, 59, 140, 0.08);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 59, 140, 0.25);
  box-shadow: 0 18px 34px rgba(11, 59, 140, 0.14);
}

.gallery-item img {
  transition: transform 0.65s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 23, 54, 0.85), rgba(3, 23, 54, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal [data-reveal-item] {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.reveal.is-visible [data-reveal-item] {
  animation: reveal-item 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}

/* —— Impact / achievements section (light professional) —— */
.impact-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f0f6ff 100%);
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.impact-intro.section-intro {
  margin-bottom: 1.5rem !important;
}

.impact-intro > .impact-badge {
  margin-bottom: 0.6rem !important;
}

.impact-intro > .impact-title {
  margin-bottom: 0.65rem !important;
}

.impact-intro > .impact-subtitle {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.5;
}

.impact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.impact-mesh {
  position: absolute;
  inset: 0;
  opacity: 1;
  background:
    radial-gradient(ellipse 70% 50% at 15% 15%, rgba(11, 59, 140, 0.06), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 80%, rgba(212, 160, 23, 0.08), transparent 50%),
    radial-gradient(ellipse 45% 40% at 50% 100%, rgba(59, 130, 246, 0.05), transparent 45%);
}

.impact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  animation: impact-orb-float 16s ease-in-out infinite;
}

.impact-orb-1 {
  width: 20rem;
  height: 20rem;
  top: -6rem;
  left: -4rem;
  background: rgba(212, 160, 23, 0.12);
}

.impact-orb-2 {
  width: 18rem;
  height: 18rem;
  bottom: -5rem;
  right: -3rem;
  background: rgba(11, 59, 140, 0.1);
  animation-delay: -5s;
}

.impact-orb-3 {
  width: 14rem;
  height: 14rem;
  top: 40%;
  left: 42%;
  background: rgba(59, 130, 246, 0.08);
  animation-delay: -9s;
}

.impact-line {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(11, 59, 140, 0.08), transparent);
}

.impact-line-left {
  left: 8%;
}

.impact-line-right {
  right: 8%;
}

.impact-badge {
  background: var(--royal-light);
  border: 1px solid #d1e1fd;
  color: var(--royal);
  box-shadow: 0 4px 14px rgba(11, 59, 140, 0.06);
}

.impact-badge i {
  color: var(--royal);
}

.impact-title {
  color: #0f172a;
  letter-spacing: -0.02em;
}

.impact-subtitle {
  max-width: 44rem;
  color: #64748b !important;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem !important;
}

@media (min-width: 992px) {
  .impact-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.impact-stat-col {
  display: flex;
}

.impact-stat-card {
  --impact-accent: #93c5fd;
  position: relative;
  width: 100%;
  padding: 1.35rem 1.15rem 1.25rem;
  text-align: center;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(11, 59, 140, 0.08);
  box-shadow:
    0 8px 32px rgba(11, 59, 140, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
  overflow: hidden;
}

.impact-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--impact-accent), var(--gold), var(--impact-accent));
  opacity: 0.95;
}

.impact-stat-shine {
  position: absolute;
  inset: -50% -50% auto;
  height: 80%;
  background: radial-gradient(circle at center, rgba(11, 59, 140, 0.04), transparent 65%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.impact-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.28);
  box-shadow:
    0 20px 44px rgba(11, 59, 140, 0.12),
    0 0 0 1px rgba(212, 160, 23, 0.12);
}

.impact-stat-card:hover .impact-stat-shine {
  opacity: 1.5;
}

.impact-stat-icon-ring {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-stat-icon-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.15rem;
  border: 1px solid rgba(11, 59, 140, 0.1);
  background: rgba(240, 246, 255, 0.8);
  transform: rotate(8deg);
  transition: transform 0.4s ease;
}

.impact-stat-card:hover .impact-stat-icon-ring::before {
  transform: rotate(18deg) scale(1.05);
}

.impact-stat-icon {
  position: relative;
  z-index: 1;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(11, 59, 140, 0.2);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.impact-stat-card:hover .impact-stat-icon {
  transform: scale(1.08) translateY(-2px);
}

.impact-stat-value {
  font-size: clamp(2.35rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--royal-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.impact-stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.impact-stat-sublabel {
  font-size: 0.8rem;
  color: #64748b;
}

.impact-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.impact-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--royal-dark);
  background: #fff;
  border: 1px solid rgba(11, 59, 140, 0.12);
  box-shadow: 0 4px 16px rgba(11, 59, 140, 0.06);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.impact-trust-badge i {
  color: var(--gold);
  font-size: 1rem;
}

.impact-trust-badge:hover {
  transform: translateY(-2px);
  background: var(--royal-light);
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: 0 8px 22px rgba(11, 59, 140, 0.1);
}

@keyframes impact-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(14px, -18px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .impact-orb {
    animation: none;
  }
}

.achievement-stat {
  /* legacy alias */
}

.bg-achievement {
  background: linear-gradient(135deg, #052352 0%, #0b3b8c 45%, #031736 100%);
}

.pattern-dots {
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* —— Contact section —— */
.contact-section {
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 45%, #f8fafc 100%);
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.5;
}

.contact-orb-1 {
  width: 22rem;
  height: 22rem;
  top: -5rem;
  right: -4rem;
  background: rgba(11, 59, 140, 0.12);
}

.contact-orb-2 {
  width: 18rem;
  height: 18rem;
  bottom: -4rem;
  left: -3rem;
  background: rgba(212, 160, 23, 0.14);
}

.contact-badge {
  background: var(--royal-light) !important;
  border-color: #d1e1fd !important;
  color: var(--royal);
}

.contact-badge i {
  color: var(--royal);
}

.contact-subtitle {
  max-width: 44rem;
}

.contact-info-panel {
  padding: 1.75rem;
  border-radius: 1.35rem;
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(11, 59, 140, 0.1);
  box-shadow: 0 16px 40px rgba(11, 59, 140, 0.08);
}

.contact-info-header h3 {
  color: #0f172a;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e8eef9;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 59, 140, 0.1);
  border-color: rgba(11, 59, 140, 0.2);
  color: inherit;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 8px 18px rgba(11, 59, 140, 0.2);
}

.contact-card-phone .contact-card-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.contact-card-email .contact-card-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.contact-card-address .contact-card-icon {
  background: linear-gradient(135deg, #059669, #047857);
}

.contact-card-hours .contact-card-icon {
  background: linear-gradient(135deg, #d97706, #b45309);
}

.contact-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card-arrow {
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 1rem;
  margin-top: 0.35rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

a.contact-card:hover .contact-card-arrow {
  transform: translate(2px, -2px);
  color: var(--royal);
}

.contact-form-panel {
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid rgba(11, 59, 140, 0.1);
  box-shadow: 0 20px 48px rgba(11, 59, 140, 0.1);
  overflow: hidden;
}

.contact-form-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--gold), #1a5bc7);
  background-size: 200% 100%;
  animation: contact-accent-shift 8s linear infinite;
}

.contact-form-inner {
  padding: 1.75rem;
}

@media (min-width: 992px) {
  .contact-form-inner {
    padding: 2.25rem 2.5rem 2.5rem;
  }
}

.contact-form-head {
  text-align: center;
}

.contact-form-head h3 {
  color: #0f172a;
}

.contact-input {
  border-radius: 0.85rem !important;
  border: 1px solid #dbe4f2 !important;
  background: #f9fbfe !important;
  min-height: 3.25rem;
}

.contact-input:focus {
  background: #fff !important;
  border-color: var(--royal) !important;
  box-shadow: 0 0 0 3px rgba(11, 59, 140, 0.1) !important;
}

.contact-field label {
  color: #64748b;
}

.contact-field .form-control:focus ~ label,
.contact-field .form-control:not(:placeholder-shown) ~ label,
.contact-field .form-select ~ label {
  color: var(--royal);
}

.contact-submit-btn {
  border-radius: 0.85rem !important;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
  font-size: 1.05rem;
}

.contact-form-success {
  position: absolute;
  inset: 0;
  z-index: 5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.contact-success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #059669;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

@keyframes contact-accent-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@media (max-width: 991.98px) {
  .contact-info-panel {
    margin-bottom: 0.5rem;
  }
}

/* —— Map / location section —— */
.map-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.map-badge {
  background: var(--royal-light) !important;
  border-color: #d1e1fd !important;
  color: var(--royal);
}

.map-badge i {
  color: var(--royal);
}

.map-subtitle {
  max-width: 44rem;
}

.map-panel {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(11, 59, 140, 0.12);
  box-shadow: 0 24px 56px rgba(11, 59, 140, 0.12);
  background: #fff;
}

.map-panel-frame {
  position: relative;
  height: clamp(320px, 42vw, 460px);
  background: #e8eef9;
}

.map-panel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.92) contrast(1.03);
  transition: filter 0.35s ease;
}

.map-panel:hover .map-panel-frame iframe {
  filter: saturate(1) contrast(1.05);
}

/* —— Footer —— */
.site-footer {
  background: linear-gradient(165deg, #020f24 0%, #031736 30%, #0b3b8c 65%, #031736 100%);
}

.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(212, 160, 23, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(96, 165, 250, 0.12), transparent 50%);
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.footer-orb-1 {
  width: 16rem;
  height: 16rem;
  top: 20%;
  left: -4rem;
  background: rgba(212, 160, 23, 0.25);
}

.footer-orb-2 {
  width: 18rem;
  height: 18rem;
  bottom: 10%;
  right: -5rem;
  background: rgba(59, 130, 246, 0.2);
}

.footer-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
}

.footer-wave-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-about {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 1.35rem;
  max-width: 22rem;
}

.footer-about strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.footer-social-btn {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-social-btn:hover {
  color: #fff;
  background: rgba(212, 160, 23, 0.25);
  border-color: rgba(212, 160, 23, 0.45);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 0.15rem;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-contact li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-tagline {
  display: inline-block;
  margin-left: 0.35rem;
  opacity: 0.75;
}

.footer-tagline::before {
  content: '·';
  margin-right: 0.35rem;
}

.scroll-top-btn,
#scrollTopBtn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-top-btn:hover,
#scrollTopBtn:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.5);
}

.scroll-top-btn.show,
#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 991.98px) {
  .footer-main {
    padding-top: 3.5rem !important;
  }
}

#galleryLightbox .modal-content {
  background: rgba(15, 23, 42, 0.95);
  border: none;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  color: var(--royal);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 0.2rem rgba(11, 59, 140, 0.15);
}

.form-control,
.form-select {
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dot-nav button {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: none;
  background: #cbd5e1;
  padding: 0;
  transition: width 0.3s, background 0.3s;
}

.dot-nav button.active {
  width: 2rem;
  background: var(--royal);
}




.map-frame {
  border: 1px solid rgba(11, 59, 140, 0.12);
  box-shadow: 0 15px 35px rgba(2, 8, 23, 0.08);
}


.about-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f0f6ff 100%);
  overflow: hidden;
}

.about-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.45;
}

.about-orb-1 {
  width: 22rem;
  height: 22rem;
  top: -4rem;
  left: -5rem;
  background: rgba(11, 59, 140, 0.14);
}

.about-orb-2 {
  width: 18rem;
  height: 18rem;
  bottom: 2rem;
  right: -4rem;
  background: rgba(212, 160, 23, 0.18);
}

.about-intro {
  max-width: 46rem;
}

.about-section-badge {
  background: var(--royal-light);
  border: 1px solid #d1e1fd;
  color: var(--royal);
  box-shadow: 0 4px 14px rgba(11, 59, 140, 0.06);
}

.about-section-badge i {
  color: var(--royal);
}

.about-heading {
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0f172a;
}

.about-heading-rule {
  width: 4.5rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  margin: 0 auto !important;
  display: block !important;
}

.about-heading-rule-sm {
  width: 3rem;
  height: 3px;
  opacity: 0.85;
}

.about-pillar-chips {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.about-pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--royal-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 59, 140, 0.12);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(11, 59, 140, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.about-pillar-chip i {
  font-size: 0.82rem;
  color: var(--gold);
}

.about-pillar-chip:hover {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 6px 16px rgba(11, 59, 140, 0.1);
  transform: translateY(-1px);
}

.about-intro-lead {
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #475569;
  font-weight: 500;
}

.about-since-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a5a08;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(240, 192, 64, 0.08));
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 999px;
}

.about-since-chip i {
  color: var(--gold);
  font-size: 0.9rem;
}

.about-mission-card {
  max-width: 54rem;
  margin-bottom: 2.5rem;
  border-radius: 1.35rem;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 20px 50px rgba(11, 59, 140, 0.1),
    0 0 0 1px rgba(11, 59, 140, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-mission-card:hover {
  border-color: rgba(212, 160, 23, 0.22);
  box-shadow:
    0 24px 56px rgba(11, 59, 140, 0.14),
    0 0 0 1px rgba(212, 160, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.about-mission-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--royal-dark), var(--royal), var(--gold), #1a5bc7);
  background-size: 200% 100%;
  animation: contact-accent-shift 10s linear infinite;
}

.about-mission-inner {
  padding: 1.5rem 1.35rem 1.6rem;
}

@media (min-width: 768px) {
  .about-mission-inner {
    padding: 1.75rem 2rem 1.85rem;
  }
}

.about-mission-lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #1e293b;
}

.about-mission-lead strong {
  color: var(--royal-dark);
  font-weight: 700;
}

.about-mission-divider {
  width: 3.5rem;
  height: 2px;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-mission-text {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #64748b;
}

.about-pillars-eyebrow {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.5rem;
}

.about-pillars-block {
  max-width: 72rem;
  margin: 0 auto;
}

.about-pillars-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-pillars-head.section-intro {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-pillars-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section-intro .about-pillars-sub {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 42rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  transform: none !important;
  font-size: clamp(0.9rem, 2.8vw, 1.05rem);
  line-height: 1.65;
  color: #64748b;
  text-wrap: balance;
  white-space: normal !important;
}

.about-pillar-card {
  height: 100%;
  text-align: center;
  padding: 1.75rem 1.35rem 1.65rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 59, 140, 0.08);
  box-shadow:
    0 8px 28px rgba(11, 59, 140, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 18px 42px rgba(11, 59, 140, 0.12);
}

.about-pillar-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 59, 140, 0.22);
  transition: transform 0.35s ease;
}

.about-pillar-card:hover .about-pillar-icon {
  transform: scale(1.06);
}

.about-pillar-icon-blue {
  background: linear-gradient(135deg, var(--royal-dark), #1a5bc7);
}

.about-pillar-icon-gold {
  background: linear-gradient(135deg, #b8860b, #f0c040);
}

.about-pillar-icon-royal {
  background: linear-gradient(135deg, #0b3b8c, #3b82f6);
}

.about-pillar-icon-blend {
  background: linear-gradient(135deg, var(--royal), #d4a017);
}

.about-pillar-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal-dark);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.about-pillar-text {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 767.98px) {
  .about-mission-inner {
    padding: 1.65rem 1.35rem 1.75rem;
  }

  .about-mission-card {
    margin-bottom: 2.5rem;
  }

  .about-intro-lead {
    font-size: 1rem;
  }

  .about-pillars-head {
    margin-bottom: 1.75rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .section-intro .about-pillars-sub {
    max-width: 22rem !important;
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    transform: none !important;
  }
}

@keyframes reveal-item {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes btn-shine {
  from { left: -120%; }
  to { left: 130%; }
}

@keyframes shimmer-gold {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes particle-float {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0;
  }
  10% { opacity: 0.26; }
  50% {
    transform: translate3d(22px, -55px, 0) scale(1.08);
    opacity: 0.34;
  }
  100% {
    transform: translate3d(-18px, -120px, 0) scale(0.95);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 991.98px) {
  .hero-subtitle {
    font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  }

  .hero-cta .btn {
    min-width: auto;
    width: 100%;
  }

  .hero-mini-points {
    justify-content: center;
  }

  .nav-link-custom {
    font-size: 1.1rem;
    padding: 0.75rem 1rem !important;
  }

  .hero-carousel-control {
    display: none;
  }

  .impact-section {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }

  .program-desc,
  .course-desc {
    min-height: 0;
  }

  .service-highlights {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .display-2 {
    font-size: clamp(1.65rem, 7.2vw, 2.1rem);
    line-height: 1.22 !important;
  }

  #home .carousel-item > .container-xxl {
    padding-top: calc(var(--site-header-height) + 0.85rem);
    padding-bottom: 3.75rem;
  }

  #home .hero-badge {
    margin-bottom: 0.65rem !important;
    padding: 0.32rem 0.7rem !important;
  }

  #home .hero-badge-label {
    font-size: 0.72rem !important;
  }

  #home .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5;
    max-width: 20rem;
  }

  #home .hero-copy-panel .hero-subtitle {
    margin-bottom: 1.25rem !important;
  }

  #home .hero-cta {
    gap: 0.6rem !important;
  }

  #home .hero-cta .btn-lg {
    padding: 0.58rem 1rem;
    font-size: 0.88rem;
    min-height: 2.65rem;
  }

  #home .hero-mini-points {
    margin-top: 0.75rem !important;
    gap: 0.4rem !important;
  }

  #home .hero-chip {
    font-size: 0.72rem;
    padding: 0.32rem 0.6rem;
  }

  .display-4 {
    font-size: 1.85rem;
  }

  .display-5,
  .display-6 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .section-padding {
    padding-top: 2.25rem;
    padding-bottom: 2.75rem;
  }

  .section-intro {
    margin-bottom: 2.25rem !important;
  }

  .section-intro > p.lead,
  .section-intro > p[class*='-subtitle'],
  .section-intro .about-pillars-sub {
    padding-bottom: 1.25rem;
  }

  .hero-chip {
    font-size: 0.76rem;
    padding: 0.35rem 0.65rem;
  }

  .hero-badge {
    font-size: 0.82rem;
  }

  .hero-cta .btn-lg {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }

  .programs-chips,
  .about-pillar-chips {
    gap: 0.4rem !important;
  }

  .programs-chip,
  .about-pillar-chip {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .contact-card-value,
  .footer-contact span,
  .footer-contact li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .program-detail-hero--clean {
    padding: 1.5rem 0 1.75rem;
  }

  .program-sidebar-card {
    margin-top: 0.5rem;
  }

  .enquiry-modal .modal-dialog {
    max-width: calc(100vw - 1.25rem);
    margin: 0.625rem auto;
  }

  .scroll-top-btn {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2.65rem;
    height: 2.65rem;
  }
}

/* ——— Program detail page ——— */
.program-detail-page {
  padding-top: var(--site-header-height);
}

.program-detail-main {
  min-height: 60vh;
}

.program-detail-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.program-detail-hero--clean {
  --program-hero-accent: #60a5fa;
  --program-hero-gradient: linear-gradient(135deg, #031736 0%, #0b3b8c 48%, #1a5bc7 100%);
  min-height: 0;
  padding: 2rem 0 2.5rem;
  display: flex;
  align-items: center;
  background: var(--program-hero-gradient);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-detail-hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.14), transparent 42%),
    radial-gradient(circle at 88% 75%, rgba(212, 160, 23, 0.18), transparent 38%);
}

.program-detail-hero--clean::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--program-hero-accent), var(--gold), var(--program-hero-accent));
  opacity: 0.85;
}

.program-detail-hero-photo,
.program-detail-hero-overlay {
  display: none !important;
}

.program-detail-hero .container-xxl {
  position: relative;
  z-index: 2;
}

.program-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.65rem;
  margin-left: -0.65rem;
  border-radius: 0.5rem;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.program-detail-hero--clean .program-back-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-3px);
}

.program-detail-hero-inner {
  display: block;
  max-width: 52rem;
}

.program-detail-hero-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.program-detail-hero-tag {
  display: inline-block;
  padding: 0.32rem 0.8rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.program-detail-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.65rem;
  color: #ffffff;
}

.program-detail-hero-desc {
  max-width: 48rem;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: balance;
  white-space: normal;
}

.program-detail-content {
  padding: 2rem 0 4rem;
}

/* ——— Course body layout (two-column grid) ——— */
.course-body-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 769px) {
  .course-body-container {
    flex-direction: row;
    align-items: flex-start;
  }
  .course-main-content {
    flex: 1;
    min-width: 0;
  }
  .course-sidebar {
    width: 35%;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--site-header-height) + 1.25rem);
    align-self: flex-start;
  }
}

/* ——— 2-column grid lists ——— */
.program-detail-grid-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 576px) {
  .program-detail-grid-list {
    grid-template-columns: 1fr 1fr;
  }
}

.program-detail-grid-list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

/* ——— Related programs horizontal grid ——— */
.program-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.program-related-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(11, 59, 140, 0.1);
  text-decoration: none;
  color: #0f172a;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  min-width: 0;
  flex: 1 1 240px;
}

.program-related-link:hover {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 8px 22px rgba(11, 59, 140, 0.1);
  transform: translateY(-2px);
}

.program-related-thumb {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(11, 59, 140, 0.1);
}

.program-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-related-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.program-related-title {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  min-width: 0;
}

.program-related-arrow {
  color: var(--gold);
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* ——— Primary CTA (WhatsApp) ——— */
.program-btn-primary-cta {
  min-height: 2.85rem;
  border: none;
  border-radius: 0.85rem !important;
  color: #fff !important;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 0.92rem;
}

.program-btn-primary-cta:hover,
.program-btn-primary-cta:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, #1ebe5d, #0f7a6c) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.34);
}

.program-btn-primary-cta .bi-whatsapp {
  font-size: 1.2rem;
}

/* ——— Secondary CTA (Email outline) ——— */
.program-btn-secondary-cta {
  min-height: 2.85rem;
  border-radius: 0.85rem !important;
  color: var(--royal) !important;
  background: #fff !important;
  border: 2px solid var(--royal) !important;
  transition: all 0.25s ease;
  font-size: 0.92rem;
}

.program-btn-secondary-cta:hover,
.program-btn-secondary-cta:focus-visible {
  color: #fff !important;
  background: var(--royal) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 59, 140, 0.2);
}

.program-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 1.75rem;
  color: #64748b;
}

.program-breadcrumb a {
  color: var(--royal);
  text-decoration: none;
  font-weight: 600;
}

.program-breadcrumb a:hover {
  color: var(--gold);
}

.program-detail-panel {
  background: #fff;
  border: 1px solid rgba(11, 59, 140, 0.08);
  border-radius: 1.15rem;
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 28px rgba(11, 59, 140, 0.06);
}

.program-detail-panel-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal-dark);
  margin-bottom: 0.85rem;
}

.program-detail-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
}

.program-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  border-bottom: 1px solid rgba(11, 59, 140, 0.06);
}

.program-detail-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.program-detail-list li i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.program-sidebar-card {
  position: static;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #f3f7fd 100%);
  border: 1px solid rgba(11, 59, 140, 0.12);
  border-radius: 1.25rem;
  padding: 0 1.35rem 1.35rem;
  box-shadow:
    0 4px 6px rgba(11, 59, 140, 0.04),
    0 16px 40px rgba(11, 59, 140, 0.1);
}

@media (min-width: 769px) {
  .program-sidebar-card {
    position: sticky;
    top: calc(var(--site-header-height) + 1.25rem);
  }
}

.program-sidebar-accent {
  height: 4px;
  margin: 0 -1.35rem 1.15rem;
  background: linear-gradient(90deg, var(--royal) 0%, #3b82f6 45%, var(--gold) 100%);
}

.program-sidebar-head {
  margin-bottom: 1.1rem;
}

.program-sidebar-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--royal);
  background: rgba(11, 59, 140, 0.08);
  border-radius: 999px;
}

.program-sidebar-eyebrow i {
  font-size: 0.75rem;
  color: var(--gold);
}

.program-sidebar-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--royal-dark);
  margin: 0;
  line-height: 1.25;
}

.program-sidebar-summary {
  margin-top: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.program-sidebar-meta-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.program-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(11, 59, 140, 0.08);
  box-shadow: 0 2px 8px rgba(11, 59, 140, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.program-meta-item:hover {
  border-color: rgba(212, 160, 23, 0.35);
  box-shadow: 0 6px 16px rgba(11, 59, 140, 0.08);
}

.program-meta-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.program-meta-icon--time {
  background: linear-gradient(135deg, #1d4ed8, #0b3b8c);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.28);
}

.program-meta-icon--audience {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.28);
}

.program-meta-icon--languages {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.28);
}

.program-meta-icon--format {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.28);
}

.program-meta-body {
  flex: 1;
  min-width: 0;
}

.program-meta-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.program-meta-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
}

.program-sidebar-divider {
  height: 1px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, transparent, rgba(11, 59, 140, 0.15), transparent);
}

.program-sidebar-cta-lead {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
  margin-bottom: 0.85rem;
}

.program-sidebar-back {
  background: transparent !important;
  color: var(--royal) !important;
  border: 1px dashed rgba(11, 59, 140, 0.25) !important;
  min-height: 2.65rem;
  border-radius: 0.85rem !important;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.program-sidebar-back:hover {
  background: var(--royal-light) !important;
  border-color: var(--royal) !important;
  border-style: solid !important;
  color: var(--royal-dark) !important;
}

.program-enquiry-actions {
  margin-top: 0;
}

.program-not-found-card {
  max-width: 28rem;
  padding: 2.5rem 2rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(11, 59, 140, 0.1);
  box-shadow: 0 12px 36px rgba(11, 59, 140, 0.08);
}

@media (max-width: 767.98px) {
  .program-detail-hero-inner {
    flex-direction: column;
  }

  .program-detail-content {
    padding: 1.5rem 0 2.75rem;
  }

  .program-enquiry-actions .btn {
    min-height: 2.5rem;
    font-size: 0.88rem;
  }

  .program-related-grid {
    flex-direction: column;
  }

  .program-related-link {
    flex: 1 1 auto;
  }
}

/* Tuned for the screenshot-like desktop range */
@media (min-width: 1200px) and (max-width: 1600px) and (max-height: 900px) {
  :root {
    --site-header-height: 110px;
    --site-logo-height: 102px;
  }

  #home .hero-content {
    padding-top: 5.25rem !important;
  }

  #home .hero-title {
    font-size: clamp(2.5rem, 3.4vw, 3.75rem) !important;
    line-height: 1.1;
  }

  #home .hero-subtitle {
    font-size: 1.15rem;
    max-width: 22rem !important;
  }

  .hero-cta {
    margin-top: 1.35rem !important;
  }
}

/* —— Program enquiry modal —— */
.enquiry-modal .modal-dialog {
  max-width: 400px;
  margin: 0.75rem auto;
}

.enquiry-modal .enquiry-modal-dialog.modal-dialog-centered {
  min-height: auto;
  height: auto;
  align-items: center;
}

.enquiry-modal-content {
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 59, 140, 0.2);
}

.enquiry-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  background: linear-gradient(135deg, var(--royal-dark), var(--royal));
  color: #fff;
}

.enquiry-modal-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.enquiry-modal-program {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.enquiry-modal-close {
  flex-shrink: 0;
  opacity: 0.9;
  margin-top: 0;
  transform: scale(0.85);
}

.enquiry-modal-body {
  padding: 0.9rem 1.15rem 1rem;
  background: #fff;
}

.enquiry-modal-intro {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
}

.enquiry-channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.enquiry-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.enquiry-channel-link--whatsapp {
  color: #128c7e;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
}

.enquiry-channel-link--whatsapp:hover {
  color: #0f7a6c;
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.4);
}

.enquiry-channel-link--email {
  color: var(--royal);
  background: rgba(11, 59, 140, 0.06);
  border-color: rgba(11, 59, 140, 0.14);
}

.enquiry-channel-link--email:hover {
  color: var(--royal-dark);
  background: rgba(11, 59, 140, 0.1);
  border-color: rgba(11, 59, 140, 0.22);
}

.enquiry-form .form-label {
  margin-bottom: 0.2rem;
}

.enquiry-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.2rem;
}

.enquiry-input {
  border-radius: 0.5rem !important;
  border: 1px solid #e2e8f0 !important;
  background: #f8fafc !important;
  padding: 0.4rem 0.65rem !important;
  font-size: 0.82rem;
  line-height: 1.4;
  min-height: 2.15rem;
}

.enquiry-input::placeholder {
  color: #94a3b8;
  font-size: 0.8rem;
}

.enquiry-input:focus {
  border-color: var(--royal) !important;
  box-shadow: 0 0 0 0.15rem rgba(11, 59, 140, 0.1) !important;
  background: #fff !important;
}

textarea.enquiry-input {
  min-height: 6rem;
  resize: none;
  padding-top: 0.45rem !important;
}

.enquiry-submit-btn {
  min-height: 2.35rem;
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
  border: none;
  border-radius: 0.55rem;
  color: #fff !important;
  background: linear-gradient(135deg, var(--royal-dark), #1a5bc7) !important;
  box-shadow: 0 6px 16px rgba(11, 59, 140, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.enquiry-submit-btn .enquiry-submit-icon {
  font-size: 0.8rem;
}

.enquiry-submit-btn:hover:not(:disabled) {
  color: #fff !important;
  background: linear-gradient(135deg, #0a3278, var(--royal)) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11, 59, 140, 0.35);
}

.enquiry-submit-btn:disabled {
  opacity: 0.85;
}

.enquiry-form-success {
  text-align: center;
  padding: 1rem 0.5rem 0.5rem;
}

.enquiry-success-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #10b981, #047857);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
}

@media (max-height: 640px) {
  .enquiry-modal .enquiry-modal-dialog {
    align-items: flex-start;
    margin-top: 0.5rem;
  }
}

.enquiry-modal.show .modal-dialog {
  animation: enquiry-modal-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes enquiry-modal-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
