.hero {
    min-height: 100vh;
    padding: 0 6%;
    padding-top: 205px;
    padding-bottom: 80px;
    position: relative;
    /* Removed fixed background */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(13, 27, 42, 0.5) 100%);
    background-color: rgba(13, 27, 42, 0.4);
    z-index: 1;
}

/* Ensure content is above slider */
.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}
