/* Default styling for desktop */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
}

/* Mobile optimization */
@media (max-width: 768px) {
    .video-bg {
        object-fit: contain; /* Adjusts video scaling for mobile */
        height: auto;
        width: 100%;
    }
}
