.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: blur(8px) brightness(0.5);
    z-index: 1;
    will-change: transform;
    pointer-events: none;
}

.video-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section .feature-video {
    width: 80%;
    max-width: 1200px;
    height: 690px;
    aspect-ratio: 16/9;
   
    transition: transform 0.3s ease;
}

.video-section .feature-video:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .video-section {
        height: 60vh;
    }
    
    .video-section .feature-video {
        width: 100%;
    }
}
