
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

  html {
  scroll-behavior: smooth;
  overflow-y: scroll;
} 

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
.services-banner {
  background: url('images/tt.png') no-repeat center center/cover;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  margin-top: 150px;
  width: 100%;
   z-index: -1;
   top:0;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for contrast */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay h2 {
  color: white;
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  z-index: 1;
  margin-top: 20px;
}


/* ✅ Responsive Media Queries */
@media (max-width: 992px) {
  .services-banner {
    height: 280px;
  }

  .banner-overlay h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .services-banner {
    height: 200px;
  }

  .banner-overlay h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .services-banner {
    margin-top: 100px;
    height: 200px;
  }

  .banner-overlay h2 {
    margin-top: 0px;
    font-size: 1.5rem;
  }
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  box-sizing: border-box;
  margin-top: 0px;
  color: white;
  z-index: 1;
  background-color: #fff;
  margin-top: 500px;
}

.service-box {
  flex: 0 0 calc(44% - 15px); /* 2 boxes per row, considering 30px gap */
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  
}

.service-box .image img {
  margin-top: 10px;
  width: 490px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 0px;
}

.service-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-box p {
  text-align: left;
  font-size: 15px;
}

.learning-modules {
  list-style-type: disc;
  text-align: left;
  
}

.learning-modules li {
  margin-bottom: 8px;
  font-size: 1rem;
}


/* Backgrounds - Dark Versions Inspired by Kindergarten Theme */
.blue-bg {
    background: #d23a5c;
}

.pink-bg {
  background: #16687f;  /* Dark violet-pink */
}

.yellow-bg {
    background: #ec2f00;
  /* background: #88c23e;   */
}

.purple-bg {
    background: #069435;
  /* background: #8e6ccf;   */
}
.purpler-bg{
   background: #398ecf;   
}
.purplerr-bg{
    background: #8b0e96;  
}
.purplerr-bgf{
  background: #860f51;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .service-box {
    flex: 0 0 calc(43% - 15px); /* 2 per row on tablet */
  }
}

@media (max-width: 768px) {
  .service-box {
    flex: 0 0 80%; /* 1 per row on mobile */
  }
  .services-row {
  margin-top: 300px;
}
}
@media (max-width: 480px) {
 .service-box {
  flex: 0 0 100%; /* Full width - one per row */
  
}
.service-box .image img {
  width: 350px;
  height: 140px;
}
}



