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

:root {
  --navy: #1A237E;
  --navy-dark: #0d1457;
  --navy-light: #283593;
  --gold: #FF8F00;
  --gold-light: #FFB300;
  --gold-dark: #E65100;
  --white: #ffffff;
  --light: #F5F7FF;
  --grey: #F0F2F5;
  --text: #1a1a2e;
  --text-light: #555577;
  --shadow: 0 4px 20px rgba(26,35,126,0.12);
  --shadow-lg: 0 8px 40px rgba(26,35,126,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

/* NAVBAR */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-tag {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(255,143,0,0.1);
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-nav {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Poppins', sans-serif;
}
.btn-student {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-student:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-parent {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-parent:hover { background: var(--gold); color: var(--navy-dark); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  padding: 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(255,143,0,0.1); }
.mobile-menu-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.mobile-menu-actions .btn-nav { flex: 1; text-align: center; }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,20,87,0.88) 0%, rgba(26,35,126,0.75) 50%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}
.hero-badge {
  background: rgba(255,143,0,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(14px, 2.5vw, 22px);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}
.hero-desc {
  font-size: clamp(13px, 1.8vw, 17px);
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}
.hero-tag {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,143,0,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* SECTIONS */
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
  display: inline-block;
  background: rgba(255,143,0,0.1);
  color: var(--gold-dark);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid rgba(255,143,0,0.3);
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* STATS BAR */
.stats-bar {
  background: var(--navy);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-number {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ABOUT SECTION */
.about-section { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.about-content { }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.feature-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.feature-text p { font-size: 12px; color: var(--text-light); }

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.cards-grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

/* COURSE CARDS */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(26,35,126,0.08);
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 24px;
  position: relative;
}
.course-icon { font-size: 36px; margin-bottom: 8px; }
.course-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.course-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.course-card-body { padding: 20px; flex: 1; }
.course-timing {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 600;
}
.course-fee-box {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}
.fee-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.fee-option:last-child { margin-bottom: 0; }
.fee-option .check { color: #22c55e; font-size: 15px; }
.fee-amount { color: var(--navy); font-weight: 800; }
.fee-save {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
}
.fee-strike { text-decoration: line-through; color: var(--text-light); font-size: 12px; }

/* FACULTY */
.faculty-section { background: var(--light); }
.faculty-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.faculty-distinguished { margin-bottom: 24px; }
.faculty-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faculty-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.faculty-card.gold-card { border: 2px solid var(--gold); }
.faculty-card.distinguished-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 2px solid var(--gold);
  display: grid;
  grid-template-columns: auto 1fr;
  text-align: left;
}
.faculty-img-wrap { position: relative; }
.faculty-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.faculty-card.distinguished-card .faculty-img-wrap {
  width: 200px;
  flex-shrink: 0;
}
.faculty-card.distinguished-card .faculty-img-wrap img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}
.faculty-role-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
}
.faculty-body { padding: 20px; }
.faculty-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.faculty-card.distinguished-card .faculty-name { color: var(--white); }
.faculty-designation {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.faculty-qual {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.faculty-card.distinguished-card .faculty-qual { color: rgba(255,255,255,0.7); }
.faculty-bio {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.faculty-card.distinguished-card .faculty-bio { color: rgba(255,255,255,0.8); }
.badge-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin: 2px;
}
.badge-gold { background: var(--gold); color: var(--navy-dark); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-outline { border: 1px solid var(--gold); color: var(--gold); }

/* FACILITIES */
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  text-align: center;
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.facility-icon {
  font-size: 42px;
  margin-bottom: 14px;
  display: block;
}
.facility-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.facility-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,20,87,0.9), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: 13px; font-weight: 600; }

/* TESTIMONIALS/REVIEWS */
.reviews-section { background: var(--navy); }
.reviews-section .section-title { color: var(--white); }
.reviews-section .section-sub { color: rgba(255,255,255,0.7); }
.reviews-track-wrap { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 20px;
  animation: reviewScroll 30s linear infinite;
}
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
}
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
.review-text {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy-dark);
  font-weight: 800;
}
.review-info h4 { color: var(--white); font-size: 14px; font-weight: 700; }
.review-info p { color: var(--gold); font-size: 12px; }

/* TIMETABLE */
.timetable-section { background: var(--light); }
.timetable-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}
.tab-btn.active { background: var(--navy); color: var(--white); }
.tab-btn:hover { background: var(--navy); color: var(--white); }
.timetable-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.timetable-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}
.timetable-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(26,35,126,0.08);
  font-size: 14px;
  background: var(--white);
}
.timetable-table tr:hover td { background: var(--light); }
.subject-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}
.tag-physics { background: #E3F2FD; color: #1565C0; }
.tag-chemistry { background: #F3E5F5; color: #6A1B9A; }
.tag-biology { background: #E8F5E9; color: #2E7D32; }

/* BLOG */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-body { padding: 20px; }
.blog-cat {
  display: inline-block;
  background: rgba(255,143,0,0.1);
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-size: 12px; color: var(--text-light); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,143,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-text h4 {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-text p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-text a { color: rgba(255,255,255,0.85); }
.contact-text a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-fb { background: #1877F2; color: white; }
.social-ig { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(26,35,126,0.15);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  transition: var(--transition);
  color: var(--text);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,35,126,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
  box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; border: none; display: block; }

/* ADMISSIONS BANNER */
.admission-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #FF6F00 100%);
  padding: 60px 0;
  text-align: center;
}
.admission-banner h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 10px;
}
.admission-banner p {
  font-size: 16px;
  color: var(--navy-dark);
  margin-bottom: 24px;
  opacity: 0.85;
  font-weight: 600;
}
.admission-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* LOGIN PAGES */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}
.login-logo { width: 80px; margin: 0 auto 16px; }
.login-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.login-sub { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.login-tabs {
  display: flex;
  background: var(--light);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 24px;
}
.login-tab {
  flex: 1;
  padding: 10px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  transition: var(--transition);
  color: var(--text-light);
}
.login-tab.active { background: var(--navy); color: var(--white); }

/* DASHBOARD */
.dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: var(--navy);
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}
.sidebar-logo img { width: 50px; border-radius: 50%; }
.sidebar-title { color: var(--white); font-size: 13px; font-weight: 700; margin-top: 8px; }
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-right: 3px solid var(--gold);
}
.sidebar-nav li a span { font-size: 18px; }
.dashboard-main { background: #F0F2FA; overflow-y: auto; }
.dashboard-header {
  background: var(--white);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.dashboard-header h1 { font-size: 20px; color: var(--navy); }
.dashboard-content { padding: 24px; }
.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-card-icon.blue { background: rgba(26,35,126,0.1); }
.stat-card-icon.gold { background: rgba(255,143,0,0.1); }
.stat-card-icon.green { background: rgba(34,197,94,0.1); }
.stat-card-icon.red { background: rgba(239,68,68,0.1); }
.stat-card-num { font-size: 26px; font-weight: 900; color: var(--navy); }
.stat-card-label { font-size: 12px; color: var(--text-light); font-weight: 600; }
.data-table {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.data-table-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(26,35,126,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data-table-header h3 { font-size: 16px; color: var(--navy); }
table { width: 100%; border-collapse: collapse; }
table th {
  background: var(--light);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(26,35,126,0.05);
  font-size: 14px;
}
table tr:hover td { background: var(--light); }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.status-paid { background: #dcfce7; color: #16a34a; }
.status-due { background: #fef9c3; color: #ca8a04; }
.status-overdue { background: #fee2e2; color: #dc2626; }
.status-new { background: #dbeafe; color: #2563eb; }
.status-active { background: #dcfce7; color: #16a34a; }

/* FOOTER */
.footer { background: var(--navy-dark); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img { width: 70px; border-radius: 50%; margin-bottom: 14px; }
.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.footer-social-btn:hover { transform: translateY(-3px); }
.footer-col-title {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; }
.footer-contact-item p { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom span { color: var(--gold); }

/* FLOATING BUTTONS */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  border: none;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; }
.scroll-top:hover { background: var(--gold); transform: translateY(-2px); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,143,0,0.08);
}
.page-hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero-sub { color: rgba(255,255,255,0.75); font-size: 16px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  font-size: 13px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* NOTICE/INFO BOX */
.info-box {
  background: rgba(26,35,126,0.05);
  border: 1px solid rgba(26,35,126,0.15);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
}
.info-box.gold {
  background: rgba(255,143,0,0.05);
  border-color: rgba(255,143,0,0.3);
  border-left-color: var(--gold);
}
.info-box p { font-size: 14px; color: var(--text); line-height: 1.7; }

/* SYLLABUS */
.syllabus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 4px solid var(--navy);
  transition: var(--transition);
}
.syllabus-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.syllabus-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.syllabus-card p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.download-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid;
}
.download-btn-seba { color: #d32f2f; border-color: #d32f2f; background: #fff5f5; }
.download-btn-seba:hover { background: #d32f2f; color: white; }
.download-btn-cbse { color: #1565c0; border-color: #1565c0; background: #f0f7ff; }
.download-btn-cbse:hover { background: #1565c0; color: white; }
.download-btn-ahsec { color: #2e7d32; border-color: #2e7d32; background: #f0fff4; }
.download-btn-ahsec:hover { background: #2e7d32; color: white; }

/* ATTENDANCE CALENDAR */
.attendance-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.cal-present { background: #dcfce7; color: #16a34a; }
.cal-absent { background: #fee2e2; color: #dc2626; }
.cal-late { background: #fef9c3; color: #ca8a04; }
.cal-empty { background: var(--light); color: var(--text-light); }

/* PROGRESS BAR */
.progress-bar-wrap { margin-bottom: 12px; }
.progress-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.progress-bar { height: 8px; background: var(--light); border-radius: 50px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 50px; background: linear-gradient(to right, var(--navy), var(--gold)); transition: width 1s ease; }

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

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  section { padding: 50px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .faculty-featured { grid-template-columns: 1fr; }
  .faculty-card.distinguished-card { grid-template-columns: 1fr; }
  .faculty-card.distinguished-card .faculty-img-wrap { width: 100%; }
  .faculty-card.distinguished-card .faculty-img-wrap img { width: 100%; height: 250px; }
  .faculty-grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dashboard { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .timetable-table { font-size: 12px; }
  .timetable-table th, .timetable-table td { padding: 10px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-in-left.visible { opacity: 1; transform: translateX(0); }

/* UTILITY */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.hidden { display: none; }
.show { display: block; }
/* ═══ HOMEPAGE ENHANCEMENTS ═══ */

/* HERO — animated gradient overlay + particle shimmer */
.hero { position: relative; min-height: 100vh; }
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  padding: 20px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #f0c93a);
  color: #0a1628;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  animation: badgePop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
@keyframes badgePop {
  from { opacity:0; transform:scale(0.7) translateY(10px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.hero-title {
  font-size: clamp(36px,7vw,72px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  animation: heroTitleIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
@keyframes heroTitleIn {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-title span { color: #D4AF37; }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 8px;
  animation: heroTitleIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.7s both;
}
.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  animation: heroTitleIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.9s both;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  animation: heroTitleIn 0.8s cubic-bezier(0.22,1,0.36,1) 1.0s both;
}
.hero-tag {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
}
.hero-tag:hover { background: rgba(212,175,55,0.2); border-color: rgba(212,175,55,0.4); }
.hero-btns { animation: heroTitleIn 0.8s cubic-bezier(0.22,1,0.36,1) 1.1s both; }

/* FLOATING SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown {
  0%   { opacity:1; transform:translateX(-50%) translateY(0); }
  100% { opacity:0; transform:translateX(-50%) translateY(12px); }
}
.scroll-text { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1px; }

/* STATS BAR — gold gradient */
.stats-bar {
  background: linear-gradient(135deg, #0a1628 0%, #1a2f5e 100%);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #D4AF37, #f0c93a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item { text-align: center; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 700; margin-top: 4px; }

/* SECTION DIVIDERS */
.wave-section-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-section-top svg { display: block; width: 100%; }

/* WHY CHOOSE US — new horizontal strip */
.why-strip {
  background: linear-gradient(135deg, #0a1628, #1a2f5e);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.why-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,175,55,0.08), transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #f0c93a);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-item:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); }
.why-item:hover::before { transform: scaleX(1); }
.why-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.why-num { font-size: 28px; font-weight: 900; color: #D4AF37; margin-bottom: 4px; }
.why-label { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 600; }

/* SOCIAL BUTTONS — real icons, better style */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}
.social-btn i { font-size: 15px; }
.social-fb { background: #1877F2; color: white; box-shadow: 0 4px 14px rgba(24,119,242,0.3); }
.social-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; box-shadow: 0 4px 14px rgba(220,39,67,0.3); }
.social-btn:hover { transform: translateY(-2px); opacity: 0.9; filter: brightness(1.1); }

/* FOOTER SOCIAL — real icons */
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.footer-social-btn:hover { transform: translateY(-3px) scale(1.1); }

/* CTA STRIP between sections */
.cta-strip {
  background: linear-gradient(135deg, #D4AF37 0%, #f0c93a 50%, #D4AF37 100%);
  padding: 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.03) 10px,
    rgba(0,0,0,0.03) 20px
  );
}
.cta-strip p { font-size: 15px; font-weight: 800; color: #0a1628; position: relative; margin-bottom: 10px; }
.cta-strip a { margin: 0 6px; }

@media(max-width:768px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:480px) {
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}

.social-wa { background: #25D366; color: white; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }

