

  .carousel {
    width: 100%  !important;
    height: 100% !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
  }

  .carousel-inner {
    height: 100% !important;
  }

  .carousel-item {
    height: 100% !important;
    position: relative !important;
  }




  .floating-card {
    position: absolute;
    background: rgba(4, 168, 157, 0.277);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
  }



  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }


  .carousel-control-prev,
  .carousel-control-next {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
  }

  .carousel-control-prev {
    left: 20px !important;
  }

  .carousel-control-next {
    right: 20px !important;
  }

  .carousel:hover .carousel-control-prev,
  .carousel:hover .carousel-control-next {
    opacity: 1 !important;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background: white !important;
    transform: translateY(-50%) scale(1.1) !important;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1) !important;
    width: 30px !important;
    height: 30px !important;
  }

  .carousel-indicators {
    bottom: 20px !important;
    z-index: 15 !important;
  }

  .carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    background-color: rgba(255, 255, 255, 0.6) !important;
    border: 2px solid white !important;
    transition: all 0.3s ease !important;
  }

  .carousel-indicators button.active {
    background-color: white !important;
    transform: scale(1.2) !important;
  }

  @media (max-width: 768px) {
 

    .carousel-control-prev,
    .carousel-control-next {
      width: 45px;
      height: 45px;
    }
  }