/* Carousel Column */
#heroCarousel {
    width: 100%;
    max-width: 900px; /* increased from 600px */
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* Image Wrapper */
.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* increased from 400px */
}

.carousel-image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Overlay */
.carousel-image-wrapper .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(41, 52, 98, 0.2), rgba(41, 52, 98, 0.4));
}

/* Carousel Caption */
.carousel-caption--modern {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .carousel-image-wrapper {
        height: 400px; /* increased from 300px */
    }
}

@media (max-width: 575.98px) {
    .carousel-image-wrapper {
        height: 250px; /* increased from 200px */
    }
}
