/* Extracted from playway-school.html */
:root {
  --yellow: #FFD93D;
  --orange: #FF6B35;
  --pink: #FF85A1;
  --green: #6BCB77;
  --blue: #4D96FF;
  --purple: #C77DFF;
  --cream: #FFF8F0;
  --dark: #2D2D2D;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--yellow);
}
.nav-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem; font-weight: 800;
  color: var(--orange);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; font-weight: 700; color: var(--dark);
  font-size: 0.92rem; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 3px; background: var(--orange);
  border-radius: 99px; transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: white;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.5); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E6 40%, #FFF5FB 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 100px 40px 60px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-bg-circles .circle {
  position: absolute; border-radius: 50%;
  opacity: 0.12; animation: float 6s ease-in-out infinite;
}
.c1 { width: 300px; height: 300px; background: var(--yellow); top: -80px; left: -80px; animation-delay: 0s; }
.c2 { width: 200px; height: 200px; background: var(--pink); top: 20%; right: -60px; animation-delay: 1s; }
.c3 { width: 150px; height: 150px; background: var(--blue); bottom: 10%; left: 5%; animation-delay: 2s; }
.c4 { width: 250px; height: 250px; background: var(--green); bottom: -80px; right: 10%; animation-delay: 0.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
.floaties { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.floatie { position: absolute; font-size: 1.8rem; animation: floatUp 8s ease-in-out infinite; opacity: 0.7; }
.floatie:nth-child(1) { left: 8%; top: 20%; animation-delay: 0s; }
.floatie:nth-child(2) { left: 85%; top: 15%; animation-delay: 1.5s; }
.floatie:nth-child(3) { left: 15%; bottom: 25%; animation-delay: 3s; }
.floatie:nth-child(4) { left: 75%; bottom: 20%; animation-delay: 2s; }
.floatie:nth-child(5) { left: 50%; top: 10%; animation-delay: 4s; }
.floatie:nth-child(6) { left: 92%; top: 50%; animation-delay: 1s; }
.floatie:nth-child(7) { left: 3%; top: 55%; animation-delay: 2.5s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(10deg); }
  66% { transform: translateY(8px) rotate(-8deg); }
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-welcome {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem; font-weight: 700;
  color: #444; margin-bottom: 14px;
}
.hero-welcome strong { color: var(--orange); }
.hero-welcome span {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow); color: var(--dark);
  padding: 6px 18px; border-radius: 50px;
  font-weight: 800; font-size: 0.85rem;
  margin-bottom: 18px; letter-spacing: 0.5px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  color: var(--dark); margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--orange); position: relative; }
.hero h1 .highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0;
  width: 100%; height: 6px;
  background: var(--yellow); z-index: -1; border-radius: 4px;
}
.hero p { font-size: 1.05rem; line-height: 1.85; color: #555; max-width: 660px; margin: 0 auto 28px; }
.hero-features {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 36px;
}
.hero-feature {
  background: white; border-radius: 50px;
  padding: 8px 18px; font-weight: 700;
  font-size: 0.88rem; color: var(--dark);
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-feature:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: white;
  padding: 16px 36px; border-radius: 50px;
  font-weight: 800; font-size: 1rem; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Nunito', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,53,0.5); }
.btn-secondary {
  background: white; color: var(--orange);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 800; font-size: 1rem; text-decoration: none;
  border: 3px solid var(--orange); cursor: pointer;
  transition: all 0.2s; font-family: 'Nunito', sans-serif;
}
.btn-secondary:hover { background: var(--orange); color: white; transform: translateY(-3px); }

/* ---- STATS ---- */
.stats {
  background: var(--orange);
  padding: 50px 40px;
  display: flex; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.stat { text-align: center; color: white; }
.stat-number { font-family: 'Baloo 2', cursive; font-size: 3rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 0.95rem; font-weight: 700; opacity: 0.9; margin-top: 4px; }

/* ---- SECTION COMMON ---- */
section { padding: 90px 40px; }
.section-label {
  display: inline-block; background: var(--yellow);
  color: var(--dark); padding: 4px 16px; border-radius: 50px;
  font-weight: 800; font-size: 0.8rem; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800; margin-bottom: 14px; color: var(--dark);
}
.section-subtitle { color: #666; font-size: 1.05rem; line-height: 1.7; max-width: 560px; }
.centered { text-align: center; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

/* ---- ABOUT ---- */
.about { background: white; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 50px auto 0;
}
.about-visual {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B35 100%);
  border-radius: 30px; padding: 50px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; width: 200px; height: 200px;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  top: -50px; right: -50px;
}
.about-visual-emoji { font-size: 5rem; display: block; margin-bottom: 16px; }
.about-visual-name {
  font-family: 'Baloo 2', cursive; font-size: 1.6rem;
  font-weight: 800; color: white;
}
.about-visual-title { color: rgba(255,255,255,0.85); font-weight: 700; margin-top: 6px; }
.about-exp-badge {
  display: inline-block;
  background: white; color: var(--orange);
  padding: 8px 20px; border-radius: 50px;
  font-weight: 800; font-size: 0.9rem;
  margin-top: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.about-text h2 { font-family: 'Baloo 2', cursive; font-size: 2rem; font-weight: 800; margin-bottom: 16px; color: var(--dark); }
.about-text p { color: #555; line-height: 1.85; margin-bottom: 16px; font-size: 1rem; }
.about-goal {
  background: var(--cream); border-left: 5px solid var(--orange);
  border-radius: 0 16px 16px 0; padding: 18px 20px; margin: 20px 0;
}
.about-goal strong { font-family: 'Baloo 2', cursive; font-size: 1rem; color: var(--orange); display: block; margin-bottom: 6px; }
.about-goal p { margin: 0; font-size: 0.95rem; }
.about-pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pillar {
  background: var(--cream); border-radius: 50px;
  padding: 7px 16px; font-weight: 700; font-size: 0.85rem; color: var(--dark);
  border: 2px solid var(--yellow);
}

/* ---- PROGRAMS ---- */
.programs { background: var(--cream); }
.programs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; max-width: 1100px; margin: 50px auto 0;
}
.program-card {
  background: white; border-radius: 24px; padding: 34px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.program-card.full { grid-column: span 2; }
.program-icon { font-size: 2.4rem; margin-bottom: 14px; }
.program-title {
  font-family: 'Baloo 2', cursive; font-size: 1.3rem;
  font-weight: 700; margin-bottom: 10px; color: var(--dark);
}
.program-list { list-style: none; padding: 0; }
.program-list li {
  padding: 8px 0; font-size: 0.95rem; color: #555;
  border-bottom: 1px dashed #f0e8e0;
  display: flex; align-items: center; gap: 10px;
}
.program-list li:last-child { border-bottom: none; }
.program-list li::before { content: '✦'; color: var(--orange); font-size: 0.7rem; flex-shrink: 0; }
.duration-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), #FF4081);
  color: white; padding: 12px 24px; border-radius: 16px;
  font-weight: 800; font-size: 1rem; margin-top: 10px;
}

/* ---- FACILITIES ---- */
.facilities { background: white; }
.facilities-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; max-width: 1100px; margin: 50px auto 0;
}
.fac-card {
  background: var(--cream); border-radius: 24px; padding: 34px;
  transition: transform 0.3s;
}
.fac-card:hover { transform: translateY(-4px); }
.fac-title {
  font-family: 'Baloo 2', cursive; font-size: 1.3rem;
  font-weight: 700; margin-bottom: 18px; color: var(--dark);
  display: flex; align-items: center; gap: 10px;
}
.fac-list { list-style: none; }
.fac-list li {
  padding: 9px 0; font-size: 0.95rem; color: #555;
  border-bottom: 1px dashed #e8ddd4;
  display: flex; align-items: center; gap: 10px;
}
.fac-list li:last-child { border-bottom: none; }
.fac-list li .check { color: var(--green); font-weight: 800; font-size: 1rem; }

.activity-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; max-width: 1100px; margin: 30px auto 0;
}
.activity-card {
  background: white; border-radius: 20px; padding: 24px 20px;
  text-align: center; border: 2px solid var(--yellow);
  transition: transform 0.3s, border-color 0.3s;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.activity-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.activity-emoji { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.activity-name { font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.activity-day { font-size: 0.78rem; color: #999; margin-top: 4px; }

.birthday-banner {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B35 100%);
  border-radius: 24px; padding: 30px 36px;
  max-width: 1100px; margin: 30px auto 0;
  display: flex; align-items: center; gap: 24px;
  box-shadow: 0 6px 24px rgba(255,107,53,0.3);
}
.birthday-banner .bb-icon { font-size: 3.5rem; flex-shrink: 0; }
.birthday-banner h3 {
  font-family: 'Baloo 2', cursive; font-size: 1.4rem;
  font-weight: 800; color: white; margin-bottom: 6px;
}
.birthday-banner p { color: rgba(255,255,255,0.9); font-size: 0.95rem; line-height: 1.6; }

.floors {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 1100px; margin: 24px auto 0;
}
.floor-card {
  border-radius: 20px; padding: 24px; text-align: center;
  font-weight: 800; font-family: 'Baloo 2', cursive; font-size: 1.1rem;
}
.floor-card.ground { background: linear-gradient(135deg, #6BCB77, #4D96FF); color: white; }
.floor-card.first { background: linear-gradient(135deg, #C77DFF, #FF85A1); color: white; }
.floor-card span { display: block; font-size: 2rem; margin-bottom: 8px; }
.floor-card p { font-size: 0.85rem; font-family: 'Nunito', sans-serif; opacity: 0.9; font-weight: 600; margin-top: 4px; }

/* ---- PROGRAM FLIP CARDS ---- */
.prog-flip-card { perspective: 1000px; height: 360px; cursor: pointer; }
.prog-flip-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.prog-flip-card:hover .prog-flip-inner { transform: rotateY(180deg); }
.prog-flip-front, .prog-flip-back {
  position: absolute; width: 100%; height: 100%;
  backface-visibility: hidden; border-radius: 24px;
  padding: 34px 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}
.prog-flip-front { transition: box-shadow 0.3s; }
.prog-flip-card:hover .prog-flip-front { box-shadow: 0 12px 36px rgba(0,0,0,0.15); }
.prog-flip-back { transform: rotateY(180deg); color: white; }

/* ---- DAILY ROUTINE ---- */
.routine { background: var(--cream); }
.timeline {
  max-width: 700px; margin: 50px auto 0;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--yellow), var(--orange), var(--pink));
  border-radius: 99px;
}
.timeline-item { display: flex; align-items: flex-start; margin-bottom: 36px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: white; border: 3px solid var(--orange);
}
.timeline-content {
  width: 44%; background: white;
  border-radius: 16px; padding: 18px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.timeline-content:hover { transform: scale(1.03); }
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; text-align: left; }
.timeline-time { font-size: 0.8rem; font-weight: 800; color: var(--orange); letter-spacing: 0.5px; }
.timeline-title { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.05rem; margin: 2px 0; }
.timeline-desc { font-size: 0.85rem; color: #666; line-height: 1.5; }

/* ---- ADMISSION ---- */
.admission-section { background: white; }
.admission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 1100px; margin: 50px auto 0;
  align-items: start;
}
.fee-card {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E6 100%);
  border-radius: 24px; padding: 36px;
  border: 3px solid var(--yellow);
}
.fee-card h3 {
  font-family: 'Baloo 2', cursive; font-size: 1.4rem;
  font-weight: 800; color: var(--dark); margin-bottom: 24px;
}
.fee-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 2px dashed #f0e8e0;
}
.fee-row:last-of-type { border-bottom: none; }
.fee-label { font-weight: 700; color: #555; font-size: 0.95rem; }
.fee-amount {
  font-family: 'Baloo 2', cursive; font-size: 1.5rem;
  font-weight: 800; color: var(--orange);
}
.fee-note { font-size: 0.82rem; color: #999; margin-top: 4px; }
.fee-include {
  background: white; border-radius: 14px; padding: 14px 16px;
  margin-top: 16px; font-size: 0.88rem; color: #555;
  border-left: 4px solid var(--green);
}
.fee-include strong { color: var(--green); }

.contact-card {
  background: linear-gradient(135deg, var(--orange) 0%, #FF4081 100%);
  border-radius: 24px; padding: 36px; color: white;
}
.contact-card h3 {
  font-family: 'Baloo 2', cursive; font-size: 1.4rem;
  font-weight: 800; margin-bottom: 24px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.2);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-label { font-size: 0.78rem; opacity: 0.8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-value { font-weight: 800; font-size: 1rem; margin-top: 2px; }
.visit-note {
  background: rgba(255,255,255,0.15); border-radius: 14px;
  padding: 14px 16px; margin-top: 20px;
  font-size: 0.88rem; line-height: 1.6;
}

/* ---- ADMISSION CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #FF4081 100%);
  text-align: center; position: relative; overflow: hidden;
  padding: 90px 40px;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: white; margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 36px; }
.btn-white {
  background: white; color: var(--orange);
  padding: 18px 44px; border-radius: 50px;
  font-weight: 800; font-size: 1.1rem;
  border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 14px 40px rgba(0,0,0,0.25); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--cream); }
.testimonials-track-wrap { overflow: hidden; margin-top: 50px; }
.testimonials-track {
  display: flex; gap: 24px;
  animation: scrollLeft 22s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testimonial-card {
  background: white; border-radius: 20px;
  padding: 28px; width: 300px; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.t-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 10px; }
.t-text, t-text {
  display: block;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.t-author, t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar, t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.t-name, t-name { font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.t-role, t-role { font-size: 0.78rem; color: #999; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark); color: white;
  padding: 50px 40px 30px; text-align: center;
}
.footer-logo { font-family: 'Baloo 2', cursive; font-size: 2rem; font-weight: 800; color: var(--yellow); margin-bottom: 6px; }
.footer-by { color: var(--pink); font-weight: 700; margin-bottom: 16px; }
.footer-tagline { color: #aaa; margin-bottom: 24px; font-size: 0.95rem; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { color: #555; font-size: 0.82rem; border-top: 1px solid #333; padding-top: 20px; margin-top: 10px; }

/* Confetti */
#confetti-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid, .programs-grid, .facilities-top, .admission-grid, .floors { grid-template-columns: 1fr; }
  .program-card.full { grid-column: span 1; }
}
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  section { padding: 60px 20px; }
  .stats { gap: 30px; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 60px; }
  .timeline-dot { left: 20px; }
  .timeline-content, .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { width: 100%; text-align: left; }
  .birthday-banner { flex-direction: column; text-align: center; }
}
