.carousel {
    margin-top: 70px;
    min-height: calc(100vh - 80px);
  }
  
  .carousel-item {
    height: calc(100vh - 100px);
  }
  
  .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    animation: zoomFade 15s ease-in-out infinite;
  }
  
  .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
  }

  .carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  }

  .carousel-fade .carousel-item.active {
    opacity: 1;
  }

  /* .carousel-control-next,
  .carousel-control-prev {
    filter: invert(100%);
    width: 5%;
  }

.carousel-indicators [data-bs-target] {
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  border: none;
  margin: 0 8px;
}

.carousel-indicators .active {
  background-color: #fff;
} */
  
  @media (max-width: 768px) {
    .carousel {
      margin-top: 80px;
      min-height: calc(100vh - 80px);
    }
    
    .carousel-item {
      height: calc(100vh - 80px);
    }
    
    .carousel-caption {
      padding: 1rem;
    }
  }

  /* Custom Styles */
.two-col-section {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
  }
  
  .image-gallery {
    position: relative;
    z-index: 1;
    padding: 4rem 0 !important;
  }
  
  .content-card {
    margin-bottom: 2rem;
    min-height: 400px;
  }
  
  .object-fit-cover {
    object-fit: cover;
  }
  
  .lead {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  
  .gallery-item {
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .two-col-section {
      padding: 4rem 0;
    }
    
    .image-gallery {
      padding: 3rem 0 !important;
    }
    
    .content-card {
      min-height: 300px;
    }
    
    .lead {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 768px) {
    .content-card {
      min-height: 250px;
      margin-bottom: 1.5rem;
    }
    
    .image-gallery {
      padding: 2rem 0 !important;
    }
  }
  
  @media (max-width: 576px) {
    .two-col-section {
      padding: 3rem 0;
    }
    
    .content-card {
      min-height: 200px;
    }
    
    .lead {
      font-size: 1rem;
    }
  }