* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Comic Neue', cursive;
}

body {
  background-color: #e8f5ff; /* Slightly lighter background */
}

nav {
  background-color: #5b7db1; /* Blue shade */
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
  justify-content: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.banner {
  background-color: #CF1B76;
  padding: 2rem;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.text-content {
  color: white;
  max-width: 600px;
  z-index: 2;
}

.text-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #FFD700;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  background-color: white;
  color: #CF1B76;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-phone {
  background-color: #FFD700;
  color: #CF1B76;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.banner-images {
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.circle-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid white;
  overflow: hidden;
}

.classroom {
  background-image: url('attached_assets/banner.jpg');
  background-size: cover;
  background-position: center;
}

.crafts {
  background-image: url('attached_assets/image_1742196760884.png');
  background-size: cover;
  background-position: center;
}

.banner-icon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.rainbow-icon {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-images {
    margin-top: 2rem;
  }
  
  .text-content h1 {
    font-size: 2rem;
  }
  
  .banner-buttons {
    justify-content: center;
  }
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.banner-nav:hover {
  background: rgba(255, 255, 255, 0.9);
}

.banner-nav.prev {
  left: 20px;
}

.banner-nav.next {
  right: 20px;
}

.hero {
  background-color: white; /* Changed background to white */
  background-image: linear-gradient(rgba(255,255,255, 0.9), rgba(255,255,255, 0.9)), url('https://images.unsplash.com/photo-1540479859555-17af45c78602?auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  color: black; /* Changed text color to black for better contrast */
  text-align: center;
  padding: 6rem 1rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.about {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about h2 {
  color: #333;
  font-size: 2em;
  margin-bottom: 2rem;
  text-align: center;
}

.about .intro {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 3rem;
  text-align: justify;
  font-family: 'Arial', sans-serif;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-feature h3 {
  color: #5b7db1;
  margin-bottom: 1rem;
  font-size: 1.3em;
}

.about-feature p {
  color: #666;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

.about .outro {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin: 2rem 0;
  text-align: justify;
}

.about .cta {
  font-size: 1.2em;
  color: #5b7db1;
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature i {
  font-size: 2.5rem;
  color: black; /* Changed color to black for better contrast */
}

.feature span {
  font-size: 1.1rem;
  font-weight: bold;
}

.activities {
  padding: 4rem 1rem;
  background-color: #fff;
}

.activity-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.activity-card {
  width: 250px;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-card.yellow { background-color: #FFE169; }
.activity-card.orange { background-color: #FF914D; }
.activity-card.green { background-color: #96E072; }
.activity-card.blue { background-color: #50C4ED; }

.activity-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border: 3px dashed white;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
}

.activity-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.activity-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.activity-card button {
  background-color: white;
  color: #333;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.activity-card button:hover {
  background-color: #f0f0f0;
}

.age-groups {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.age-group-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 2rem auto;
}

.age-card {
  background: #e8eef9;
  padding: 2rem;
  border-radius: 15px;
  width: 250px;
  transition: transform 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.age-card:hover {
  transform: translateY(-5px);
}

.age-card i {
  font-size: 2.5rem;
  color: #ff7eb9;
  margin-bottom: 1rem;
}

.age-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.age-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}


.contact {
  background-color: #ffd6a5;
  padding: 3rem 1rem;
  text-align: center;
}

.contact-info {
  margin-top: 2rem;
}

.contact-details {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.contact-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.contact-link:hover {
  transform: scale(1.1);
}

.contact-link.phone {
  background-color: #0088cc;
}

.contact-link.whatsapp {
  background-color: #25D366;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  width: 300px;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 2.5rem;
  color: #ff9ecd;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: #333;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #666;
  line-height: 1.6;
}

.map-container {
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.reviews {
  background-color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.reviews h2 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 2em;
}

.google-reviews {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.reviews-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.review-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  margin: 0 40px;
  transition: transform 0.3s ease;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.review-card {
  min-width: 300px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.review-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.reviewer-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.rating {
  color: #fbbc04;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.9em;
  color: #555;
  line-height: 1.4;
}

.nav-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #f5f5f5;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.google-logo {
  height: 30px;
}

.rating-summary {
  text-align: left;
}

.stars {
  color: #fbbc04;
  font-size: 1.2em;
}

.review-count {
  font-size: 0.9em;
  color: #666;
}

.google-disclaimer {
  font-size: 0.8em;
  color: #666;
  margin-top: 10px;
}

footer {
  background-color: #5b7db1;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}