/* ========================================================
   HERO VIDEO SECTION (FIXED 450px HEIGHT & RESPONSIVE)
   ======================================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 700px; /* Fixed height requested */
    background-color: #000000;
    overflow: hidden;
}

/* 1. Video Container & Video Scaling */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Aspect ratio maintain karke container ko fill karta hai */
    object-position: center;
}

/* 2. Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* 3. Floating Glow Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 3;
    pointer-events: none;
}

.shape-1 {
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(237, 34, 39, 0.25);
}

.shape-2 {
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(237, 34, 39, 0.2);
}

/* 4. Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-scroll-indicator:hover .scroll-text {
    color: #ed2227;
}

/* Mobile & Small Screens Optimization */
@media (max-width: 767.98px) {
    .hero-section {
        height: 450px; /* Small mobile screens par bhi strict 450px height maintain rahegi */
    }

    .shape-1, .shape-2 {
        width: 150px;
        height: 150px;
        filter: blur(50px);
    }

    .hero-scroll-indicator {
        bottom: 15px;
    }

    .scroll-text {
        font-size: 10px;
        letter-spacing: 1px;
    }
}