/* ==== Banner Section ==== */
.curriculum-banner {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 70, 0.7); 
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

/* ==== Text Styling ==== */
.banner-content h1 {
  font-size: 64px;
  font-weight: 300;
  margin-bottom: 15px;
  opacity: 0;
}

.banner-content p {
  font-size: 25px;
  color: #ffb400;
  font-weight: 500;
  margin-bottom: 25px;
  opacity: 0;
}

.breadcrumb {
  font-size: 16px;
  opacity: 0;
}

.breadcrumb a {
  color: #ffb400;
  text-decoration: none;
  font-weight: 500;
  font-size: 25px;
}

.breadcrumb span {
  color: #fff;
  margin: 0 5px;
   font-weight: 500;
  font-size: 25px;
}

/* ==== Animation ==== */
@keyframes slideUp {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-up {
  animation: slideUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.8s;
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
  .banner-content h1 {
    font-size: 48px;
  }

  .banner-content p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .curriculum-banner {
    height: 60vh;
  }

  .banner-content h1 {
    font-size: 34px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

/* ==== Curriculum Content Section ==== */
.curriculum-content {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #1d1d4f;
  line-height: 1.8;
  overflow: hidden;
}

.curriculum-content .container {
  max-width: 1100px;
  margin: 0 auto;
}

.curriculum-content .intro {
  font-size: 17px;
  margin-bottom: 20px;
  opacity: 0;
}

/* ==== List Styling ==== */
.curriculum-list {
  list-style: disc;
  padding-left: 40px;
}

.curriculum-list li {
  font-size: 17px;
  margin-bottom: 15px;
  font-weight: 500;
  opacity: 0;
}

.curriculum-list li b {
  color: #10105a;
}

/* ==== Animation ==== */
@keyframes fadeUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-up {
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.5s; }
.delay-6 { animation-delay: 1.8s; }
.delay-7 { animation-delay: 2.1s; }
.delay-8 { animation-delay: 2.4s; }
.delay-9 { animation-delay: 2.7s; }

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .curriculum-content {
    padding: 60px 15px;
  }

  .curriculum-content .intro,
  .curriculum-list li {
    font-size: 16px;
  }
}

/* ====== Approaches Section ====== */
.approach-section {
  position: relative;
  background: url('assets/img/About-us/bg-counter.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.approach-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 70, 255, 0.75); 
  z-index: 1;
}
.approach-section-two .overlay {
  background:#e4af00 ; 
  opacity: 0.85;
}
.approach-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

/* ==== Left Text ==== */
.approach-text-left h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ==== Right Text ==== */
.approach-text-right p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
  color: #fff;
}

/* ==== Animation ==== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.5s;
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
  .approach-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .approach-text-left h2 {
    font-size: 2.2rem;
  }

  .approach-text-right p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .approach-section {
    padding: 80px 15px;
  }
}


/* ==== Serve Your Child CTA (start) ==== */
.serve-child-cta{
  position: relative;
  isolation: isolate;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

.serve-child-cta__wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.serve-child-cta__title{
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.2px;
}

.serve-child-cta__btn {
  padding: 18px 28px;
  border-radius: 999px;
  background: #FFB000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.scroll-reveal.show .serve-child-cta__btn {
  animation: btn-blink .6s ease-in-out 0s 5;
}
.serve-child-cta__btn:hover{
    display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-radius: 999px;
  background: #e84c7f; 
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform .15s ease, box-shadow .2s ease;
  animation: btn-blink .6s ease-in-out 0s 5;
}
.serve-child-cta__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  animation: btn-blink .6s ease-in-out 0s 1;
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .9s ease-out, transform 1.1s ease-out;
}

.scroll-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes btn-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; filter: brightness(1.1); }
}

@media (prefers-reduced-motion: reduce){
  .serve-child-cta__btn{
    animation: none;
  }
}

@media (max-width: 768px){
  .serve-child-cta__wrap{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .serve-child-cta__btn{
    justify-self: start;
  }
}
