.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {

    font-size: 32px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.section-title p {

    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.nursery-highlight {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.nursery-highlight h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a73e8;
}

.nursery-highlight p {
    text-align: justify;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
}

.nursery-highlight ul {
    list-style-type: disc;
    padding-left: 20px;
}

.nursery-highlight ul li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.why-us-box {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-us-box:hover {
    transform: translateY(-5px);
}

.why-us-box .icon {
    font-size: 30px;
    margin-right: 15px;
}

.why-us-box h4 {
    margin-bottom: 5px;
    color: #1a73e8;
}

.why-us-box p {
    color: #555;
    margin: 0;
}

@media (max-width: 991px) {
  
    .section-title h2 {
        font-size: 28px;
    }
    .enroll-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 767px) {
    .why-us-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .why-us-box .icon {
        margin-bottom: 10px;
    }
}

.nursery-highlight {
    background: #9CF;
    padding: 30px 42px;
    border-radius: 15px;
    margin: -10px auto;
    max-width: 1000px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nursery-highlight h2 {
    text-align: center;
    color: #f57c00;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.nursery-highlight p {
    text-align: center;
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.nursery-highlight ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.nursery-highlight ul li {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    font-weight: 500;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}
.nursery-highlight ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


section {
  padding: 64px 0;
}
/* ------------------------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #0056b3;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #004494;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: #0056b3;
  color: #0056b3;
  background-color: transparent;
}
.btn-outline:hover {
  background-color: #0056b3;
  color: #ffffff;
}

.btn-ghost {
  color: #0056b3;
}
.btn-ghost:hover {
  color: #004494;
  background-color: #f0f6ff;
}

.btn-primary-outline {
  border: 2px solid #0056b3;
  color: #0056b3;
  background-color: #ffffff;
}
.btn-primary-outline:hover {
  background-color: #0056b3;
  color: #ffffff;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

.card {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);;
  text-align: center;
}
.card h3, .card h4 {
  margin-top: 0;
}

.content-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);;
}

.hero-split {
  background-color: #ffffff;
  padding: 64px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.kicker {
  display: block;
 
  color: #0056b3;
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-features {
  list-style: none;
  padding: 0;
}
.hero-features li {
  position: relative;
  padding-left: 25px;
}
.hero-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #0056b3;
}

.hero-image-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);;
}
.img-caption {
  padding: 16px;
  background: #104765;
  color: #ffffff;
  text-align: center;
  margin: 0;
  position: relative;
  margin-top: -4px;
}

.quick-highlights {
  background-color: #f8f9fa;
}
.quick-highlights .card {
  border-top: 4px solid #0056b3;
}

.facility-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.facility-table th, .facility-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}
.facility-table th {
  background-color: #f0f6ff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);;
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.05);
}
.gallery-grid figcaption {
  padding: 8px 16px;
  background-color: #9CC;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial {
  background-color: #f0f6ff;
  padding: 40px;
  border-left: 5px solid #0056b3;
  border-radius: 0 8px 8px 0;
}
.testimonial strong {
  
  color: var(--color-text);
  display: block;
  margin-bottom: 8px;
}
.testimonial p {
  font-style: italic;
  margin: 0;
}

.admission-cta {
  background-color: #0056b3;
  color: #ffffff;
}
.admission-cta .cta-card {
  background-color: transparent;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.admission-cta h3 {
  color: #ffffff;
  margin-bottom: 8px;
}
.admission-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}
.admission-cta .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.admission-cta .btn-outline:hover {
  background-color: #ffffff;
  color: #0056b3;
}

.faq-item {
  border-bottom: 1px solid #dee2e6;
  padding: 16px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h4 {
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .hero-grid, .two-col, .grid-3, .testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 32px 0;
  }
  
  .hero-grid {
      text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }
  
  .hero-features {
      text-align: left;
  }

  .admission-cta .cta-card {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
}