/* Slider Styles */
.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
    /* Zoom effect handled by CSS or JS */
}

/* Ensure Swiper takes full height */
.swiper {
    width: 100%;
    height: 100vh;
}