/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1a3a6b;
  --secondary: #e8a020;
  --accent: #c0392b;
  --light: #f4f7fc;
  --dark: #0d1f3c;
  --text: #333;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 10px;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1rem;
}
.section-title span { color: var(--secondary); }
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: #c8880e; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.82rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--secondary); }
.top-bar .top-links { display: flex; gap: 16px; align-items: center; }
.top-bar .top-links a:hover { color: var(--white); }

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 60px; height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary);
  font-weight: 900;
  border: 3px solid var(--secondary);
  flex-shrink: 0;
}
.logo-text h1 { font-size: 1.25rem; color: var(--primary); font-weight: 800; line-height: 1.2; }
.logo-text p { font-size: 0.75rem; color: #666; }

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--primary); color: var(--white); }
.nav-links .btn-nav {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
}
.nav-links .btn-nav:hover { background: #c8880e; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 25px; height: 3px; background: var(--primary); border-radius: 3px; transition: 0.3s; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.78) 0%, rgba(13,31,60,0.35) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 700px;
}
.slide-content .tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
}
.slide-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.slide-content p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 28px; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}
.dot.active { background: var(--secondary); border-color: var(--white); transform: scale(1.2); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--secondary); border-color: var(--secondary); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.stat-item p { font-size: 0.88rem; opacity: 0.85; margin-top: 4px; }

/* ===== NOTICE TICKER ===== */
.notice-bar {
  background: var(--secondary);
  padding: 10px 0;
  overflow: hidden;
}
.notice-bar .container { display: flex; align-items: center; gap: 16px; }
.notice-label {
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker span { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.ticker span::before { content: '🔔 '; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about { padding: 80px 0; background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .big { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge p { font-size: 0.78rem; font-weight: 600; }
.about-text h2 { font-size: 1.9rem; color: var(--primary); font-weight: 800; margin-bottom: 16px; }
.about-text h2 span { color: var(--secondary); }
.about-text p { color: #555; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.feat-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }
.feat-item .icon { font-size: 1.3rem; }

/* ===== PROGRAMS ===== */
.programs { padding: 80px 0; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border-top: 4px solid var(--primary);
}
.program-card:hover { transform: translateY(-6px); }
.program-card:nth-child(2) { border-top-color: var(--secondary); }
.program-card:nth-child(3) { border-top-color: var(--accent); }
.program-icon {
  background: var(--light);
  padding: 30px;
  text-align: center;
  font-size: 3rem;
}
.program-body { padding: 24px; }
.program-body h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.program-body p { font-size: 0.88rem; color: #666; margin-bottom: 16px; }
.program-body ul li {
  font-size: 0.85rem;
  padding: 4px 0;
  border-bottom: 1px dashed #eee;
  color: #555;
}
.program-body ul li::before { content: '✓ '; color: var(--secondary); font-weight: 700; }

/* ===== GALLERY ===== */
.gallery { padding: 80px 0; background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
  min-height: 220px;
}
.gallery-item:first-child img { min-height: 440px; object-position: center center; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,60,0.55);
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== FACILITIES ===== */
.facilities { padding: 80px 0; }
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.facility-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}
.facility-card:hover { border-bottom-color: var(--secondary); transform: translateY(-4px); }
.facility-card .icon { font-size: 2.8rem; margin-bottom: 14px; }
.facility-card h3 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.facility-card p { font-size: 0.83rem; color: #666; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: var(--primary); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
}
.stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.9rem; opacity: 0.88; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-author h4 { font-size: 0.92rem; font-weight: 700; }
.t-author span { font-size: 0.78rem; opacity: 0.7; }

/* ===== EVENTS ===== */
.events { padding: 80px 0; background: var(--light); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0;
}
.event-date {
  background: var(--primary);
  color: var(--white);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 70px;
}
.event-date .day { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-date .month { font-size: 0.75rem; text-transform: uppercase; opacity: 0.85; }
.event-info { padding: 16px; }
.event-info h3 { font-size: 0.95rem; color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.event-info p { font-size: 0.82rem; color: #666; }
.event-info .tag {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ===== ADMISSION CTA ===== */
.admission-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  text-align: center;
  color: var(--white);
}
.admission-cta h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; }
.admission-cta h2 span { color: var(--secondary); }
.admission-cta p { font-size: 1rem; opacity: 0.85; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }
.contact-info h2 { font-size: 1.8rem; color: var(--primary); font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: #555; margin-bottom: 28px; }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item h4 { font-size: 0.88rem; color: var(--primary); font-weight: 700; }
.info-item p { font-size: 0.88rem; color: #555; margin: 0; }

.contact-form { background: var(--light); padding: 36px; border-radius: var(--radius); }
.contact-form h3 { font-size: 1.3rem; color: var(--primary); font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== MAP ===== */
.map-section { height: 380px; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { 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: 0.88rem; line-height: 1.7; opacity: 0.75; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: 0.3s;
}
.social-links a:hover { background: var(--secondary); }
.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--secondary); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; opacity: 0.75; transition: 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--secondary); padding-left: 4px; }
.footer-col ul li a::before { content: '› '; color: var(--secondary); }
.newsletter p { font-size: 0.87rem; opacity: 0.75; margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  padding: 10px 16px;
  background: var(--secondary);
  border: none;
  border-radius: 0 6px 6px 0;
  color: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.2s;
}
.newsletter-form button:hover { background: #c8880e; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.65;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== 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: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999;
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .programs-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .top-bar .top-links { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  header { position: relative; }
  .slide-content { padding: 0 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 10px; }
  .programs-grid, .testimonials-grid, .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero { height: 70vh; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
}

/* ===== PRINCIPAL ===== */
.principal { padding: 80px 0; background: var(--light); }
.principal-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.principal-img { text-align: center; }
.principal-photo { font-size: 8rem; line-height: 1; margin-bottom: 20px; }
.principal-badge { background: var(--primary); color: var(--white); padding: 20px 30px; border-radius: var(--radius); display: inline-block; }
.principal-badge h4 { font-size: 1.1rem; margin-bottom: 4px; }
.principal-badge p { font-size: 0.9rem; color: var(--secondary); font-weight: 600; }
.principal-badge span { font-size: 0.8rem; opacity: 0.75; }
.section-tag { display: inline-block; background: var(--secondary); color: var(--white); padding: 5px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 14px; }
.principal-text h2 { font-size: 1.9rem; color: var(--primary); font-weight: 800; margin-bottom: 20px; }
.principal-text h2 span { color: var(--secondary); }
.principal-text p { color: #555; margin-bottom: 14px; font-style: italic; line-height: 1.8; }
.principal-sign { margin-top: 24px; font-size: 1.1rem; font-weight: 700; color: var(--primary); border-top: 2px solid var(--secondary); padding-top: 14px; display: inline-block; }
.principal-sign small { font-size: 0.82rem; color: #666; font-weight: 400; display: block; }

/* ===== CBSE BAR ===== */
.cbse-bar { background: var(--primary); padding: 16px 0; }
.cbse-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.cbse-item { color: rgba(255,255,255,0.85); font-size: 0.85rem; }
.cbse-item strong { color: var(--secondary); }

/* ===== ACHIEVEMENTS ===== */
.achievements { padding: 80px 0; background: var(--white); }
.achievements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.achieve-card { background: var(--light); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: transform 0.3s; border-bottom: 3px solid transparent; }
.achieve-card:hover { transform: translateY(-5px); border-bottom-color: var(--secondary); }
.achieve-icon { font-size: 2.8rem; margin-bottom: 14px; }
.achieve-card h3 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.achieve-card p { font-size: 0.85rem; color: #666; margin-bottom: 14px; }
.achieve-tag { display: inline-block; background: var(--primary); color: var(--white); padding: 3px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.toppers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.topper-card { background: var(--light); border-radius: var(--radius); padding: 24px; text-align: center; border-top: 4px solid var(--secondary); }
.topper-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.topper-card h4 { font-size: 0.95rem; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.topper-card p { font-size: 0.9rem; color: var(--secondary); font-weight: 600; margin-bottom: 4px; }
.topper-card span { font-size: 0.78rem; color: #888; }

/* ===== FACULTY ===== */
.faculty { padding: 80px 0; background: var(--light); }
.faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.faculty-card { background: var(--white); border-radius: var(--radius); padding: 30px 24px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; }
.faculty-card:hover { transform: translateY(-5px); }
.faculty-photo { font-size: 4.5rem; margin-bottom: 16px; line-height: 1; }
.faculty-info h3 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.faculty-info .role { font-size: 0.88rem; color: var(--secondary); font-weight: 600; margin-bottom: 4px; }
.faculty-info .qual { font-size: 0.82rem; color: #666; margin-bottom: 4px; }
.faculty-info .exp { font-size: 0.8rem; color: #999; }

/* ===== ADMISSION PROCESS ===== */
.admission-process { padding: 80px 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 3px; background: linear-gradient(to right, var(--primary), var(--secondary)); z-index: 0; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 28px 16px; text-align: center; box-shadow: var(--shadow); position: relative; z-index: 1; border-top: 3px solid var(--primary); }
.step-num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: var(--white); width: 32px; height: 32px; border-radius: 50%; font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-icon { font-size: 2.2rem; margin: 10px 0 12px; }
.step-card h3 { font-size: 0.95rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.8rem; color: #666; }

/* ===== FEE TABLE ===== */
.fee-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table thead { background: var(--primary); color: var(--white); }
.fee-table th { padding: 14px 20px; text-align: left; font-size: 0.9rem; }
.fee-table td { padding: 12px 20px; font-size: 0.88rem; border-bottom: 1px solid #eee; }
.fee-table tbody tr:nth-child(even) { background: var(--light); }
.fee-table tbody tr:hover { background: #e8f0fb; }

/* ===== DOWNLOADS ===== */
.downloads { padding: 80px 0; background: var(--light); }
.downloads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.download-card { background: var(--white); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: transform 0.2s; }
.download-card:hover { transform: translateY(-3px); }
.dl-icon { font-size: 2.2rem; flex-shrink: 0; }
.dl-info { flex: 1; }
.dl-info h4 { font-size: 0.92rem; color: var(--primary); font-weight: 700; margin-bottom: 3px; }
.dl-info p { font-size: 0.8rem; color: #888; }
.dl-btn { background: var(--primary); color: var(--white); padding: 7px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; transition: 0.2s; }
.dl-btn:hover { background: var(--secondary); }

/* ===== NEWS ===== */
.news { padding: 80px 0; background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.news-card:hover { transform: translateY(-5px); }
.news-img { background: var(--light); padding: 30px; text-align: center; font-size: 3.5rem; }
.news-body { padding: 22px; }
.news-date { font-size: 0.78rem; color: var(--secondary); font-weight: 600; }
.news-body h3 { font-size: 1rem; color: var(--primary); font-weight: 700; margin: 8px 0; }
.news-body p { font-size: 0.85rem; color: #666; margin-bottom: 14px; }
.news-link { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.news-link:hover { color: var(--secondary); }

/* ===== ALUMNI ===== */
.alumni { padding: 80px 0; background: var(--light); }
.alumni-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.alumni-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; }
.alumni-card:hover { transform: translateY(-5px); }
.alumni-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border: 3px solid var(--secondary); }
.alumni-card h4 { font-size: 0.95rem; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.alumni-role { font-size: 0.82rem; color: var(--secondary); font-weight: 600; margin-bottom: 3px; }
.alumni-batch { font-size: 0.78rem; color: #999; margin-bottom: 10px; }
.alumni-quote { font-size: 0.82rem; color: #666; font-style: italic; line-height: 1.6; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn { position: fixed; bottom: 82px; right: 28px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 16px rgba(37,211,102,0.5); z-index: 999; transition: transform 0.3s; }
.whatsapp-btn:hover { transform: scale(1.12); }

/* ===== NEW RESPONSIVE ===== */
@media (max-width: 1024px) {
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .toppers-grid { grid-template-columns: repeat(2, 1fr); }
  .alumni-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .downloads-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .principal-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .achievements-grid, .news-grid, .downloads-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .toppers-grid, .alumni-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-grid { grid-template-columns: 1fr; }
  .cbse-grid { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .steps-grid, .toppers-grid, .alumni-grid { grid-template-columns: 1fr; }
}
