    .carousel {
        position: relative;
        width: 100%;
        height: 90vh;
        overflow: hidden;
        border-radius: 0 0 30px 30px;
      }
  
      .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        display: none;
      }
  
      .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      .carousel-slide.active {
        display: block;
        animation: fade 1.5s ease-in-out;
      }
  
      @keyframes fade {
        from { opacity: 0; }
        to { opacity: 1; }
      }
  
      .carousel-caption {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 30px;
        border-radius: 12px;
        text-align: center;
        color: white;
        max-width: 600px;
        animation: fadeUp 1s ease;
      }
  
      .carousel-caption a {
        text-decoration: none;
        color: #004b2d;
        background: #f9c500;
        border-radius: 25px;
        font-weight: bold;
        padding: 20px 35px;
        font-size: 25px;
        transition: all 0.3s ease;
      }
  
      .carousel-caption a:hover {
        color: #fff;
      }
  
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translate(-50%, 20px);
        }
        to {
          opacity: 1;
          transform: translate(-50%, 0);
        }
      }
  
      .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background:transparent;
        color: white;
        border: none;
        padding: 8px 14px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        transition: background 0.3s ease;
        z-index: 10;
      }
  
      .carousel-btn:hover {
        color: #414141;
      } 
  
      .prev { left: 20px; }
      .next { right: 20px; }
  
      .indicators {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
      }
  
      .dot {
        width: 12px;
        height: 12px;
        background-color: rgba(255,255,255,0.6);
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s ease;
      }
  
      .dot.active {
        background-color: #f9c500;
      }
  
      @media (max-width: 768px) {
        .carousel-slide img{
          width: 100%;
        }
        .carousel-caption a{
          padding: 10px 25px;
          font-size: 13px;
        }
        .carousel {
          height: 30vh;
        }
  
        .carousel-caption {
          bottom: 10%;
          width: 90%;
          padding: 15px;
        }
  
        .carousel-caption h2 {
          font-size: 1.4rem;
        }
  
        .carousel-caption p {
          font-size: 1rem;
        }
  
        .carousel-btn {
          font-size: 20px;
        }
      }
