/* =============================================
   EK ONKAR GLOBAL ACADEMY - Main Stylesheet
   Colors: Deep Navy #1a2d5a | Gold #c8a84b | White #fff | Light #f5f7fb
   ============================================= */

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

:root {
  --navy: #1a2d5a;
  --navy-dark: #0f1d3a;
  --gold: #c8a84b;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --light-bg: #f5f7fb;
  --text-dark: #2c2c2c;
  --text-mid: #555;
  --text-light: #888;
  --border: #e0e4ed;
  --shadow: 0 4px 24px rgba(26,45,90,0.10);
  --shadow-md: 0 8px 32px rgba(26,45,90,0.14);
  --radius: 8px;
  --transition: 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.25;
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a { display: flex; align-items: center; gap: 5px; }

/* ========== HEADER / NAV ========== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,45,90,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; }
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
}
.logo-text span { font-size: 11px; color: var(--gold); font-weight: 500; letter-spacing: 0.5px; }

/* Main Nav */
nav.main-nav { display: flex; align-items: center; gap: 4px; }

nav.main-nav > ul { display: flex; gap: 2px; align-items: center; }

nav.main-nav > ul > li { position: relative; }

nav.main-nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  border-radius: 4px;
  white-space: nowrap;
}
nav.main-nav > ul > li > a:hover,
nav.main-nav > ul > li.active > a {
  color: var(--gold);
  background: rgba(200,168,75,0.07);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 10px; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  z-index: 200;
  padding: 6px 0;
}
.dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  border-left: 3px solid transparent;
}
.dropdown-menu li a:hover {
  color: var(--gold);
  background: var(--light-bg);
  border-left-color: var(--gold);
}

/* Sub-dropdown */
.sub-dropdown { position: relative; }
.sub-dropdown > a::after { content: ' ›'; float: right; }
.sub-dropdown-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  padding: 6px 0;
  z-index: 300;
}
.sub-dropdown:hover .sub-dropdown-menu { display: block; }
.dropdown:hover > .dropdown-menu { display: block; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: var(--transition); border-radius: 2px; }

/* ========== CONTAINER ========== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-alt { background: var(--light-bg); }

/* ========== SECTION TITLE ========== */
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title h2 { font-size: 32px; color: var(--navy); }
.section-title p { color: var(--text-mid); max-width: 600px; margin: 12px auto 0; font-size: 15px; }
.divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 14px auto 0; border-radius: 2px;
}

/* ========== HERO SLIDER ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  min-height: 560px;
}
.hero-slides { display: flex; transition: transform 0.7s cubic-bezier(.4,0,.2,1); }
.hero-slide {
  min-width: 100%;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  padding: 60px 20px;
  margin-left: 8%;
}
.hero-content .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-size: clamp(26px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}
.hero-content p { font-size: 16px; color: rgba(255,255,255,0.88); margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.15); border: none;
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.hero-prev:hover, .hero-next:hover { background: var(--gold); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: background var(--transition); }
.hero-dot.active { background: var(--gold); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); }

/* ========== ADMISSION BANNER ========== */
.admission-banner {
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.admission-banner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  background: rgba(200,168,75,0.08);
  border-radius: 50%;
}
.admission-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.admission-banner h2 { font-size: 22px; color: var(--white); }
.admission-banner p { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 5px; }
.admission-features { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 12px; }
.admission-features li { font-size: 13px; color: rgba(255,255,255,0.85); }
.admission-features li::before { content: '✓ '; color: var(--gold); }

/* ========== ABOUT SECTION ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-img .stat-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy-dark);
  padding: 18px 22px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.about-img .stat-badge strong { display: block; font-size: 28px; font-weight: 700; line-height: 1; }
.about-img .stat-badge span { font-size: 11px; font-weight: 600; }
.about-text .eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.about-text h2 { font-size: 30px; margin: 10px 0 16px; }
.about-text p { color: var(--text-mid); margin-bottom: 14px; }
.features-list { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.features-list li { font-size: 13.5px; color: var(--text-mid); }
.features-list li::before { content: '◆ '; color: var(--gold); font-size: 8px; vertical-align: middle; }

/* ========== STATS BAR ========== */
.stats-bar { background: var(--navy); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat-item { color: var(--white); }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-item .num span { font-size: 28px; }
.stat-item .label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 6px; letter-spacing: 0.5px; }

/* ========== FEATURES CARDS ========== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .icon {
  width: 60px; height: 60px; background: rgba(200,168,75,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 26px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; color: var(--text-mid); }

/* ========== FACILITIES GRID ========== */
.facilities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.facility-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.facility-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.facility-card:hover img { transform: scale(1.08); }
.facility-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,45,90,0.9), transparent);
  color: var(--white); padding: 16px 10px 10px;
  font-size: 12px; font-weight: 600; text-align: center;
}

/* ========== DESK SECTION ========== */
.desk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.desk-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  gap: 0;
}
.desk-card-img { width: 120px; flex-shrink: 0; }
.desk-card-img img { width: 100%; height: 100%; object-fit: cover; }
.desk-card-body { padding: 24px 20px; }
.desk-card-body .title { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.desk-card-body h3 { font-size: 17px; margin-bottom: 10px; }
.desk-card-body p { font-size: 13px; color: var(--text-mid); }

/* ========== GALLERY GRID ========== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 9999; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 0 40px rgba(0,0,0,0.6); }
.lightbox-close {
  position: fixed; top: 20px; right: 24px; color: var(--white); font-size: 34px;
  background: none; border: none; cursor: pointer; line-height: 1; z-index: 10001;
}
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  font-size: 28px; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox-prev { left: 16px; } .lightbox-next { right: 16px; }

/* ========== CONTACT SECTION ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 22px; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item .ci-icon {
  width: 44px; height: 44px; background: rgba(200,168,75,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; color: var(--gold);
}
.contact-item .ci-text strong { display: block; font-size: 13px; color: var(--navy); }
.contact-item .ci-text span { font-size: 13.5px; color: var(--text-mid); }

/* Form */
.contact-form h3 { font-size: 22px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--text-dark);
  transition: border-color var(--transition); background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { color: green; font-size: 14px; margin-top: 8px; display: none; }
.form-error { color: red; font-size: 13px; margin-top: 4px; }

/* Map */
.map-wrap { margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 320px; border: none; display: block; }

/* ========== PAGE BANNER ========== */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-banner h1 { font-size: 36px; color: var(--white); margin-bottom: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ========== MANDATORY DISCLOSURE TABLE ========== */
.disclosure-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.disclosure-table th {
  background: var(--navy); color: var(--white); padding: 12px 16px;
  font-size: 13px; font-weight: 600; text-align: left;
}
.disclosure-table td {
  padding: 11px 16px; font-size: 13.5px; border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.disclosure-table tr:nth-child(even) td { background: var(--light-bg); }
.disclosure-table tr:hover td { background: rgba(200,168,75,0.06); }

/* ========== KINDERGARTEN PAGE ========== */
.kinder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.program-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.program-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 18px; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold); text-align: left;
}
.program-card .prog-icon { font-size: 28px; margin-bottom: 10px; }
.program-card h4 { font-size: 15px; margin-bottom: 6px; }
.program-card p { font-size: 13px; color: var(--text-mid); }

/* ========== REGISTRATION FORM SECTION ========== */
.reg-section { background: var(--navy); padding: 60px 0; }
.reg-section .section-title h2 { color: var(--white); }
.reg-section .section-title p { color: rgba(255,255,255,0.75); }
.reg-section .divider { background: var(--gold); }
.reg-form {
  max-width: 640px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius);
  padding: 36px 40px; box-shadow: var(--shadow-md);
}

/* ========== FOOTER ========== */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.68); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.68); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  background: #25D366; color: var(--white);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 900; transition: transform var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); }

/* Scroll-to-top */
.scroll-top {
  position: fixed; bottom: 84px; right: 24px;
  background: var(--navy); color: var(--white);
  width: 42px; height: 42px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; z-index: 900;
  border: none; box-shadow: var(--shadow);
  transition: background var(--transition);
}
.scroll-top:hover { background: var(--gold); }
.scroll-top.show { display: flex; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid, .kinder-grid, .contact-grid, .desk-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-img .stat-badge { bottom: 10px; right: 10px; }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; position: fixed; inset: 0; top: 84px; background: var(--white); flex-direction: column; padding: 20px; overflow-y: auto; z-index: 998; box-shadow: var(--shadow-md); }
  nav.main-nav.open { display: flex; }
  nav.main-nav > ul { flex-direction: column; width: 100%; gap: 0; }
  nav.main-nav > ul > li > a { padding: 12px 6px; border-bottom: 1px solid var(--border); }
  .dropdown-menu { position: static; display: none; box-shadow: none; border-top: none; border-left: 4px solid var(--gold); margin-left: 12px; padding: 4px 0; }
  .dropdown.open > .dropdown-menu { display: block; }
  .sub-dropdown-menu { position: static; display: none; margin-left: 12px; }
  .sub-dropdown.open > .sub-dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .hero { min-height: 400px; }
  .hero-slide { min-height: 400px; }
  .hero-content { margin-left: 0; padding: 40px 20px; }
  .hero-content h1 { font-size: 24px; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .program-cards { grid-template-columns: 1fr; }
  .desk-grid { grid-template-columns: 1fr; }
  .reg-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .section-title h2 { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .admission-banner .container { flex-direction: column; text-align: center; }
}
