body {
  margin: 0;
  font-family: 'Quicksand', Arial, sans-serif;
  background: #fffbe7;
  color: #333;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background Alphabets */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-alphabet {
  position: absolute;
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 6rem;
  font-weight: 900;
  user-select: none;
  animation: float 15s infinite linear;
  -webkit-text-stroke: 4px #fff;
  text-shadow: 0 6px 16px rgba(0,0,0,0.25);
  border-radius: 50%;
}

/* Individual positioning for each alphabet to prevent clubbing */
.floating-alphabet:nth-child(1) { 
  color: #FF6B6B; 
  left: 5%;
  animation-delay: 0s;
}
.floating-alphabet:nth-child(2) { 
  color: #FFD93D; 
  left: 15%;
  animation-delay: 1s;
}
.floating-alphabet:nth-child(3) { 
  color: #6BCB77; 
  left: 25%;
  animation-delay: 2s;
}
.floating-alphabet:nth-child(4) { 
  color: #4D96FF; 
  left: 35%;
  animation-delay: 3s;
}
.floating-alphabet:nth-child(5) { 
  color: #FF6FB5; 
  left: 45%;
  animation-delay: 4s;
}
.floating-alphabet:nth-child(6) { 
  color: #4A90E2; 
  left: 55%;
  animation-delay: 5s;
}
.floating-alphabet:nth-child(7) { 
  color: #6B6BFF; 
  left: 65%;
  animation-delay: 6s;
}
.floating-alphabet:nth-child(8) { 
  color: #43E6D8; 
  left: 75%;
  animation-delay: 7s;
}
.floating-alphabet:nth-child(9) { 
  color: #FFB5E8; 
  left: 85%;
  animation-delay: 8s;
}
.floating-alphabet:nth-child(10) { 
  color: #B28DFF; 
  left: 95%;
  animation-delay: 9s;
}
.floating-alphabet:nth-child(11) { 
  color: #7B68EE; 
  left: 10%;
  animation-delay: 10s;
}
.floating-alphabet:nth-child(12) { 
  color: #A0E7E5; 
  left: 20%;
  animation-delay: 11s;
}
.floating-alphabet:nth-child(13) { 
  color: #B5FFFC; 
  left: 30%;
  animation-delay: 12s;
}
.floating-alphabet:nth-child(14) { 
  color: #20B2AA; 
  left: 40%;
  animation-delay: 13s;
}
.floating-alphabet:nth-child(15) { 
  color: #B5EAD7; 
  left: 50%;
  animation-delay: 14s;
}
.floating-alphabet:nth-child(16) { 
  color: #C7CEEA; 
  left: 60%;
  animation-delay: 15s;
}
.floating-alphabet:nth-child(17) { 
  color: #9370DB; 
  left: 70%;
  animation-delay: 16s;
}
.floating-alphabet:nth-child(18) { 
  color: #E2F0CB; 
  left: 80%;
  animation-delay: 17s;
}
.floating-alphabet:nth-child(19) { 
  color: #B5EAD7; 
  left: 90%;
  animation-delay: 18s;
}
.floating-alphabet:nth-child(20) { 
  color: #20B2AA; 
  left: 100%;
  animation-delay: 19s;
}

/* Static visible alphabets */
.floating-alphabet:nth-child(21) {
  top: 15%;
  left: 90%;
  animation: pulse 3s infinite ease-in-out;
  opacity: 0.8;
  color: #FF6B6B;
}

.floating-alphabet:nth-child(22) {
  top: 85%;
  left: 10%;
  animation: pulse 4s infinite ease-in-out;
  opacity: 0.8;
  color: #FFD93D;
}

.floating-alphabet:nth-child(23) {
  top: 45%;
  left: 95%;
  animation: pulse 3.5s infinite ease-in-out;
  opacity: 0.8;
  color: #6BCB77;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  95% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatVisible {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-50vh) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive adjustments for floating alphabets */
@media (max-width: 768px) {
  .floating-alphabet {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .floating-alphabet {
    font-size: 3rem;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #4A90E2 0%, #7B68EE 100%);
  padding: 0.5rem 2rem;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.15);
  position: relative;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.school-name {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  color: #fff;
  background: #4A90E2;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.nav-links li a.active, .nav-links li a:hover {
  background: #fff;
  color: #4A90E2;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(180deg, #fffbe7 60%, #ffe0b2 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #4A90E2 0%, #7B68EE 50%, #20B2AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #4A90E2;
  text-shadow: none !important;
  border: none !important;
  filter: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.hero-tagline {
  font-size: 1.3rem;
  color: #7B68EE;
  margin-bottom: 1.5rem;
  font-family: 'Quicksand', Arial, sans-serif;
}

.hero-img-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #4A90E2;
  background: #fff;
  box-shadow: 0 4px 16px rgba(74, 144, 226, 0.2);
}

.hero-desc {
  font-size: 1.2rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Quicksand', Arial, sans-serif;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background: #4A90E2;
  color: #fff;
  font-family: 'Quicksand', Arial, sans-serif;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 2rem;
  font-size: 1rem;
}

/* About Section */
.about-section {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff9e6;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.10);
  padding: 2rem 2rem 1.5rem 2rem;
  text-align: center;
}
.about-section h1 {
  font-family: 'Baloo 2', cursive;
  color: #4A90E2;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.features h2 {
  color: #7B68EE;
  font-size: 1.2rem;
  margin-top: 1.5rem;
}
.features ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}
.features ul li {
  background: #E3F2FD;
  color: #4A90E2;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(74, 144, 226, 0.10);
}
.about-quote {
  font-family: 'Baloo 2', cursive;
  color: #4A90E2;
  background: #E8F4FD;
  border-left: 6px solid #4A90E2;
  border-radius: 0 20px 20px 0;
  margin: 2rem 0 0 0;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  display: inline-block;
}

/* Gallery Section */
.gallery-section {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff9e6;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.10);
  padding: 2rem 2rem 1.5rem 2rem;
  text-align: center;
}
.gallery-section h1 {
  font-family: 'Baloo 2', cursive;
  color: #4A90E2;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.15);
  background: #E3F2FD;
  border: 2px solid #4A90E2;
}

/* Contact Section */
.contact-section {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff9e6;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.10);
  padding: 2rem 2rem 1.5rem 2rem;
  text-align: center;
}
.contact-section h1 {
  font-family: 'Baloo 2', cursive;
  color: #4A90E2;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}
.contact-form input,
.contact-form textarea {
  width: 90%;
  max-width: 400px;
  padding: 0.7rem 1rem;
  border-radius: 18px;
  border: 1.5px solid #4A90E2;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  resize: none;
}
.contact-form textarea {
  min-height: 80px;
}
.contact-form button {
  background: #4A90E2;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 0.7rem 2rem;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #7B68EE;
  color: #4A90E2;
}
.contact-info {
  margin-top: 1.5rem;
  text-align: left;
  background: #E3F2FD;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  color: #333;
  font-size: 1rem;
}
.contact-info h2 {
  color: #4A90E2;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.contact-info a {
  color: #4A90E2;
  text-decoration: none;
  font-weight: bold;
}
.social-links {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}
.social-links a {
  color: #4A90E2;
  text-decoration: none;
  margin: 0 0.3rem;
  font-family: 'Baloo 2', cursive;
}
.social-links a:hover {
  color: #7B68EE;
}

/* Curriculum Section */
.curriculum-section {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff9e6;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.10);
  padding: 2rem 2rem 1.5rem 2rem;
  text-align: center;
}
.curriculum-section h1 {
  font-family: 'Baloo 2', cursive;
  color: #4A90E2;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.curriculum-quote {
  font-family: 'Baloo 2', cursive;
  color: #4A90E2;
  background: #E8F4FD;
  border-left: 6px solid #4A90E2;
  border-radius: 0 20px 20px 0;
  margin: 2rem 0 0 0;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  display: inline-block;
}

.social-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 3px;
  filter: brightness(0) saturate(100%) invert(54%) sepia(99%) saturate(749%) hue-rotate(329deg) brightness(101%) contrast(101%);
}
.more-info {
  margin-top: 1.5rem;
  background: #E8F4FD;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 1px 4px rgba(74, 144, 226, 0.10);
}
.more-info h2 {
  color: #4A90E2;
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.more-info ul {
  list-style: disc inside;
  padding-left: 0.5rem;
  color: #4A90E2;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  margin: 0;
}
.more-info ul li {
  margin-bottom: 0.4rem;
}
.map-container {
  margin-top: 1.5rem;
  text-align: center;
}
.map-container h2 {
  color: #7B68EE;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* --- NEW NAVBAR STYLES --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #4A90E2;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.18);
  cursor: pointer;
  margin-left: auto;
  margin-right: 0.5rem;
  transition: background 0.2s;
  z-index: 102;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 4px;
  margin: 3px 0;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
}

/* Playful Section Styles */
.playful-section {
  background: #fff9e6;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.10);
  padding: 2rem 2rem 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 900px;
  text-align: center;
}
.playful-section h2 {
  font-family: 'Baloo 2', cursive;
  color: #4A90E2;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

/* Why Us Features */
.why-us-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}
.why-us-feature {
  background: #E3F2FD;
  color: #4A90E2;
  padding: 0.7rem 1.5rem;
  border-radius: 20px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  box-shadow: 0 1px 4px rgba(74, 144, 226, 0.10);
}

/* Core Values */
.core-values-section {
  text-align: left;
}
.core-value {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  background: #e3f2fd;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 1px 4px rgba(33, 150, 243, 0.08);
}
.core-value-number {
  background: #4A90E2;
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
  box-shadow: 0 1px 4px rgba(74, 144, 226, 0.10);
}
.core-value strong {
  color: #4A90E2;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
}

/* Popular Classes */
.popular-classes-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.class-card {
  background: #E3F2FD;
  color: #333;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(74, 144, 226, 0.10);
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  max-width: 400px;
  width: 100%;
  text-align: left;
}
.class-card h3 {
  color: #4A90E2;
  font-family: 'Baloo 2', cursive;
  margin-bottom: 0.5rem;
}

/* News and Blog */
.news-blog-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-card {
  background: #e1bee7;
  color: #333;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(186, 104, 200, 0.10);
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  max-width: 500px;
  width: 100%;
  text-align: left;
}
.news-card h3 {
  color: #8e24aa;
  font-family: 'Baloo 2', cursive;
  margin-bottom: 0.5rem;
}

/* Hero Building Image */
.hero-building-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 1.2rem 0 1.2rem 0;
  position: relative;
  z-index: 1;
}
.hero-building {
  width: 90%;
  max-width: 420px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(255, 179, 71, 0.18), 0 2px 8px rgba(33,150,243,0.10);
  border: 4px solid #4A90E2;
  background: #fff;
  animation: heroBuildingPop 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes heroBuildingPop {
  0% { transform: scale(0.7) translateY(60px); opacity: 0; }
  60% { transform: scale(1.05) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}

/* Playful Hero Bubble Graphic */
.hero-graphic-bubble {
  position: absolute;
  left: 10%;
  top: 60%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, #4A90E2 70%, #E3F2FD 100%);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 0;
  animation: bubbleFloat 4s infinite alternate ease-in-out;
}
@keyframes bubbleFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.1); }
}

/* Section Animations */
.animated-fadein {
  animation: fadeIn 1.2s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.animated-slidein {
  animation: slideInLeft 1.2s;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
.animated-bouncein {
  animation: bounceInSection 1.2s;
}
@keyframes bounceInSection {
  0% { opacity: 0; transform: scale(0.7); }
  60% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
.animated-fadeinup {
  animation: fadeInUp 1.2s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Playful Heading Hover Effects */
/* Bright, Playful Headings */
h1, h2, h3, .about-heading, .gallery-heading, .curriculum-heading, .contact-heading {
  color: #4A90E2;
  background: linear-gradient(90deg, #FFB6B9 0%, #A0E7E5 40%, #B388FF 70%, #FBE7C6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.1) saturate(1.2);
  transition: color 0.3s, text-shadow 0.3s, filter 0.3s, background 0.3s;
}

/* Dark hover effect for all headings */
h1:hover, h2:hover, h3:hover, .about-heading:hover, .gallery-heading:hover, .curriculum-heading:hover, .contact-heading:hover,
h1:active, h2:active, h3:active, .about-heading:active, .gallery-heading:active, .curriculum-heading:active, .contact-heading:active {
  color: #1a1a1a !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
  transition: color 0.2s, text-shadow 0.2s;
}

/* Box/Card Hover Animations */
.features ul li, .class-card, .news-card, .gallery-grid img, .why-us-feature, .core-value, .contact-info, .about-section, .gallery-section, .curriculum-section, .contact-section {
  transition: transform 0.25s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.25s, background 0.25s;
}
.features ul li:hover, .class-card:hover, .news-card:hover, .gallery-grid img:hover, .why-us-feature:hover, .core-value:hover, .contact-info:hover, .about-section:hover, .gallery-section:hover, .curriculum-section:hover, .contact-section:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 8px 32px rgba(74, 144, 226, 0.2), 0 2px 8px rgba(142, 36, 170, 0.13);
  background: #fffbe7;
  z-index: 2;
}

/* Extra: Gallery image pop */
.gallery-grid img {
  cursor: pointer;
}

/* Hero SVG Wave Divider */
.hero-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin-top: -30px;
  z-index: 2;
}
.hero-wave-divider svg {
  display: block;
  width: 100vw;
  min-width: 100%;
  height: 80px;
}

/* Animated Section Blobs */
.section-bg-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  filter: blur(0.5px);
  animation: blobFloat 8s infinite alternate ease-in-out;
}
.section-bg-blob1 {
  top: -40px; left: -60px; width: 180px; height: 180px;
  background: radial-gradient(circle at 40% 40%, #FFB6B9 70%, #FAE3D9 100%);
  border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
  animation-delay: 0s;
}
.section-bg-blob2 {
  top: 60px; right: -80px; width: 160px; height: 160px;
  background: radial-gradient(circle at 60% 60%, #A0E7E5 70%, #B4F8C8 100%);
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  animation-delay: 2s;
}
.section-bg-blob3 {
  bottom: -40px; left: -60px; width: 140px; height: 140px;
  background: radial-gradient(circle at 50% 50%, #FBE7C6 70%, #F9F871 100%);
  border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
  animation-delay: 1s;
}
.section-bg-blob4 {
  bottom: 30px; right: -60px; width: 120px; height: 120px;
  background: radial-gradient(circle at 60% 60%, #B388FF 70%, #8C9EFF 100%);
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  animation-delay: 3s;
}
@keyframes blobFloat {
  0% { transform: scale(1) translateY(0) rotate(0deg); }
  50% { transform: scale(1.08) translateY(-18px) rotate(8deg); }
  100% { transform: scale(0.95) translateY(12px) rotate(-6deg); }
}

.playful-section {
  position: relative;
  background: linear-gradient(135deg, #fff9e6 80%, #fbe7c6 100%);
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(255, 179, 71, 0.13);
  padding: 2rem 2rem 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 900px;
  text-align: center;
  overflow: hidden;
}

/* Animated Gradient Headings */
.playful-section h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #2d2d2d;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
  transition: color 0.2s, text-shadow 0.2s;
}

.playful-section h2:hover, .playful-section h2:active {
  color: #1a1a1a;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Upgrade box/card colors for more vibrancy */
.why-us-feature {
  background: linear-gradient(120deg, #FFB6B9 60%, #FAE3D9 100%);
  color: #8C1C13;
}
.core-value {
  background: linear-gradient(120deg, #A0E7E5 60%, #B4F8C8 100%);
}
.class-card {
  background: linear-gradient(120deg, #FBE7C6 60%, #F9F871 100%);
  color: #7B341E;
}
.news-card {
  background: linear-gradient(120deg, #B388FF 60%, #8C9EFF 100%);
  color: #3D155F;
}

.popular-classes-section h2 {
  background: none !important;
  color: #4A90E2 !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
  text-shadow: 0 2px 12px #fff, 0 1px 2px #fffbe7;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  transition: color 0.2s, text-shadow 0.2s;
}
.popular-classes-section h2:hover, .popular-classes-section h2:active {
  color: #1a1a1a !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
}

.footer-social-bar, .footer-social-icon { display: none !important; }

.footer-social-bar-inline {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
}
.footer-social-icon-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eee;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.27);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-size: 1.7rem;
  overflow: hidden;
}
.footer-social-icon-inline.instagram-inline {
  background: none;
  padding: 0;
}
.footer-social-icon-inline.facebook-inline {
  background: #1877F3;
}
.footer-social-icon-inline.youtube-inline {
  background: #FF0000;
}
.footer-social-icon-inline:hover, .footer-social-icon-inline:active {
  transform: scale(1.13);
  box-shadow: 0 4px 16px rgba(74, 144, 226, 0.47), 0 2px 8px #fffbe7;
  filter: brightness(1.2) saturate(1.3);
}
.footer-social-icon-inline svg {
  display: block;
  width: 28px;
  height: 28px;
}
@media (max-width: 700px) {
  .footer-social-bar-inline {
    gap: 0.7rem;
    margin-top: 0.4rem;
  }
  .footer-social-icon-inline {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .footer-social-icon-inline svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #ffb347 80%, #ffe0b2 100%);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 4px 16px rgba(255, 179, 71, 0.18);
    z-index: 101;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.68,-0.55,.27,1.55);
    display: block;
  }
  .main-nav.open {
    max-height: 320px;
    animation: bounceIn 0.4s;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: flex-start;
    padding: 1rem 2rem 1rem 2rem;
  }
  .nav-links li a {
    width: 100%;
    display: block;
    font-size: 1.2rem;
    background: #4A90E2;
    color: #fff;
    border-radius: 18px;
    margin-bottom: 0.2rem;
    text-align: left;
    box-shadow: 0 1px 4px rgba(74, 144, 226, 0.10);
    transition: background 0.2s, color 0.2s;
  }
  .nav-links li a.active, .nav-links li a:hover {
    background: #fff;
    color: #4A90E2;
  }
  .hero-building {
    max-width: 98vw;
    border-radius: 18px;
  }
  .hero-graphic-bubble {
    width: 50px;
    height: 50px;
    left: 5%;
    top: 70%;
  }
  .hero-wave-divider svg {
    height: 50px;
  }
  .section-bg-blob1, .section-bg-blob2, .section-bg-blob3, .section-bg-blob4 {
    width: 90px; height: 90px;
  }
}
@media (max-width: 700px) {
  h1, h2, h3, .about-heading, .gallery-heading, .curriculum-heading, .contact-heading {
    font-size: 1.1em;
  }
  .playful-section {
    padding: 1rem 0.5rem 1rem 0.5rem;
    border-radius: 16px;
  }
  .why-us-features {
    flex-direction: column;
    gap: 0.5rem;
  }
  .core-value {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.7rem 0.7rem;
    border-radius: 12px;
  }
  .core-value-number {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .class-card, .news-card {
    border-radius: 12px;
    padding: 0.7rem 0.7rem;
    max-width: 98%;
  }
}

@media (max-width: 500px) {
  .main-nav {
    top: 56px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .nav-links {
    padding: 0.7rem 1rem 0.7rem 1rem;
  }
  .nav-links li a {
    font-size: 1rem;
    border-radius: 12px;
  }
  .hero-building {
    max-width: 99vw;
    border-radius: 12px;
    border-width: 2px;
  }
  .hero-graphic-bubble {
    width: 30px;
    height: 30px;
    left: 2%;
    top: 80%;
  }
  .hero-wave-divider svg {
    height: 30px;
  }
  .section-bg-blob1, .section-bg-blob2, .section-bg-blob3, .section-bg-blob4 {
    width: 50px; height: 50px;
  }
} 

/* Playful heading style for section titles */
.playful-heading {
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 2.3rem;
  color: #2d2d2d;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: color 0.2s, text-shadow 0.2s;
}

.playful-heading:hover, .playful-heading:active {
  color: #1a1a1a;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
} 

.trendy-hero {
  position: relative;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(120deg, #fffbe7 60%, #E3F2FD 100%);
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  margin-bottom: 2rem;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 2.5rem;
}

.hero-text {
  flex: 1 1 350px;
  text-align: left;
  min-width: 260px;
}

.trendy-hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg, #4A90E2 0%, #7B68EE 50%, #20B2AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #4A90E2;
}

.hero-tagline {
  font-size: 1.4rem;
  color: #7B68EE;
  margin-bottom: 1.2rem;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
}

.hero-desc {
  font-size: 1.15rem;
  color: #333;
  background: rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.08);
  font-family: 'Quicksand', Arial, sans-serif;
  max-width: 500px;
}

.hero-image-blob {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 260px;
}

.trendy-hero-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  box-shadow: 0 8px 32px 0 rgba(74, 144, 226, 0.18), 0 2px 12px 0 rgba(123, 104, 238, 0.10);
  border: 6px solid #fffbe7;
  outline: 4px solid #4A90E2;
  transition: transform 0.7s cubic-bezier(.23,1.02,.64,1.01);
  background: #fffbe7;
  animation: floatBlob 4s ease-in-out infinite alternate;
}

@keyframes floatBlob {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.04) translateY(-12px); }
}

.hero-bg-blob {
  position: absolute;
  right: -120px;
  top: 30px;
  width: 480px;
  height: 420px;
  background: radial-gradient(circle at 60% 40%, #E3F2FD 70%, #4A90E2 100%);
  opacity: 0.45;
  z-index: 1;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  filter: blur(2px);
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column-reverse;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .hero-image-blob, .hero-text {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
  .trendy-hero-img {
    width: 220px;
    height: 220px;
  }
  .hero-bg-blob {
    width: 320px;
    height: 260px;
    right: -60px;
    top: 60px;
  }
}

@media (max-width: 600px) {
  .trendy-hero h1 {
    font-size: 2rem;
  }
  .trendy-hero-img {
    width: 140px;
    height: 140px;
  }
  .hero-bg-blob {
    width: 180px;
    height: 120px;
    right: -30px;
    top: 80px;
  }
  .hero-desc {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
  }
} 

.programs-section {
  background: none;
  padding: 2.5rem 0 2rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.programs-section .playful-heading {
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 0.2em;
}
.programs-subtitle {
  color: #234;
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  font-family: 'Quicksand', Arial, sans-serif;
}
.programs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  max-width: 900px;
  margin: 0 auto;
}
.program-blob {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  background: #fff;
  border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
  box-shadow: 0 4px 24px 0 rgba(74, 144, 226, 0.10);
  border: 4px dashed #4A90E2;
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.program-blob:hover {
  transform: scale(1.04) translateY(-6px) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(74, 144, 226, 0.18);
}
.program-blob-orange {
  background: #4A90E2;
  border-color: #7B68EE;
}
.program-blob-green {
  background: #6BCB77;
  border-color: #2D6A4F;
}
.program-blob-pink {
  background: #FF6FB5;
  border-color: #B23A48;
}
.program-blob-blue {
  background: #4D96FF;
  border-color: #2563EB;
}
.program-icon {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-title {
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.program-blob-orange .program-title { color: #fff; }
.program-blob-green .program-title { color: #fff; }
.program-blob-pink .program-title { color: #fff; }
.program-blob-blue .program-title { color: #fff; }
.program-desc {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.program-blob-orange .program-desc { color: #fff; }
.program-blob-green .program-desc { color: #fff; }
.program-blob-pink .program-desc { color: #fff; }
.program-blob-blue .program-desc { color: #fff; }

/* Primary Classes Section */
.primary-classes-container {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.primary-classes-heading {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.primary-classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.primary-class-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.primary-class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #FFD93D;
}

.primary-class-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-class-1st .primary-class-icon {
  background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.primary-class-2nd .primary-class-icon {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.primary-class-3rd .primary-class-icon {
  background: linear-gradient(135deg, #45B7D1, #96C93D);
}

.primary-class-4th .primary-class-icon {
  background: linear-gradient(135deg, #F39C12, #E67E22);
}

.primary-class-5th .primary-class-icon {
  background: linear-gradient(135deg, #9B59B6, #8E44AD);
}

.primary-class-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
}

.primary-class-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .programs-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .program-blob {
    min-width: 0;
    width: 90%;
    max-width: 400px;
  }
  
  .primary-classes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  
  .primary-class-card {
    padding: 1.2rem;
  }
  
  .primary-classes-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .primary-classes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .primary-class-card {
    padding: 1rem;
  }
  
  .primary-class-icon {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .primary-class-title {
    font-size: 1.1rem;
  }
  
  .primary-class-desc {
    font-size: 0.9rem;
  }
} 

.programs-green-bg {
  background: #6BCB77;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 36px 36px 0 0;
  box-shadow: none;
}
@media (max-width: 700px) {
  .programs-green-bg {
    border-radius: 24px 24px 0 0;
  }
} 

/* --- What Your Child Gets Pathway Section --- */
.child-gets-path-section {
  background: #e3f2fd;
  border-radius: 32px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 1rem 2.5rem 1rem;
  max-width: 500px;
  box-shadow: 0 4px 24px 0 rgba(74, 144, 226, 0.10);
  text-align: center;
  position: relative;
}
.path-heading {
  font-family: 'Baloo 2', cursive;
  color: #2563eb;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  transition: color 0.2s, text-shadow 0.2s;
}

.path-heading:hover, .path-heading:active {
  color: #1a1a1a !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
}
.path-intro {
  color: #4a90e2;
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  font-family: 'Quicksand', Arial, sans-serif;
}
.path-list {
  position: relative;
  margin: 0 auto;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.path-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2.2rem;
  width: 100%;
  max-width: 340px;
}
.path-item:last-child {
  margin-bottom: 0;
}
.path-circle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  background: linear-gradient(135deg, #4a90e2 60%, #7b68ee 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: 'Baloo 2', cursive;
  box-shadow: 0 2px 12px 0 rgba(74, 144, 226, 0.13);
  margin-right: 1.2rem;
  border: 3px solid #e3f2fd;
  z-index: 1;
}
.path-title {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.1rem;
  color: #2563eb;
  font-weight: 600;
  text-align: left;
}
.path-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 54px;
  width: 4px;
  height: calc(100% - 54px + 2.2rem);
  background: linear-gradient(180deg, #4a90e2 60%, #7b68ee 100%);
  border-radius: 2px;
  z-index: 0;
}
@media (max-width: 600px) {
  .child-gets-path-section {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    max-width: 98vw;
  }
  .path-item {
    max-width: 98vw;
  }
  .path-title {
    font-size: 1rem;
  }
  .path-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1.3rem;
    margin-right: 0.7rem;
  }
  .path-item:not(:last-child)::after {
    left: 20px;
    top: 40px;
    width: 3px;
  }
} 

/* --- Core Principles Section Styles --- */
.core-principles-section {
  position: relative;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  background: linear-gradient(135deg, #fffbe7 80%, #e3f2fd 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(74, 144, 226, 0.10);
  max-width: 900px;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}
.core-principles-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  margin: 2.2rem 0 2.5rem 0;
}
.core-principle {
  background: linear-gradient(120deg, #A0E7E5 60%, #B388FF 100%);
  color: #234;
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(123, 104, 238, 0.13);
  border: 4px solid #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.core-principle:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(74, 144, 226, 0.18);
  background: linear-gradient(120deg, #B388FF 60%, #A0E7E5 100%);
}
.core-quote {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.25rem;
  color: #7B68EE;
  background: #fffbe7cc;
  border-left: 6px solid #A0E7E5;
  border-radius: 18px;
  margin: 1.5rem auto 1.5rem auto;
  padding: 1.1rem 1.5rem 1.1rem 1.2rem;
  max-width: 600px;
  font-style: italic;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.08);
}
.core-quote span {
  display: block;
  font-size: 1rem;
  color: #4A90E2;
  margin-top: 0.5rem;
  font-style: normal;
}
.core-quote.small {
  font-size: 1.05rem;
  color: #B23A48;
  border-left: 6px solid #FFD93D;
  background: #fff9e6cc;
  margin-top: 2.2rem;
}
.core-subheading {
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 1.4rem;
  color: #B23A48;
  margin: 1.7rem 0 0.7rem 0;
  letter-spacing: 1px;
}
.core-desc {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #333;
  font-size: 1.08rem;
  margin: 0 auto 1.5rem auto;
  max-width: 650px;
  background: #fffbe7b3;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.07);
}
@media (max-width: 900px) {
  .core-principles-list {
    gap: 1.2rem;
  }
  .core-principle {
    width: 100px;
    height: 100px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .core-principles-section {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    max-width: 98vw;
  }
  .core-principles-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .core-principle {
    width: 80px;
    height: 80px;
    font-size: 0.95rem;
  }
  .core-quote, .core-quote.small {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem 0.7rem 1rem;
  }
} 

/* --- Welcome & Features Section --- */
.welcome-features-section {
  position: relative;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  background: linear-gradient(135deg, #e3f2fd 80%, #fffbe7 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(74, 144, 226, 0.10);
  max-width: 1100px;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}
.welcome-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
.welcome-features-left, .welcome-features-center, .welcome-features-right {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome-quote-bubble {
  background: linear-gradient(120deg, #FFB6B9 60%, #FAE3D9 100%);
  color: #234;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 32px 32px 32px 0;
  padding: 1.1rem 1.3rem 1.1rem 1.3rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(255, 179, 71, 0.10);
  position: relative;
  text-align: left;
  max-width: 320px;
}
.welcome-quote-bubble:after {
  content: '';
  position: absolute;
  left: 24px;
  bottom: -18px;
  width: 24px;
  height: 24px;
  background: linear-gradient(120deg, #FFB6B9 60%, #FAE3D9 100%);
  border-radius: 0 0 0 32px;
  transform: rotate(20deg);
}
.welcome-quote-text {
  display: block;
  margin-bottom: 0.7rem;
}
.welcome-quote-author {
  font-size: 0.98rem;
  color: #B23A48;
  font-weight: 700;
  letter-spacing: 1px;
}
.welcome-school-name {
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 2.1rem;
  color: #FFA500;
  margin-bottom: 1.1rem;
  letter-spacing: 2px;
}
.welcome-heart-quote {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  color: #B23A48;
  background: #fffbe7cc;
  border-radius: 18px;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 179, 71, 0.08);
}
.welcome-about-heading {
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 1.2rem;
  color: #B23A48;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.welcome-about-desc {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  background: #fffbe7b3;
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.07);
}
.welcome-features-heading {
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 1.1rem;
  color: #FFA500;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.welcome-features-list {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #B85C38;
  font-size: 1.05rem;
  text-align: left;
  margin: 0 auto 0 auto;
  padding-left: 1.2rem;
  list-style: disc inside;
}
.welcome-features-list li {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .welcome-features-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .welcome-features-left, .welcome-features-center, .welcome-features-right {
    max-width: 98vw;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .welcome-features-section {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    max-width: 98vw;
  }
  .welcome-quote-bubble {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem 0.7rem 0.9rem;
    max-width: 98vw;
  }
  .welcome-school-name {
    font-size: 1.3rem;
  }
  .welcome-heart-quote {
    font-size: 0.98rem;
    padding: 0.5rem 0.7rem;
  }
  .welcome-about-desc {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
  .welcome-features-list {
    font-size: 0.95rem;
    padding-left: 0.7rem;
  }
} 

/* --- About Section Darker Colors --- */
.about-section {
  color: #1a1a1a;
}
.about-section h1, .about-section h2 {
  color: #222222;
  font-weight: bold;
}
.about-section p, .about-section ul, .about-section li {
  color: #232323;
}
.about-section ul {
  padding-left: 1.5rem;
}
.about-section li {
  font-weight: 600;
  margin-bottom: 0.5rem;
} 

/* --- Bright Hero Section Styles & Animations --- */
.bright-hero {
  position: relative;
  overflow: visible;
  background: linear-gradient(120deg, #fffbe7 60%, #ffe0b2 100%);
  z-index: 2;
}
.hero-graphic-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  left: 10%;
  top: 10%;
  width: 60vw;
  min-width: 320px;
  max-width: 600px;
  opacity: 0.55;
  animation: blobFloatBright 7s ease-in-out infinite alternate;
}
.hero-confetti {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
  animation: confettiFloat 8s linear infinite alternate;
}
@keyframes blobFloatBright {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.04) translateY(-18px); }
}
@keyframes confettiFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(12px); }
}
.bright-hero-heading {
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 2.8rem;
  font-weight: bold;
  background: linear-gradient(90deg, #FFD93D 0%, #FF6B6B 50%, #6BCB77 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #FFD93D;
  text-shadow: 0 4px 24px #fffbe7cc, 0 2px 8px #FFD93D44;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  z-index: 2;
}
.bright-hero-tagline {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  color: #FF6B6B;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px #FFD93D66;
  z-index: 2;
}
.bright-hero-desc {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.18rem;
  color: #2563EB;
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.13);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
/* Animations */
.animated-popin {
  opacity: 0;
  transform: scale(0.8);
  animation: popInBright 0.9s cubic-bezier(.68,-0.55,.27,1.55) 0.2s forwards;
}
@keyframes popInBright {
  0% { opacity: 0; transform: scale(0.8); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
.animated-slidein {
  opacity: 0;
  transform: translateY(40px);
  animation: slideInBright 1s cubic-bezier(.68,-0.55,.27,1.55) 0.5s forwards;
}
@keyframes slideInBright {
  0% { opacity: 0; transform: translateY(40px); }
  80% { opacity: 1; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animated-fadein {
  opacity: 0;
  animation: fadeInBright 1.2s ease 0.9s forwards;
}
@keyframes fadeInBright {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@media (max-width: 900px) {
  .bright-hero-heading {
    font-size: 2rem;
  }
  .hero-blob {
    min-width: 180px;
    width: 80vw;
    left: 0;
  }
}
@media (max-width: 600px) {
  .bright-hero-heading {
    font-size: 1.3rem;
  }
  .bright-hero-tagline {
    font-size: 1.05rem;
  }
  .bright-hero-desc {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem;
  }
} 

/* --- Modern Hero Section Styles --- */
.modern-hero {
  position: relative;
  min-height: 420px;
  background: linear-gradient(120deg, #fffbe7 60%, #ffe0b2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 2;
}
.modern-hero-bg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.modern-hero-shape {
  position: absolute;
  opacity: 0.7;
  animation: floatShape 7s ease-in-out infinite alternate;
}
.shape-star {
  left: 12%; top: 18%; width: 38px; height: 38px;
  background: url('data:image/svg+xml;utf8,<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg"><polygon points="19,2 23,14 36,14 25,22 29,34 19,26 9,34 13,22 2,14 15,14" fill="%23FFD93D"/></svg>') no-repeat center/contain;
  animation-delay: 0s;
}
.shape-circle {
  left: 80%; top: 12%; width: 28px; height: 28px;
  background: #FF6FB5;
  border-radius: 50%;
  animation-delay: 1.5s;
}
.shape-diamond {
  left: 70%; top: 60%; width: 32px; height: 32px;
  background: linear-gradient(135deg, #B388FF 60%, #6BCB77 100%);
  transform: rotate(45deg);
  border-radius: 8px;
  animation-delay: 2.5s;
}
.shape-heart {
  left: 18%; top: 70%; width: 36px; height: 36px;
  background: url('data:image/svg+xml;utf8,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 32s-12-7.36-12-16A7.5 7.5 0 0 1 18 8.5 7.5 7.5 0 0 1 30 16c0 8.64-12 16-12 16z" fill="%23FF6B6B"/></svg>') no-repeat center/contain;
  animation-delay: 3.5s;
}
@keyframes floatShape {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-18px) scale(1.08); }
}
.modern-hero-card {
  position: relative;
  margin: 4.5rem auto 0 auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(74, 144, 226, 0.18), 0 2px 12px 0 rgba(123, 104, 238, 0.10);
  border: 4px solid;
  border-image: linear-gradient(90deg, #FFD93D 0%, #FF6B6B 50%, #6BCB77 100%) 1;
  padding: 2.2rem 2.5rem 2.2rem 2.5rem;
  max-width: 540px;
  z-index: 2;
  animation: bounceInCard 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes bounceInCard {
  0% { opacity: 0; transform: scale(0.8) translateY(40px); }
  60% { opacity: 1; transform: scale(1.08) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.modern-hero-heading {
  font-family: 'Fredoka One', 'Baloo 2', cursive;
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #FFD93D 0%, #FF6B6B 50%, #6BCB77 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #FFD93D;
  text-shadow: 0 4px 24px #fffbe7cc, 0 2px 8px #FFD93D44;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  z-index: 2;
}
.modern-hero-tagline {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  color: #FF6B6B;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px #FFD93D66;
  z-index: 2;
}
.modern-hero-desc {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.08rem;
  color: #2563EB;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 12px rgba(74, 144, 226, 0.13);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
.modern-hero-wave {
  position: absolute;
  left: 0; bottom: 0; width: 100%; height: 120px;
  z-index: 1;
  pointer-events: none;
}
.animated-bouncein {
  animation: bounceInCard 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@media (max-width: 900px) {
  .modern-hero-heading {
    font-size: 1.7rem;
  }
  .modern-hero-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .modern-hero-heading {
    font-size: 1.1rem;
  }
  .modern-hero-tagline {
    font-size: 0.95rem;
  }
  .modern-hero-desc {
    font-size: 0.92rem;
    padding: 0.7rem 0.7rem;
  }
}

/* --- Dark Hero Section Styles --- */
.dark-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}
.dark-hero-bg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}
.dark-hero-content-row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  padding: 3.5rem 2rem 2.5rem 2rem;
}
.dark-hero-content {
  flex: 1 1 420px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
.dark-hero-heading {
  font-family: 'Baloo 2', cursive !important;
  font-size: 3.2rem !important;
  font-weight: 800 !important;
  color: #FFD93D !important;
  text-shadow: 0 4px 24px rgba(255, 217, 61, 0.6), 0 0 30px rgba(255, 217, 61, 0.4) !important;
  margin-bottom: 1.1rem !important;
  letter-spacing: 1px !important;
  animation: heroHeadingGlow 3s ease-in-out infinite alternate !important;
  position: relative !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  filter: none !important;
}

@keyframes heroHeadingGlow {
  0% {
    filter: brightness(1) drop-shadow(0 0 15px rgba(44, 62, 80, 0.4));
  }
  100% {
    filter: brightness(1.2) drop-shadow(0 0 25px rgba(44, 62, 80, 0.6));
  }
}
.dark-hero-tagline {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  color: #FFD93D;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px #FF6B6B66;
}
.dark-hero-desc {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.15rem;
  color: #fff;
  background: rgba(35,41,70,0.85);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 12px rgba(255, 217, 61, 0.13);
  max-width: 420px;
  margin-left: 0;
  margin-right: auto;
}
.dark-hero-image {
  flex: 1 1 380px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.govt-recognition {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  animation: govtRecognitionGlow 2s ease-in-out infinite alternate;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

@keyframes govtRecognitionGlow {
  0% {
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  }
  100% {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  }
}
.dark-hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(255, 217, 61, 0.10), 0 2px 12px 0 rgba(123, 104, 238, 0.10);
  border: 4px solid #FFD93D;
  background: #fffbe7;
  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.4s;
}
.dark-hero-image img:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 16px 48px 0 rgba(255, 217, 61, 0.18);
}
@media (max-width: 900px) {
  .dark-hero-content-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.2rem 1rem 1.5rem 1rem;
  }
  .dark-hero-content {
    max-width: 98vw;
    margin-bottom: 2rem;
  }
  .dark-hero-image {
    max-width: 98vw;
    justify-content: center;
    flex-direction: column;
  }
  .dark-hero-image img {
    max-width: 320px;
  }
}
@media (max-width: 600px) {
  .dark-hero-heading {
    font-size: 1.3rem;
  }
  .dark-hero-tagline {
    font-size: 1.05rem;
  }
  .dark-hero-desc {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem;
  }
  .dark-hero-image img {
    max-width: 98vw;
  }
}

/* --- Dark Hero Animated Shapes --- */
.dark-hero-anim-shapes {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.dark-hero-anim-shape {
  position: absolute;
  opacity: 0.32;
  z-index: 1;
  pointer-events: none;
  filter: blur(0.5px);
}
.shape-star {
  left: 8%; top: 18%; width: 38px; height: 38px;
  background: url('data:image/svg+xml;utf8,<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg"><polygon points="19,2 23,14 36,14 25,22 29,34 19,26 9,34 13,22 2,14 15,14" fill="%23FFD93D"/></svg>') no-repeat center/contain;
  animation: floatStar 7s ease-in-out infinite alternate;
}
@keyframes floatStar {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(-24px) scale(1.08) rotate(12deg); }
}
.shape-circle {
  left: 85%; top: 10%; width: 28px; height: 28px;
  background: #FF6FB5;
  border-radius: 50%;
  animation: floatCircle 8s ease-in-out infinite alternate;
  animation-delay: 1.5s;
}
@keyframes floatCircle {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(18px) scale(1.13); }
}
.shape-diamond {
  left: 70%; top: 65%; width: 32px; height: 32px;
  background: linear-gradient(135deg, #B388FF 60%, #6BCB77 100%);
  transform: rotate(45deg);
  border-radius: 8px;
  animation: floatDiamond 9s ease-in-out infinite alternate;
  animation-delay: 2.5s;
}
@keyframes floatDiamond {
  0% { transform: rotate(45deg) scale(1); }
  100% { transform: rotate(65deg) scale(1.09); }
}
.shape-heart {
  left: 18%; top: 75%; width: 36px; height: 36px;
  background: url('data:image/svg+xml;utf8,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 32s-12-7.36-12-16A7.5 7.5 0 0 1 18 8.5 7.5 7.5 0 0 1 30 16c0 8.64-12 16-12 16z" fill="%23FF6B6B"/></svg>') no-repeat center/contain;
  animation: floatHeart 10s ease-in-out infinite alternate;
  animation-delay: 3.5s;
}
@keyframes floatHeart {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.12) rotate(-10deg); }
}
.shape-blob {
  left: 60%; top: 30%; width: 70px; height: 50px;
  background: url('data:image/svg+xml;utf8,<svg width="70" height="50" viewBox="0 0 70 50" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="35" cy="25" rx="32" ry="18" fill="%236BCB77"/><ellipse cx="50" cy="35" rx="12" ry="7" fill="%23FFD93D"/></svg>') no-repeat center/contain;
  animation: floatBlob 12s ease-in-out infinite alternate;
  animation-delay: 2s;
}
@keyframes floatBlob {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-16px); }
}
@media (max-width: 900px) {
  .dark-hero-anim-shape {
    width: 22px !important;
    height: 22px !important;
  }
}

/* --- Dark Hero Extra Attractive Enhancements --- */
.dark-hero-glow {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 30% 50%, #FFD93D55 0%, #FF6B6B33 40%, transparent 80%);
  filter: blur(32px);
  opacity: 0.7;
  animation: heroGlowPulse 6s ease-in-out infinite alternate;
}
@keyframes heroGlowPulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; filter: blur(48px); }
}
.dark-hero-img-border {
  display: inline-block;
  padding: 8px;
  border-radius: 36px;
  background: linear-gradient(120deg, #FFD93D, #FF6B6B, #6BCB77, #FFD93D);
  background-size: 300% 300%;
  animation: borderGradientMove 6s linear infinite alternate;
}
@keyframes borderGradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.dark-hero-img-border img {
  border-radius: 28px;
  border: 0;
  box-shadow: 0 8px 32px 0 rgba(255, 217, 61, 0.10), 0 2px 12px 0 rgba(123, 104, 238, 0.10);
  background: #fffbe7;
  width: 100%;
  max-width: 384px;
  height: auto;
  display: block;
}
.dark-hero-cta {
  margin-top: 2.2rem;
  font-family: 'Baloo 2', cursive;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #FF6B6B 0%, #FFD93D 100%);
  border: none;
  border-radius: 32px;
  padding: 0.9rem 2.2rem;
  box-shadow: 0 2px 16px #FFD93D44, 0 1px 4px #FF6B6B33;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  position: relative;
  z-index: 2;
  animation: ctaPop 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
.dark-hero-cta:hover, .dark-hero-cta:focus {
  background: linear-gradient(90deg, #FFD93D 0%, #FF6B6B 100%);
  color: #232946;
  transform: scale(1.07);
  box-shadow: 0 4px 32px #FFD93D66, 0 2px 8px #FF6B6B33;
}
@keyframes ctaPop {
  0% { opacity: 0; transform: scale(0.8); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
.dark-hero-sparkle {
  position: absolute;
  width: 18px; height: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.7"><path d="M9 0L10.7553 5.24472L16 7L10.7553 8.75528L9 14L7.24472 8.75528L2 7L7.24472 5.24472L9 0Z" fill="%23fff"/></g></svg>') no-repeat center/contain;
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
  animation: sparkleTwinkle 2.5s infinite alternate;
}
.dark-hero-sparkle:nth-child(6) { animation-delay: 0.2s; }
.dark-hero-sparkle:nth-child(7) { animation-delay: 1.1s; }
.dark-hero-sparkle:nth-child(8) { animation-delay: 1.7s; }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.7; filter: blur(0.5px); }
  50% { opacity: 1; filter: blur(0); transform: scale(1.2) rotate(10deg); }
}
.shimmer-heading {
  position: relative;
  background: linear-gradient(90deg, #FFD93D 0%, #FF6B6B 50%, #6BCB77 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGradient 2.5s linear infinite;
}
@keyframes shimmerGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* --- Hero Ticker Bar Styles --- */
.hero-ticker-bar {
  width: 100%;
  background: linear-gradient(90deg, #FFD93D 0%, #FF6B6B 50%, #6BCB77 100%);
  overflow: hidden;
  height: 2.4rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 8px #FFD93D22;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hero-ticker-track {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Baloo 2', cursive;
  font-size: 1.08rem;
  font-weight: 700;
  color: #232946;
  padding-left: 100vw;
  animation: tickerScroll 35s linear infinite;
  letter-spacing: 1px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
@keyframes tickerScroll {
  0% { 
    transform: translateX(0) translateZ(0);
    -webkit-transform: translateX(0) translateZ(0);
  }
  100% { 
    transform: translateX(-300vw) translateZ(0);
    -webkit-transform: translateX(-300vw) translateZ(0);
  }
}
@media (max-width: 600px) {
  .hero-ticker-bar {
    height: 2.1rem;
  }
  .hero-ticker-track {
    font-size: 0.95rem;
    padding-left: 120vw;
    animation: tickerScroll 28s linear infinite;
  }
}

@media (max-width: 480px) {
  .hero-ticker-track {
    animation: tickerScroll 25s linear infinite;
  }
}

@media (max-width: 360px) {
  .hero-ticker-track {
    animation: tickerScroll 22s linear infinite;
  }
}

/* --- Chairman Hero Section Styles --- */
.chairman-hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.chairman-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.chairman-hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.chairman-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chairman-photo-frame {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  padding: 8px;
}

.chairman-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.chairman-photo-frame:hover .chairman-photo {
  transform: scale(1.05);
}

.chairman-photo-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  border-radius: 22px;
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.chairman-info {
  color: white;
  text-align: left;
}

.chairman-name {
  font-family: 'Baloo 2', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chairman-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.chairman-message {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-top: 1rem;
}

.chairman-message p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  color: #f8f8f8;
}

.chairman-signature {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd93d;
  text-align: right;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .chairman-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .chairman-photo-frame {
    width: 250px;
    height: 320px;
  }
  
  .chairman-name {
    font-size: 2.5rem;
  }
  
  .chairman-title {
    font-size: 1.2rem;
  }
  
  .chairman-message {
    padding: 1.5rem;
  }
  
  .chairman-message p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .chairman-hero-section {
    padding: 1rem;
  }
  
  .chairman-photo-frame {
    width: 200px;
    height: 260px;
  }
  
  .chairman-name {
    font-size: 2rem;
  }
  
  .chairman-title {
    font-size: 1rem;
  }
}

/* --- Principal Section Styles --- */
.principal-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.principal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="principal-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23principal-grain)"/></svg>');
  opacity: 0.4;
}

.principal-hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.principal-info {
  color: #2d3748;
  text-align: left;
}

.principal-name {
  font-family: 'Baloo 2', cursive;
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(45deg, #2d3748, #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.principal-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.principal-message {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.principal-message p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  color: #2d3748;
}

.principal-signature {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e53e3e;
  text-align: right;
  margin: 0;
  font-style: italic;
}

.principal-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.principal-photo-frame {
  position: relative;
  width: 280px;
  height: 380px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  background: linear-gradient(45deg, #ff9a9e, #fecfef, #ffd1dc, #ffb6c1);
  padding: 10px;
}

.principal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.principal-photo-frame:hover .principal-photo {
  transform: scale(1.08);
}

.principal-photo-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #ff9a9e, #fecfef, #ffd1dc, #ffb6c1);
  border-radius: 28px;
  z-index: -1;
  animation: principalGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes principalGlowPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

@media (max-width: 768px) {
  .principal-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .principal-photo-frame {
    width: 240px;
    height: 320px;
  }
  
  .principal-name {
    font-size: 2.3rem;
  }
  
  .principal-title {
    font-size: 1.1rem;
  }
  
  .principal-message {
    padding: 2rem;
  }
  
  .principal-message p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .principal-section {
    padding: 1rem;
  }
  
  .principal-photo-frame {
    width: 200px;
    height: 270px;
  }
  
  .principal-name {
    font-size: 1.8rem;
  }
  
  .principal-title {
    font-size: 0.9rem;
  }
  
  .principal-message {
    padding: 1.5rem;
  }
}

/* --- Faculty Section Styles --- */
.faculty-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 50%, #ffd3b6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.faculty-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faculty-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23faculty-grain)"/></svg>');
  opacity: 0.5;
}

.faculty-hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.faculty-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faculty-photo-frame {
  position: relative;
  width: 500px;
  height: 600px;
}

.faculty-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}





.faculty-info {
  color: #2d5016;
  text-align: left;
}

.faculty-heading {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(45deg, #2d5016, #4a7c59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faculty-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
  color: #5a7c65;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.faculty-message {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.4);
  margin-top: 1rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.faculty-message p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 2rem 0;
  color: #2d5016;
}

.faculty-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faculty-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(168, 230, 207, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(168, 230, 207, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faculty-highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faculty-highlight span:last-child {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d5016;
}

@media (max-width: 768px) {
  .faculty-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .faculty-photo-frame {
    width: 450px;
    height: 540px;
  }
  
  .faculty-heading {
    font-size: 2.5rem;
  }
  
  .faculty-subtitle {
    font-size: 1.1rem;
  }
  
  .faculty-message {
    padding: 2rem;
  }
  
  .faculty-message p {
    font-size: 1rem;
  }
  
  .faculty-highlights {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .faculty-section {
    padding: 0.5rem;
    min-height: auto;
  }
  
  .faculty-hero-content {
    gap: 1rem;
  }
  
  .faculty-photo-frame {
    width: 280px;
    height: 320px;
  }
  
  .faculty-heading {
    font-size: 1.8rem;
  }
  
  .faculty-subtitle {
    font-size: 0.85rem;
  }
  
  .faculty-message {
    padding: 1rem;
  }
  
  .faculty-message p {
    font-size: 0.9rem;
  }
  
  .faculty-highlight {
    padding: 0.6rem;
  }
  
  .faculty-highlight-icon {
    font-size: 1.1rem;
  }
  
  .faculty-highlight span:last-child {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .faculty-section {
    padding: 0.3rem;
  }
  
  .faculty-photo-frame {
    width: 240px;
    height: 280px;
  }
  
  .faculty-heading {
    font-size: 1.6rem;
  }
  
  .faculty-subtitle {
    font-size: 0.8rem;
  }
  
  .faculty-message {
    padding: 0.8rem;
  }
  
  .faculty-message p {
    font-size: 0.85rem;
  }
  
  .faculty-highlight {
    padding: 0.5rem;
  }
  
  .faculty-highlight-icon {
    font-size: 1rem;
  }
  
  .faculty-highlight span:last-child {
    font-size: 0.75rem;
  }
}

/* --- School Photos Section Styles --- */
.school-photos-section {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.section-description {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.school-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.photo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.photo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-card:hover .photo-image {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.photo-card:hover .photo-overlay {
  transform: translateY(0);
}

.photo-overlay h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  color: #FFD93D;
}

.photo-overlay p {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* --- Festival Photos Section Styles --- */
.festival-photos-section {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.festival-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.festival-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}

.festival-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.festival-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.festival-card:hover .festival-image {
  transform: scale(1.1);
}

.festival-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(255,154,158,0.9));
  color: white;
  padding: 2.5rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.festival-card:hover .festival-overlay {
  transform: translateY(0);
}

.festival-overlay h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.festival-overlay p {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.95;
}

/* Responsive Design for Gallery Sections */
@media (max-width: 768px) {
  .school-photos-section,
  .festival-photos-section {
    padding: 3rem 1rem;
  }
  
  .school-photos-grid,
  .festival-photos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .photo-image,
  .festival-image {
    height: 200px;
  }
  
  .photo-overlay,
  .festival-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .photo-overlay h3,
  .festival-overlay h3 {
    font-size: 1.1rem;
  }
  
  .photo-overlay p,
  .festival-overlay p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .school-photos-grid,
  .festival-photos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .photo-image,
  .festival-image {
    height: 180px;
  }
  
  .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* --- Modal Styles for Photo Lightbox --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-image-container {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modalImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close {
  color: #f1f1f1;
  font-size: 35px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 35px;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
}

.modal-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.nav-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.image-counter {
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Update Festival Grid for More Photos */
.festival-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.festival-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  cursor: pointer;
}

.festival-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.festival-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.festival-card:hover .festival-image {
  transform: scale(1.05);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    height: 95%;
    padding: 10px;
  }
  
  .close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
  
  .nav-btn {
    padding: 8px 12px;
    font-size: 16px;
  }
  
  .image-counter {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .festival-photos-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .festival-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .festival-photos-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
  }
  
  .festival-image {
    height: 120px;
  }
  
  .modal-navigation {
    gap: 15px;
  }
  
  .nav-btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}

/* CBSE Curriculum Section */
.cbse-curriculum-section {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.cbse-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cbse-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cbse-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cbse-feature-card:hover::before {
  transform: scaleX(1);
}

.cbse-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.cbse-feature-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Baloo 2', cursive;
}

.cbse-feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.cbse-highlights {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cbse-highlights h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Baloo 2', cursive;
  text-align: center;
}

.cbse-highlights ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.cbse-highlights li {
  color: #555;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  position: relative;
  padding-left: 2.5rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.cbse-highlights li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  color: #4ecdc4;
  font-weight: bold;
  font-size: 1.1rem;
}

.cbse-highlights li:hover {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  transform: translateX(5px);
}

/* Responsive adjustments for CBSE section */
@media (max-width: 768px) {
  .cbse-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cbse-highlights ul {
    grid-template-columns: 1fr;
  }
  
  .cbse-feature-card {
    padding: 1.5rem;
  }
  
  .cbse-highlights {
    padding: 2rem 1.5rem;
  }
}

/* Contact Info Section for About Page */
.contact-info-section {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-info-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Baloo 2', cursive;
}

.contact-info-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-info-card a {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #45b7d1;
}

/* Responsive adjustments for contact info section */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-card {
    padding: 1.5rem;
  }
}

/* WhatsApp Fixed Button */
.whatsapp-fixed-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-fixed-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-fixed-button svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-fixed-button {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-fixed-button svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-fixed-button {
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 10px;
  }
  
  .whatsapp-fixed-button svg {
    width: 24px;
    height: 24px;
  }
}

/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-content {
  text-align: center;
  color: white;
  z-index: 3;
}

.video-title {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: videoTitleGlow 2s ease-in-out infinite alternate;
}

.video-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes videoTitleGlow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
  }
  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.6);
  }
}

/* Mobile Responsive for Video Section */
@media (max-width: 768px) {
  .video-section {
    height: auto;
    min-height: auto;
    aspect-ratio: 16/9;
    background: transparent;
  }
  
  .video-container {
    background: transparent;
  }
  
  .promo-video {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .video-overlay {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .video-title {
    font-size: 2.2rem;
  }
  
  .video-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .video-section {
    height: auto;
    min-height: auto;
    aspect-ratio: 16/9;
    background: transparent;
  }
  
  .video-container {
    background: transparent;
  }
  
  .promo-video {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .video-overlay {
    background: rgba(0, 0, 0, 0.05);
  }
  
  .video-title {
    font-size: 1.8rem;
  }
  
  .video-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .video-section {
    height: auto;
    min-height: auto;
    aspect-ratio: 16/9;
    background: transparent;
  }
  
  .video-container {
    background: transparent;
  }
  
  .promo-video {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .video-overlay {
    background: transparent;
  }
  
  .video-title {
    font-size: 1.5rem;
  }
  
  .video-subtitle {
    font-size: 0.8rem;
  }
}