/* Video Background Styles */
.slider-one {
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slider-one .main-slider {
    position: relative;
    z-index: 2;
}

.slider-one .swiper-slide {
    background: transparent;
}

/* Ensure content is visible over video */
.slider-one_content {
    position: relative;
    z-index: 3;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .video-background video {
        object-position: center center;
    }
    
    .video-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
}