/* Hero container for video and text */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Full screen video background inside the hero container */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the container */
    z-index: -1; /* Places the video behind content */
}

/* Centered overlay content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-family: sans-serif;
}