/* Add these styles to ensure videos are properly displayed */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    min-height: 500px;
    overflow: hidden;
}

.slide-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(45deg, #003469, #0051a3); /* Fallback background */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 52, 105, 0.7);
    z-index: 2;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    display: block; /* Important to ensure video is visible */
}

/* Make sure content is above the video */
.hero-content {
    position: relative;
    z-index: 3;
}