   

        .herocontainer {
            font-family: 'Poppins', sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 20vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Video Background */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }

        /* Video Overlay */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
            z-index: 2;
        }

        /* Animated Grid Pattern */
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 3;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Small Title */
        .hero-subtitle {
            font-size: 14px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 20px;
            font-weight: 300;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.3s;
        }

        /* Main Title with Typewriter */
        .hero-title {
            font-family: 'Sis-JpDotline', 'Poppins', sans-serif;
            font-size: clamp(48px, 8vw, 120px);
            font-weight: 700;
            letter-spacing: 8px;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.6s;
        }

        .typewriter {
            display: inline-block;
            border-right: 3px solid #ffffff;
            animation: blink 0.7s step-end infinite;
            white-space: nowrap;
            overflow: hidden;
        }

        @keyframes blink {
            50% {
                border-color: transparent;
            }
        }

        /* Tagline */
        .hero-tagline {
            font-size: clamp(24px, 4vw, 48px);
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.9s;
        }

        /* Brand Name Repeat */
        .hero-brand {
            font-family: 'Sis-JpDotline', 'Poppins', sans-serif;
            font-size: clamp(18px, 3vw, 32px);
            letter-spacing: 6px;
            color: #666;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.2s;
        }

        /* Description */
        .hero-description {
            font-size: clamp(16px, 2vw, 20px);
            line-height: 1.8;
            color: #aaa;
            max-width: 800px;
            margin: 0 auto 50px;
            font-weight: 300;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.5s;
        }

        /* CTA Button */
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 48px;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #000;
            background: #ffffff;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.8s;
            text-decoration: none;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .hero-cta:hover::before {
            width: 400px;
            height: 400px;
        }

        .hero-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
        }

        .hero-cta i {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .hero-cta:hover i {
            transform: translateX(8px);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 2.1s;
        }

        .scroll-indicator .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            position: relative;
            margin: 0 auto 10px;
        }

        .scroll-indicator .mouse::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: #ffffff;
            border-radius: 2px;
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% {
                opacity: 1;
                top: 8px;
            }
            100% {
                opacity: 0;
                top: 28px;
            }
        }

        .scroll-indicator p {
            font-size: 12px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
        }

        /* Fade In Up Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 4;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(50px);
                opacity: 0;
            }
        }
/* Medium screens (like 1200px width laptops or smaller desktops) */
@media (max-width: 1200px) {

    .hero-content {
        max-width: 900px;
        padding: 40px 30px;
    }

    .hero-title {
        font-size: clamp(40px, 6vw, 80px);
        letter-spacing: 5px;
        margin-bottom: 25px;
    }

    .hero-tagline {
        font-size: clamp(22px, 3.5vw, 38px);
        margin-bottom: 15px;
    }

    .hero-brand {
        font-size: clamp(16px, 2.5vw, 24px);
        letter-spacing: 4px;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;
        max-width: 700px;
        margin-bottom: 40px;
    }

    .hero-cta {
        padding: 16px 40px;
        font-size: 16px;
    }

    .video-background video {
        opacity: 0.35;
    }

    .grid-overlay {
        background-size: 40px 40px;
    }
}


       /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 100svh; /* Use svh for better mobile support */
            }

            .hero-content {
                padding: 20px 15px;
            }

            .hero-subtitle {
                font-size: 10px;
                letter-spacing: 2px;
                margin-bottom: 15px;
            }

            .hero-title {
                font-size: clamp(32px, 12vw, 48px);
                letter-spacing: 3px;
                margin-bottom: 20px;
            }

            .hero-tagline {
                font-size: clamp(18px, 6vw, 28px);
                margin-bottom: 15px;
            }

            .hero-brand {
                font-size: clamp(14px, 4vw, 20px);
                letter-spacing: 3px;
                margin-bottom: 20px;
            }

            .hero-description {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 30px;
                padding: 0 10px;
            }

            .hero-cta {
                padding: 14px 32px;
                font-size: 14px;
                letter-spacing: 1px;
                gap: 8px;
            }

            .hero-cta i {
                font-size: 16px;
            }

            /* Optimize video for mobile */
            .video-background video {
                opacity: 0.3;
            }

            /* Reduce particles on mobile */
            .particle {
                width: 3px;
                height: 3px;
            }

            /* Adjust scroll indicator for mobile */
            .scroll-indicator {
                bottom: 20px;
            }

            .scroll-indicator .mouse {
                width: 24px;
                height: 40px;
            }

            .scroll-indicator p {
                font-size: 10px;
            }

            /* Reduce grid size on mobile */
            .grid-overlay {
                background-size: 30px 30px;
            }

            @keyframes gridMove {
                100% {
                    transform: translate(30px, 30px);
                }
            }
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .hero-title {
                font-size: clamp(28px, 10vw, 40px);
                letter-spacing: 2px;
            }

            .hero-tagline {
                font-size: clamp(16px, 5vw, 24px);
            }

            .hero-description {
                font-size: 13px;
            }

            .hero-cta {
                padding: 12px 28px;
                font-size: 13px;
            }
        }