.header {
    background-image: url('../assets/img/IMG_2468.jpeg');
    background-size: cover;
    background-position: bottom; /* Focus image at bottom */
    background-repeat: no-repeat;
    height: 85vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

  .header {
    position: relative;
    background-color: #002c6e;
    color: white;
  }

  .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(82, 80, 80, 0.5); /* Optional dark overlay */
    z-index: 1;
  }

  .header-content {
    z-index: 2;
    margin-top: 70px !important;
  }

  /*curve*/
  
/* Top curve: static block */
.curve-divider-top {
  line-height: 0;
  overflow: hidden;
}
.curve-divider-top svg {
  display: block;
  width: 100%;
  height: 150px;
}

/* Bottom curve: absolute*/
.curve-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}
.curve-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}


  /*leadership part*/

  .object-fit-cover {
    object-fit: cover;
    height: 100%;
  }
  
  

  /*mission*/
  
  .mission-section {
    background-color: #ffffff;
  }
  
  .mission-section h2 {
    color: #002c6e; /* deep navy */
  }
  
  .mission-divider {
    width: 60px;
    height: 4px;
    background-color: #f7c948; /* gold */
    border: none;
    border-radius: 2px;
  }
  
  .mission-section p {
    font-size: 1.1rem;
    color: #333333;
  }
  
  .mission-section .btn-primary {
    background-color: #002c6e;
    border: none;
    color: #ffffff;
  }

  .program-img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-warning {
  background-color: #f7c948;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: background-color 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0b53c;
  color: #fff;
}

.text-navy {
  color: #002c6e;
}

.testimonial-slide {
  max-width: 700px;
}

.carousel-item blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #2c3e50;
}

@media (max-width: 767.98px) {
  .carousel-item blockquote {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .testimonial-slide {
    padding: 0 1rem;
  }
}