        /* Hero Section */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Video Background */
        .video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 1;
            object-fit: cover;
        }

        /* Dark Overlay */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        /* Geometric Overlay - SVG Triangle */
        .geometric-overlay {
            position: absolute;
            top: 0;
            left: 400px;
            width: 100%;
            height: 50%;
            z-index: 3;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .triangle-svg {
            position: absolute;
            top: -5%;
            right: -15%;
            transform: translateY(0);
            width: 85%;
            max-width: 1200px;
            height: auto;
            opacity: 30%;
        }

        /* Content */
        .hero-content {
            position: relative;
            z-index: 4;
            color: white;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 3rem;
            line-height: 1.6;
            max-width: 700px;
        }

        /* Social Icons */
        .social-icons {
            position: absolute;
            bottom: 40px;
            left: 70px;
            z-index: 4;
            display: flex;
            gap: 25px;
            font-size: 20px;
        }

        .social-icon {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: #5FA8B8;
            transform: translateY(-3px);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            animation: bounce 2s infinite;
        }

        .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 15px;
            position: relative;
        }

        .mouse::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 10px;
            background: white;
            border-radius: 2px;
            animation: scroll 1.5s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes scroll {
            0% {
                opacity: 1;
                top: 10px;
            }
            100% {
                opacity: 0;
                top: 25px;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }

            .triangle-svg {
                width: 90%;
                max-width: 1000px;
                top: 0%;
                right: -18%;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }

            .triangle-svg {
                width: 95%;
                max-width: 800px;
                top: 5%;
                right: -20%;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 500px;
            }

            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .social-icons {
                left: 30px;
                bottom: 30px;
                gap: 20px;
            }

            .social-icon {
                font-size: 1.3rem;
            }

            .triangle-svg {
                width: 100%;
                max-width: 600px;
                top: 10%;
                right: -22%;
                opacity: 0.75;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 0.95rem;
            }

            .social-icons {
                left: 20px;
                bottom: 20px;
                gap: 15px;
            }

            .social-icon {
                font-size: 1.2rem;
            }

            .scroll-indicator {
                bottom: 20px;
            }

            .mouse {
                width: 25px;
                height: 40px;
            }

            .triangle-svg {
                width: 110%;
                max-width: 500px;
                top: 15%;
                right: -25%;
                opacity: 0.65;
            }
        }

        /* Fallback for browsers that don't support video */
        @media (max-width: 768px) {
            .video-background {
                display: none;
            }
            
            .hero-section {
                background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920') center/cover no-repeat;
            }
        }
/* Force scroll indicator to always show and animate */
.hero-section {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.scroll-indicator {
    opacity: 1 !important;
    visibility: visible !important;
    animation: bounce 2s infinite !important;
}


