.video-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust as needed */
    overflow: hidden;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-banner .button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.video-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .video-banner {
        height: 50vh; /* Reduce height for smaller screens */
    }

    .video-banner video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .video-banner .button-container {
        width: 80%; /* Make button container smaller */
        text-align: center;
    }

    .video-banner .button {
        font-size: 14px; /* Adjust button size */
        padding: 10px 20px;
    }
}
