.video-background-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills container without stretching */
    z-index: -1;
}

.video-overlay-content {
    z-index: 1;
    color: #ffffff;
    text-align: center;
    /* Optional: semi-transparent background for readability */
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
}