/* Hero Section Carousel Styles */
.hero-carousel {
    width: 100%;
    position: relative;
    overflow-x: hidden;
    z-index: 0;
}
.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    width: 100vw;
}
.hero-carousel img {
    width: 100vw;
    min-height: 350px;
    max-height: 60vh;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.hero-carousel .carousel-caption {
    background: rgba(0,0,0,0.35);
    border-radius: 0.5rem;
    padding: 2rem 2.5rem;
    left: 10%;
    right: 10%;
}
@media (max-width: 767.98px) {
    .hero-carousel .carousel-caption {
        padding: 1rem 0.5rem;
        left: 0;
        right: 0;
        font-size: 1rem;
    }
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-carousel img {
        min-height: 180px;
        max-height: 40vh;
    }
}
