/* ============================================
   Hero Video Section Styles
   ============================================ */

.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Space for header */
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(15, 23, 42, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 100px 0;
}

.hero-content .content-box {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Title */
.hero-title h1 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

/* Hero Description */
.hero-description {
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 20px;
    line-height: 1.8;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Button */
.hero-button {
    margin-bottom: 60px;
}

.theme-btn.btn-style-primary {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border: none;
}

.theme-btn.btn-style-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.theme-btn.btn-style-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.theme-btn.btn-style-primary:hover::before {
    left: 0;
}

.theme-btn.btn-style-primary .txt {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
    animation: float 2s ease-in-out infinite;
}

.scroll-icon span {
    width: 6px;
    height: 10px;
    background: #ffffff;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    animation: scroll 2s ease-in-out infinite;
}

.scroll-indicator p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Decorative Floating Icons */
.hero-decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 24px;
    animation: floating 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 4.5s;
}

/* Animations */
@keyframes floating {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title h1 {
        font-size: 52px;
    }

    .hero-description p {
        font-size: 18px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .hero-video-section {
        min-height: 600px;
        padding-top: 80px; /* Adjust spacing for tablets */
    }

    .hero-title h1 {
        font-size: 42px;
    }

    .hero-description p {
        font-size: 16px;
    }

    .theme-btn.btn-style-primary {
        padding: 15px 35px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .hero-video-section {
        min-height: 550px;
        padding-top: 70px; /* Adjust spacing for mobile */
    }

    .hero-title h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-description p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-button {
        margin-bottom: 40px;
    }

    .theme-btn.btn-style-primary {
        padding: 12px 30px;
        font-size: 14px;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-title h1 {
        font-size: 28px;
    }

    .hero-description p {
        font-size: 14px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Dark theme adjustments */
@media (prefers-color-scheme: dark) {
    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(15, 23, 42, 0.9) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }
}

