  .hero .carousel {
    height: 75vh;
    min-height: 500px;
    max-height: 900px;
  }
  
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 100%;
  }
  
 .hero .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(70%) contrast(120%) hue-rotate(20deg);
  }
  

  .hero .carousel-caption {
    right: 10%;
    left: 10%;
    bottom: 20%;
    z-index: 2;
  }
  
  .hero .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bs-light);
    background: transparent;
  }
  
 .hero .carousel-indicators button.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    z-index: 3;
    width: 5%;
  }
  
  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 60%;
    /* background-color: var(--bs-light);/ */
  }
  
  .hero .carousel-control-prev-icon:hover ,
  .hero .carousel-control-next-icon:hover {
    background-color: var(--bs-primary);
    color: var(--bs-light);
  
  }
  @media (max-width: 768px) {
    .hero .carousel-caption {
      bottom: 10%;
    }
  
    .hero .display-4 {
      font-size: 2.5rem;
    }
  }
  
  .hero h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    animation: fadeInDown 1s both;
  }
  
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 30px;
    }
  }
  
  .hero p {
    animation: fadeInDown 1s both 0.2s;
  }
  
  .hero .btn{
    animation: fadeInUp 1s both 0.4s;
  }