
/* Custom CSS  */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container iframe {
    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%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Optional: Darkens the video */
}

/* Video Css from Claude */

/* .hero-video-wrapper {
    overflow: hidden;
    position: relative;
}

.hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.z-index-9 {
    z-index: 9;
} */

/* 
minimize its visibility by disabling certain features like the "title bar" and "player actions." Here’s how you can reduce its prominence:

<iframe 
    src="https://www.youtube.com/embed/NIMV1EyZoLI?autoplay=1&mute=1&loop=1&playlist=NIMV1EyZoLI&rel=0&controls=0&modestbranding=1&showinfo=0&iv_load_policy=3" 
    frameborder="0" 
    allow="autoplay; encrypted-media; fullscreen" 
    allowfullscreen
    class="w-100 h-100 position-absolute top-0 start-0">
</iframe>
 */