/* Hero Section styles - hero.css */
#hero {
    position: relative;
    height: 75vh;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%234B0082"/><circle cx="960" cy="540" r="400" fill="%231a1a50" opacity="0.3"/><circle cx="960" cy="540" r="300" fill="%238A2BE2" opacity="0.2"/><circle cx="960" cy="540" r="200" fill="white" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 80, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-content .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive Styles - Hero Section Specific */
@media (max-width: 576px) {
    #hero {
        height: 67.5vh;
    }
}