/* Ensure the container has a defined height */
.video-container {
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio (height = 56.25% of width) */
    position: relative;
    overflow: hidden;
}

/* Make the video fill the container */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the container without distortion */
}