video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

/* Video in background */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Transparent dark overlay (replaces blur) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 41, 23, 0.403); /* adjust darkness here */
    z-index: 2;
}

/* Content over the video */
.hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 80%;
    max-width: 1374px;
    margin: 30vh auto;
    z-index: 3;
    text-align: justify;
    color: white;
    padding: 2rem;
    border-radius: 12px;
}
