/* Adjust carousel dimensions for different screen sizes */
.carousel {
    width: 100%;
    max-width: 1200px;
    /* Adjust max-width as needed */
    margin: 0 auto;
    /* Center the carousel */
}

/* Center carousel controls vertically */
.carousel-control-prev,
.carousel-control-next {
    /* margin-top: calc((500px - 40px) / 2);  */
    /* 500px is the height of the carousel */
    opacity: 0;
    /* Initially hide controls */
    transition: opacity 0.3s ease;
}

/* Show controls on hover */
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

/* Adjust carousel dimensions for different screen sizes */
.carousel {
    width: 100%;
    max-width: 100%; /*1400px; */
    /* Adjust max-width as needed */
    margin: 0 auto;
    /* Center the carousel */
}

/* Center carousel controls vertically */
.carousel-control-prev,
.carousel-control-next {
    /* margin-top: calc((500px - 40px) / 2);  */
    /* 500px is the height of the carousel */
}

/* Hide carousel indicators on mobile devices */
@media (max-width: 575.98px) {
    .carousel-indicators {
        display: none;
    }
}



  