/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

/* Video Container */
.hero-video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

    .hero-video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

/* Content - Moved left and white text */
.hero-content {
    position: absolute;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    left: 8%; /* Increased from 5% to move content left */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white; /* Ensures all text is white */
}

.recognition-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    width: fit-content;
    margin-bottom: 30px;
}

#hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

#hero-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(90deg, #6b4eff, #00c2ff);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(107, 78, 255, 0.4);
    width: fit-content;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(107, 78, 255, 0.5);
    }

/* Vertical Buttons */
.hero-buttons {
    position: absolute;
    right: 8%; /* Matches left content padding */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.hero-btn {
    padding: 12px 24px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .hero-btn:hover {
        background-color: #fff;
        transform: translateX(-5px);
    }

/* Mute Button */
.mute-button {
    position: absolute;
    bottom: 30px;
    right: 8%; /* Matches right content padding */
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.3s;
    backdrop-filter: blur(5px);
}

    .mute-button:hover {
        background: rgba(255, 255, 255, 0.3);
    }

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        left: 5%;
    }

    .hero-buttons, .mute-button {
        right: 5%;
    }

    #hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    #hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        left: 0;
        padding: 0 20px;
    }

    #hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-buttons {
        display: none;
    }

    .recognition-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 75vh;
        min-height: 450px;
    }

    #hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .mute-button {
        bottom: 20px;
        right: 20px;
    }
}

/* Reset and Base Styles */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #fff; /* Base white color for all text */
}

/* Content - Ensuring white text */
.hero-content {
    color: #fff !important; /* Force white color */
}

#hero-title,
.hero-subtitle,
#hero-description {
    color: #fff !important; /* Explicit white color */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7); /* Stronger shadow for contrast */
}

.recognition-badge {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
}

/* Video Overlay - Darker for better contrast */
.video-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}