 .carousel-item {
            position: relative;
        }

        .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .carousel-img {
            width: 100%;
            object-fit: cover;
            height: 70vh;
            position: relative;
            z-index: 0;
        }

        @media (min-width: 576px) {
            .carousel-img {
                height: 70vh;
            }
        }

        @media (min-width: 768px) {
            .carousel-img {
                height: 80vh;
            }
        }

        @media (min-width: 992px) {
            .carousel-img {
                height: 85vh;
            }
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            backdrop-filter: blur(5px);
            border: 2px solid white;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

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

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

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: rgba(255, 255, 255, 0.4);
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 1.5rem;
            height: 1.5rem;
            filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
        }

        @media (max-width: 768px) {

            .carousel-control-prev,
            .carousel-control-next {
                opacity: 0;
                transition: opacity 0.3s;
            }

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

        .carousel-indicators {
            bottom: 20px;
        }

        .carousel-indicators li {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: transparent;
            border: 2px solid white;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            background-color: white;
            transform: scale(1.3);
            border-color: transparent;
        }

        @media (max-width: 576px) {
            .carousel-indicators li {
                width: 10px;
                height: 10px;
                margin: 0 4px;
            }
        }