body {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Fredoka', sans-serif;
}

html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.navbar,
.navbar.scrolled{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 10; 
}

.image-section,
.teacher-para{
  width: 100%;
  min-height: 100vh;   /* ✅ instead of height:100% */
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;
  opacity: 1;
  z-index: 1;
  margin-top: 50px;
}

.navbar,
.transparent-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 99999;   /* 🔥 KING */
}


.navbar.scrolled {
    background: #0a99ff !important;
    height:80px;
    /* z-index:50 !important; */
}
/* LOGO SIZE AFTER SCROLL */
.navbar.scrolled .navbar-brand img {
    height: 60px;   
}


/* Adjust navbar styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: white; /* Set your background color */
}

@media (max-width: 768px) {
    .gap-4 {
        gap: 2px !important;  /* Adjust the gap to a smaller value */
    }
}
/* 
@media (max-width: 768px) {
    .navbar .nav-item {
        margin-bottom:15px;  
    }
} */
@media (max-width: 768px) {

  /* .navbar {
   
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom:4px;
    z-index: 9000;
  } */
  /* .navbar.bg-light,
  .navbar.bg-dark {
    background: transparent ;
  } */
    .hero-section {
    padding-top: 90px;  /* adjust if needed */
  }
    .navbar a {
       color: #000 !important; /* Ensure links are visible on black background */
    }
    .left-icon{
      font-size:2px !important;
    }
  .navbar-nav .nav-link {
    padding: 1px 0 !important;   /* 🔑 reduces gap */
    margin: 0;
    font-size: 18px;
  }
}

.hero-section {
    padding-top: var(--navbar-height);
    position: relative;
    z-index:0;
    height: 100vh; 
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow:hidden;
}


/* TRANSPARENT NAVBAR */
.transparent-navbar {
   background: transparent !important;
    box-shadow: none; /* Remove any unwanted shadow */
    position:fixed; /* Make navbar absolute to place it on top */
    top: 0; /* Keep it at the top */
    left: 0;
    height: var(--navbar-height);
    width: 100%;
    z-index:99999; /* Set a high z-index to place it above the hero section */
     isolation: isolate;   /* 🔥 MOST IMPORTANT LINE */
}

.earth-img {
    position: absolute;
    top: -30px;          /* adjust to match reference */
    right: -40px;        /* pushes image partially outside */
    width: 160px;
    height:140px;        /* control size */
    opacity: 0.6;        /* soft look like reference */
    z-index: 1;          /* behind navbar text */
    pointer-events: none; /* prevents blocking clicks */
}
.navbar-nav{
  gap:24px;
}
/* NAV LINKS */
.navbar-nav .nav-link {
    font-weight: 500;
     font-family: 'Fredoka', sans-serif;
}
.nav-item{
    font-family: 'Fredoka', sans-serif;
    font-size:30px;
    font-weight:500;

}
/* HERO CONTENT */
.hero-content {
   position: relative;
    z-index: 5;
    text-align:center;
    padding-top:160px;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
}
/* HIDE STAR LINES ON MOBILE */
@media (max-width: 768px) {
  .star-lines,
  .star-container {
    display: none !important;
  }
.navbar-nav{
  gap:2px;
}
}
/* HEADING */
.hero-title {
    font-size: 64px;
    font-weight:700;
    line-height: 1.25;
    margin-bottom: 30px;
    margin-top: -100px;
  text-shadow:
     -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.hero-title span {
    display: inline-block;
}

/* BUTTON WRAPPER */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* BUTTONS */
.btn-yellow {
    background: #FFD84D;
    color: #000;
    padding: 12px 26px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
}
.btn-yellow:hover{
  border:2px solid black;
}

.btn-black {
    background: #000;
    color: #fff;
    padding: 12px 26px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
}
.btn-black:hover{
  border:2px solid black;
  color:black; 
}
/* DECORATIVE ICONS */
.hero-icon {
    position: absolute;
  
}

.left-icon {
    left: 18%;
    top:295px;
}

.right-icon {
    right: 18%;
    top: 15px;
    top:65px;   /* was 105px */
  
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding-bottom: 120px;
  }

  .hero-content {
    padding-top: 120px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .earth-img {
    width: 110px;
    height: auto;
    right: -20px;
    top: -10px;
  }
}
.kids-section {
  transition: padding-top 0.3s ease;
}

/* .kids-section.nav-offset {
  padding-top: 80px; 
} */

.kids-section{
  position: relative;
  z-index: 0;
  padding-top: 0px;
  padding-bottom: 100px;

  display: flex;
  justify-content: center;
}


/* OVAL WRAPPER */
.all-ovals{
  display:flex;
  margin-top: 60px;
  gap:60px;
  align-items:flex-end;

  z-index: 2;        /* ✅ NORMAL VISIBLE LAYER */
  /* position: relative; */
}


/* COMMON OVAL STYLE */
.oval{
  height:420px;
  width:220px;
  border-radius:140px;
  overflow:hidden; 
  display:flex;
  align-items:center;
  justify-content:center;
  /* background:#fff; */
  /* z-index:2; */
  }


.oval-2{
      /* taller */
  background: #ffd600;
  transform: translateY(50px); 
 
}

/* CENTER OVAL */
.oval-2{
  background:#ffd600;
 
}

/* IMAGE INSIDE OVAL */
.oval img{
  width:100%;
  height:100%;
  object-fit:cover;
}



/* RESPONSIVE */
@media(max-width:768px){
@media (max-width: 768px) {

  .kids-section {
    margin-top: 200px;
    /* padding-bottom: 60px; */
  }

  .all-ovals {
    padding: 0 20px;              /* KEY FIX */
    gap: 16px;
    justify-content: space-between;
    width: 100%;
    margin-top: -140px;
  }
  .oval {
    flex-shrink: 0;               /* prevents cutting */
  }
  .oval {
    width: 100px;
    height: 280px;
  }

  .oval-2 {
    transform: translateY(30px);
  }
}

}



/* SECTION */
.curve-section{
  position:relative;
  /* height:450px; */
  background:#149BFF; /* blue */
  overflow:visible;
  z-index: 1 !important;
}
.hero-decor {
  display: none;
}
@media (max-width: 768px) {

  .hero-decor {
    display: block;
    position: absolute;
    z-index: 15;
    pointer-events: none;
  }

  .star-mobile {
    top: 50%;
    left: 10%;
    width: 40px;
    animation: float 4s ease-in-out infinite;
  }

  .paint-mobile {
    top:52%;
    right: 10%;
    width: 60px;
    animation: float 4s ease-in-out infinite;
  }

}

/* SVG CURVE */
.curve-bottom{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:200px;
  /* z-index: 3; */
  overflow: hidden;
}

.curve-bottom svg{
  width:100%;
  height:100%;
  display:block;
}



.curve-bottom path{
  fill:#ffffff;
  z-index: 3 !important;
}

.star-1{
  position: absolute;
  top:10px;
  margin-top:90px;      
  left: 80px;
  width: 80px;
  z-index:3;
}
.paint{
  position: absolute;
  top:10px;
  margin-top:90px;    
  right: 120px;
  width: 90px;
  z-index:3;
}
.star-1,
.paint{
  animation: float 4s ease-in-out infinite;
}

@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* Base cylinder position */
/* BASE */
.oval{
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* STATES */
.up{
  transform: translateY(-40px);
}

.down{
  transform: translateY(40px);
}

/* Positioning Star Line Below the Wave */
.star-lines {
  position: absolute;
  top: 0;                 /* 🔥 blue section ke top se chipak jaaye */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2;             /* blue ke upar, content ke niche */
  pointer-events: none;
}

.star-lines.left {
  justify-content: flex-start;
  padding-left: 40px; /* distance from left edge */
}
.star-lines.right {
  justify-content: flex-end;
  padding-right: 40px; /* distance from right edge */
}
.star-lines.right .star-line {
  transform: scaleX(-1);
}

.star-12{
height:320px;
margin-top:15px;

}
.star-11{
    margin-top:17px;
    height:300px;
}
.star-13{
  margin-top: 0;
  height:300px;
}
.star-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 500px;          /* 🔑 no negative margin */
  z-index: -1;
}


.star-item {
  width:50px; 
  margin-top: 200px;
   
}

.star-11,
.star-12,
.star-13 {
  margin-top: 0;
}

/* Floating effect for stars */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Adjust for small screens */
@media (max-width: 768px) {
  .star-item {
    width: 30px; 
  }

}

.star-container{
  position: absolute;
  top: -140px;          /* 🔼 blue section ke andar upar le jane ke liye */
  left: 0;
  width: 100%;
  z-index: 1;           /* 🔥 hero-content ke piche */
  pointer-events: none;
}


.teacher-text{
  align-items:center;
  justify-content:center;
  padding-top:80px;
}
/* .teacher-img{
  height:400px;
} */
.teacher-title{
  font-size:90px;
  font-weight:700;
}
.teacher-subtitle{
  font-weight:500;
  font-size:30px;
}
.teacher-description{
  font-size:20px;
  font-weight:400;
}
.image-teacher-trigger {
  height: 1px;
}
/* Both sections are positioned absolutely, occupying the same space */
.image-section, .teacher-para {
  width: 100%;
  height: 100%; /* Full viewport height */
  position: absolute; /* Positioned on top of each other */
  left: 0;
  top: 0;
  transition: transform 1.5s ease, opacity 1.5s ease; /* Slower animation */
  opacity: 1;
  z-index: 1; 
  margin-top: 50px;
  
}

/* Initially, the teacher section is offscreen to the right */
.teacher-para {
  transform: translateX(100%); /* Slide it out of view initially */
  opacity: 0;
  z-index: 2; /* Initially behind the image section */
  
}

/* When the teacher section becomes visible (after scroll) */
.teacher-para.visible {
  transform: translateX(0); /* Slide it in */
  opacity: 1; /* Fade in */
  z-index: 3; /* Bring it in front of the image section */
  margin-top: 50px;
}

:root {
  --navbar-height: 120px;
}

.image-teacher-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--navbar-height));
  margin-top: 300px;
  overflow: hidden;
  background: #fff;
  z-index: 0;     /* ✅ THIS IS THE MAGIC */
}



.image-section,
.teacher-para {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}

.image-section {
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
}

.teacher-para {
  z-index: 1;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
}

.image-section.slide-out {
  transform: translateX(-60px);
  opacity: 0;
}

.teacher-para.visible {
  transform: translateX(0);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}


/* New Section */
.new-section {
  position: relative;
  background-image: url('/Images/image5.png'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; /* Prevents the image from repeating */
  height: 80vh; /* Full viewport height */
  width: 100%;          /* ✅ instead of 100vw */
  box-sizing: border-box;
  color:black;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
  padding: 140px 0;
  /* margin-top:520px; */
  margin-left: 0; 
  margin-right: 0; 
}

.new-section-content {
  z-index: 1; /* Ensures text is above the background */
  padding: 30px;
  max-width: 800px; /* Adjust the width as needed */
  background-color: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background for readability */
  border-radius: 10px;
}

.new-section-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.new-section-description {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.new-section-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.new-section-buttons .btn {
  padding: 12px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background-color: #FFD84D; /* Adjust button color */
  color: #000;
}

.btn-secondary {
  background-color: #000;
  color: #fff;
}
.new-section, .new-section-content {
  animation: none !important;
}

/* Responsive design */
/* @media (max-width: 768px) {
  .new-section-title {
    font-size: 32px;
  }

  .new-section-description {
    font-size: 16px;
  }
} */
.heading-main{
  font-size:40px;
  font-weight:500;
   font-family: 'Poppins', sans-serif !important;
}
.heading-main span{
  font-size:80px;
  font-weight:600;
}
.spirituality{
    font-family: 'Poppins', sans-serif;
    font-weight:500;
}
.new-text{
  font-size:20px;
  font-weight:400;
  font-family: 'Poppins', sans-serif;
}
.new-text1{
   font-family: 'Poppins', sans-serif;
   font-size:23px;
   font-weight:450px;
   text-align: left;
}
/* .spirit{
  width:400px;
  margin-left:170px;
  font-family: 'Poppins', sans-serif;
} */
.program-wrapper {
  gap: 15px;
}

.program {
  background-color: #F39F5F;
  color: #000;
  padding: 20px 28px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-size:35px;
  font-weight:700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.play-ground{
  background-image:url("/Images/Group-30-1.png");
  height:500px;
  /* background-repeat:no-repeat; */
  background-position:center;
  object-fit:cover;


  
}

.play-ground{
  /* min-height: 100vh; */
  padding: 80px 60px;
  /* background: url("/Images/Group-15.png") center/cover no-repeat; */

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}

/* Card stays same, just slightly refined */
.program-card {
  width: 320px;
  height: 450px;
  
  background: #6fa9b1;
  border-radius: 52% 48% 56% 44% / 42% 52% 48% 58%;
  padding: 20px;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform .3s ease;
   
}
.program-card.is-active {
  transform: scale(1.58);
  z-index: 5;
}
.program-card.is-inactive {
  transform: scale(0.82);
 
}
.program-card:hover{
  transform: translateY(-8px);
}



/* Image */
.program-img img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-top: 20px;
}

/* Content */
.program-content {
  text-align: center;
  margin-top: 15px;
}

.program-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.program-content p {
  font-size: 14px;
  line-height: 1.6;
  padding: 0 10px;
}

/* Arrow */
.arrow-btn {
  width: 48px;
  height: 48px;
  background: #6fa9b1;
  border: 1px solid #000;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: .3s ease;
}
.arrow-btn2 {
  width: 48px;
  height: 48px;
  background: #FFEB3B;
  border: 1px solid #000;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: .3s ease;
}
.arrow-btn3 {
  width: 48px;
  height: 48px;
  background: #F39F5F;
  border: 1px solid #000;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: .3s ease;
}
.arrow-btn4 {
  width: 48px;
  height: 48px;
  background: #009DFF;
  border: 1px solid #000;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: .3s ease;
}

.arrow-btn:hover{
  transform: translateX(-50%) translateY(-4px);
}
@media (max-width: 1200px){
  .play-ground{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* @media (max-width: 600px){
  .play-ground{
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }
} */
.card-2{
 background: #FFEB3B;
 color: black !important;
}
.card-3{
   background: #F39F5F;
   color: black !important;
}
.card-4{
  background: #009DFF;

}
.upper-star {
  position:relative;
  bottom:248px;           /* move UP (reduce negative value) */
  left:90%;
  transform:translateX(-50%);
  z-index:9;             /* behind arrow */
}

.upper-star img {
  width: 90px;            /* adjust based on design */
  opacity: 0.8;
}

.testimonials{
  display:flex;
  flex-wrap:wrap;
  width:100%;
  height:400px;
  padding-top:70px;
}

/* LEFT */
.testimonials-left{
  flex:5;
  background:#ffeb3b;
  padding:50px;
  text-align:center;
}

.testimonials-left h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:15px;
}

.testimonials-left p{
  font-size:26px;
  font-weight:500;
  text-align:start;

}
.testimonials-left span{
  font-size:60px;
  font-weight:700;
}

/* RIGHT */
.testimonials-right{
  flex:7;
  background:#f6a15d;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* CAROUSEL */
.carousel {
  position: relative;
  height: 320px;
  display: flex;
  align-items:center;
  justify-content:center;
}

.testimonial-card {
  position: absolute;
  width: 260px;
  padding:22px;
  border-radius:18px;
  background: #fff;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  opacity: 0.5;
  transform: scale(0.9);
  /* z-index:10; */
}

/* LEFT */
.pos-left {
  transform: translateX(-280px) scale(0.9);
  opacity: 1;
  /* z-index: 1; */
  background: #6fa7b1;
  color: #0f2e3a;
}

/* CENTER (ACTIVE) */
.pos-center {
  transform: translateX(0) scale(1.09);
  opacity: 1;
  /* z-index: 3; */
  background: #0a8ff0;
  color: #ffffff;
}

/* RIGHT */
.pos-right {
  transform: translateX(280px) scale(0.9);
  opacity:1;
  /* z-index: 1; */
  background: #ffe84a;
  color: #1a1a1a;
}
.pos-center p:last-child {
  color: #ffd700; /* bright gold stars */
}

.pos-left p:last-child,
.pos-right p:last-child {
  color: #ffcc66;
}
.pos-center {
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media(max-width:768px){
  .testimonials{
    flex-direction:column;
      height:auto;
      padding-top:0;
  }

  .testimonials-left,
  .testimonials-right{
    width:100%;
     padding:30px 20px;
    text-align:center;
  }

  .testimonials-left p{
    margin:0 auto;
       font-size:18px;
    text-align:center;
  }
  .testimonials-left h2 span{
    font-size:42px;
  }
  .carousel{
    gap:10px;
  }
}

/* CTA SECTION */
.cta-section {
  background: #6fa7b1;
  padding: 60px 15px;
  text-align: center;
}

.cta-container {
  max-width: 1100px;
  margin: auto;
}

.cta-container h2 {
  color: #fff;
  font-size:55px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-container p {
  color: #eaf4f6;
  font-size:25px;
  margin-bottom: 35px;
}

/* ACTION BUTTONS */
.cta-actions {
  display: flex;
  flex-direction:row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
 
}

/* COMMON PILL */
.cta-pill {
  min-height: 64px;  
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* padding: 14px 22px; */
  border-radius: 50px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.35s ease;
  border: 3px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
}
.cta-pill:hover{
  background-color:white;
  border:none;
}
/* PHONE */
.phone-pill {
  min-width: 340px;
  font-size: 18px;
  gap: 12px;
  min-width: 240px;
  justify-content: center;
}

/* ENQUIRY (CENTER BUTTON) */
.enquiry-pill {
  width: 64px;
  height: 64px;
  background: #ffeb00;
  border-color: #ffeb00;
  color: #1a1a1a;
  padding: 0;
   border-radius: 999px;   /* ✅ KEY FIX */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #1a1a1a;
  transition: width 0.35s ease,border-radius 0.35s ease;   /* IMPORTANT */
}

.enquiry-pill span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.35s ease;
}
.enquiry-pill:hover {
  width: 180px;   /* expands like reference */
  border-radius: 999px; /* stays perfect pill */
  
}
/* Hover expands text */
.enquiry-pill:hover span {
  max-width: 140px;
}

.accordion-button {
  padding-left: 15px; /* Add space between the number and the text */
  padding-right: 15px;
}

.accordion-button strong {
  margin-right: 35px; /* Adjust the space between the number and the text */
}


/* WHATSAPP */
/* WHATSAPP (DEFAULT STATE) */
.whatsapp-pill {
  background: #25d366 !important;
  border-color: #25d366;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  justify-content: center;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 3px solid #1a1a1a;
  width: 64px;
  height: 64px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hide text initially */
.whatsapp-pill span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.35s ease;
}

/* Hover – expand like Enquire */
.whatsapp-pill:hover {
  width: 170px;
  justify-content: center;
}

/* Reveal text */
.whatsapp-pill:hover span {
  max-width: 100px;
}

/* Icon spacing when expanded */
.whatsapp-pill img {
  font-size: 20px;
 
}
.navbar .nav-item .dropdown-toggle::after {
    margin-top:15px;  /* Adjust the value to move the arrow down or up */
}

/* ICON SIZE */
.cta-pill img,
.cta-pill i {
  width: 22px;
  height: 22px;
   display: block;          /* removes inline spacing */
  object-fit: contain;
  justify-content:center;
}
.enquiry-pill img {
  transform: translateY(2px) !important;
  transform: translateX(3px) !important;
}

.whatsapp-pill img {
  transform: translateY(0px);
  transform: translateX(3px) !important;
}
.enquiry-pill img {
  width: 24px;

}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size:20px;
  }

  .cta-actions {
    gap:10px;
   
  }
  .cta-container p{
    font-size:12px;
  }
   /* 🔑 FIXED PHONE PILL */
  .phone-pill {
    width: 100%;              /* full width like reference */
    max-width:130px;         /* prevents too wide */
    min-width: unset;

    height: 36px;
    padding: 0 0;          /* reduced padding */

    font-size: 10px;          /* readable */
    font-weight: 600;

    gap:4px;
    justify-content: center;
    border-width: 2px;
  }

  /* ICON SIZE */
  .phone-pill img {
    width: 20px;
    height: 20px;
  }
}
.footer {
  background: #0a99f0;
  padding-top:40px;
  padding-left:20px;
  padding-right:20px;
  /* padding-bottom:15px; */
  color: #ffffff;
  font-family: 'Fredoka', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* BRAND */
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-brand p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 420px;
  margin-top: 20px;
}

/* LINKS */
.footer-links h4 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}
.footer-bottom {
  margin-top: 0px;
  /* margin-bottom:0px; */
  padding: 8px 0px;
  text-align: center;
 
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom strong {
  font-weight: 700;
}

.designer-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.designer-link:hover {
  opacity: 0.8;
}


/* TABLET */
/* @media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
} */
/* Mobile Footer Fix */
@media (max-width: 768px) {

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  /* Brand takes full width */
  .footer-brand {
    width: 100%;
  }
  .footer-links{
    text-align:center;
  }
  /* Visit + Information in one row */
  /* .footer-links {
    width: 50%;
  } */

  .footer-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .footer-links {
    text-align: left;
  }
}
/* Dropdown background transparent */
.dropdown-menu {
  /* background: transparent; */
  border: none;
  box-shadow: none;
  padding: 8px 0;
  border-radius:30px;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #fff;
  /* background-color:black; */
  padding: 0 16px;
  font-size:20px;
  font-weight:500;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background:black;
  color: #fff;
  border-radius:30px !important;
}

/* .dropdown-menu {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 8px;
} */
.star-rigth{
  height:340px;
  margin-top: -13px;
}
.hero-bg.course-banner {
  position: relative;
  height: 100vh; /* Full height to ensure it fits */
  background:#0D9BF0; /* your blue */
  padding-top:180px; /* Add padding to avoid overlap with navbar */
   z-index: 1; /* Ensure the banner is below the navbar */
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  display: block;
  z-index: 0; /* Ensure it's behind the content */
}
.hero-wave1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  display: block;
  z-index: 0; /* Ensure it's behind the content */
  margin-bottom:150px;
}

/* ===========course page======= */
.course-banner {
  position: relative;
  height: 100vh;
  background: #0a9cff;
  overflow: hidden;
}

/* 
.hero-content {
  position: relative;
  z-index: 3;
 
  padding-bottom: 60px; 
}



.course-left h1 {
  font-size: 84px;
  font-weight: 800;
  color: #ffffff;
}

.course-left p {
  font-size: 35px;
  color: #ffffff;

  
}

.hero-boy {
  max-height: 400px;
  width: auto;
}


.hero-wave {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 220px;       
  object-fit: cover; 
  z-index: 1;
}


@media (max-width: 768px) {
  .course-banner {
    height: auto;
    padding-bottom: 150px;
  }

  .course-left h1 {
    font-size: 42px;
  }

  .hero-boy {
    max-height: 350px;
    margin-top: 30px;
  }
}
.course-left {
  padding-left: 0;
}

@media (min-width: 992px) {
  .course-left {
    margin-left: -40px; 
  }
} */

.course-hero {
  height: 100vh;
  background: #0a9cff;
  display: flex;
  align-items: center;
  overflow: hidden;
 
}

/* MAIN FLEX LAYOUT */
.course-hero-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* 🔥 EXTREME LEFT & RIGHT */
  padding: 0 80px; /* 🔥 CONTROL EDGE SPACE */
}

/* LEFT CONTENT */
.course-left h1 {
  font-size: 94px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.course-left p {
  font-size: 30px;
  color: #ffffff;
  max-width: 420px;
  align-items:start;
  justify-content:start;
}
.course-left{
  display:flex;
  flex-direction:column;
  align-items:start;
  justify-content:start;
  margin-bottom:400px;
}
/* RIGHT IMAGE */
.hero-boy {
  max-height: 520px;
  width: auto;
  margin-bottom:400px;
}
.hero-right img.hero-boy {
    position: relative;
    z-index: 1; /* Keep it above the wave */
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .course-hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 200px;
  }
.dropdown-item:hover{
  color: white !important;;
}
  .hero-boy {
    margin-top: 40px;
    max-height: 380px;
  }

  .course-left h1 {
    font-size: 42px;
  }

}
.why-choose-section {
  background: #ffffff;
   padding-top:80px;
}

.why-choose-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 20px;
}

/* LEFT TITLE */
.why-left h2 {
  font-size: 64px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin: 0;
}

/* RIGHT CONTENT */
.why-right p {
  font-size:20px;
  line-height: 1.7;
  color:black;
  max-width: 520px;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-choose-inner {
    flex-direction:row;
    text-align:left;
    gap:10px;
  }

  .why-left h2 {
    font-size:30px;
  }

  .why-right p {
    font-size: 8px;
  }
 .why-choose-section {
  background: #ffffff;
  padding-top:30px;
}
}
.why-points-section {
  padding:100px;
  background: #ffffff;
}

/* 2 x 2 GRID */
.why-points-wrapper {
  /* max-width: 1100px; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 TWO ABOVE, TWO BELOW */
  gap: 80px 120px; /* row gap | column gap */
  text-align: center;
}

/* CARD */
.why-card {
  display: flex;
  flex-direction:row;
  align-items: center;
  width:500px;
  position: relative; /* ✅ ADD THIS */
}

/* ICON */
.icon-circle {
  width: 120px;
  height: 120px;
  background: #0099ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle img {
  width: 52px;
  height:52px;
  object-fit: contain;
}

/* TEXT */
.why-card h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color:#000;
}

.why-card p {
  font-size:17px;
  line-height: 1.6;
  color:black;
  max-width: 320px;
  margin: 0;
}

/* MOBILE */
/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

  /* Hide desktop layout */
  .why-points-wrapper {
    display: none;
  }

  /* Show image instead */
  .why-points-section {
    position: relative;
    padding: 20px 10px;
  }

  .why-points-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 120px; /* adjust if needed */

    background-image: url("/Images/why-to-choose-us.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

.bottom-card{
  margin-left:80px;
}
.play-1{
  margin-left:120px;
}
.play-2{
  margin-right:180px;
}
.play-3{
   margin-left:70px;
}
.play-4{
  margin-right:180px;
}

/* CONNECTOR LINES */
.connector {
  position: absolute;
  width: 300px;
  height:3px;
  background: #000;
  top: 45px; /* vertically center with icon */
  left: 90px; /* start after icon */
  transform-origin: left center;
}

/* ALTERNATE ROTATION */
.why-card + .connector {
  transform: rotate(30deg);
}
/* Top-left → Top-right */
.play-1 .connector {
  transform: rotate(30deg);
  width:320px;
}

/* Top-right → Bottom-left */
.play-2 .connector {
  transform: rotate(25deg);
  width:350px;
  
}

/* Bottom-left → Top-right */
.play-3 .connector {
  transform: rotate(-25deg);
  margin-left:310px;
  width: 420px;
}
.play-based1{
 
  margin-bottom:40px;
}
.certified{
 
  margin-bottom:40px !important;
}
.certified-img{
  margin-left:10px;
}
.safe-img{
  margin-left:40px;
}
.holistic{
  margin-left:50px;
  margin-bottom:20px;
}
.why-points-wrapper{
  background-image:url("/Images/lines.png");
  background-repeat:no-repeat;
  background-position:center;
}
.camp-section {
  display: flex;
  justify-content: space-between;
 padding: 0 0 0 60px;  /* ✅ removed top padding */
}

.camp-wrapper {
  display: flex;
  /* max-width: 1200px; */
  margin: auto;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* LEFT PART */
.camp-left {
  max-width: 50%;
}

.camp-left h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}

.camp-left p {
  font-size:25px;
  line-height: 1.6;
  margin-bottom: 30px;
  color:black;
  width:680px;
}

/* ICONS */
.camp-icons {
  display: flex;
  flex-direction: column;
  gap:25px;
  margin-left:60px;
}

.camp-icon {
  display: flex;
  align-items: center;
  gap: 20px;
 }

.camp-icon img {
  width: 80px;
  height: 80px; 
  object-fit: contain; 

}
.second-icon{
  margin-left:30px;
}
.camp-icon p {
  font-size:23px;
  color:black;
}

/* RIGHT IMAGE */
/* .camp-right {
  max-width: 45%;
} */

.camp-right img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  margin-top:70px;
}
.camp-section,
.camp-wrapper {
  margin-bottom: 0;
}
/* MOBILE */
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .camp-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    align-items: flex-start;
  }
   .tree-img{
    height: 50px;
   }
  .camp-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 12px;
    align-items: center;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    align-items: stretch;
  }
  .bus-img{
   height:50px;;
   width:50px;
   display:none;
  }
.fire-img-wrapper{
  display:none;
}
  /* LEFT CONTENT */
  .camp-left {
    max-width: 100%;
  }

  .camp-left h2 {
    font-size:14px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
 .camp-left,
  .camp-right {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
    .camp-right {
    display: flex;
    align-items: flex-end;  /* 🔑 push image to bottom */
    height: 100%;
  }
  .camp-left p {
    font-size:8px;
    line-height: 1.5;
    width: 100%;
    margin-bottom: 14px;
  }

  /* ICON LIST */
  .camp-icons {
    margin-left: 0;
    gap:5px;
  }

  .camp-icon {
    gap: 10px;
  }

  .camp-icon img {
    width:20px;
    height:20px;
  }

  .camp-icon p {
    font-size:8px;
    line-height: 0.4;
  }

  .second-icon {
    margin-left: 0;
  }

  /* BUS HIDE (NOT IN MOBILE DESIGN) */
  .bus-wrapper {
    display: none;
  }

  /* RIGHT IMAGE */
  .camp-right {
    max-width: 100%;
  }

  .camp-right img {
    width: 100%;
    height: auto;
    margin-top: 0;
    border-radius: 16px;
    display: block;  
   object-fit: cover;      /* 🔑 removes inline image gap */
    margin-bottom: 0 !important;
  }

  /* DECORATIVE BACKGROUND REMOVE */
  .why-points-wrapper {
    background-image: none;
  }
.bus-wrapper {
 display:none;
}
  /* Safety net */
  .camp-section * {
    box-sizing: border-box;
  }
}

/* Bus Animation */
.bus-wrapper {
  position: relative;
  width: 100%;
  height: 100px; /* space for bus */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.bus-img {
  /* position: absolute;
  bottom: 0;
  left: -120px; 
  width: 120px;
  animation: busMove 6s linear infinite; */
  width: 120px;
  position: relative;   /* no absolute */
  left: 0;  
}

/* Keyframes */
@keyframes busMove {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  70% {
    transform: translateX(750px); 
    opacity: 1;
  }

  73% {
    opacity: 0; 
  }

  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
/* Fire images stacking only */
.fire-img-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
}

.fire-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
}

/* Visibility control */
.fire-normal {
  opacity: 1;
}

.fire-glow {
  opacity: 0;
  animation: fireGlow 1s infinite;
}

/* Glow animation */
@keyframes fireGlow {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  31% {
    opacity: 1;
    
  }
  100% {
    opacity: 1;
   
  }
}

/* Keep themed icon normal */
.themed-icon {
  width: 80px;
  height: 80px;
}

/*---------playgroup---------------- */
/* Custom classes for Playgroup Section */


.playgroup-program-container {
    display: flex;
    flex-wrap: wrap;
    gap:30px;
    justify-content: space-between;
    padding-top:20px;
   }

.playgroup-left, .playgroup-right {
    width: 100%;
    max-width: 48%;
}
.playgroup-left p,
.playgroup-left h2,
.playgroup-left ul {
  padding-left: 50px;
  font-size:20px;
}
.joyfull{
  font-size:35px;
  font-weight:600;
  font-family: 'Fredoka', sans-serif;
  padding:20px;

}
.play-role {
  display: inline-block;
  background-color: #6fa6ad;
  color:#ffffff;
  font-size: 52px;
  font-weight: 700;
  padding: 10px 60px 10px 40px;
  border-radius: 0 60px 60px 0; /* 🔥 left square, right rounded */
  width:600px;
}
.play-role2{
 display: inline-block;
  background-color:yellow;
  color:black !important;
  font-size: 52px; 
  font-weight: 700;
  padding: 10px 60px 10px 40px;
  border-radius: 0 60px 60px 0; /* 🔥 left square, right rounded */
 
  width:600px;
}
.play-role3{
 display: inline-block;
  background-color:#F39F5F;
  color:white !important;
  font-size: 52px; 
  font-weight: 700;
  padding: 10px 60px 10px 40px;
  border-radius: 0 60px 60px 0; /* 🔥 left square, right rounded */
 
  width:600px;
}
.play-role4{
 display: inline-block;
  background-color:#149BFF;
  color:white !important;
  font-size: 52px; 
  font-weight: 700;
  padding: 10px 60px 10px 40px;
  border-radius: 0 60px 60px 0; /* 🔥 left square, right rounded */
 
  width:600px;
}


/* Optional: make right side more rounded */
.play-role::after {
  content: "";
  position: absolute;
}
/* 
@media (max-width: 768px) {
  .play-role {
    font-size: 28px;
    padding: 14px 20px 14px 10px;
    border-radius: 0 40px 40px 0;
  }
} */

.playgroup-right{
  color:white;

}
.playgroup-right {
  display: flex;
  justify-content: center;   /* center horizontally */
}
.playgroup-left h1 {
    font-size: 2.5rem;
    color:white;
    /* background-color:#6EA6B1; */
    padding:30px 10px;
  
}
.playgroup-program-overview p{
  font-size:25px;
}

.playgroup-left h2, .playgroup-right h2 {
    font-size: 2rem;
    margin: 10px 0;
    font-weight:600;
    text-decoration:underline;
}
.playgroup-right li{
  font-size:20px;
}
.playgroup-left h3, .playgroup-right h3 {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* .playgroup-program-overview, .playgroup-left p, .playgroup-right p {
    font-size: 1.5rem;
    line-height: 1.5;
    color:black;
} */

ul {
    /* margin-top: 10px; */
    /* list-style-type: none; */
    font-size: 1rem;
    line-height:1.8;
}

/* ul li {
    margin: 5px 0;
} */

.playgroup-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.playgroup-btn {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.enquire {
    background-color:white;
    color:black;
    border-radius:20px;
    font-weight:600;
    font-size:25px;
}

.book {
    background-color:#6EA6B1;
    color: white;
    border:2px solid black;
    border-radius:20px;
     font-weight:600;
    font-size:25px;
}

.playgroup-btn:hover {
    opacity: 0.8;
}
@media (max-width: 767px) {

  /* ===== PLAYGROUP SECTION ===== */

  .playgroup-program-container {
  flex-direction: column;
  gap: 20px;
  padding: 0 ;
  }

  .playgroup-left,
  .playgroup-right {
    max-width: 100%;
    width: 100%;
  }
   .play-role2{
     border-radius: 0 80px 80px 0;
   }
  /* Heading pill */
  .play-role3 {
    font-size: 26px;
    padding: 10px 24px;
    width: auto;
    border-radius: 0 30px 30px 0;
  }
    .play-role2 {
    font-size: 26px;
    padding: 10px 24px;
    width: auto;
    border-radius: 0 30px 30px 0;
  }
  .play-role{
    font-size: 16px;
    padding: 10px 24px;
    width: auto;
    border-radius: 0 50px 50px 0;
  }
  .playgroup-left h1{
    font-size:1.9rem;
  }
  .play-role4 {
    font-size: 26px;
    padding: 10px 24px;
    width: auto;
    margin-top:40px;
    border-radius: 0 30px 30px 0;
  }
  .joyfull {
    font-size: 16px;
    padding: 10px 0;
  }

  /* Text cleanup */
  .playgroup-left p,
  .playgroup-left h2,
  .playgroup-left ul {
    padding-left: 0;
    font-size: 14px;
  }

  .playgroup-program-overview p {
    font-size: 14px;
  }

  .playgroup-left h2,
  .playgroup-right h2 {
    font-size: 18px;
  }

  .playgroup-left h3,
  .playgroup-right h3 {
    font-size: 16px;
  }

  ul {
    font-size: 8px;
    
  }

  /* Right card */
  .back-play {
    width: 90% !important;     /* 🔑 override 72% */
    max-width: 340px;          /* perfect card width */
    margin: 0 auto !important; /* 🔑 force centering */
    padding: 16px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .play-img {
    width: 100%;
    height: auto;
  }

  /* Buttons */
  .playgroup-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .playgroup-btn {
    width: 100%;
    font-size: 16px;
    padding: 12px;
  }
@media (max-width: 768px) {
  .playgroup-left {
    padding-left: 0;
  }
}
@media (max-width: 768px) {

  /* Keep heading stuck to left */
  .play-role3 {
    margin-left: 0;
  }
   .play-role2 {
    margin-left: 0;
  }

  /* Apply padding to rest of the content */
  .playgroup-left > :not(.play-role3) {
    padding-left: 20px;
  }
}

  /* ===== CURRICULUM SECTION ===== */

  /* .custom-curriculum-highlights {
    padding: 20px 16px;
    width: 100%;
  } */

  .custom-curriculum-container {
    display:flex;
    flex-direction:column;
    gap:14px;
    width:100%;
  }

  .custom-curriculum-left,
  .custom-curriculum-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
 .custom-text {
    width: 100%;
  }
  .custom-curriculum-heading {
    font-size: 22px;
  }

  .custom-curriculum-description {
    font-size: 14px;
  }

  .custom-subheading {
    font-size: 16px;
  }

  .custom-list {
    font-size: 14px;
  }
  .playgroup-left h1{
    padding:10px 10px;
  }
  .custom-highlight {
    margin-bottom: 18px;
  }
  .custom-curriculum-left, .custom-curriculum-right{
    max-width:100%;
  }
  .custom-curriculum-highlights{
    padding-left:0;
  }
}


.back-play{
   background-color:#6EA6B1;
   width:72%;
   padding:30px;
   border-radius:20px;
}
.play-img{
  width:98%;
}


/* Custom styles for Curriculum Highlights */
.custom-curriculum-highlights {
    padding: 0px 40px;
    background-color: #ffffff;
}

.custom-curriculum-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align children to the left */
    gap: 30px;
}

.custom-curriculum-left, .custom-curriculum-right {
    width: 100%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content inside left and right containers */
}
.custom-curriculum-right{
  margin-top:150px;
}
.custom-curriculum-heading {
    font-size: 2.5rem;
    color:black;
    margin-bottom: 20px;
    text-decoration:underline;
}

.custom-subheading {
    font-size: 1.6rem;
    margin: 10px 0;
    color:black;
    font-weight:600;
}

.custom-curriculum-description {
    font-size: 1.3rem;
    line-height: 1.5;
    color:black;
}

.custom-list {
    /* list-style-type: none; */
    margin-top: 10px;
    font-size: 1.4rem;
    color:black;
}

.custom-list li {
    margin: 5px 0;
}

.custom-icon {
    font-size: 2rem;
    margin-right: 10px;
    color: #4d90d1;
}

.custom-highlight {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; /* Align items to the left */
    margin-bottom: 30px;
    margin-bottom: 30px;
}

.custom-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
}
@media (min-width: 768px) and (max-width: 1023px) {

  /* ===== PLAYGROUP ===== */

  .playgroup-program-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 30px;
  }

  .playgroup-left,
  .playgroup-right {
    max-width: 100%;
  }
  .playgroup-right {
    display: flex;
    justify-content: center !important;   /* 🔑 horizontal center */
    width: 100%;
  }
  .play-role3 {
    font-size: 38px;
    width: auto;
    padding: 12px 40px;
  }

  .joyfull {
    font-size: 20px;
  }

  .playgroup-left p,
  .playgroup-left ul {
    font-size: 16px;
    padding-left: 0;
  }

  .back-play {
    width: 90%;               /* responsive width */
    max-width: 340px;         /* keeps card neat */
    margin: 0 auto;           /* 🔑 center fallback */
    padding: 16px;
    border-radius: 16px;
    display:flex;
    justify-content:center;
   }
   .back-play > div {
    display: flex;
    justify-content: center;
  }
  /* .back-play img,
  .play-img {
    width:100px;
    height: 100px;
    
    object-fit: contain;
  } */
 .play-img {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
  .playgroup-buttons {
    justify-content: flex-start;
    gap: 16px;
  }

  /* ===== CURRICULUM ===== */

  .custom-curriculum-container {
    flex-direction:row;
    gap: 10px;
  }

  .custom-curriculum-left,
  .custom-curriculum-right {
    max-width: 100%;
    margin-top: 0;
  }

  .custom-curriculum-heading {
    font-size: 26px;
  }

  .custom-subheading {
    font-size: 18px;
  }

  .custom-list {
    font-size: 16px;
  }
}


/* Custom styling for the accordion */
.accordian1{
  padding-top:50px;
}
.accordion-button {
  background-color: transparent; /* ❌ remove separate box */
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  padding: 28px 32px;
  border-radius:24px;
  box-shadow: none;
}
.accordion-button:focus {
    background-color:  #0099FF; /* Keep the same color when expanded */
    color:white;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ffffff;
}
/* 🔥 REMOVE BOOTSTRAP DEFAULT ICON COMPLETELY */
.accordion-button::after {
  background-image: none !important;
  filter: none !important;
}

.accordion-button:focus {
  box-shadow: none; /* Remove default focus shadow */
}


.accordion-button::before {
  display: none;
}

.accordion-body {
  background-color: transparent; /* ❌ remove second blue box */
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
  padding: 0 32px 28px 32px;
  border-radius:24px;
  box-shadow: none;
}

.accordion-item {
  background-color: #0099FF;
  border-radius:32px;
  overflow: hidden; /* IMPORTANT: joins header + body */
  margin-bottom: 18px;
  border: none;
  color: white;
}

.accordion-header {
  padding: 0;
  margin: 0;
}

/* .accordion-button:after {
  content: '\f078'; 
  font-family: 'FontAwesome';
  background-color: #0099FF;
  font-weight: bold;
  font-size:25px;
  color:white;
  float: right;
  transition: transform 0.3s ease;
} */
 .accordion-button::after {
  content: "›";
  background: #ffffff;
  color: #0099FF;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  filter: none !important; /* 🔥 stops black hover */
}
/* 🔥 REMOVE ALL FOCUS / ACTIVE BORDERS */
.accordion-button:focus,
.accordion-button:focus-visible,
.accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:hover::after,
.accordion-button:focus::after {
  background: #ffffff;
  color: #0099FF;
  filter: none !important; /* 🔥 force white */
}

.accordion-button.collapsed::after {
  transform: rotate(0deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
.accordion-button {
  border-radius: 0 !important;   /* 🔑 prevents mismatch */
}

.accordion-body {
  border-radius: 0 !important;
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 32px;
}

/* Responsive styling */
@media (max-width: 767px) {
   .accordion-button {
    font-size: 18px;
    padding: 20px;
  }

  .accordion-body {
    font-size: 16px;
    padding: 0 20px 20px;
  }
  .faq-new{
  padding-top:0 !important;
}
}
.faq-new{
  padding-top:150px;
}

/* ============nursery page ============== */
.nursery-page .back-play {
    background-color:#FFEB3B; /* Custom color for nursery page */
    color:black;
}
.nursery-page.playgroup-left h1{
  background-color:#FFEB3B;
  color:black !important;
}

/* ============daycare=================== */
.daycare-banner {
    position: relative;
    background: #0a9cff; /* Blue background for the banner */
    height: 100vh; /* Full height for the section */
    padding-top: 60px; /* Padding to make space for the fixed navbar */
    z-index: 1;
}
.daycare-content {
    padding: 20px 0;
}
.daycare-content .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.daycare-content h1 {
    font-size: 96px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}
.daycare-content p {
    font-size: 28px;
    color: white;
     font-weight:semi-bold;
     font-weight:600;
}
/* Image Styling */
.hero-img {
    max-width: 100%;
    height: auto;
    margin-top:40px;
}
@media (max-width: 768px) {
      /* SECTION */
  .daycare-banner {
    padding-top: 85px;
    background: #0a9cff;
    overflow: hidden;
    height:40vh;

  }

  /* CONTENT WRAPPER */
  .daycare-content {
    position: relative;
    z-index: 5;
    padding-bottom: 0;
  }

  /* .daycare-content .container {
    display: block;               
    position: relative;
  } */
  /* FORCE SAME ROW */
  .daycare-content .row {
    display: flex;
    align-items: center;       /* 🔑 same line */
    justify-content: space-between;
  }
  /* TEXT COLUMN */
   .daycare-content .col-md-6:first-child {
   width: 60%;
  }

 .daycare-content h1 {
    font-size: 42px;
    margin-bottom: 6px;
  }

  .daycare-content p {
    font-size: 15px;
    line-height: 1.4;
  }

  /* IMAGE COLUMN */
  /* REMOVE IMAGE COLUMN COMPLETELY */
  .daycare-content .col-md-6:last-child {
    display: none;
  }

  .hero-img {
    width:100%;
    height:150px;
    margin: 0;
    display:none;
  }
  /* WAVE IMAGE */
  /* .hero-wave {
    position: relative;
    display: block;
    width:100%;
    margin-top: -40px;       
    z-index:3;
    border: none;
  } */

  /* REMOVE BLUE LINE ABOVE WAVE */
  .hero-wave {
    background: none;
  }

  /* img.hero-wave {
    display: block;        
  } */
 
}
@media (max-width: 768px) {

  .hero-wave {
    content: url("/Images/course-page-mobile2.png");
    width:100%;
    max-width:100%;
    margin-left: auto;
    margin-top:-190px;
    display: block;
    position: relative;
    z-index: 4;
   }

}
.daycare-page .back-play {
    background-color:#F39F5F; /* Custom color for nursery page */
    color:black;
}
.activity-page .back-play {
    background-color:#0a9cff; /* Custom color for nursery page */
    color:white;
}
.enquire-day{
    background-color:black;
    color:white;
    border-radius:20px;
    font-weight:600;
    font-size:25px;
}
.enquire-activity{
  background-color:white;
    color:black;
    border-radius:20px;
    font-weight:600;
    font-size:25px;
}
.book-activity{
   background-color:#0a9cff;
    color:white;
    border:2px solid black;
    border-radius:20px;
     font-weight:600;
    font-size:25px;
}
.book-day{
   background-color:#F39F5F;
    color:black;
    border:2px solid black;
    border-radius:20px;
     font-weight:600;
    font-size:25px;
}
/* ============activity-banner=========== */
.activity-banner{
   position: relative;
    background: #0a9cff; /* Blue background for the banner */
    height:100vh !important; /* Full height for the section */
    padding-top: 60px; /* Padding to make space for the fixed navbar */
    z-index:1;
}
.course-page-banner{
  background-color:#0a9cff ;
}
/* Banner Section */
.admission-banner {
    position: relative;
    background-color: #0a9cff ;  /* Matching the background color */
    color: black;
    padding: 0 0;
}

.admission-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
   padding: 0 0 0 50px;  /* top right bottom left */
    
} 

.admission-left {
    flex: 1;
}

.admission-left h1 {
    font-size: 120px;
    font-weight: bold;
    line-height: 1.2;
}

.admission-left span {
    color: #F39F5F;  /* Orange color for the span */
}

.admission-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.admission-right img {
    width: 100%;
    height:auto;
    margin-top:200px;
}

/* Responsive Design */
/* MOBILE LAYOUT */
@media (max-width: 768px) {
    .admission-content {
        flex-direction: column;
        display:flex;
        justify-content:center;
        align-items:center;
        text-align: center;  /* Center the content */
        padding: 0 0;  /* Added padding for smaller screen spacing */
    }
  .activity-banner{
   position: relative;
    background: #0a9cff; /* Blue background for the banner */
    height:37vh !important; /* Full height for the section */
    padding-top: 60px; /* Padding to make space for the fixed navbar */
    z-index:1;
    overflow:hidden;
}
    .admission-left {
        margin-bottom: 20px;  /* Space below the title */
    }

    .admission-left h1 {
        font-size: 60px;  /* Adjusting for mobile */
        padding-top:200px;
    }

    .admission-right img {
        width: 80%;  /* Adjust image width */
        margin-top:0;  /* Adjust image margin */
    }
   
} 
/* Progress bar container */
.progress-container {
    padding: 50px 10px 50px 10px;  /* top right bottom left */
    max-width: 100%;
    display: flex;
    justify-content: center; /* Centers the progress bar horizontally */
}

/* Progress List */
.progress-list {
    display: flex;
    justify-content:space-between;
    list-style: none;
    padding:0;
    margin:0;
    align-items:center;
    gap:160px;
}

.progress-item {
    position: relative;
    text-align: center;
    display:flex;
    gap:15px;
}

.step-number {
    width: 30px;
    height: 30px;
    padding:30px;
    border-radius: 50%;
    background-color: #737373;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-text {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    color:black;
    font-weight:500;
}

/* Active Step Styles */
.progress-item.active .step-number {
    background-color: #007bff; /* Blue color for active step */
}

/* Connecting Line Styles */
.progress-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background-color: #ccc;
    transform: translateY(-50%);
}

.progress-item:last-child::after {
    display: none; /* No line after the last item */
}

/* Active line */
.progress-item.active::after {
    background-color: #007bff; /* Blue line for active step */
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-list {
        flex-direction: column;
        align-items: center;
        gap:15px;
    }

    .progress-item::after {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .step-number {
        margin-bottom: 10px;
    }

    .step-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .step-text {
        font-size: 10px;
    }
    .form-container{
      padding-bottom:40px !important;
    }

  
}


/* Child Information Form Styles */
/* #child-information-form {
    font-family: 'Roboto', sans-serif;
} */

/* Form Container */
/* General Styles */
#child-information-form .form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;

}

/* Form Box */
#child-information-form .form-box {
    background-color: #00B0F0;
    padding: 30px;
    border-radius:20px;
    width: 100%;
    max-width: 700px;
    box-shadow: 10px 14px 18px rgba(0, 0, 0, 0.8); /* Your custom shadow */
    color:white;
    margin: 0 auto; /* Auto margin for centering */
}

/* Heading */
#child-information-form h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

#child-information-form p {
    font-size: 20px;
    margin-bottom: 20px;
    color: black;
}

/* Form Field */
#child-information-form .form-field {
    margin-bottom: 15px;
    color: black;
    font-weight: 500;
}
#child-information-form .form-field1 {
    margin-bottom: 15px;
    color: black;
    font-weight: 500;
    width:300px;
}

#child-information-form label {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

/* Styling for input fields and select */
#child-information-form input,
#child-information-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background-color: #D9D9D9;
    color: black;
}

#child-information-form select {
    width: 300px; /* Adjust select to fit better on mobile */
    padding: 10px;
    font-size: 14px;
    border-radius:20px;
    border: 1px solid #ddd;
    background-color: #D9D9D9;
    color: black;
}

#child-information-form textarea {
    resize: vertical;
    height: 100px;
}

/* Flexbox for form fields */
#child-information-form .d-flex {
    display: flex;
    gap: 20px; /* Adds space between columns */
}

#child-information-form .gap-5 {
    gap: 20px; /* Adjusts gap between form fields */
}

/* Submit Button */
#child-information-form .submit-btn {
    background-color: #D9D9D9;
    color:black;
    font-weight:600;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#child-information-form .submit-btn:hover {
    background-color: #0056b3;
    color:white;
}

/* Responsive Design */
@media (max-width: 768px) {
    #child-information-form .form-box {
        padding: 20px;
        max-width: 90%;
    }

    #child-information-form h1 {
        font-size: 22px;
    }

    #child-information-form .submit-btn {
        width: 100%;
    }

    /* Adjust columns for smaller screens */
    #child-information-form .d-flex {
        flex-direction: column;
    }
}
.form-container{
  padding-bottom:300px;
}
/* ===== SECTION ===== */
.get-in-touch {
 width: 100%;
  background: #fff;
  overflow-x: hidden; /* important */
  padding: 80px 0;   /* 👈 THIS creates top & bottom gap */
}

.git-wrapper {
  display: flex;
  width: 100%;
  align-items: center !important; /* 👈 prevents full height stretch */
  justify-content:center !important;
}

/* ===== LEFT ===== */
/* LEFT SIDE */
.git-left {
  width: 50%;
  max-width: 600px;
  margin-left: auto;   /* centers left content */
  padding: 80px 40px 80px 20px;
  gap:20;
}
.git-left h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}

.git-left p {
  font-size:20px;
  color:black;
  margin-bottom:30px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #222;
  align-items: flex-start; 
}
.contact-item span{
  font-size:22px;
  font-weight:500; 
}


.contact-item .icon {
  font-size: 18px;
}

/* ===== RIGHT ===== */
.git-right {
  width: 50%;
  background: #ffef3f;
  padding:30px;
  border-radius: 300px 0 0 300px;
  margin-top: 30px;
  margin-bottom: 20px;
/* THIS makes it stick to extreme right */
  margin-right: calc(-1 * (100vw - 100%));
   align-self:stretch;
}
.icon {
  height: 50px;
  width: 50px;
  min-width: 50px;   
  border-radius: 50%;
  background-color: gray;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;  
  padding:30px;  
}

.git-right form {
  display: flex;
  flex-direction: column;
  gap:10px;
  margin-left:150px;
  margin-top:50px;
}

.git-right label {
  font-weight: 600;
  font-size: 14px;
}

.git-right input,
.git-right textarea {
  width: 90%;
  padding: 14px 10px;
  border-radius: 40px;
  border: none;
  outline: none;
  background: #7b6f1c;
  color: #fff;
  font-size:14px;
}
.icon img{
  height:30px;
}

.git-right textarea {
  border-radius: 25px;
  resize: none;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
  margin-top: 20px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #00aaff;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn .arrow {
  background: #fff;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
   .git-wrapper {
    flex-direction: column;
  }

   .git-right form {
     margin: 0 auto;             /* ✅ CENTER FORM */
    width: 100%;
    max-width: 360px;           /* keeps it neat */
    display:flex;
    flex-direction: column;
    align-items:start;        /* ✅ CENTER CONTENT */
    gap: 14px;
}
  .git-left {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 40px 20px;
  }

  .git-right {
    width: 90%;
    margin: 30px auto;          /* ✅ CENTER THE CARD */
    padding: 40px 25px;
    border-radius: 40px;
    align-self:center;
  }
 .git-right {
    margin-right:20px !important;
  }
 
}

@media (max-width: 576px) {
  .git-left h1 {
    font-size: 40px;
  }

 
}
.contact-ussss{
  font-size:80px;
  font-weight:600;
  padding:40px;
  margin-top:150px;
}
.contact-ussss span{
  color: #F39F5F;
}
/* ===== SECTION ===== */
.cloudy {
  /* background: #0aa1ff; */
  padding: 197px 0;
  background-image:url("/Images/bg-cloud.png");
  background-position:center;
}

/* spacing fix */
.cloudy-row {
  row-gap: 25px;
}

/* ===== CARD ===== */
.cloud-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 20px;
  position: relative;
  text-align:start;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* orange corner */
.corner-img {
  position: absolute;
  top: 0;
  right: 0;
  width:90px;
  background-size:cover;
}

/* ===== ICON ===== */
.icon2 {
  width: 75px;
  height: 75px;
  background: #7a7a7a;
  border-radius:50%;
  display:flex;
  align-items: center;
  justify-content: center;
  margin-bottom:30px;
  padding:40px;
  /* margin: 0 auto 15px; */
}

.icon2 img {
  width: 36px;
  height: 36px;
}

/* ===== TEXT ===== */
.cloudy-text {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  font-weight:600;
}

.cloudy-text.bold {
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cloud-card {
    padding: 30px 20px;
  }
  .cloudy{
    background-color:#0099FF;
    background-image:none;
  }
}
/* ===== SECTION ===== */
.contact-message {
  padding: 80px 20px;
  background: #fff;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* ===== LEFT FORM ===== */
.contact-form {
  flex: 1;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  background: #cccccc;
  border: none;
  border-radius: 40px;
  padding: 14px 22px;
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  border-radius: 25px;
  resize: none;
}

.submit-btn {
  margin-top: 10px;
  width: 160px;
  background: #0aa1ff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  align-items:center;
  justify-content:center;
}

/* ===== DIVIDER ===== */
.divider {
  width: 3px;
  height: 420px;
  background: #000;
}

/* ===== RIGHT INFO ===== */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info h2 span {
  color: #f4a261;
}

/* ===== MAP ===== */
.map-box {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 15px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== SOCIAL ===== */
.follow-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 33px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    max-width:600px !important;
  }

  .divider {
    width: 100%;
    height: 2px;
  }

  .submit-btn {
    width: 80%;
  }
}
.FAQ{
  font-size:90px;
  font-weight:600;
  padding-bottom:0;
}
.faq2{
  padding-bottom:30px;
}

/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    background: rgba(12, 12, 12, 0.15);
    border: none;
    box-shadow: none;
    padding: 10px 0;
}
/* .dropdown-menu:hover{
   background: rgba(12, 12, 12, 0.15);
} */
.dropdown-menu .dropdown-item {
   
    color:black;
    padding: 0 18px;
}
/* .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 30px;
} */
/* .navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    color:black;
    transform: translateX(4px);
} */
.dropdown-menu {
    animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow icon */
.navbar-nav .nav-item .fa-chevron-down {
    display: none;
}

.nav-item.dropdown:hover .fa-chevron-down {
    display: inline-block;
}

/* Style for chevron */
.nav-item .fa-chevron-down {
    margin-left: 5px;
}


.dropdown-menu {
    display: none;
}

/* Optional: You can also change the hover background color */
.nav-item.dropdown:hover.nav-link {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius:30px;
}

/* admission form */
/* =========================
   ADMISSION FORM ONLY
========================= */

/* STEP VISIBILITY */
.admission-steps .form-container {
  display: none;
  justify-content: center;
  padding: 40px 15px;
}

.admission-steps .form-container.active {
  display: flex;
}

/* FORM CARD */
.admission-steps .form-box {
  background: #1296f3;
  padding: 40px;
  width: 100%;
  max-width: 620px;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* HEADINGS */
.admission-steps .form-box h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.admission-steps .form-box p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* FORM GRID */
.admission-steps form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ROW SYSTEM (SAFE) */
.admission-steps .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* INPUTS */
.admission-steps input,
.admission-steps select,
.admission-steps textarea {
  background: #ffffff;
  border: none;
  border-radius: 28px;
  padding: 14px 18px;
  font-size: 14px;
  outline: none;
}

/* FULL WIDTH */
.admission-steps .full {
  width: 100%;
}

/* TEXTAREA */
.admission-steps textarea {
  min-height: 90px;
  resize: none;
  border-radius: 20px;
}

/* FIELD WRAPPER */
.admission-steps .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admission-steps .field label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* BUTTON */
.admission-steps .submit-btn {
  align-self: flex-end;
  margin-top: 10px;
  background: #e6e6e6;
  color: #000;
  padding: 12px 26px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admission-steps .submit-btn:hover {
  background: #eaf6ff;
}

/* PROGRESS FIX */
.admission-steps .progress-item.active .step-number {
  background: #1296f3;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .admission-steps .form-box {
    padding: 30px 22px;
  }

  .admission-steps .row {
    grid-template-columns: 1fr;
  }

  .admission-steps .form-box h1 {
    font-size: 26px;
  }
}
/* mobile view home page  */
@media (max-width: 768px) {

  /* HERO ICON COMMON */
  .hero-icon {
    width: 60px;
    height: auto;
    opacity: 0.9;
    z-index: 3;
  }

  /* ROCKET (LEFT ICON) */
  .left-icon {
    left: 12px;
    top: 135px;
  }

  /* RAINBOW (RIGHT ICON) */
  .right-icon {
    right: 12px;
    top: 90px;
  }
}
@media (max-width: 768px) {
  br {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar-brand img {
    height:50px;   /* adjust as needed */
    width: auto;
  }
}
@media (max-width: 768px) {

  .navbar-brand {
    margin-bottom: 4px;
  }

  .navbar-collapse {
    margin-top: 6px;
  }

}

@media (max-width: 768px) {
  .earth-img {
    width: 90px;
    height: auto;      /* keep aspect ratio */
    top: -15px;
    right: -20px;
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    gap:10px;
  }

  .hero-buttons a {
    width: auto;
    min-width: 140px;
    padding: 10px 18px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-bottom: 20px; /* pushes blue down */
  }

  .curve-bottom {
    height:140px;
  }
}
@media (max-width: 768px) {

  /* Ensure kids section positioning context */
  .kids-section {
    position: relative;
   overflow: visible; /* keeps layout clean */
  }

  /* STAR IMAGE (LEFT) */


  /* PAINT IMAGE (RIGHT) */
  /* .paint {
    width: 45px;
    right: 16px;
    top:-50px;             
    margin-top: 0;
    z-index: 5;
  } */
}
@media (max-width: 768px) {

  .image-teacher-wrapper {
    min-height: 30vh;      /* required for animation */
    overflow: hidden;      /* required for slide */
  }

  .image-section {
    display: flex;
    align-items: flex-start;  /* 🔑 remove vertical centering */
    justify-content: center;
    padding-top: 0;
  }

  .image-section img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

}
@media (max-width: 768px) {

   .teacher-row {
    flex-direction: row !important;   /* 🔑 FORCE ROW */
    align-items: center;
  }

  .teacher-image,
  .teacher-text {
    width: 50%;
    max-width: 50%;
  }

  .teacher-img {
    width: 100%;
    height: auto;
  }

  .teacher-text {
    padding-top: 0;
    padding-left: 12px;
  }

  .teacher-title {
    font-size: 36px;
  }

  .teacher-subtitle {
    font-size: 16px;
  }

  .teacher-description {
    font-size: 12px;
    line-height: 1.3;
  }


}
/* WAVES DEFAULT OFF */
.wave {
  display: none;
}
/* Hide mobile image on desktop */
.mobile-pillars-img {
  display: none;
}
@media (max-width: 768px) {

  
  .new-section .content-wrap {
    display: none;
  }

  /* Show image instead */
  .mobile-pillars-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* Remove blue background & waves if any */
  .new-section {
    background: none !important;
    padding: 0 !important;
  }
  .new-section {
    display: none !important;   /* 🔑 THIS IS THE FIX */
  }
  /* Hide waves on mobile */
  .new-section .wave {
    display: none !important;
  }

}

/* @media (max-width: 768px) {

  .new-section {
    position: relative;
    background-color: #149BFF;
    background-image: none;
    padding-top:120px;    
    padding-bottom: 120px;  
    overflow: visible;
  }
  

  
  .wave {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-70%);
     transform: translateY(-80%);
    width: 100vw;          
    height: 90px;
    z-index: 2;
    pointer-events: none;
  }
  
  .wave-top {
    top: 0;
    transform: translate(-50%, -190%); 
     margin-top:-50px;
    margin-left:-10px;
    margin-right:-30px; 
  }

  
  .wave-bottom {
    bottom: 0;
    transform: translate(-50%, 100%);  
    margin-bottom:-120px;
    margin-left:-10px;
    margin-right:30px;
  }
    
  .content-wrap {
    position: relative;
    z-index: 1;
  }



  .new-section * {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
  }

  .heading-main {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .heading-main span {
    font-size: 38px;
  }

  .new-text1,
  .new-text,
  .spirit {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }

  .spirituality {
    flex-direction: column;
    gap: 20px;
  }

} */

@media (max-width: 768px) {
  .play-ground {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:30px;              
    padding:20px 16px;
    height:auto;
    overflow:hidden;
  }

  /* Card size and shape */
  .program-card {
    width: 100%;
    height: 380px;           /* Keep the height consistent */
    max-width: 320px;        /* Ensure cards stay within width */
    border-radius: 52% 48% 56% 44% / 42% 52% 48% 58%; /* Keep the shape */
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
 
  }

  /* Image size inside the card */
  .program-img img {
    height: 180px;
    object-fit: contain;
  }

  /* Title and text scaling */
  .program-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .program-content p {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    padding: 0 10px;
  }

  /* Arrow button size and position */
  .arrow-btn,
  .arrow-btn2,
  .arrow-btn3,
  .arrow-btn4 {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: -18px;
  }
}
@media (max-width: 768px) {

  /* Container and Centering */
  .program-wrapper {
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    gap: 16px;                  /* Space between elements */
    padding: 20px;
    text-align: center;         /* Center all text */
  }

  /* Hearts images adjustment */
  .heart-img {
    width: 30%;                 /* Adjust hearts width */
    max-width: 160px;           /* Limit heart size */
    margin-top: 16px;
  }

  /* "Our Programs" Title */
  .program {
    background-color: #F39F5F;
    color: #000;
    padding: 15px 24px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
  }

}
@media (max-width: 768px) {
  /* Position the star inside the blue section */
  .star-1 {
    position: absolute;
    top: -120px;        /* 🔑 pull into blue section */
    left: 12%;
    width: 40px;
    z-index: 20;        /* above hero curve */
    opacity: 1;
    animation: float 4s ease-in-out infinite;
  }

  /* Position the paint inside the blue section */
  .paint {
    position: absolute;
    top: -140px;        /* 🔑 pull higher than ovals */
    right: 12%;
    width: 60px;
    z-index: 20;
    opacity: 1;
    animation: float 4s ease-in-out infinite;
  }

  /* Floating animation for both images */
  .star-1,
  .paint {
    animation: float 4s ease-in-out infinite;
  }
.star-1,
.paint {
  pointer-events: none;
}
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
}
@media (max-width: 768px) {
  .camp-section {
    padding-left: 20px !important;   /* 🔥 THIS FIXES IT */
    margin: 0 !important;
  }
   .camp-icons .bus-wrapper{
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
   }
    .bus-img {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .camp-icons {
    gap: 6px;   /* or even 4px */
  }
}
/* ================= FINAL MOBILE FIX – CURRICULUM ================= */
@media (max-width: 767px) {

  /* HARD RESET */
  .custom-curriculum-highlights {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 20px 16px !important;
    margin: 0 !important;
    overflow-x: hidden;
  }

  .custom-curriculum-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .custom-curriculum-left,
  .custom-curriculum-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* REMOVE DESKTOP OFFSET */
  .custom-curriculum-right {
    margin-top: 0 !important;
  }

  /* EACH BLOCK FULL WIDTH */
  .custom-highlight {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
  }

  .custom-text,
  .custom-list {
    width: 100% !important;
  }

  /* TYPO FIX */
  .custom-curriculum-heading {
    font-size: 22px;
    line-height: 1.2;
  }

  .custom-curriculum-description {
    font-size: 14px;
  }

  .custom-subheading {
    font-size: 16px;
  }

  .custom-list li {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* Layout for link + arrow */
.nav-item-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 6px 0;
}

/* Arrow styling */
/* .mobile-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 13px;
  padding: 4px 6px;

} */
/* Always hide by default */
/* .mobile-menu {
  display: none ;
}
.mobile-menu.show {
  display: block;
} */
/* ================= MOBILE NAVBAR FIX ================= */
@media (max-width: 991px) {

  /* Make nav items compact */
  .navbar-nav {
    padding-top:8px;
  }

  .navbar-nav .nav-item {
    margin-bottom:0;
  }
    .nav-item.dropdown > a {
    pointer-events: auto; 
  }

  .nav-item.dropdown {
    pointer-events: auto;
  }
    /* ✅ THIS LINE GOES HERE */
  .mobile-dropdown.open > .mobile-menu {
    display: block;
  }

}
/* ================= MOBILE DROPDOWN ================= */
@media (max-width: 991px) {
  .nav-item {
    position: relative;
  }

  .nav-item-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-arrow {
     background: transparent !important;
    border: none !important;
    width:26px;
    height:26px;
     display: inline-flex !important;
    align-items: center;
    justify-content: center;
    
  }

  .mobile-arrow i {
   font-size: 14px;
    color: #000 !important;   /* 🔥 FORCE BLACK */
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

   .mobile-menu {
    position: absolute;
    top: 100%;
    left:0;
    width:40%;
    margin-left:50px;
    background: rgba(255,255,255,0.95);
    border-radius:12px;
    padding: 8px 0;
    z-index: 99999;
  }

  /* Disable hover dropdown on mobile */
  /* .nav-item.dropdown:hover > .dropdown-menu {
    display: none !important;
  } */
}
/* @media (max-width: 991px) {
  .hero-section * {
    z-index: 1;
  }

  .navbar {
    position: relative;
    z-index: 100000;
  }
} */

/* ================= DESKTOP (UNCHANGED) ================= */
@media (min-width: 992px) {
  
 /* Hide mobile arrow */
  .mobile-arrow {
    display: none !important;
  }

  /* Desktop dropdown base */
  .dropdown-menu {
    position: absolute;
    display: none;
    z-index: 1000;
  }

  /* Hover open */
  .nav-item:hover > .dropdown-menu {
    display: block;
  }

}

