.overlay {
  background: rgba(0, 0, 0, 0.5);
}

.object-fit-cover {
  object-fit: contain;
  height: 100%;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}





/* Program Highlights */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
  gap: 25px;
}

.highlight-card {
    background: var(--light-gray);
    
    
    position: relative;
    overflow: hidden;
    cursor: pointer;
   
    border: 3px solid transparent;

    
  border-radius: 15px;
  padding: 20px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.highlight-card.outdoor {
    background: linear-gradient(135deg, #001027 0%, #E7C34F 100%);
   
}



.highlight-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(241, 240, 237);
}

.highlight-card p {
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

.program-highlights {
  /* padding: 30px; */
  text-align: center;
}

.program-highlights .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}


.programs-text{
  padding-top: 20px;
}


.highlight-card:hover {
  transform: translateY(-8px);
}


.hover-gallery {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 60%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    padding: 1rem;
    transition: bottom 0.4s ease;
     gap: 10px;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}




.hover-gallery img {
      width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
    border: 2px solid var(--white);
    opacity: 0;
    transform: translateY(20px);
}


.hover-gallery img:hover {
  transform: scale(1.1);
}


.highlight-card:hover .hover-gallery {
    bottom: 0;
}

.highlight-card:hover .hover-gallery img {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover .hover-gallery img:nth-child(1) {
    transition-delay: 0.1s;
}

.highlight-card:hover .hover-gallery img:nth-child(2) {
    transition-delay: 0.2s;
}

.highlight-card:hover .hover-gallery img:nth-child(3) {
    transition-delay: 0.3s;
}





/* Show gallery on hover */
.highlight-card:hover .hover-gallery {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}




.fade-seq {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-seq:nth-child(1) { animation-delay: 0.2s; }
.fade-seq:nth-child(2) { animation-delay: 0.4s; }
.fade-seq:nth-child(3) { animation-delay: 0.6s; }
.fade-seq:nth-child(4) { animation-delay: 0.8s; }
.fade-seq:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Call to Action */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgb(0, 16, 39) 0%, rgb(231, 195, 79) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
}

.cta-button {
    background: var(--white);
    color: var(--primary-teal);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0.3;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}





.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* make buttons smaller */
    top: 50%; /* vertically center */
    transform: translateY(-50%);
    z-index: 10; /* keep buttons above background but below text */
}


.outheight{
  height: 235px;
}