/* Hero Slider Specific Styles */
.hero-slider-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    aspect-ratio: 1920 / 768;
    position: relative;
    overflow: hidden;
    background-color: #0d0d0d;
}

.hero-slider-section .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider-section .swiper-slide {
    height: 100%;
    background-color: transparent;
}

.hero-slider-section .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slider-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the entire image is visible without any cropping */
    object-position: center;
}

/* Fallback for older browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 1 / 1) {
    .hero-slider-section {
        height: 768px;
    }
    @media (max-width: 1200px) {
        .hero-slider-section {
            height: 50vw;
        }
    }
}
