/* Carousel Styling Fixes */
.carousel {
    max-width: 100%;
    margin: 0 auto;
}

.carousel-inner {
    background-color: transparent !important;
    padding: 20px 0;
}

.carousel-item {
    text-align: center;
    padding: 0 15%;
}

.carousel-item img {
    max-height: 400px;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* Remove background from carousel controls */
.carousel-control-prev,
.carousel-control-next {
    background: none;
    width: 5%;
}

/* Make carousel indicators more visible */
.carousel-indicators {
    position: relative;
    margin: 15px 0 0 0;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
}

.carousel-indicators .active {
    background-color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item {
        padding: 0 10%;
    }
    
    .carousel-item img {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        padding: 0 5%;
    }
    
    .carousel-item img {
        max-height: 250px;
    }
}
