/* ================================================================
   ROYAL ACADEMY ALWAR — Main Stylesheet
   Sections: 1–25 Homepage | 26–32 Inner Pages | 33 CBSE Disclosure
   Design: Royal Blue + Gold | Playfair Display + Poppins + Open Sans
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  /* Brand Blues */
  --blue-950:  #060e1f;
  --blue-900:  #0a1628;
  --blue-800:  #0d1b3e;
  --blue-700:  #112254;
  --blue-600:  #1a3369;
  --blue-500:  #1e3d78;
  --blue-400:  #2a52a0;
  --blue-100:  #d6e4ff;
  --blue-50:   #eef3ff;

  /* Brand Gold */
  --gold-700:  #8a6a0d;
  --gold-600:  #a8800f;
  --gold-500:  #c9a227;
  --gold-400:  #d4af37;
  --gold-300:  #e8c84a;
  --gold-100:  #fdf3d0;
  --gold-50:   #fffbee;

  /* Neutrals */
  --white:     #ffffff;
  --bg-soft:   #f2f5fc;
  --bg-page:   #f8faff;

  /* Text */
  --text-dark:    #111827;
  --text-heading: #1a2744;
  --text-body:    #374151;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;

  /* Borders */
  --border:       #e5e7eb;
  --border-blue:  #c8d7f5;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui:      'Poppins', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-xs:   0 1px 4px rgba(26,58,107,0.07);
  --shadow-sm:   0 4px 16px rgba(26,58,107,0.09);
  --shadow-md:   0 8px 32px rgba(26,58,107,0.13);
  --shadow-lg:   0 16px 56px rgba(13,27,62,0.18);
  --shadow-gold: 0 4px 24px rgba(201,162,39,0.35);

  /* Transitions */
  --ease: all 0.28s ease;
  --ease-slow: all 0.5s ease;

  /* Spacing */
  --section-py: 5rem;
  --section-head-mb: 3.5rem;
}

/* ----------------------------------------------------------------
   2. BASE RESET & GLOBAL
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--gold-400);
  color: var(--blue-900);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
a:hover { color: var(--gold-500); }
ul { list-style: none; padding: 0; margin: 0; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--blue-50); }
::-webkit-scrollbar-thumb { background: var(--blue-500); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-500); }

/* ----------------------------------------------------------------
   3. UTILITY CLASSES
   ---------------------------------------------------------------- */
.py-section { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.mb-section-head { margin-bottom: var(--section-head-mb); }

.bg-soft   { background-color: var(--bg-soft); }
.bg-navy   { background-color: var(--blue-800); }
.bg-white  { background-color: var(--white); }

.text-gold       { color: var(--gold-500) !important; }
.text-gold-soft  { color: var(--gold-300) !important; }
.text-muted-light{ color: rgba(255,255,255,0.65) !important; }

/* ----------------------------------------------------------------
   4. TYPOGRAPHY SYSTEM
   ---------------------------------------------------------------- */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.section-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin-bottom: 1.4rem;
}
.divider-gold { background: linear-gradient(90deg, var(--gold-400), var(--gold-200, #f0d87a)); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--text-heading);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.body-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  transition: var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--blue-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.45);
}

.btn-royal {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.btn-royal:hover {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-royal {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn-outline-royal:hover {
  background: var(--blue-600);
  color: var(--white);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-300);
  border-color: var(--gold-400);
}
.btn-gold-outline:hover {
  background: var(--gold-500);
  color: var(--blue-900);
  border-color: var(--gold-500);
}

.btn-hero-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   6. PLACEHOLDER HELPERS
   ---------------------------------------------------------------- */
.ph-tag {
  display: inline-block;
  background: rgba(255, 213, 0, 0.15);
  border: 1px dashed rgba(255,213,0,0.5);
  color: #ffd500;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
  font-family: var(--font-ui);
}

.director-photo-caption {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
  margin-top: 6px;
}

.ph-inline {
  font-size: 0.75rem;
  color: #b45309;
  font-family: var(--font-ui);
  background: #fef3c7;
  padding: 1px 6px;
  border-radius: 3px;
}

.ph-notice-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  color: #78350f;
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
  font-family: var(--font-ui);
  margin-bottom: 1.25rem;
}

.info-note-box {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-400);
  color: var(--text-body);
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
  font-family: var(--font-ui);
  margin-bottom: 1.25rem;
}

/* ----------------------------------------------------------------
   7. ANNOUNCEMENT BAR
   ---------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--blue-800), var(--blue-700));
  color: rgba(255,255,255,0.9);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 2px solid var(--gold-500);
  z-index: 1050;
  position: relative;
}

.announcement-text { color: rgba(255,255,255,0.9); }
.announcement-text a { color: var(--gold-300); font-weight: 600; }
.announcement-text a:hover { color: var(--gold-100); }

.btn-disclosure-top {
  display: inline-flex;
  align-items: center;
  background: var(--gold-500);
  color: var(--blue-900);
  font-family: var(--font-ui);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: var(--ease);
  letter-spacing: 0.2px;
}
.btn-disclosure-top:hover {
  background: var(--gold-300);
  color: var(--blue-900);
  transform: none;
}

.social-top {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
}
.social-top:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* ----------------------------------------------------------------
   8. NAVBAR
   ---------------------------------------------------------------- */
#mainNavbar {
  background: linear-gradient(180deg, rgba(10,22,40,0.98) 0%, rgba(13,27,62,0.97) 100%);
  padding: 0.7rem 0;
  transition: var(--ease-slow);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  z-index: 1040;
}

#mainNavbar.scrolled {
  background: rgba(10,22,40,0.98) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
  padding: 0.45rem 0;
  border-bottom-color: rgba(201,162,39,0.35);
}

.navbar-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: var(--ease);
  flex-shrink: 0;
}
#mainNavbar.scrolled .navbar-logo { width: 44px; height: 44px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.brand-location {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--gold-300);
  font-weight: 500;
  letter-spacing: 1px;
}
.brand-affil {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

#mainNavbar .nav-link {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82) !important;
  padding: 0.55rem 0.85rem !important;
  border-radius: 5px;
  letter-spacing: 0.2px;
  transition: var(--ease);
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: var(--gold-300) !important;
  background: rgba(255,255,255,0.06);
}

.nav-btn-admission {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300)) !important;
  color: var(--blue-900) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 0.45rem 1rem !important;
}
.nav-btn-admission:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500)) !important;
  color: var(--blue-900) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.35rem 0.65rem;
  color: var(--white);
  font-size: 1rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { color: var(--white); }

.dropdown-menu {
  background: var(--blue-800);
  border: 1px solid rgba(201,162,39,0.25);
  border-top: 2px solid var(--gold-500);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-lg);
  padding: 0.4rem 0;
  min-width: 220px;
}
.dropdown-item {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  padding: 0.55rem 1.2rem;
  transition: var(--ease);
}
.dropdown-item:hover {
  background: rgba(255,255,255,0.06);
  color: var(--gold-300);
  padding-left: 1.5rem;
}

/* ----------------------------------------------------------------
   9. HERO SECTION
   ---------------------------------------------------------------- */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  height: 100vh;
  min-height: 580px;
}

@supports (height: 100svh) {
  #hero .carousel,
  #hero .carousel-inner,
  #hero .carousel-item {
    height: 100svh;
  }
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(6,14,31,0.90) 0%,
    rgba(10,22,40,0.72) 45%,
    rgba(10,22,40,0.38) 100%
  );
  z-index: 1;
}

.hero-text-col { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,162,39,0.18);
  border: 1px solid rgba(201,162,39,0.55);
  color: var(--gold-300);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(6px);
  animation: badgeFadeIn 0.7s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 1.2rem;
  text-shadow: 0 3px 20px rgba(0,0,0,0.35);
  animation: heroTitleIn 0.8s ease 0.45s both;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
  animation: heroTitleIn 0.8s ease 0.6s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: heroTitleIn 0.8s ease 0.75s both;
}

.hero-ctrl-icon {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  transition: var(--ease);
}
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 1;
}
.carousel-control-prev { left: 1.5rem; }
.carousel-control-next { right: 1.5rem; }
.carousel-control-prev:hover .hero-ctrl-icon,
.carousel-control-next:hover .hero-ctrl-icon { color: var(--gold-300); }

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-indicators button {
  width: 30px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border: none;
  border-radius: 3px;
  padding: 0;
  cursor: pointer;
  transition: var(--ease);
}
.hero-indicators button.active { background: var(--gold-400); width: 52px; }

/* ----------------------------------------------------------------
   10. STATS STRIP
   ---------------------------------------------------------------- */
.stats-strip {
  background: linear-gradient(90deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-700) 100%);
  border-top: 3px solid var(--gold-500);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--ease);
}
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-item:last-child { border-right: none; }

.stat-icon {
  font-size: 1.6rem;
  color: var(--gold-400);
  opacity: 0.85;
  flex-shrink: 0;
}

.stat-body { display: flex; flex-direction: column; }

.stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-suf {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-400);
}

.stat-text-badge {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ----------------------------------------------------------------
   11. ABOUT SECTION
   ---------------------------------------------------------------- */
.about-highlights { display: flex; flex-direction: column; gap: 0.65rem; }
.highlight-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-body);
}
.highlight-row i { color: var(--gold-500); font-size: 1rem; flex-shrink: 0; }

.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

.about-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  line-height: 1;
}
.about-badge-years {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
}
.about-badge-years sup { font-size: 1rem; }
.about-badge-text {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.about-motto-float {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background: var(--blue-800);
  color: var(--gold-300);
  border: 2px solid var(--gold-500);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  font-style: italic;
  max-width: 200px;
}
.about-crest-thumb {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   12. WHY CHOOSE SECTION
   ---------------------------------------------------------------- */
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transition: var(--ease);
  transform-origin: left;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold-400);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card--highlight {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  border-color: transparent;
}
.feature-card--highlight h4 { color: var(--white); }
.feature-card--highlight p { color: rgba(255,255,255,0.82); }
.feature-card--highlight .feature-icon-wrap {
  background: rgba(255,255,255,0.1);
  color: var(--gold-300);
}
.feature-card--highlight::before {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
}

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-600);
  margin-bottom: 1.2rem;
  transition: var(--ease);
}
.feature-card:hover:not(.feature-card--highlight) .feature-icon-wrap {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
}

.feature-card h4 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   13. ACADEMICS SECTION
   ---------------------------------------------------------------- */
.academic-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
}
.academic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.academic-icon {
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.ac-preprimary { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.ac-primary    { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }
.ac-middle     { background: linear-gradient(135deg, #fef9c3, #fde68a); color: #92400e; }
.ac-secondary  { background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); color: var(--gold-300); }

.academic-card--gold .academic-icon { background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); }
.academic-card--gold { border-color: var(--gold-400); border-width: 2px; }
.academic-card--gold h4 { color: var(--gold-600); }

.academic-card h4 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
  padding: 1.2rem 1.5rem 0;
}

.grade-badge {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 0.8px;
  padding: 0 1.5rem;
  margin-bottom: 0.65rem;
}

.academic-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  padding: 0 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.ac-list {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ac-list li {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ac-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   14. FACILITIES SECTION
   ---------------------------------------------------------------- */
.facility-card {
  position: relative;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--ease);
}
.facility-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.facility-card:hover .facility-overlay { background: linear-gradient(to top, rgba(6,14,31,0.93) 0%, rgba(6,14,31,0.35) 100%); }
.facility-card:hover .facility-info { bottom: 0; }

.facility-card--ph {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
}

.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,31,0.85) 0%, rgba(6,14,31,0.2) 60%, transparent 100%);
  transition: var(--ease);
}

.facility-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.25rem;
  z-index: 2;
  transition: var(--ease);
}

.facility-icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--gold-500);
  color: var(--blue-900);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.facility-info h4 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.facility-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.45;
}

/* ----------------------------------------------------------------
   15. ACHIEVEMENT SECTION
   ---------------------------------------------------------------- */
.bg-achievement {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-700) 100%);
  position: relative;
  overflow: hidden;
}
.bg-achievement::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(201,162,39,0.04) 0, rgba(201,162,39,0.04) 1px,
    transparent 1px, transparent 50%
  );
  background-size: 22px 22px;
  pointer-events: none;
}

.achievement-img-wrap {
  position: relative;
  display: inline-block;
}
.achievement-img {
  width: 100%;
  max-width: 400px;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 3px solid rgba(201,162,39,0.4);
}
.achievement-medal-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-gold);
  line-height: 1.2;
}
.achievement-medal-badge i { font-size: 1.2rem; margin-bottom: 2px; }

.achievement-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 0;
}
.achievement-desc strong { color: var(--gold-300); }

.achievement-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ach-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-300);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* ----------------------------------------------------------------
   16. STUDENT LIFE SECTION
   ---------------------------------------------------------------- */
.life-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--ease);
}
.life-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.life-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.life-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ease-slow);
}
.life-card:hover .life-card-img-wrap img { transform: scale(1.05); }

.life-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold-500);
  color: var(--blue-900);
  font-family: var(--font-ui);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  z-index: 3;
}

.life-ph-wrap { background: var(--blue-50); }
.life-ph-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--blue-400);
  text-align: center;
  padding: 1rem;
}
.life-ph-placeholder i { font-size: 2rem; opacity: 0.5; }
.life-ph-placeholder span { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600; }
.life-ph-placeholder small { font-size: 0.68rem; color: var(--text-muted); }

.life-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
}
.life-card-body h5 {
  font-family: var(--font-ui);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.45rem;
}
.life-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   17. DIRECTOR'S MESSAGE
   ---------------------------------------------------------------- */
.director-card {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border: 2px solid var(--border-blue);
  border-top: 4px solid var(--gold-500);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  width: 100%;
  max-width: 300px;
}

.director-photo-ph {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  border: 3px solid var(--gold-400);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--blue-400);
  margin: 0 auto 1.25rem;
  gap: 6px;
}

.director-info { text-align: center; }
.director-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}
.director-role {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  display: block;
}
.director-motto {
  font-size: 0.82rem;
  color: var(--text-body);
  margin-top: 0.6rem;
  font-style: italic;
}

.director-quote {
  border-left: 4px solid var(--gold-500);
  padding: 1.2rem 1.4rem;
  margin: 0 0 1.2rem;
  background: var(--gold-50);
  border-radius: 0 8px 8px 0;
}
.director-quote p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

.director-signature {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.sig-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-600);
  font-style: italic;
}
.sig-role {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ----------------------------------------------------------------
   18. GALLERY SECTION
   ---------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 8px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.06); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.78) 0%, transparent 55%);
  opacity: 0;
  transition: var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* Gallery grid placement */
.gal-pool     { grid-column: 1;     grid-row: 1 / 3; }
.gal-sports   { grid-column: 2;     grid-row: 1; }
.gal-holi     { grid-column: 3;     grid-row: 1; }
.gal-campus   { grid-column: 2 / 4; grid-row: 2; }
.gal-ind      { grid-column: 1 / 3; grid-row: 3; }
.gal-archery  { grid-column: 3;     grid-row: 3; }

/* ----------------------------------------------------------------
   19. NOTICES + CONTACT SECTION
   ---------------------------------------------------------------- */
.notice-board { display: flex; flex-direction: column; gap: 0; }

.notice-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--bg-soft); padding-left: 0.5rem; border-radius: 6px; }

.notice-item--new .notice-content h6 { color: var(--blue-600); }

.notice-date-block {
  flex-shrink: 0;
  width: 46px;
  text-align: center;
  background: var(--blue-50);
  border-radius: 8px;
  padding: 0.4rem 0.3rem;
  height: fit-content;
  border-top: 3px solid var(--blue-500);
}
.notice-item--new .notice-date-block { border-top-color: var(--gold-500); }

.nd-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}
.nd-mon {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notice-content { flex: 1; }
.notice-content h6 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}
.notice-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.notice-badge-new {
  display: inline-block;
  background: var(--gold-500);
  color: var(--blue-900);
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1px 7px;
  border-radius: 3px;
  margin-bottom: 4px;
}

.contact-info-block { display: flex; flex-direction: column; gap: 0; }

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-row:last-child { border-bottom: none; }

.ci-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ci-text { flex: 1; }
.ci-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}
.ci-text p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}
.ci-text a { color: var(--blue-600); font-weight: 600; }
.ci-text a:hover { color: var(--gold-600); }

.map-ph-block {
  background: linear-gradient(135deg, var(--blue-50), var(--bg-soft));
  border: 2px dashed var(--border-blue);
  border-radius: 10px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--blue-400);
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
}
.map-ph-block i { font-size: 2rem; opacity: 0.6; }
.map-ph-block p { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600; margin: 0; color: var(--text-muted); }
.map-ph-block small { font-size: 0.72rem; color: var(--text-light); max-width: 260px; }

/* ----------------------------------------------------------------
   20. FOOTER
   ---------------------------------------------------------------- */
.site-footer { background: var(--blue-900); }

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(1.1);
}
.footer-school-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}
.footer-school-loc {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--gold-300);
  letter-spacing: 0.5px;
}
.footer-about {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-cbse-tag {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gold-300);
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--ease);
}
.footer-social a:hover {
  background: var(--gold-500);
  color: var(--blue-900);
  border-color: var(--gold-500);
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav-list a {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-nav-list a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0;
  transition: var(--ease);
  flex-shrink: 0;
}
.footer-nav-list a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}
.footer-nav-list a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-row i {
  color: var(--gold-400);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact-row a { color: rgba(255,255,255,0.6); }
.footer-contact-row a:hover { color: var(--gold-300); }

.btn-footer-disclosure {
  display: flex;
  align-items: center;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-300);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  transition: var(--ease);
}
.btn-footer-disclosure:hover {
  background: var(--gold-500);
  color: var(--blue-900);
  border-color: var(--gold-500);
}

.footer-bottom {
  padding: 1.2rem 0;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-300); }

/* ----------------------------------------------------------------
   21. WHATSAPP FAB
   ---------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: var(--ease);
}
.whatsapp-fab:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; pointer-events: auto; }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-900);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--blue-900);
}

/* ----------------------------------------------------------------
   22. BACK TO TOP
   ---------------------------------------------------------------- */
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--blue-700);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--ease);
  box-shadow: var(--shadow-md);
}
.back-to-top-btn.visible { opacity: 1; transform: translateY(0); }
.back-to-top-btn:hover {
  background: var(--gold-500);
  color: var(--blue-900);
  border-color: var(--gold-500);
}

/* ----------------------------------------------------------------
   23. KEYFRAME ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateX(-15px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

/* ----------------------------------------------------------------
   24. RESPONSIVE — TABLET (≤991px)
   ---------------------------------------------------------------- */
@media (max-width: 991px) {
  :root { --section-py: 3.5rem; --section-head-mb: 2.5rem; }

  /* Navbar mobile */
  #navMain {
    background: var(--blue-900);
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
  }
  #navMain .dropdown-menu {
    background: rgba(255,255,255,0.04);
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  /* Hero */
  .hero-slide { background-attachment: scroll; }
  .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; gap: 0.6rem; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* Stats */
  .stat-item { padding: 1.2rem 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  /* About image */
  .about-main-img { height: 320px; }
  .about-badge-float { left: 0.5rem; bottom: -1rem; }
  .about-motto-float { right: 0.5rem; top: -0.8rem; }

  /* Achievement image */
  .achievement-img { max-width: 280px; height: 360px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .gal-pool   { grid-column: 1; grid-row: 1; }
  .gal-sports { grid-column: 2; grid-row: 1; }
  .gal-holi   { grid-column: 1; grid-row: 2; }
  .gal-campus { grid-column: 2; grid-row: 2; }
  .gal-ind    { grid-column: 1; grid-row: 3; }
  .gal-archery{ grid-column: 2; grid-row: 3; }
}

/* ----------------------------------------------------------------
   25. RESPONSIVE — MOBILE (≤575px)
   ---------------------------------------------------------------- */
@media (max-width: 575px) {
  :root { --section-py: 2.8rem; }

  .announcement-bar { font-size: 0.72rem; }
  .btn-disclosure-top { font-size: 0.65rem; padding: 0.25rem 0.6rem; }

  .brand-name { font-size: 1.15rem; }
  .brand-affil { display: none; }

  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-badge { font-size: 0.68rem; }

  .stat-item { border-right: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-num { font-size: 1.6rem; }

  .section-title { font-size: 1.55rem; }

  .about-main-img { height: 240px; }
  .about-badge-float { display: none; }
  .about-motto-float { display: none; }

  .facility-card { height: 220px; }

  .achievement-img { max-width: 220px; height: 280px; }
  .achievement-medal-badge { width: 64px; height: 64px; font-size: 0.6rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px 160px;
  }

  .director-card { max-width: 100%; }

  .whatsapp-fab { width: 50px; height: 50px; bottom: 1.25rem; right: 1.25rem; }
  .back-to-top-btn { display: none; }
}

/* ================================================================
   26. INNER PAGES — Page Banner
   ================================================================ */
.inner-banner {
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 100%);
  padding: 4rem 0 2.8rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-500);
}
.inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(201,162,39,0.03) 0, rgba(201,162,39,0.03) 1px,
    transparent 1px, transparent 50%
  );
  background-size: 24px 24px;
  pointer-events: none;
}
.inner-banner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.inner-banner-content { position: relative; z-index: 2; }

.inner-banner-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-gold);
}

.inner-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.inner-banner-sub {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

/* ================================================================
   27. INNER PAGES — Breadcrumb
   ================================================================ */
.page-breadcrumb {
  background: var(--blue-900);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-breadcrumb .breadcrumb {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
}
.page-breadcrumb .breadcrumb-item { color: rgba(255,255,255,0.5); }
.page-breadcrumb .breadcrumb-item a { color: var(--gold-300); }
.page-breadcrumb .breadcrumb-item a:hover { color: var(--gold-100); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.25);
  content: "›";
}

/* ================================================================
   28. INNER PAGES — Print Button
   ================================================================ */
.btn-print {
  background: transparent;
  border: 1px solid var(--border-blue);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--ease);
}
.btn-print:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}

/* ================================================================
   29. DISCLOSURE — Compliance Status Bar
   ================================================================ */
.compliance-bar {
  background: linear-gradient(90deg, #ecfdf5, #d1fae5);
  border: 1px solid #6ee7b7;
  border-left: 5px solid #059669;
  border-radius: 8px;
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.compliance-bar .cb-icon { color: #059669; font-size: 1.3rem; flex-shrink: 0; }
.compliance-bar .cb-text { flex: 1; }
.compliance-bar .cb-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: #065f46;
}
.compliance-bar .cb-text span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: #047857;
}
.compliance-bar .cb-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cb-stat-item {
  text-align: center;
  font-family: var(--font-ui);
}
.cb-stat-item .val {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #059669;
  line-height: 1;
}
.cb-stat-item .lbl {
  display: block;
  font-size: 0.65rem;
  color: #065f46;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ================================================================
   30. DISCLOSURE — Section Navigation (sticky pills)
   ================================================================ */
.section-nav-wrap {
  position: sticky;
  top: 62px;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 0;
  box-shadow: 0 3px 16px rgba(26,58,107,0.07);
}
.section-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: transparent;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--ease);
  text-decoration: none;
}
.section-nav-btn .sec-letter {
  width: 24px;
  height: 24px;
  background: var(--bg-soft);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: var(--ease);
  flex-shrink: 0;
}
.section-nav-btn:hover,
.section-nav-btn.active {
  color: var(--blue-600);
  border-bottom-color: var(--gold-500);
}
.section-nav-btn:hover .sec-letter,
.section-nav-btn.active .sec-letter {
  background: var(--gold-500);
  color: var(--blue-900);
}

/* ================================================================
   31. DISCLOSURE — Section Anchors & Headers
   ================================================================ */
.disclosure-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 120px;
}
.disclosure-section:last-child { border-bottom: none; }

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.disclosure-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* ================================================================
   32. DISCLOSURE — Tables
   ================================================================ */
.disclosure-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  margin-bottom: 0;
}
.disclosure-table thead th {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  border: none;
  vertical-align: middle;
}
.disclosure-table thead th:first-child { width: 40px; text-align: center; }

.disclosure-table tbody tr {
  transition: background 0.15s ease;
}
.disclosure-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.disclosure-table tbody tr:hover { background: var(--blue-50); }

.disclosure-table td {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 0.78rem 1.1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.disclosure-table td:first-child { text-align: center; color: var(--text-muted); }
.disclosure-table tbody tr:last-child td { border-bottom: none; }

.disclosure-table .field-label {
  font-family: var(--font-ui);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-heading);
}

.disclosure-table .field-value { color: var(--text-body); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}
.status-pill.confirmed {
  background: #dcfce7;
  color: #166534;
}
.status-pill.placeholder {
  background: #fef3c7;
  color: #92400e;
}
.status-pill.na {
  background: var(--bg-soft);
  color: var(--text-muted);
}

/* ================================================================
   33. DISCLOSURE — Document Cards (Section B)
   ================================================================ */
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.doc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transition: var(--ease);
}
.doc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.doc-card.available::before { background: linear-gradient(90deg, #059669, #34d399); }
.doc-card.pending::before { background: linear-gradient(90deg, #d97706, #fbbf24); }

.doc-card-icon {
  width: 46px;
  height: 46px;
  background: var(--bg-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue-600);
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}
.doc-card.available .doc-card-icon { background: #dcfce7; color: #059669; }
.doc-card.pending  .doc-card-icon { background: #fef3c7; color: #d97706; }

.doc-card-title {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
  line-height: 1.35;
}
.doc-card-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 0.9rem;
  line-height: 1.45;
}

.doc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.38rem 0.9rem;
  border-radius: 5px;
  transition: var(--ease);
}
.btn-download:hover { background: var(--blue-500); color: var(--white); transform: none; }
.btn-download.btn-download-pending {
  background: var(--bg-soft);
  color: var(--text-muted);
  cursor: default;
}

/* ================================================================
   34. DISCLOSURE — Fee Structure Table
   ================================================================ */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.87rem;
}
.fee-table thead th {
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.77rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.7rem 1rem;
  text-align: left;
}
.fee-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.fee-table tbody tr:hover { background: var(--blue-50); }
.fee-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table .fee-amount { font-weight: 600; color: var(--blue-600); }

/* ================================================================
   35. DISCLOSURE — Results Table
   ================================================================ */
.results-year-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  color: var(--blue-600);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

/* ================================================================
   36. INNER PAGES — Mobile Adjustments
   ================================================================ */
@media (max-width: 767px) {
  .inner-banner { padding: 2.8rem 0 2rem; }
  .inner-banner-title { font-size: 1.5rem; }
  .disclosure-section { padding: 2.2rem 0; scroll-margin-top: 100px; }
  .compliance-bar { flex-direction: column; align-items: flex-start; }
  .cb-stats { gap: 1rem; }
  .section-nav-wrap { top: 55px; }
  .doc-card { padding: 1rem; }
}

/* ================================================================
   37. NEWS TICKER
   Speed control: change --ticker-duration value below.
   Slower = more readable. Recommended range: 35s – 55s.
   ================================================================ */
:root {
  --ticker-duration: 42s;
}

/* ── Section wrapper ── */
.news-ticker {
  background: linear-gradient(90deg, var(--blue-950) 0%, var(--blue-900) 60%, var(--blue-800) 100%);
  border-top: 2px solid var(--gold-500);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 46px;
  overflow: hidden;
  position: relative;
  z-index: 9;
  flex-shrink: 0;
}

/* ── Flex row containing all ticker parts ── */
.ticker-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* ── "LATEST UPDATES" gold label badge ── */
.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 0 1.3rem;
  height: 100%;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  /* Angled right edge */
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  padding-right: 1.8rem;
}

.ticker-label i {
  font-size: 0.75rem;
  animation: tickerBolt 2s ease-in-out infinite;
}

/* Subtle bolt flicker animation on the icon */
@keyframes tickerBolt {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* ── Thin vertical dividers between sections ── */
.ticker-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin: 0 0.9rem;
}

/* ── Scrolling viewport (hides overflow, adds fade edges) ── */
.ticker-outer {
  flex: 1;
  min-width: 0;           /* prevents flex overflow */
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  /* Fade in from left, fade out to right — premium feel */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 93%,
    transparent 100%
  );
}

/* ── The moving track — contains items × 2 ── */
.ticker-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll var(--ticker-duration) linear infinite;
  will-change: transform;
}

/* Pause on hover — gives users time to read */
.ticker-outer:hover .ticker-track {
  animation-play-state: paused;
}

/* ── Individual update item ── */
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  padding: 0 0.25rem;
  letter-spacing: 0.1px;
}

/* Achievement items get a gold tint */
.ticker-item--highlight {
  color: rgba(255, 255, 255, 0.95);
}
.ticker-item--highlight strong {
  color: var(--gold-300);
  font-weight: 700;
}

/* ── Tiny icon before each item ── */
.ticker-dot {
  font-size: 0.42rem;
  color: var(--gold-400);
  opacity: 0.85;
  flex-shrink: 0;
  line-height: 1;
}
/* Trophy icon is slightly larger */
.ticker-item .fa-trophy.ticker-dot { font-size: 0.7rem; }
.ticker-item .fa-file-alt.ticker-dot { font-size: 0.68rem; }

/* ── Gold diamond bullet separator between items ── */
.ticker-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  margin: 0 2rem;
  opacity: 0.65;
  flex-shrink: 0;
  vertical-align: middle;
  align-self: center;
}

/* ── "View All" right CTA ── */
.ticker-cta {
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-300);
  white-space: nowrap;
  padding: 0 1.3rem;
  flex-shrink: 0;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.2s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
}
.ticker-cta:hover {
  color: var(--gold-100);
}
.ticker-cta i { font-size: 0.65rem; }

/* ── Core scroll keyframe ──
   Moves exactly -50% of the track width (one full set of items).
   The duplicate set takes over seamlessly at loop restart.
   ── */
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   37a. NEWS TICKER — Responsive
   ================================================================ */

/* Tablet: slightly more compact */
@media (max-width: 991px) {
  .ticker-item { font-size: 0.78rem; }
  .ticker-sep  { margin: 0 1.5rem; }
}

/* Mobile: stack label on top, ticker strip below */
@media (max-width: 575px) {
  .news-ticker {
    height: auto;
    border-top-width: 2px;
  }

  .ticker-wrapper {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .ticker-label {
    height: 30px;
    justify-content: center;
    clip-path: none;        /* remove angled edge on mobile */
    padding-right: 1.3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 0.62rem;
    letter-spacing: 2px;
  }

  .ticker-outer {
    height: 36px;
    /* Simpler fade on mobile — only right edge */
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }

  /* Slightly faster on small screens (less text visible = feels slower anyway) */
  .ticker-track { animation-duration: calc(var(--ticker-duration) * 0.75); }

  .ticker-divider { display: none !important; }
  .ticker-item { font-size: 0.76rem; }
}

/* ================================================================
   38. ABOUT PAGE
   ================================================================ */

.about-banner-crest {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(201,162,39,0.6);
  box-shadow: 0 0 0 8px rgba(201,162,39,0.12), var(--shadow-lg);
  display: inline-block;
}

.about-stat-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.about-stat-box {
  background: var(--bg-soft);
  border: 1px solid var(--border-blue);
  border-top: 3px solid var(--gold-500);
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  text-align: center;
  flex: 1;
  min-width: 72px;
}
.asb-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
}
.asb-num sup { font-size: 0.85rem; }
.asb-lbl {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  line-height: 1.35;
}

/* Vision / Mission cards */
.vm-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.vm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vm-card--vision  { border-top: 4px solid var(--blue-500); }
.vm-card--mission { border-top: 4px solid var(--gold-500); }

.vm-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.vm-card--vision  .vm-card-header { background: linear-gradient(135deg, var(--blue-50), var(--white)); }
.vm-card--mission .vm-card-header { background: linear-gradient(135deg, var(--gold-50), var(--white)); }

.vm-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.vm-card--vision  .vm-icon { background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); color: var(--white); }
.vm-card--mission .vm-icon { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); color: var(--blue-900); }

.vm-kicker {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.vm-card--vision  .vm-kicker { color: var(--blue-500); }
.vm-card--mission .vm-kicker { color: var(--gold-600); }
.vm-title { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin: 0; }
.vm-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.vm-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.1rem; }
.vm-points { display: flex; flex-direction: column; gap: 0.4rem; }
.vm-points li { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-ui); font-size: 0.82rem; color: var(--text-body); }
.vm-card--vision  .vm-points li i { color: var(--blue-500); font-size: 0.55rem; }
.vm-card--mission .vm-points li i { color: var(--gold-500); font-size: 0.55rem; }

/* Motto section */
.motto-section {
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 60%, var(--blue-800) 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.motto-bg-layer {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(201,162,39,0.03) 0, rgba(201,162,39,0.03) 1px, transparent 1px, transparent 50%);
  background-size: 24px 24px;
}
.motto-kicker {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; color: var(--gold-300); margin-bottom: 0.75rem;
}
.motto-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800; color: var(--white); line-height: 1.2;
  margin-bottom: 1.25rem; font-style: italic; position: relative;
}
.motto-open, .motto-close { color: var(--gold-400); font-size: 1.2em; line-height: 0; vertical-align: -0.15em; }
.motto-open { margin-right: 4px; }
.motto-close { margin-left: 4px; }
.motto-sub { font-family: var(--font-body); font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 580px; line-height: 1.75; margin-bottom: 0; }
.motto-info-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.motto-pill {
  display: inline-flex; align-items: center;
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold-300); font-family: var(--font-ui); font-size: 0.75rem;
  font-weight: 600; padding: 0.3rem 0.85rem; border-radius: 20px;
}
.motto-crest-wrap {
  display: inline-block; padding: 10px;
  border: 2px solid rgba(201,162,39,0.3); border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(201,162,39,0.06);
}
.motto-crest-img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; border: 3px solid rgba(201,162,39,0.5); display: block; }

/* Timeline */
.about-timeline { position: relative; }
.atl-item { display: grid; grid-template-columns: 72px 28px 1fr; gap: 0 1rem; align-items: start; }
.atl-left { text-align: right; padding-top: 0.3rem; }
.atl-year { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gold-500); line-height: 1; display: inline-block; }
.atl-center { display: flex; flex-direction: column; align-items: center; }
.atl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  flex-shrink: 0; margin-top: 0.28rem; z-index: 1;
  border: 3px solid var(--white); box-shadow: 0 0 0 3px currentColor;
}
.atl-dot--gold        { background: var(--gold-500);  color: var(--gold-500); }
.atl-dot--blue        { background: var(--blue-500);  color: var(--blue-400); }
.atl-dot--achievement { background: var(--gold-400);  color: var(--gold-400); width: 20px; height: 20px; }
.atl-line { flex: 1; width: 2px; background: linear-gradient(to bottom, var(--border-blue), rgba(220,232,255,0.1)); min-height: 2rem; margin-top: 4px; }
.atl-item:last-child .atl-line { display: none; }
.atl-right { padding-bottom: 2.5rem; }
.atl-item:last-child .atl-right { padding-bottom: 0; }
.atl-title { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 0.35rem; }
.atl-desc { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 0.6rem; line-height: 1.65; }
.atl-desc strong { color: var(--text-heading); }
.atl-tag {
  display: inline-flex; align-items: center;
  background: var(--gold-50); border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-700); font-family: var(--font-ui); font-size: 0.68rem;
  font-weight: 700; padding: 0.18rem 0.65rem; border-radius: 20px;
}
.atl-tag--blue        { background: var(--blue-50); border-color: var(--border-blue); color: var(--blue-600); }
.atl-tag--achievement { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); color: var(--blue-900); border-color: transparent; }

/* Foundation card */
.foundation-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--gold-500); border-radius: 14px; padding: 2rem 1.75rem; box-shadow: var(--shadow-sm); }
.fc-icon-wrap { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); color: var(--white); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.fc-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-heading); margin-bottom: 0.2rem; }
.fc-location { font-family: var(--font-ui); font-size: 0.78rem; color: var(--text-muted); display: block; }
.fc-meta-list { display: flex; flex-direction: column; gap: 0; }
.fc-meta-row { display: flex; align-items: baseline; gap: 0.75rem; padding: 0.55rem 0; border-bottom: 1px solid var(--border); }
.fc-meta-row:last-child { border-bottom: none; }
.fc-meta-label { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; min-width: 120px; flex-shrink: 0; }
.fc-meta-value { font-family: var(--font-body); font-size: 0.88rem; color: var(--text-body); }

/* Campus life strip */
.campus-life-strip { background: linear-gradient(135deg, var(--blue-900), var(--blue-800)); }
.campus-img-card { position: relative; height: 240px; border-radius: 10px; overflow: hidden; cursor: pointer; }
.campus-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.campus-img-card:hover img { transform: scale(1.07); }
.cic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 1rem; opacity: 0.7; transition: opacity 0.3s ease; gap: 0.3rem;
}
.campus-img-card:hover .cic-overlay { opacity: 1; }
.cic-overlay i { font-size: 1.3rem; color: var(--gold-300); }
.cic-overlay span { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }

/* Bottom CTA strip */
.about-cta-strip {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  padding: 4rem 0; border-top: 3px solid var(--gold-500);
  position: relative; overflow: hidden;
}
.about-cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 50%);
  background-size: 20px 20px;
}
.acta-kicker { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold-300); margin-bottom: 0.5rem; position: relative; }
.acta-heading { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 0.85rem; position: relative; }
.acta-sub { font-family: var(--font-body); font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 480px; line-height: 1.7; margin: 0; position: relative; }
.acta-contact-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; }
.acta-contact-link { font-family: var(--font-ui); font-size: 0.82rem; color: rgba(255,255,255,0.65); display: inline-flex; align-items: center; gap: 0.4rem; }
.acta-contact-link:hover { color: var(--gold-300); }
.acta-sep { color: rgba(255,255,255,0.25); }

/* About page mobile */
@media (max-width: 767px) {
  .about-banner-crest { width: 110px; height: 110px; }
  .motto-crest-img    { width: 140px; height: 140px; }
  .motto-quote        { font-size: 2rem; }
  .atl-item           { grid-template-columns: 52px 24px 1fr; gap: 0 0.6rem; }
  .atl-year           { font-size: 0.82rem; }
  .about-cta-strip    { padding: 2.8rem 0; }
  .campus-img-card    { height: 160px; }
  .about-stat-row     { gap: 0.6rem; }
}

/* ================================================================
   39. ADMISSIONS PAGE
   ================================================================ */

/* ── Banner elements ── */
.adm-banner-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.adm-banner-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.adm-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: var(--ease);
  text-decoration: none;
}
.adm-phone-btn:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.adm-phone-btn--alt  { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.adm-phone-btn--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.adm-phone-btn--gold:hover { color: var(--blue-900); transform: translateY(-1px); }

.adm-banner-img-wrap {
  position: relative;
  display: inline-block;
}
.adm-banner-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 5px solid rgba(201,162,39,0.5);
  box-shadow: 0 0 0 10px rgba(201,162,39,0.1), var(--shadow-lg);
  display: block;
  margin: 0 auto;
}
.adm-banner-img-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-gold);
  line-height: 1.2;
}
.adm-banner-img-badge i { font-size: 0.9rem; margin-bottom: 1px; }

/* ── 5-step process ── */
.adm-steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.adm-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}

.adm-step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 0.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--blue-50), 0 0 0 6px var(--blue-600);
  transition: var(--ease);
}
.adm-step:hover .adm-step-number {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
  box-shadow: 0 0 0 4px var(--gold-50), 0 0 0 6px var(--gold-500);
}

.adm-step-connector {
  position: absolute;
  top: 22px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-400), var(--border-blue));
  z-index: 1;
}
.adm-step:last-child .adm-step-connector { display: none; }

.adm-step-icon {
  font-size: 1.4rem;
  color: var(--blue-500);
  margin-bottom: 0.5rem;
  transition: var(--ease);
}
.adm-step:hover .adm-step-icon { color: var(--gold-600); }

.adm-step-title {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.adm-step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.adm-step-desc a { color: var(--blue-600); font-weight: 600; }

/* ── Age eligibility table ── */
.adm-age-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-body);
  box-shadow: var(--shadow-xs);
}
.adm-age-table thead th {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.77rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  border: none;
}
.adm-age-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.adm-age-table tbody tr:hover { background: var(--blue-50); }
.adm-age-table td {
  font-size: 0.87rem;
  color: var(--text-body);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.adm-age-table tbody tr:last-child td { border-bottom: none; }
.adm-age-table--note td { background: var(--gold-50) !important; }

.adm-status {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 20px;
}
.adm-status.open    { background: #dcfce7; color: #166534; }
.adm-status.limited { background: var(--gold-100); color: var(--gold-700); }
.adm-status.full    { background: #fee2e2; color: #991b1b; }

/* ── Why list ── */
.adm-why-list { display: flex; flex-direction: column; gap: 0; }
.adm-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}
.adm-why-item:last-child { border-bottom: none; }
.adm-why-item:hover { padding-left: 4px; }

.adm-why-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue-600);
  flex-shrink: 0;
  transition: var(--ease);
}
.adm-why-item:hover .adm-why-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--blue-900);
}
.adm-why-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}
.adm-why-text p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── Documents required cards ── */
.doc-req-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  height: 100%;
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
}
.doc-req-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.doc-req-card--required { border-left: 4px solid var(--blue-500); }
.doc-req-card--conditional { border-left: 4px solid var(--gold-500); }

.drc-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.drc-icon--note { background: var(--bg-soft); color: var(--text-muted); }
.doc-req-card--required   .drc-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: var(--blue-600); }
.doc-req-card--conditional .drc-icon { background: var(--gold-50); color: var(--gold-600); }

.drc-body { flex: 1; }
.drc-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.12rem 0.55rem;
  border-radius: 20px;
  margin-bottom: 0.4rem;
}
.drc-badge.required    { background: #dbeafe; color: var(--blue-600); }
.drc-badge.conditional { background: var(--gold-50); color: var(--gold-700); }
.drc-badge.note        { background: var(--bg-soft); color: var(--text-muted); }

.drc-body h5 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}
.drc-body p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── Enquiry form ── */
.adm-enquiry-form.was-validated .adm-form-input:invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.adm-form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}
.req-star { color: #dc2626; }
.adm-optional { color: var(--text-muted); font-weight: 400; font-size: 0.72rem; }

.adm-form-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}
.adm-form-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(30,61,120,0.1);
}
.adm-form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
.adm-form-textarea { resize: vertical; min-height: 80px; }

.adm-submit-btn {
  font-size: 0.95rem;
  padding: 0.75rem;
  letter-spacing: 0.3px;
}
.adm-form-note {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.adm-form-success {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #6ee7b7;
  border-left: 5px solid #059669;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}
.adm-form-success i { font-size: 1.5rem; color: #059669; flex-shrink: 0; margin-top: 2px; }
.adm-form-success strong { display: block; font-family: var(--font-ui); font-size: 1rem; color: #065f46; margin-bottom: 0.3rem; }
.adm-form-success p { font-size: 0.85rem; color: #047857; margin: 0; }
.adm-form-success a { color: #059669; font-weight: 600; }

/* ── Contact cards sidebar ── */
.adm-contact-cards { display: flex; flex-direction: column; gap: 0.6rem; }
.adm-contact-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  transition: var(--ease);
  color: var(--text-body);
}
.adm-contact-card:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); color: var(--text-body); transform: translateX(3px); }
.adm-contact-card--primary { border-color: var(--blue-400); border-left: 4px solid var(--blue-600); }
.adm-contact-card--address { cursor: default; }
.adm-contact-card--address:hover { transform: none; }

.adm-cc-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.adm-cc-body { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.adm-cc-label { font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.adm-cc-value { font-family: var(--font-ui); font-size: 0.92rem; font-weight: 700; color: var(--text-heading); line-height: 1.3; }
.adm-cc-arrow { font-size: 0.7rem; color: var(--text-muted); flex-shrink: 0; }

.adm-hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold-500);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.adm-hours-header {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  padding: 0.65rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  border-bottom: 1px solid var(--border);
}
.adm-hours-body { padding: 0.5rem 0; }
.adm-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 1rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.adm-hours-row:last-child { border-bottom: none; }

.adm-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #25d366;
  color: var(--white);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  transition: var(--ease);
  width: 100%;
}
.adm-whatsapp-btn:hover { background: #1ebe5d; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.adm-whatsapp-btn i:first-child { font-size: 1.6rem; flex-shrink: 0; }
.adm-whatsapp-btn strong { display: block; font-size: 0.88rem; font-family: var(--font-ui); line-height: 1; margin-bottom: 2px; }
.adm-whatsapp-btn span { display: block; font-size: 0.72rem; opacity: 0.85; font-family: var(--font-ui); }

/* ── Fee table wrap ── */
.adm-fee-table-wrap { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-xs); }
.adm-fee-note { font-family: var(--font-ui); font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ── Important dates cards ── */
.adm-date-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--border-blue);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  height: 100%;
  transition: var(--ease);
}
.adm-date-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.adm-date-card--active { border-top-color: var(--gold-500); background: linear-gradient(135deg, var(--gold-50), var(--white)); }

.adm-date-icon { font-size: 1.6rem; color: var(--blue-400); margin-bottom: 0.75rem; }
.adm-date-card--active .adm-date-icon { color: var(--gold-500); }
.adm-date-label { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.3rem; }
.adm-date-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-heading); margin-bottom: 0.2rem; line-height: 1.2; }
.adm-date-card--active .adm-date-val { color: var(--gold-600); }
.adm-date-note { font-family: var(--font-ui); font-size: 0.72rem; color: var(--text-muted); }

/* ── FAQ accordion ── */
.adm-faq-item {
  border: 1px solid var(--border);
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.adm-faq-btn {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
  background: var(--white);
  padding: 1rem 1.25rem;
  border: none;
  box-shadow: none;
}
.adm-faq-btn:not(.collapsed) {
  color: var(--blue-600);
  background: var(--blue-50);
  box-shadow: none;
}
.adm-faq-btn:focus { box-shadow: none; }
.adm-faq-btn::after { filter: none; }
.adm-faq-btn:not(.collapsed)::after { filter: invert(28%) sepia(96%) saturate(500%) hue-rotate(198deg); }
.adm-faq-body {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  padding: 0.85rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.adm-faq-body a { color: var(--blue-600); font-weight: 600; }
.adm-faq-body strong { color: var(--text-heading); }

/* ── Admissions responsive ── */
@media (max-width: 767px) {
  .adm-steps-wrap { gap: 1rem; }
  .adm-step { min-width: 140px; max-width: 160px; }
  .adm-step-connector { display: none; }
  .adm-banner-img { width: 200px; height: 200px; }
  .adm-banner-img-badge { width: 56px; height: 56px; }
  .adm-banner-phones { flex-direction: column; }
  .adm-phone-btn { justify-content: center; }
}

/* ================================================================
   40. CONTACT PAGE
   ================================================================ */

/* ── Banner buttons ── */
.contact-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

/* ── Quick contact cards row ── */
.ct-quick-section {
  background: var(--blue-900);
  border-bottom: 2px solid var(--gold-500);
  padding: 1.5rem 0;
}

.ct-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.1rem 0.75rem;
  text-decoration: none;
  transition: var(--ease);
  color: var(--white);
  height: 100%;
}
.ct-quick-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-400);
  transform: translateY(-3px);
  color: var(--white);
}
.ct-quick-card--primary {
  border-color: rgba(201,162,39,0.4);
  background: rgba(201,162,39,0.08);
}
.ct-quick-card--whatsapp {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.35);
}
.ct-quick-card--whatsapp:hover { background: rgba(37,211,102,0.18); border-color: #25d366; }

.ct-qc-icon {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  color: var(--gold-300);
}
.ct-quick-card--whatsapp .ct-qc-icon { color: #4ade80; }

.ct-qc-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
}
.ct-qc-val {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}
.ct-qc-hint {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
}

/* ── Contact detail list ── */
.ct-detail-list { display: flex; flex-direction: column; gap: 0; }

.ct-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.ct-detail-row:last-child { border-bottom: none; }

.ct-detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: var(--white);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-detail-icon--social { background: linear-gradient(135deg, #1877f2, #0a66c2); }

.ct-detail-body { flex: 1; }
.ct-detail-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.ct-detail-val {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  font-style: normal;
  line-height: 1.55;
}
.ct-detail-val a { color: var(--blue-600); font-weight: 600; }
.ct-detail-val a:hover { color: var(--gold-600); }

.ct-phone-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--border-blue);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.ct-map-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-top: 0.4rem;
  text-decoration: none;
  transition: var(--ease);
}
.ct-map-link:hover { color: var(--gold-600); }

.ct-hours-grid { display: flex; flex-direction: column; gap: 0; }
.ct-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--text-body);
  border-bottom: 1px dashed var(--border);
}
.ct-hours-row:last-child { border-bottom: none; }
.ct-hours-closed span:last-child { color: var(--text-muted); font-style: italic; }

.ct-director-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  background: var(--blue-50);
  border: 1px solid var(--border-blue);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 8px 8px 0;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.ct-director-tag i { color: var(--gold-500); }
.ct-director-tag strong { color: var(--text-heading); }

/* ── Google Map ── */
.ct-map-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 62%;   /* ~16:10 ratio */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border-blue);
}
.ct-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ct-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem 0;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Direction cards ── */
.ct-direction-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  height: 100%;
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
  text-align: center;
}
.ct-direction-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ct-direction-card--landmark {
  border-color: var(--gold-400);
  border-width: 2px;
  background: linear-gradient(135deg, var(--gold-50), var(--white));
}

.ct-dir-icon {
  font-size: 1.8rem;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
}
.ct-direction-card--landmark .ct-dir-icon { color: var(--gold-500); }

.ct-direction-card h5 {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}
.ct-direction-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ── Contact form wrapper ── */
.ct-contact-form.was-validated .adm-form-input:invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .contact-banner-btns { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .ct-map-wrap { padding-bottom: 75%; }
  .ct-quick-section { padding: 1rem 0; }
  .ct-qc-val { font-size: 0.8rem; }
}

/* ================================================================
   41. GALLERY PAGE
   ================================================================ */
.gallery-banner-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 170px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,39,0.5);
  background: rgba(6,14,31,0.34);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.gbs-number {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 800;
  color: var(--gold-300);
}

.gbs-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 auto 2rem;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.65rem 1.05rem;
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-600);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: var(--shadow-xs);
  transition: var(--ease);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--gold-500);
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gallery-filter-btn.active i { color: var(--gold-300); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 1rem;
}

.gal-card {
  position: relative;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue-900);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.gal-card--wide { grid-column: span 2; }
.gal-card--tall { grid-row: span 2; }

.gal-card:not(.d-none):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gal-card-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.gal-card-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gal-card:hover .gal-card-btn img,
.gal-card:focus-within .gal-card-btn img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.gal-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 1.1rem;
  background: linear-gradient(to top, rgba(6,14,31,0.9) 0%, rgba(6,14,31,0.42) 45%, rgba(6,14,31,0.04) 100%);
  opacity: 0;
  transition: var(--ease);
}

.gal-card:hover .gal-card-overlay,
.gal-card:focus-within .gal-card-overlay { opacity: 1; }

.gal-card-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(201,162,39,0.92);
  color: var(--blue-950);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.gal-card-title {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.gallery-achievement-band {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.98), rgba(13,27,62,0.96)),
    url("../images/achievement-archery.jpg") center/cover no-repeat;
}

.gallery-achievement-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 18%, rgba(201,162,39,0.18), transparent 34%);
  pointer-events: none;
}

.gallery-achievement-band > .container-fluid { position: relative; z-index: 1; }

.gallery-achievement-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-achievement-media {
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid rgba(201,162,39,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  background: var(--white);
  min-height: 210px;
}

.gallery-achievement-media--wide {
  grid-column: 1 / -1;
  min-height: 220px;
}

.gallery-achievement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-achievement-band .text-white-75 { color: rgba(255,255,255,0.78) !important; }

.gallery-achievement-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.gallery-achievement-points div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.86);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.gallery-achievement-points i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,162,39,0.16);
  color: var(--gold-300);
  margin-top: 0.1rem;
}

.gallery-visit-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-blue);
  border-left: 5px solid var(--gold-500);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.gallery-visit-title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.45rem;
}

.gallery-visit-text {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 700px;
}

.gallery-visit-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.gallery-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: var(--blue-950);
  box-shadow: 0 26px 80px rgba(0,0,0,0.45);
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.92);
  opacity: 1;
}

.gallery-modal-img-wrap {
  background: var(--blue-950);
  min-height: 260px;
  max-height: 74vh;
}

.gallery-modal-img-wrap img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: var(--blue-950);
}

.gallery-modal-caption {
  padding: 1.15rem 1.35rem 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gallery-modal-caption span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--blue-950);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-modal-caption h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .gallery-banner-stat {
    min-width: 130px;
    min-height: 130px;
  }
  .gbs-number { font-size: 2.5rem; }
  .gallery-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }
  .gallery-visit-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-visit-actions { width: 100%; }
}

@media (max-width: 575px) {
  .gallery-banner-stat {
    min-width: 112px;
    min-height: 112px;
  }
  .gbs-number { font-size: 2.15rem; }
  .gbs-label { font-size: 0.68rem; }
  .gallery-filter-tabs {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .gallery-filter-btn {
    min-height: 40px;
    padding: 0.6rem 0.8rem;
    font-size: 0.76rem;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
  }
  .gal-card--wide,
  .gal-card--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gal-card-overlay { opacity: 1; }
  .gal-card-title { font-size: 1.02rem; }
  .gallery-achievement-band { padding: 3.5rem 0; }
  .gallery-achievement-media-grid { grid-template-columns: 1fr; }
  .gallery-achievement-media,
  .gallery-achievement-media--wide { min-height: 210px; }
  .gallery-visit-strip { padding: 1.35rem; }
  .gallery-visit-actions .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   42. FACILITIES PAGE
   ================================================================ */
.fac-stats-section {
  padding: 2rem 0 0;
}

.fac-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.fac-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), var(--blue-50));
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.fac-stat-card::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -30px;
  bottom: -34px;
  border-radius: 50%;
  background: rgba(26,51,105,0.08);
}

.fac-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.fac-stat-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.fac-stat-card--gold {
  background: linear-gradient(135deg, var(--gold-50), var(--white));
  border-color: rgba(201,162,39,0.42);
}

.fac-stat-card--gold i {
  background: var(--gold-500);
  color: var(--blue-950);
}

.fac-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}

.fac-stat-label {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.fac-pool-highlight {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(6,14,31,0.95) 0%, rgba(6,14,31,0.78) 42%, rgba(6,14,31,0.18) 100%),
    url("../images/facility-pool.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.fac-pool-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(2rem, 4vw, 3.25rem);
}

.fac-pool-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1rem;
}

.fac-pool-title span { color: var(--gold-300); }

.fac-pool-content p:not(.section-label) {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.35rem;
}

.fac-grid-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.fac-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-blue);
}

.fac-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--blue-900);
}

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

.fac-grid-card:hover .fac-card-media img { transform: scale(1.05); }

.fac-card-media--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background:
    linear-gradient(135deg, rgba(13,27,62,0.98), rgba(26,51,105,0.94)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 8px, transparent 8px 16px);
}

.fac-card-media--icon > i {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,162,39,0.18);
  color: var(--gold-300);
  font-size: 1.55rem;
}

.fac-card-body {
  position: relative;
  padding: 1.45rem 1.25rem 1.35rem;
}

.fac-card-icon {
  position: absolute;
  top: -26px;
  left: 1.25rem;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-500);
  color: var(--blue-950);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.fac-card-body h3 {
  font-family: var(--font-ui);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 1.05rem 0 0.55rem;
}

.fac-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.fac-grid-card--placeholder {
  border-style: dashed;
  border-color: var(--border-blue);
}

.fac-campus-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.fac-campus-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
}

.fac-campus-list i {
  color: var(--gold-500);
  margin-top: 0.18rem;
}

.fac-campus-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid var(--border-blue);
  box-shadow: var(--shadow-lg);
}

.fac-campus-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.fac-campus-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(6,14,31,0.86);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.fac-campus-badge i { color: var(--gold-300); }

.fac-visit-section {
  position: relative;
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.96), rgba(13,27,62,0.94)),
    url("../images/hero-campus.jpg") center/cover no-repeat;
}

.fac-visit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(201,162,39,0.36);
  border-left: 5px solid var(--gold-500);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}

.fac-visit-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.fac-visit-card p:not(.section-label) {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.fac-visit-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .fac-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fac-pool-highlight {
    min-height: 380px;
    background:
      linear-gradient(0deg, rgba(6,14,31,0.96) 0%, rgba(6,14,31,0.64) 100%),
      url("../images/facility-pool.jpg") center/cover no-repeat;
  }

  .fac-campus-image img { min-height: 320px; }

  .fac-visit-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .fac-stats-section { padding-top: 1.25rem; }
  .fac-stats-grid { grid-template-columns: 1fr; }
  .fac-stat-card { min-height: 130px; }
  .fac-stat-number { font-size: 2.1rem; }
  .fac-pool-highlight { min-height: 420px; }
  .fac-pool-content { padding: 1.5rem; }
  .fac-card-media { height: 200px; }
  .fac-campus-image img { min-height: 260px; }
  .fac-campus-badge {
    left: 0.75rem;
    right: 0.75rem;
    justify-content: center;
    border-radius: 8px;
  }
  .fac-visit-section { padding: 3.25rem 0; }
  .fac-visit-actions,
  .fac-visit-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   43. ACADEMICS PAGE
   ================================================================ */
.acad-cbse-strip {
  padding: 2rem 0 0;
  background: var(--white);
}

.acad-cbse-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(201,162,39,0.32);
  border-left: 5px solid var(--gold-500);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  box-shadow: var(--shadow-md);
}

.acad-cbse-icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,162,39,0.16);
  color: var(--gold-300);
  font-size: 1.45rem;
}

.acad-cbse-card h2 {
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.acad-cbse-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
  line-height: 1.65;
}

.acad-cbse-card strong { color: var(--gold-300); }

.acad-program-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.acad-program-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-lg);
}

.acad-program-media {
  height: 200px;
  overflow: hidden;
  background: var(--blue-900);
}

.acad-program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.acad-program-card:hover .acad-program-media img { transform: scale(1.05); }

.acad-program-body {
  padding: 1.35rem 1.2rem 1.45rem;
}

.acad-program-level {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--gold-50);
  color: var(--gold-600);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.acad-program-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0.85rem 0 0.5rem;
}

.acad-program-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.acad-english-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.97), rgba(13,27,62,0.95)),
    url("../images/campus-students-assembly.jpg") center/cover no-repeat;
}

.acad-english-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(201,162,39,0.16), transparent 34%);
  pointer-events: none;
}

.acad-english-section > .container-fluid { position: relative; z-index: 1; }
.acad-english-section .text-white-75,
.acad-results-band .text-white-75 { color: rgba(255,255,255,0.78) !important; }

.acad-english-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.acad-english-points div {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-size: 0.93rem;
  line-height: 1.6;
}

.acad-english-points i {
  color: var(--gold-300);
  margin-top: 0.15rem;
}

.acad-quote-card {
  position: relative;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.acad-quote-card > i {
  color: var(--gold-300);
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.acad-quote-card blockquote {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.acad-quote-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.acad-pillar-card {
  height: 100%;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--ease);
}

.acad-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.acad-pillar-card--gold {
  border-color: rgba(201,162,39,0.45);
  background: linear-gradient(135deg, var(--gold-50), var(--white));
}

.acad-pillar-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.acad-pillar-card--gold .acad-pillar-icon {
  background: var(--gold-500);
  color: var(--blue-950);
}

.acad-pillar-card h3 {
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
}

.acad-pillar-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.acad-activity-image {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.acad-activity-image img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.acad-activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.acad-activity-grid div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 76px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  color: var(--text-heading);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--ease);
}

.acad-activity-grid div:hover {
  transform: translateY(-3px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.acad-activity-grid i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
}

.acad-results-band {
  padding: 5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.96), rgba(13,27,62,0.94)),
    url("../images/results-class10-toppers-2018-19.jpg") center/cover no-repeat;
}

.acad-results-img {
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid rgba(201,162,39,0.45);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.acad-results-img img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .acad-cbse-card {
    align-items: flex-start;
  }
  .acad-english-section,
  .acad-results-band {
    padding: 4rem 0;
  }
}

@media (max-width: 575px) {
  .acad-cbse-strip { padding-top: 1.25rem; }
  .acad-cbse-card {
    flex-direction: column;
    padding: 1.25rem;
  }
  .acad-program-media { height: 190px; }
  .acad-quote-card blockquote { font-size: 1.9rem; }
  .acad-activity-grid { grid-template-columns: 1fr; }
  .acad-activity-grid div { min-height: 68px; }
  .acad-results-img img,
  .acad-activity-image img { min-height: 220px; }
}

/* ================================================================
   44. RESULTS PAGE
   ================================================================ */
.res-highlight-section {
  padding: 3rem 0 0;
  background: var(--white);
}

.res-highlight-card {
  overflow: hidden;
  border-radius: 10px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.28), transparent 32%),
    linear-gradient(135deg, var(--gold-300), var(--gold-500) 48%, var(--gold-600));
  box-shadow: var(--shadow-lg);
}

.res-highlight-card .section-label {
  color: var(--blue-900);
}

.res-highlight-card h2 {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.92;
  color: var(--blue-950);
  margin-bottom: 0.85rem;
}

.res-highlight-card h2 span {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0.65rem;
}

.res-highlight-sub {
  color: rgba(6,14,31,0.82);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.res-highlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.res-highlight-meta div {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.48);
  color: var(--blue-950);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(6,14,31,0.12);
}

.res-highlight-meta i {
  color: var(--blue-700);
}

.res-highlight-img {
  overflow: hidden;
  border-radius: 10px;
  border: 4px solid rgba(255,255,255,0.65);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(6,14,31,0.28);
}

.res-highlight-img img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.res-topper-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 230px;
  padding: 1.4rem 1rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue-500);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--ease);
}

.res-topper-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -50px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(26,51,105,0.08);
}

.res-topper-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.res-topper-card--gold {
  border-top-color: var(--gold-500);
  background: linear-gradient(135deg, var(--gold-50), var(--white));
}

.res-topper-card--silver {
  border-top-color: #a3aab8;
  background: linear-gradient(135deg, #f3f5f8, var(--white));
}

.res-topper-card--bronze {
  border-top-color: #b7793d;
  background: linear-gradient(135deg, #fff2e6, var(--white));
}

.res-rank {
  position: absolute;
  top: 0.8rem;
  right: 0.85rem;
  z-index: 1;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
}

.res-medal {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.res-topper-card--gold .res-medal {
  background: var(--gold-100);
  color: var(--gold-600);
}

.res-topper-card--silver .res-medal {
  background: #e8ecf2;
  color: #697386;
}

.res-topper-card--bronze .res-medal {
  background: #ffead9;
  color: #9a5c25;
}

.res-topper-card h3 {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.res-score {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
}

.res-topper-card--gold .res-score { color: var(--gold-600); }

.res-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.res-table th {
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 1rem 0.9rem;
  white-space: nowrap;
}

.res-table td {
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-size: 0.9rem;
  padding: 1rem 0.9rem;
  vertical-align: middle;
}

.res-table tbody tr:last-child td { border-bottom: 0; }
.res-table tbody tr:hover { background: var(--blue-50); }

.res-note-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-blue);
  border-left: 4px solid var(--gold-500);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.res-note-card i {
  color: var(--gold-500);
  margin-top: 0.18rem;
}

.res-note-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.res-disclosure-section {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.96), rgba(13,27,62,0.94)),
    url("../images/results-class10-toppers-2018-19.jpg") center/cover no-repeat;
}

.res-disclosure-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid rgba(201,162,39,0.36);
  border-left: 5px solid var(--gold-500);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}

.res-disclosure-card h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.res-disclosure-card p:not(.section-label) {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.res-disclosure-card .btn {
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .res-highlight-card h2 { font-size: 4.4rem; }
  .res-highlight-img img { min-height: 250px; }
  .res-disclosure-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .res-highlight-section { padding-top: 1.5rem; }
  .res-highlight-card { padding: 1.35rem; }
  .res-highlight-card h2 { font-size: 3.6rem; }
  .res-highlight-meta {
    align-items: stretch;
    flex-direction: column;
  }
  .res-highlight-meta div { border-radius: 8px; }
  .res-highlight-img img { min-height: 210px; }
  .res-topper-card { min-height: 205px; }
  .res-table th,
  .res-table td {
    min-width: 135px;
    font-size: 0.82rem;
    padding: 0.8rem;
  }
  .res-disclosure-section { padding: 3.25rem 0; }
  .res-disclosure-card .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   45. FEE STRUCTURE PAGE
   ================================================================ */
.fee-intro-section {
  padding: 4.5rem 0;
}

.fee-value-card {
  overflow: hidden;
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.fee-value-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.fee-value-content {
  padding: 1.35rem 1.4rem;
}

.fee-value-content h3 {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.55rem;
}

.fee-value-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.fee-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.fee-page-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
}

.fee-page-table th {
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 1rem 0.95rem;
  white-space: nowrap;
}

.fee-page-table th small {
  display: block;
  margin-top: 0.18rem;
  color: rgba(255,255,255,0.64);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: none;
}

.fee-page-table td {
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 1rem 0.95rem;
  vertical-align: middle;
}

.fee-page-table tbody tr:last-child td { border-bottom: 0; }
.fee-page-table tbody tr:hover { background: var(--blue-50); }
.fee-page-table td:first-child {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--text-heading);
}

.fee-confirm-box {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(25,135,84,0.24);
  border-left: 4px solid #198754;
  border-radius: 8px;
  background: #f1fbf6;
  color: var(--text-body);
  font-size: 0.92rem;
}

.fee-confirm-box i {
  color: #198754;
}

.fee-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fee-note-card {
  height: 100%;
  padding: 1.45rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.fee-note-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.fee-note-card > i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.fee-note-card h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.fee-note-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.fee-download-section {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.96), rgba(13,27,62,0.94)),
    url("../images/hero-campus.jpg") center/cover no-repeat;
}

.fee-download-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem;
  border: 1px solid rgba(201,162,39,0.36);
  border-left: 5px solid var(--gold-500);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}

.fee-download-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(201,162,39,0.16);
  color: var(--gold-300);
  font-size: 1.8rem;
}

.fee-download-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.fee-download-card p:not(.section-label) {
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.fee-info-card {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fee-info-card--compliance {
  border-color: rgba(201,162,39,0.4);
  background: linear-gradient(135deg, var(--gold-50), var(--white));
}

.fee-info-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.fee-info-card--compliance .fee-info-icon {
  background: var(--gold-500);
  color: var(--blue-950);
}

.fee-info-card h2 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
}

.fee-info-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.fee-text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  color: var(--blue-600);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--ease);
}

.fee-text-link:hover { color: var(--gold-600); }

.fee-cta-section {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.96), rgba(13,27,62,0.94)),
    url("../images/facility-pool.jpg") center/cover no-repeat;
}

.fee-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(201,162,39,0.36);
  border-left: 5px solid var(--gold-500);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}

.fee-cta-card h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.fee-cta-card p:not(.section-label) {
  max-width: 720px;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.fee-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .fee-note-grid {
    grid-template-columns: 1fr;
  }

  .fee-download-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .fee-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .fee-intro-section { padding: 3.25rem 0; }
  .fee-value-card img { height: 210px; }
  .fee-page-table th,
  .fee-page-table td {
    min-width: 145px;
    padding: 0.85rem;
    font-size: 0.82rem;
  }
  .fee-download-section,
  .fee-cta-section { padding: 3.25rem 0; }
  .fee-download-card,
  .fee-cta-card { padding: 1.35rem; }
  .fee-download-card h2,
  .fee-cta-card h2 { font-size: 1.65rem; }
  .fee-cta-actions,
  .fee-cta-actions .btn,
  .fee-download-card .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   46. DIRECTOR'S MESSAGE PAGE
   ================================================================ */
.pm-profile-card {
  position: sticky;
  top: 110px;
  padding: 1.35rem;
  border: 1px solid var(--border-blue);
  border-top: 4px solid var(--gold-500);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  box-shadow: var(--shadow-md);
}

.pm-photo-wrap {
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid rgba(201,162,39,0.45);
  background: var(--blue-900);
  box-shadow: var(--shadow-sm);
}

.pm-photo-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.pm-profile-info {
  padding: 1.15rem 0 0.8rem;
  text-align: center;
}

.pm-profile-info h2 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.pm-profile-info span {
  display: block;
  color: var(--blue-600);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pm-meta-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.pm-meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.pm-meta-list span {
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pm-meta-list strong {
  color: var(--text-heading);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.pm-message-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pm-message-text {
  position: relative;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(135deg, var(--gold-50), var(--white));
}

.pm-message-text p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.pm-message-text p:last-child { margin-bottom: 0; }

.pm-signature {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.pm-sign-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue-600);
}

.pm-sign-role {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.pm-value-card {
  height: 100%;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--ease);
}

.pm-value-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-lg);
}

.pm-value-card--gold {
  border-color: rgba(201,162,39,0.45);
  background: linear-gradient(135deg, var(--gold-50), var(--white));
}

.pm-value-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.pm-value-card--gold .pm-value-icon {
  background: var(--gold-500);
  color: var(--blue-950);
}

.pm-value-card h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
}

.pm-value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.pm-crest-section {
  padding: 5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.96), rgba(13,27,62,0.94)),
    url("../images/hero-campus.jpg") center/cover no-repeat;
}

.pm-crest-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 2.2rem;
  border: 1px solid rgba(201,162,39,0.36);
  border-left: 5px solid var(--gold-500);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}

.pm-crest-img-wrap {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid rgba(201,162,39,0.5);
  background: var(--white);
}

.pm-crest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-crest-card h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.pm-crest-card p:not(.section-label) {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .pm-profile-card {
    position: static;
  }

  .pm-photo-wrap img {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .pm-profile-card,
  .pm-message-card {
    padding: 1.25rem;
  }

  .pm-photo-wrap img {
    height: 260px;
  }

  .pm-meta-list div {
    flex-direction: column;
    gap: 0.2rem;
  }

  .pm-meta-list strong {
    text-align: left;
  }

  .pm-message-text {
    padding: 1.15rem;
  }

  .pm-crest-section {
    padding: 3.25rem 0;
  }

  .pm-crest-card {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 1.35rem;
  }

  .pm-crest-img-wrap {
    width: 120px;
    height: 120px;
  }

  .pm-crest-card h2 {
    font-size: 2rem;
  }
}

/* ================================================================
   47. MANAGEMENT PAGE
   ================================================================ */
.mgmt-foundation-card {
  height: 100%;
  padding: 2rem 1.6rem;
  border: 1px solid var(--border-blue);
  border-top: 4px solid var(--gold-500);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  box-shadow: var(--shadow-md);
}

.mgmt-foundation-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.mgmt-foundation-card h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}

.mgmt-foundation-card > span {
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
}

.mgmt-foundation-meta {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.mgmt-foundation-meta div {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.mgmt-foundation-meta span {
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mgmt-foundation-meta strong {
  color: var(--text-heading);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.mgmt-director-card {
  padding: 1.35rem;
  border: 1px solid var(--border-blue);
  border-top: 4px solid var(--gold-500);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mgmt-director-photo {
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid rgba(201,162,39,0.45);
  background: var(--blue-900);
}

.mgmt-director-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.mgmt-director-info {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 8px 8px 0;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.mgmt-director-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.mgmt-director-role {
  color: var(--blue-600);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.mgmt-smc-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mgmt-smc-table th {
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 1rem 0.95rem;
  white-space: nowrap;
}

.mgmt-smc-table td {
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-size: 0.9rem;
  padding: 1rem 0.95rem;
  vertical-align: middle;
}

.mgmt-smc-table tbody tr:last-child td { border-bottom: 0; }
.mgmt-smc-table tbody tr:hover { background: var(--blue-50); }

.mgmt-pdf-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--border-blue);
  border-left: 4px solid var(--gold-500);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.mgmt-pdf-note > i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-50);
  color: var(--gold-600);
  font-size: 1.35rem;
}

.mgmt-pdf-note h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.mgmt-pdf-note p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.mgmt-compliance-section {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.96), rgba(13,27,62,0.94)),
    url("../images/hero-campus.jpg") center/cover no-repeat;
}

.mgmt-compliance-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(201,162,39,0.36);
  border-left: 5px solid var(--gold-500);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}

.mgmt-compliance-card h2 {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.mgmt-compliance-card p:not(.section-label) {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.mgmt-compliance-card .btn {
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .mgmt-director-photo img { height: 360px; }
  .mgmt-pdf-note {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .mgmt-pdf-note .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .mgmt-compliance-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .mgmt-foundation-card,
  .mgmt-director-card {
    padding: 1.25rem;
  }
  .mgmt-foundation-meta div {
    flex-direction: column;
    gap: 0.2rem;
  }
  .mgmt-foundation-meta strong {
    text-align: left;
  }
  .mgmt-director-photo img { height: 260px; }
  .mgmt-director-info { padding: 1.2rem; }
  .mgmt-smc-table th,
  .mgmt-smc-table td {
    min-width: 170px;
    padding: 0.85rem;
    font-size: 0.82rem;
  }
  .mgmt-pdf-note {
    grid-template-columns: 1fr;
  }
  .mgmt-compliance-section { padding: 3.25rem 0; }
  .mgmt-compliance-card { padding: 1.35rem; }
  .mgmt-compliance-card h2 { font-size: 1.65rem; }
  .mgmt-compliance-card .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   48. NEWS & EVENTS PAGE
   ================================================================ */

.news-feature-card {
  min-height: 100%;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.4rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.news-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold-500);
}

.news-feature-card--admissions {
  border-color: rgba(201,162,39,0.48);
  background:
    linear-gradient(135deg, rgba(255,251,238,0.96), rgba(255,255,255,0.96)),
    url("../images/school-crest.jpg") right 1.5rem center/180px auto no-repeat;
}

.news-feature-icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: var(--white);
  font-size: 1.65rem;
  box-shadow: var(--shadow-gold);
}

.news-feature-content {
  position: relative;
  z-index: 1;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-pill--gold {
  background: var(--gold-100);
  color: var(--gold-600);
}

.news-feature-card h3,
.news-achievement-body h3,
.news-notice-content h3 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 800;
}

.news-feature-card h3 {
  font-size: 2rem;
  margin: 0.75rem 0 0.7rem;
}

.news-feature-card p {
  max-width: 720px;
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.news-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.news-feature-meta {
  display: grid;
  gap: 0.1rem;
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 120px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201,162,39,0.38);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.news-feature-meta span {
  color: var(--gold-600);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.news-feature-meta small {
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-achievement-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.news-achievement-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--blue-900);
}

.news-achievement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-achievement-card:hover .news-achievement-img img {
  transform: scale(1.04);
}

.news-achievement-img span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--blue-950);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-achievement-body {
  padding: 1.45rem;
}

.news-achievement-body h3 {
  font-size: 1.45rem;
  margin: 0.75rem 0 0.65rem;
}

.news-achievement-body p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

.news-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-600);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 800;
}

.news-text-link:hover {
  color: var(--gold-600);
}

.news-sticky-intro {
  position: sticky;
  top: 118px;
}

.news-notice-list {
  display: grid;
  gap: 1rem;
}

.news-notice-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-notice-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-sm);
}

.news-notice-item--new {
  border-color: rgba(201,162,39,0.46);
  background: linear-gradient(135deg, var(--gold-50), var(--white));
}

.news-date-block {
  width: 76px;
  min-height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 10px;
  background: var(--blue-800);
  color: var(--white);
  text-align: center;
}

.news-date-block--placeholder {
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px dashed var(--border-blue);
}

.news-date-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.news-date-mon {
  display: block;
  margin-top: 0.28rem;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-notice-content {
  min-width: 0;
}

.news-notice-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.news-category {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-notice-content h3 {
  font-size: 1.18rem;
  margin-bottom: 0.4rem;
}

.news-notice-content p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.news-notice-content a {
  color: var(--blue-600);
  font-weight: 800;
}

.news-calendar-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.news-calendar-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.news-calendar-table th {
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1rem;
}

.news-calendar-table td {
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-size: 0.9rem;
  padding: 1rem;
  vertical-align: middle;
}

.news-calendar-table tbody tr:last-child td {
  border-bottom: 0;
}

.news-calendar-table tbody tr:hover {
  background: var(--blue-50);
}

.news-gallery-cta {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(6,14,31,0.94), rgba(13,27,62,0.9)),
    url("../images/hero-independence.jpg") center/cover no-repeat;
}

.news-gallery-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(201,162,39,0.34);
  border-left: 5px solid var(--gold-500);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.news-gallery-card h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.news-gallery-card p:not(.section-label) {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.news-gallery-card .btn {
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .news-sticky-intro {
    position: static;
  }
  .news-gallery-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .news-feature-card {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }
  .news-feature-icon {
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
  }
  .news-feature-card h3 {
    font-size: 1.55rem;
  }
  .news-feature-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .news-achievement-img {
    height: 220px;
  }
  .news-notice-item {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .news-date-block {
    width: 100%;
    min-height: 58px;
    grid-auto-flow: column;
    justify-content: start;
    gap: 0.45rem;
    padding: 0 0.9rem;
  }
  .news-date-mon {
    margin-top: 0;
  }
  .news-gallery-cta {
    padding: 3.25rem 0;
  }
  .news-gallery-card {
    padding: 1.35rem;
  }
  .news-gallery-card h2 {
    font-size: 1.55rem;
  }
  .news-gallery-card .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   49. FEE CHARGES BLOCK + LEADER PHOTO ICON (launch update)
   ================================================================ */
.fee-charges-block {
  margin-top: 2.25rem;
}

.fee-charges-title {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.fee-charges-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.fee-charges-foot {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-body);
  background: var(--blue-50);
  border-left: 4px solid var(--blue-400);
  border-radius: 0 6px 6px 0;
  padding: 0.7rem 1rem;
  margin-top: 1rem;
}

.fee-charges-foot i { color: var(--blue-600); }

/* Director / leadership icon avatar — used where a confirmed photo is not available */
.leader-photo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  background:
    linear-gradient(135deg, rgba(13,27,62,0.98), rgba(26,51,105,0.94)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 10px, transparent 10px 20px);
  color: var(--gold-400);
  font-size: 5.5rem;
}

@media (max-width: 991px) {
  .leader-photo-icon { height: 360px; }
}

@media (max-width: 575px) {
  .leader-photo-icon { height: 260px; font-size: 4.5rem; }
}
