/* ============================================================
   DLS International Public School — Main Stylesheet
   Design: Glassmorphism | Premium Luxury | Mobile-First
   Colors: #0A2342 (primary) | #0066FF (secondary) | #FFD700 (accent)
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --primary:        #0A2342;
  --primary-light:  #0d2d55;
  --primary-dark:   #061628;
  --secondary:      #0066FF;
  --secondary-light:#3385ff;
  --accent:         #FFD700;
  --accent-dark:    #e6c200;
  --white:          #FFFFFF;
  --off-white:      #F8F9FB;
  --gray-50:        #F9FAFB;
  --gray-100:       #F3F4F6;
  --gray-200:       #E5E7EB;
  --gray-400:       #9CA3AF;
  --gray-600:       #4B5563;
  --gray-800:       #1F2937;
  --success:        #10B981;
  --danger:         #EF4444;
  --warning:        #F59E0B;

  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-display:   'Montserrat', system-ui, sans-serif;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  --shadow-sm:      0 2px 8px rgba(10,35,66,.08);
  --shadow-md:      0 8px 24px rgba(10,35,66,.12);
  --shadow-lg:      0 20px 60px rgba(10,35,66,.16);
  --shadow-xl:      0 32px 80px rgba(10,35,66,.20);
  --shadow-glow:    0 0 30px rgba(0,102,255,.3);
  --shadow-gold:    0 0 30px rgba(255,215,0,.3);

  --glass-bg:       rgba(255,255,255,0.08);
  --glass-border:   rgba(255,255,255,0.15);
  --glass-blur:     blur(20px);

  --transition-fast:  0.15s ease;
  --transition-base:  0.25s ease;
  --transition-slow:  0.4s ease;

  --navbar-h:       80px;
  --topbar-h:       40px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
a:hover { color: var(--secondary); }

::selection { background: var(--accent); color: var(--primary); }

/* ── Typography ─────────────────────────────────────────────── */
.font-heading  { font-family: var(--font-heading); }
.font-display  { font-family: var(--font-display); }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--primary);
  margin-bottom: .75rem;
}
.section-title span { color: var(--secondary); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: .8rem;
  position: relative;
  z-index: 1030;
}
.top-bar-info span { display: flex; align-items: center; white-space: nowrap; }
.top-bar-info i { color: var(--accent); }
.top-bar-label { color: rgba(255,255,255,.5); font-size: .75rem; }

/* ── Portal Buttons ─────────────────────────────────────────── */
.btn-portal {
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 50px;
  border: 0;
  white-space: nowrap;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
}
.btn-parent, .btn-parent-sm {
  background: linear-gradient(135deg, #0066FF, #0047b3);
  color: #fff;
}
.btn-student, .btn-student-sm {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
}
.btn-parent:hover  { background: linear-gradient(135deg, #3385ff, #0066FF); color: #fff; transform: translateY(-1px); }
.btn-student:hover { background: linear-gradient(135deg, #ffe047, var(--accent)); color: var(--primary); transform: translateY(-1px); }

/* Android App Download Button — top bar */
.btn-app-topbar {
  font-size: .78rem;
  font-weight: 700;
  padding: .28rem .85rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-base);
  letter-spacing: .01em;
}
.btn-app-topbar:hover {
  background: #01875f;
  border-color: #01875f;
  color: #fff;
  transform: translateY(-1px);
}
.btn-app-topbar i { font-size: .82rem; color: #78c96e; }
.btn-app-topbar:hover i { color: #fff; }

/* Play Store badge — large card style */
.playstore-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #000;
  color: #fff;
  border-radius: 10px;
  padding: .65rem 1.25rem;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,.15);
  min-width: 180px;
}
.playstore-badge:hover {
  background: #01875f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1,135,95,.4);
  color: #fff;
  border-color: transparent;
}
.playstore-badge .ps-icon { font-size: 1.6rem; color: #78c96e; flex-shrink: 0; }
.playstore-badge:hover .ps-icon { color: #fff; }
.playstore-badge .ps-text .ps-sub  { font-size: .65rem; color: rgba(255,255,255,.6); line-height: 1; display: block; }
.playstore-badge .ps-text .ps-main { font-size: .9rem; font-weight: 700; line-height: 1.3; display: block; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar-main {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  min-height: var(--navbar-h);
  padding-top: 0;
  padding-bottom: 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.navbar-main.scrolled {
  min-height: 80px;
  box-shadow: var(--shadow-md);
}
.navbar-main.scrolled .dls-logo-img { height: 76px; }
.navbar-main.scrolled .school-logo-wrap { height: 76px; }

.navbar-brand { padding: 6px 0; }

/* ── DLS Logo — properly sized ───────────────────────────────── */
.school-logo-wrap {
  position: relative;
  height: 76px;
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.dls-logo-img {
  height: 76px;         /* tall enough to read logo text */
  width: auto;          /* respect aspect ratio — no squishing */
  max-width: 200px;     /* prevent overflow on narrow screens */
  object-fit: contain;
  object-position: left center;
  display: block;
  background: transparent;
  transition: height var(--transition-base);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.10));
}

.logo-abbr {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.2;
}
.brand-sub {
  font-size: .75rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}
.affiliation-badge {
  background: var(--secondary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 50px;
  letter-spacing: .05em;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--gray-800) !important;
  padding: .5rem .75rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.nav-link:hover::after, .nav-link.active::after { left: .75rem; right: .75rem; }
.nav-link:hover, .nav-link.active { color: var(--secondary) !important; background: rgba(0,102,255,.06); }

.cbse-link {
  background: linear-gradient(135deg, rgba(255,215,0,.15), rgba(255,215,0,.05)) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(255,215,0,.4);
  font-weight: 700 !important;
}
.cbse-link:hover { background: var(--accent) !important; color: var(--primary) !important; }

.dropdown-menu {
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  min-width: 220px;
  animation: dropIn .2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  padding: .6rem 1rem;
  color: var(--gray-800);
  display: flex;
  align-items: center;
}
.dropdown-item:hover { background: rgba(0,102,255,.08); color: var(--secondary); }
.dropdown-item i { color: var(--secondary); }

.navbar-portal-btns .btn-portal { font-size: .8rem; padding: .4rem 1rem; }

/* ── Hero Section ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,22,40,.92) 0%,
    rgba(10,35,66,.75) 50%,
    rgba(0,51,153,.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.3);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown .6s ease .2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeInUp .7s ease .3s both;
}
.hero-title .accent-word { color: var(--accent); }
.hero-title .blue-word   { color: var(--secondary-light); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp .7s ease .45s both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp .7s ease .55s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--secondary), #0047b3);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 0;
  transition: all .3s ease;
  box-shadow: 0 8px 24px rgba(0,102,255,.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,102,255,.5);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.4);
  transition: all .3s ease;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}

.hero-portal-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .65s both;
}
.hero-portal-btns .btn-portal { font-size: .9rem; padding: .55rem 1.4rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: bounce 2s infinite;
}
.hero-scroll-hint span {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.scroll-arrow {
  width: 30px; height: 50px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 15px;
  margin: 0 auto;
  position: relative;
}
.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0%   { top: 8px; opacity: 1; }
  80%  { top: 28px; opacity: 0; }
  100% { top: 8px; opacity: 0; }
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ── Stats Section ──────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.stat-card:last-child::after { display: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-suffix { font-size: 1.5rem; color: rgba(255,215,0,.7); }
.stat-label {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  margin-top: .5rem;
}
.stat-icon {
  width: 50px; height: 50px;
  background: rgba(255,215,0,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: var(--accent);
}

/* ── Section Common ─────────────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }
.bg-light-blue { background: linear-gradient(135deg, #f0f5ff, #f8fbff); }
.bg-dark-section { background: var(--primary); }

/* ── Feature Cards (Digital Classroom, etc.) ────────────────── */
.feature-section { position: relative; overflow: hidden; }

.glass-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-slow);
}
.glass-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.icon-blue   { background: linear-gradient(135deg, rgba(0,102,255,.2), rgba(0,102,255,.05)); color: var(--secondary-light); border: 1px solid rgba(0,102,255,.2); }
.icon-gold   { background: linear-gradient(135deg, rgba(255,215,0,.2), rgba(255,215,0,.05)); color: var(--accent); border: 1px solid rgba(255,215,0,.2); }
.icon-white  { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.icon-teal   { background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(16,185,129,.05)); color: #10B981; border: 1px solid rgba(16,185,129,.2); }

.feature-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.feature-card-text { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.65; }

/* ── Digital Classroom Section ──────────────────────────────── */
.digital-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #071a38 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.digital-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.screen-mockup {
  background: linear-gradient(135deg, rgba(0,102,255,.1), rgba(0,40,100,.3));
  border: 1px solid rgba(0,102,255,.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.screen-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: rgba(0,0,0,.3);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.screen-mockup-dots {
  position: absolute;
  top: 10px; left: 14px;
  display: flex; gap: 5px;
}
.screen-mockup-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: block;
}
.screen-mockup-dots span:nth-child(1) { background: #ff5f57; }
.screen-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.screen-mockup-dots span:nth-child(3) { background: #27c93f; }

.floating-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  position: absolute;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card-1 { top: 10%; right: -20px; animation-delay: 0s; }
.floating-card-2 { bottom: 15%; left: -20px; animation-delay: 1.5s; }
.floating-card-3 { top: 55%; right: -15px; animation-delay: 0.8s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.float-icon { font-size: 1.5rem; }
.float-text .label { font-size: .7rem; color: rgba(255,255,255,.5); }
.float-text .val   { font-size: .95rem; font-weight: 700; color: #fff; }

/* ── AI Section ─────────────────────────────────────────────── */
.ai-section {
  background: linear-gradient(135deg, #040e1e 0%, var(--primary-dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.ai-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.ai-graph-wrap {
  position: relative;
  height: 280px;
}
.ai-bar {
  position: absolute;
  bottom: 0;
  width: 28px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--secondary), rgba(0,102,255,.4));
  transition: height .6s ease;
}
.ai-bar.gold { background: linear-gradient(to top, var(--accent), rgba(255,215,0,.4)); }

.hologram-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,102,255,.3);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { opacity: .3; transform: scale(1); }
  50%      { opacity: .7; transform: scale(1.05); }
}

/* ── Smart Campus ───────────────────────────────────────────── */
.campus-section {
  background: var(--off-white);
  padding: 6rem 0;
}

.campus-feature {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-100);
}
.campus-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,102,255,.2);
}
.campus-feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(10,35,66,.08), rgba(0,102,255,.08));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  margin: 0 auto 1.25rem;
}
.campus-feature h5 { color: var(--primary); font-size: 1.05rem; margin-bottom: .5rem; }
.campus-feature p  { color: var(--gray-600); font-size: .875rem; margin: 0; }

/* ── Sports Section ─────────────────────────────────────────── */
.sports-section {
  background: linear-gradient(135deg, var(--primary) 0%, #103070 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.sport-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: all var(--transition-slow);
}
.sport-card:hover { transform: scale(1.03); }

.sport-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  filter: blur(0px);
  transition: all var(--transition-slow);
}
.sport-card:hover .sport-card-bg { transform: scale(1.1); }

.sport-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,22,40,.95) 0%, rgba(6,22,40,.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.sport-name { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
.sport-desc { color: rgba(255,255,255,.65); font-size: .85rem; }
.sport-icon-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* Sport colors */
.sport-cricket { background: linear-gradient(135deg, #1a3a1a, #2d6b2d); }
.sport-football { background: linear-gradient(135deg, #1a1a3a, #2d2d7a); }
.sport-athletics { background: linear-gradient(135deg, #3a1a00, #7a3d00); }
.sport-basketball { background: linear-gradient(135deg, #3a1a00, #c06000); }

/* ── Activity Cards ─────────────────────────────────────────── */
.activity-section { padding: 6rem 0; background: var(--white); }

.activity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 320px;
  cursor: pointer;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-md);
}
.activity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.activity-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(6,22,40,.95) 30%, transparent 100%);
}
.activity-emoji { font-size: 3rem; margin-bottom: .5rem; }
.activity-title { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: .35rem; }
.activity-sub   { color: rgba(255,255,255,.65); font-size: .85rem; }
.activity-tag   {
  display: inline-block;
  background: rgba(255,215,0,.2);
  border: 1px solid rgba(255,215,0,.3);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: .5rem;
}

/* Activity backgrounds */
.act-robotics   { background: linear-gradient(135deg, #0d1b2a, #1a3a6b); }
.act-science    { background: linear-gradient(135deg, #0a2a1a, #1a5a3a); }
.act-art        { background: linear-gradient(135deg, #2a0a2a, #5a1a6b); }
.act-music      { background: linear-gradient(135deg, #2a1a0a, #6b4a1a); }

/* ── Portal Section ─────────────────────────────────────────── */
.portal-section {
  background: linear-gradient(135deg, var(--primary-dark), #071f45);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.portal-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,.1) 0%, transparent 70%);
  border-radius: 50%;
}

.portal-feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.portal-feature-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.portal-feature-list i {
  width: 32px; height: 32px;
  background: rgba(0,102,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary-light);
  font-size: .85rem;
  flex-shrink: 0;
}

.portal-phone-mockup {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  padding: 1.5rem;
  max-width: 320px;
  margin: 0 auto;
}

.btn-parent-footer, .btn-student-footer {
  width: 100%;
  padding: .85rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .3s ease;
}
.btn-parent-footer  { background: linear-gradient(135deg, #0066FF, #0047b3); color: #fff; }
.btn-student-footer { background: linear-gradient(135deg, var(--accent), #e6b800); color: var(--primary); }
.btn-parent-footer:hover  { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,102,255,.4); color: #fff; }
.btn-student-footer:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,215,0,.4); color: var(--primary); }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section { padding: 5rem 0; background: var(--off-white); }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  height: 100%;
  position: relative;
  transition: all var(--transition-slow);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: .5rem; left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gray-100);
  line-height: 1;
}
.testimonial-stars { color: var(--accent); font-size: .9rem; margin-bottom: .75rem; }
.testimonial-text  { color: var(--gray-600); font-size: .95rem; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: var(--primary); font-size: .95rem; }
.testimonial-role { color: var(--gray-600); font-size: .8rem; }

/* ── News Cards ─────────────────────────────────────────────── */
.news-section { padding: 5rem 0; }

.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-slow);
  height: 100%;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-category-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--secondary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.news-card-body { padding: 1.5rem; }
.news-date { color: var(--gray-400); font-size: .8rem; margin-bottom: .5rem; display: flex; align-items: center; gap: 5px; }
.news-title { font-size: 1.05rem; color: var(--primary); font-weight: 700; margin-bottom: .75rem; line-height: 1.4; }
.news-title a { color: inherit; }
.news-title a:hover { color: var(--secondary); }
.news-excerpt { color: var(--gray-600); font-size: .875rem; line-height: 1.65; }
.btn-read-more {
  color: var(--secondary);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1rem;
  transition: gap var(--transition-base);
}
.btn-read-more:hover { gap: 8px; color: var(--primary); }

/* ── CBSE Section ───────────────────────────────────────────── */
.cbse-section {
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border-top: 3px solid var(--accent);
  padding: 4rem 0;
}

.cbse-doc-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}
.cbse-doc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(255,215,0,.4); }
.cbse-doc-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(255,215,0,.2), rgba(255,215,0,.05));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--warning);
  flex-shrink: 0;
}
.cbse-doc-name { font-weight: 600; color: var(--primary); font-size: .9rem; }
.cbse-doc-cat  { color: var(--gray-400); font-size: .75rem; }
.cbse-doc-btn  { margin-left: auto; flex-shrink: 0; }

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: .75rem;
}
.page-hero-sub { color: rgba(255,255,255,.7); font-size: 1.05rem; }

.breadcrumb-item { font-size: .875rem; }
.breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Faculty Card ───────────────────────────────────────────── */
.faculty-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-slow);
  text-align: center;
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.faculty-photo {
  width: 100%; height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.3);
}
.faculty-photo img { width: 100%; height: 100%; object-fit: cover; }
.faculty-info { padding: 1.5rem; }
.faculty-name { font-size: 1.05rem; color: var(--primary); margin-bottom: .25rem; }
.faculty-designation { color: var(--secondary); font-weight: 600; font-size: .875rem; margin-bottom: .75rem; }
.faculty-meta { color: var(--gray-600); font-size: .8rem; }
.faculty-meta span { display: flex; align-items: center; gap: 4px; justify-content: center; margin-bottom: .25rem; }
.faculty-dept-badge {
  display: inline-block;
  background: rgba(10,35,66,.08);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: .5rem;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-filter { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.gallery-filter-btn {
  background: #fff;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  font-weight: 600;
  font-size: .875rem;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-grid { columns: 3; gap: 1rem; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,35,66,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: #fff; font-size: 2rem; }

@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ── Forms ──────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .9rem;
  color: var(--gray-800);
  transition: all var(--transition-base);
}
.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,102,255,.12);
  outline: 0;
}
.form-label { font-weight: 600; color: var(--gray-800); font-size: .875rem; margin-bottom: .4rem; }
.form-label .req { color: var(--danger); margin-left: 2px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary-dls {
  background: linear-gradient(135deg, var(--secondary), #0047b3);
  color: #fff;
  border: 0;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-dls:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,102,255,.4); color: #fff; }

.btn-outline-dls {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50px;
  padding: .7rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-dls:hover { background: var(--secondary); color: #fff; transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: 0;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--primary); }

/* ── CBSE Disclosure Page ───────────────────────────────────── */
.cbse-header-banner {
  background: linear-gradient(135deg, #7c5e00, #c49500);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.cbse-category-group { margin-bottom: 2rem; }
.cbse-cat-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding: .6rem 1rem;
  background: rgba(10,35,66,.06);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── Admission Form ─────────────────────────────────────────── */
.admission-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: all var(--transition-base);
}
.step-item.active .step-num { background: var(--secondary); color: #fff; }
.step-item.done .step-num   { background: var(--success); color: #fff; }
.step-label { font-size: .75rem; color: var(--gray-600); font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────── */
.cbse-footer-banner {
  background: linear-gradient(135deg, #7c5e00, var(--accent-dark));
  padding: 1.5rem 0;
}
.cbse-icon-wrap {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}
.cbse-banner-title { color: #fff; font-weight: 700; font-size: 1.1rem; }
.cbse-banner-sub   { color: rgba(255,255,255,.8); font-size: .875rem; }
.btn-cbse-footer {
  background: #fff;
  color: #7c5e00;
  font-weight: 700;
  border-radius: 50px;
  padding: .6rem 1.5rem;
  font-size: .9rem;
  border: 0;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
}
.btn-cbse-footer:hover { background: var(--primary); color: #fff; }

.footer-main { background: var(--primary-dark); padding: 4.5rem 0 2.5rem; }
.footer-brand .footer-school-name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.1rem; }
.footer-brand .footer-school-sub  { color: rgba(255,255,255,.5); font-size: .8rem; }
.badge-cbse-sm {
  background: var(--secondary);
  color: #fff;
  font-size: .6rem;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
}
.footer-tagline { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.7; margin-top: .75rem; }
.footer-logo-wrap { position: relative; }
.logo-abbr-sm {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  width: 46px; height: 46px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  margin-bottom: .75rem;
}
.footer-contact-list i { color: var(--accent); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.6); }
.footer-contact-list a:hover { color: var(--accent); }

.social-links { display: flex; gap: .75rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: all var(--transition-base);
}
.social-links a:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; transform: translateY(-2px); }

.footer-heading {
  color: #fff;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-base);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-portal-desc { color: rgba(255,255,255,.55); font-size: .875rem; margin-bottom: 1rem; }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 1.25rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--accent); }
.footer-cbse-link { color: var(--accent) !important; font-weight: 600; }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 1000;
  transition: all var(--transition-base);
  animation: pulseGreen 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

@keyframes pulseGreen {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,.7); }
}

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: var(--secondary);
  color: #fff;
  border: 0;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover   { background: var(--primary); transform: translateY(-2px); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Hero Banner Image (right side) ─────────────────────────── */
.hero-banner-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.hero-banner-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  object-fit: cover;
  position: relative;
  z-index: 1;
  animation: heroImgFloat 5s ease-in-out infinite;
}
@keyframes heroImgFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-float-card {
  position: absolute;
  background: rgba(10,35,66,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  font-size: .85rem;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  white-space: nowrap;
}
.hero-float-card-1 { top: 8%;   left: -5px;  animation-delay: 0s; }
.hero-float-card-2 { bottom: 12%; right: 0px; animation-delay: 1.2s; }
.hero-float-card-3 { top: 48%;  right: -5px; animation-delay: 0.6s; }

/* ── Particles Container ────────────────────────────────────── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.1);
  border: 0;
  border-radius: 50%;
  width: 44px; height: 44px;
  color: #fff;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ── Admission Info Cards ───────────────────────────────────── */
.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}
.process-step:hover { transform: translateX(6px); border-color: rgba(0,102,255,.2); }
.process-step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--secondary), #0047b3);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.process-step-content h6 { color: var(--primary); font-weight: 700; margin-bottom: .25rem; }
.process-step-content p  { color: var(--gray-600); font-size: .875rem; margin: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .navbar-main { height: auto; overflow: visible; }
  .navbar-collapse { padding: 1rem 0; }
  .navbar-portal-btns { padding: .75rem 0 0; gap: .5rem; }
  .nav-link::after { display: none; }
  .hero-content { padding: 100px 0 60px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767.98px) {
  :root { --topbar-h: auto; }
  .top-bar { padding: .5rem 0; height: auto; }
  .section-pad { padding: 3.5rem 0; }
  .digital-section, .ai-section, .sports-section, .portal-section { padding: 4rem 0; }
  .hero-title { font-size: 1.9rem; }
  .portal-feature-list { grid-template-columns: 1fr; }
  .floating-card { display: none; }
  /* Fix horizontal overflow causing blank space on right side */
  body { overflow-x: hidden; }
  .sports-section, .sports-lights { overflow: hidden; }
}

@media (max-width: 479.98px) {
  .hero-cta-group .btn-hero-primary,
  .hero-cta-group .btn-hero-outline { width: 100%; justify-content: center; }
  .hero-portal-btns { flex-direction: column; }
  .hero-portal-btns .btn-portal { justify-content: center; }
}

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .floating-card, .hologram-ring, .scroll-arrow::before { animation: none; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .top-bar, .navbar-main, .whatsapp-float, .back-to-top, .hero-section, footer { display: none !important; }
  body { color: #000 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   AI LEARNING CENTER — Redesigned
═══════════════════════════════════════════════════════════════ */
.ai-dashboard-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

/* Animated hologram rings */
.ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,102,255,.2);
  animation: aiRingPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}
.ai-ring-1 { width: 340px; height: 340px; animation-delay: 0s;    border-color: rgba(0,102,255,.18); }
.ai-ring-2 { width: 260px; height: 260px; animation-delay: .8s;   border-color: rgba(255,215,0,.15); }
.ai-ring-3 { width: 180px; height: 180px; animation-delay: 1.6s;  border-color: rgba(0,102,255,.25); }

@keyframes aiRingPulse {
  0%,100% { opacity: .3; transform: scale(1); }
  50%      { opacity: .8; transform: scale(1.04); }
}

.ai-dashboard-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
}

.ai-dash-header {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ai-dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.ai-dot-blue  { background: #0066FF; }
.ai-dot-gold  { background: #FFD700; }
.ai-dot-green { background: #10B981; }

/* Bar chart */
.ai-bars-row {
  display: flex;
  align-items: flex-end;
  gap: .4rem;
  height: 140px;
  margin-bottom: .5rem;
}
.ai-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  height: 100%;
  justify-content: flex-end;
}
.ai-bar-pct {
  color: rgba(255,255,255,.45);
  font-size: .58rem;
  font-weight: 600;
}
.ai-bar-fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1s cubic-bezier(.34,1.56,.64,1);
}
.ai-bar-label {
  color: rgba(255,255,255,.4);
  font-size: .6rem;
  text-align: center;
  white-space: nowrap;
}

/* Stats row */
.ai-stats-row {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
.ai-stat-pill {
  flex: 1;
  border: 1px solid;
  border-radius: 10px;
  padding: .65rem .5rem;
  text-align: center;
}
.ai-stat-val { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; line-height: 1.1; }
.ai-stat-lbl { color: rgba(255,255,255,.45); font-size: .62rem; margin-top: .2rem; }

/* Floating AI tag */
.ai-float-tag {
  position: absolute;
  top: -16px;
  right: 16px;
  background: linear-gradient(135deg, #0066FF, #0047b3);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 16px rgba(0,102,255,.4);
}
.ai-pulse-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: block;
  animation: aiPulse 1.5s infinite;
}
@keyframes aiPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* AI feature rows */
.ai-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  transition: all .3s ease;
}
.ai-feature-row:hover {
  background: rgba(255,255,255,.08);
  transform: translateX(6px);
}
.ai-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ai-feature-title {
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  margin-bottom: .3rem;
}
.ai-feature-text {
  color: rgba(255,255,255,.55);
  font-size: .83rem;
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PLAYGROUND & SPORTS — Full Animation System
═══════════════════════════════════════════════════════════════ */

/* Stadium lights */
.sports-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sports-light {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  animation: lightDrift 8s ease-in-out infinite alternate;
}
.sl-1 { background: rgba(0,102,255,.12);  top: -100px; left: -80px;  animation-delay: 0s; }
.sl-2 { background: rgba(255,215,0,.08);  top: -80px;  right: -80px; animation-delay: 2s; }
.sl-3 { background: rgba(255,255,255,.05);bottom: -60px;left: 40%;  animation-delay: 4s; }
@keyframes lightDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.15); }
}

/* Sport card v2 */
.sport-card-wrapper { perspective: 800px; }

.sport-card-v2 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
  transform-origin: center bottom;
  opacity: 0;
  transform: translateY(60px);
}
.sport-card-v2.animated {
  opacity: 1;
  transform: translateY(0);
}
.sport-card-v2:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  z-index: 2;
}

.sport-bg-gradient {
  position: absolute;
  inset: 0;
  transition: transform .6s ease;
}
.sport-card-v2:hover .sport-bg-gradient {
  transform: scale(1.08);
}

/* Floating emoji */
.sport-emoji-wrap {
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}
.sport-emoji {
  font-size: 4.5rem;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
  animation: sportEmojiFloat 3s ease-in-out infinite;
}
.sport-card-v2:nth-child(1) .sport-emoji { animation-delay: 0s; }
.sport-card-v2:nth-child(2) .sport-emoji { animation-delay: .6s; }
.sport-card-v2:nth-child(3) .sport-emoji { animation-delay: 1.2s; }
.sport-card-v2:nth-child(4) .sport-emoji { animation-delay: 1.8s; }
@keyframes sportEmojiFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}
.sport-emoji-shadow {
  width: 50px; height: 10px;
  background: rgba(0,0,0,.3);
  border-radius: 50%;
  margin: 4px auto 0;
  filter: blur(4px);
  animation: shadowPulse 3s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%,100% { width: 50px; opacity: .4; }
  50%      { width: 35px; opacity: .2; }
}

/* Rings (appear on hover) */
.sport-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.sport-ring-1 { width: 150px; height: 150px; }
.sport-ring-2 { width: 220px; height: 220px; }
.sport-card-v2:hover .sport-ring { opacity: 1; animation: sportRingPulse 1.5s ease-in-out infinite; }
.sport-ring-2 { animation-delay: .5s !important; }
@keyframes sportRingPulse {
  0%,100% { opacity: .3; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: .7; transform: translate(-50%,-50%) scale(1.06); }
}

/* Sport content */
.sport-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 60%, transparent 100%);
  z-index: 3;
}
.sport-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.3);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: .5rem;
  letter-spacing: .05em;
}
.sport-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: .4rem;
}
.sport-desc {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  line-height: 1.55;
  margin-bottom: .75rem;
}
.sport-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  overflow: hidden;
}
.sport-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #fff8);
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(.34,1.56,.64,1);
}

/* Sport corner number */
.sport-number {
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  transition: color .3s;
}
.sport-card-v2:hover .sport-number { color: rgba(255,255,255,.12); }

/* Sports stats strip */
.sports-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.sports-stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 2rem;
  position: relative;
  flex: 1;
  min-width: 150px;
  justify-content: center;
}
.sports-stat + .sports-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.ss-icon { font-size: 1.75rem; }
.ss-val  { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.ss-lbl  { color: rgba(255,255,255,.6); font-size: .8rem; }

/* ═══════════════════════════════════════════════════════════════
   ACTIVITY & INNOVATION CENTER — Full Animation System
═══════════════════════════════════════════════════════════════ */
.act-card-wrapper { perspective: 900px; }

.act-card-v2 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease, border-color .3s;
  opacity: 0;
  transform: translateY(60px) rotateX(8deg);
}
.act-card-v2.animated {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.act-card-v2:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  border-color: rgba(255,255,255,.15);
}

.act-card-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s ease, opacity .4s;
  opacity: .8;
}
.act-card-v2:hover .act-card-bg { transform: scale(1.08); opacity: 1; }

/* Top accent line */
.act-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: .7;
  transition: opacity .3s;
}
.act-card-v2:hover .act-top-line { opacity: 1; }

/* Floating icon cluster */
.act-icon-cluster {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.act-float-icon {
  position: absolute;
  font-size: 1.5rem;
  opacity: .12;
  animation: actIconDrift 6s ease-in-out infinite;
}
.act-fi-1 { top: 10%; right: 15%; animation-delay: 0s; }
.act-fi-2 { top: 55%; right: 8%;  animation-delay: 1.5s; font-size: 1.1rem; }
.act-fi-3 { top: 25%; right: 35%; animation-delay: 3s;   font-size: .9rem; }
@keyframes actIconDrift {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-16px) rotate(5deg); }
}
.act-card-v2:hover .act-float-icon { opacity: .25; }

/* Content */
.act-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  background: linear-gradient(to top, rgba(6,22,40,.97) 40%, rgba(6,22,40,.3) 100%);
  z-index: 2;
}
.act-emoji {
  font-size: 3rem;
  margin-bottom: .6rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  transition: transform .3s ease;
}
.act-card-v2:hover .act-emoji { transform: scale(1.15) translateY(-4px); }

.act-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  width: fit-content;
  margin-bottom: .6rem;
}
.act-title {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .4rem;
}
.act-desc {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  line-height: 1.55;
  margin-bottom: .85rem;
}
.act-explore-btn {
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.act-card-v2:hover .act-explore-btn { opacity: 1; transform: translateY(0); }

/* Corner accent square */
.act-corner {
  position: absolute;
  width: 60px; height: 60px;
  top: -20px; left: -20px;
  border-radius: 12px;
  opacity: .15;
  transform: rotate(45deg);
  transition: all .4s;
  z-index: 1;
}
.act-card-v2:hover .act-corner { opacity: .25; transform: rotate(45deg) scale(1.3); }

/* ═══════════════════════════════════════════════════════════════
   VISION MISSION VALUES — Fixed & Redesigned
═══════════════════════════════════════════════════════════════ */
.vmv-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f5ff 0%, #f8fbff 50%, #fffdf0 100%);
  position: relative;
  overflow: hidden;
}
.vmv-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,.04) 0%, transparent 70%);
  border-radius: 50%;
}

.vmv-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 4px 24px rgba(10,35,66,.08);
  border: 1.5px solid var(--gray-100);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
}
.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10,35,66,.14);
}

/* Icon */
.vmv-icon-wrap {
  position: relative;
  width: 70px; height: 70px;
  margin-bottom: 1.5rem;
}
.vmv-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: vmvRing 3s ease-in-out infinite;
}
.vmv-vision  .vmv-icon-ring { background: rgba(0,102,255,.08);  border: 1.5px solid rgba(0,102,255,.2); }
.vmv-mission .vmv-icon-ring { background: rgba(255,215,0,.1);   border: 1.5px solid rgba(255,215,0,.3); }
.vmv-values  .vmv-icon-ring { background: rgba(16,185,129,.08); border: 1.5px solid rgba(16,185,129,.2); }
@keyframes vmvRing {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.vmv-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  width: 70px; height: 70px;
}
.vmv-vision  .vmv-icon { color: #0066FF; }
.vmv-mission .vmv-icon { color: #D97706; }
.vmv-values  .vmv-icon { color: #10B981; }

.vmv-number {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(10,35,66,.04);
  line-height: 1;
}
.vmv-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: .75rem;
}
.vmv-text {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Vision/Mission bullets */
.vmv-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vmv-bullets li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: var(--gray-700);
  padding: .4rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
}
.vmv-vision  .vmv-bullets i { color: #0066FF; }
.vmv-mission .vmv-bullets i { color: #D97706; }

/* Values tags */
.vmv-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.vmv-tag {
  background: rgba(16,185,129,.08);
  border: 1.5px solid rgba(16,185,129,.2);
  color: #059669;
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 50px;
  transition: all .2s;
}
.vmv-tag:hover { background: #10B981; color: #fff; }

/* VMV top border per card */
.vmv-vision::after  { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#0066FF,#4499ff); border-radius:20px 20px 0 0; }
.vmv-mission::after { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#D97706,#FFD700); border-radius:20px 20px 0 0; }
.vmv-values::after  { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#10B981,#34d399); border-radius:20px 20px 0 0; }

/* ═══════════════════════════════════════════════════════════════
   ACADEMICS PAGE STYLES
═══════════════════════════════════════════════════════════════ */
.wing-nav-bar {
  background: #fff;
  border-bottom: 2px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(10,35,66,.06);
  z-index: 800 !important;
}
.wing-nav-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wing-nav-tabs::-webkit-scrollbar { display: none; }
.wing-tab {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  transition: all .2s;
  position: relative;
  top: 2px;
}
.wing-tab:hover        { color: var(--secondary); }
.wing-tab.active       { color: var(--secondary); border-bottom-color: var(--secondary); }

/* Wing feature cards */
.wing-feat-card {
  background: #fff;
  border: 1.5px solid var(--wc, var(--secondary));
  border-opacity: 0.12;
  border-color: color-mix(in srgb, var(--wc) 15%, transparent);
  border-radius: 14px;
  padding: 1.25rem;
  height: 100%;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.wing-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--wc);
  opacity: .6;
}
.wing-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.wing-feat-icon {
  width: 44px; height: 44px;
  background: color-mix(in srgb, var(--wc) 12%, transparent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wc);
  font-size: 1.2rem;
  margin-bottom: .85rem;
}
.wing-feat-title { font-weight: 700; color: var(--primary); font-size: .9rem; margin-bottom: .35rem; }
.wing-feat-text  { color: var(--gray-600); font-size: .82rem; line-height: 1.55; margin: 0; }

/* Exam cards */
.exam-card {
  background: #fff;
  border: 1.5px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.exam-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,35,66,.1); }
.exam-icon-wrap {
  width: 56px; height: 56px;
  border: 1.5px solid;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.exam-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.exam-text  { color: var(--gray-600); font-size: .875rem; line-height: 1.7; margin: 0; }
.exam-accent-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .3s;
}
.exam-card:hover .exam-accent-line { opacity: 1; }

/* Exam timeline */
.exam-timeline {
  background: linear-gradient(135deg, var(--primary), #103070);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
}
.etl-header {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.75rem;
}
.etl-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 1rem;
}
.etl-row::before {
  content: '';
  position: absolute;
  top: 30px; left: 5%; right: 5%;
  height: 2px;
  background: rgba(255,215,0,.3);
}
.etl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex: 1;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.etl-month {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem .7rem;
  border-radius: 50px;
}
.etl-dot {
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(255,215,0,.2);
}
.etl-label {
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  line-height: 1.4;
}

/* Navbar: no text, logo only */
.navbar-main .brand-text { display: none !important; }
.navbar-main .navbar-brand { padding: .25rem 0; }

/* Footer Google Play button */
.footer-app-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #000;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: .7rem 1rem;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.footer-app-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120,201,110,.08), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.footer-app-btn:hover { background: #01875f; border-color: #01875f; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(1,135,95,.35); }
.footer-app-btn:hover::before { opacity: 1; }
.footer-app-icon { font-size: 1.5rem; color: #78c96e; flex-shrink: 0; transition: color .3s; }
.footer-app-btn:hover .footer-app-icon { color: #fff; }
.footer-app-text { display: flex; flex-direction: column; flex: 1; }
.footer-app-sub  { font-size: .62rem; color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; line-height: 1; }
.footer-app-name { font-size: .95rem; font-weight: 700; line-height: 1.4; }
.footer-app-arrow { font-size: .75rem; color: rgba(255,255,255,.35); flex-shrink: 0; }

/* VMV card reveal — visible by default, JS adds animation class */
.vmv-anim-ready .vmv-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.4,.64,1);
}
.vmv-anim-ready .vmv-card.vmv-visible {
  opacity: 1;
  transform: translateY(0);
}
.vmv-anim-ready .vmv-card:nth-child(2) { transition-delay: .15s; }
.vmv-anim-ready .vmv-card:nth-child(3) { transition-delay: .3s; }

/* Wing feature card fallback for color-mix (older Chrome) */
.wing-feat-card { border-color: rgba(0,102,255,.15); }
.wing-feat-icon { background: rgba(0,102,255,.1); }
