
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            line-height: 1.6;
            color: #fff;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 875px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            /* background: #1a1a1a; */
            width: 100%;
        }

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

        /* Dark overlay for better text readability */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

         .top-badges {
            background: rgba(38, 50, 56, 0.3);
            border: 1px solid #EDEDED;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 600;
            color: #ffffff;
           padding-top: 5px;
            width: 114px;
            height: 30px;
            display: flex;
            justify-content: center;
            gap: 5px;
        
        }
        .staricon{
            width: 16px;
            height: 15px;
            margin-top: 2px;
        }

        .hero-content {
            max-width: 1350px;
            margin-bottom: 2rem;
            z-index: 3;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            font-weight: 600;
            color: white;
            margin-bottom: 2rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Buttons */
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 5rem;
            z-index: 3;
            position: relative;
        }

        .btn {
            padding: 16px 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            min-width: 160px;
            font-family: inherit;
        }

        .btn-primary {
            background: #263238;
            color:#ffffff;
        }

        .btn-primary:hover {
            background: #677074;
              color:#ffffff;
        }
        .btn-primary.clicked {
        background: #A8ADAF;
        color: #ffffff;
        }

        .btn-secondary {
            background: #ffffff;
            color: #263238;
        }

        .btn-secondary:hover {
            background:#A8ADAF;
              color: #263238;
        }
        .btn-secondary.clicked {
            background:#263238;
            color: #ffffff;
        }


        /* Brand Scroll Container */
        .brand-scroll-container {
            width: 100%;
            max-width: 465px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            z-index: 3;
        }

        .brand-scroll {
            display: flex;
            animation: scroll 25s linear infinite;
            width: calc(180px * 10);
            gap: 120px;
        }

        .brand-item {
            /* flex: 0 0 180px; */
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 1.5rem;
            /* opacity: 0.6; */
            transition: opacity 0.3s ease;
        }

       
        /* .brand-text {
            font-size: 1.1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.5px;
        } */

        /* Scroll Animation */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-180px * 5));
            }
        }

        /* 4K and Ultra-wide Displays (2560px+) */
        @media (min-width: 2560px) {
            .hero {
                padding: 4rem;
                width: 100%;
            }
            
            .top-badge {
                top: 4rem;
                font-size: 1.1rem;
                padding: 0.8rem 2rem;
                border-radius: 30px;
            }
            
            .hero h1 {
                font-size: clamp(5rem, 8vw, 8rem);
                margin-bottom: 3rem;
            }
            
            .hero p {
                font-size: clamp(1.6rem, 3vw, 2.2rem);
                margin-bottom: 4rem;
            }
            
            .btn {
                padding: 1.4rem 3rem;
                font-size: 1.3rem;
                min-width: 220px;
                border-radius: 12px;
            }
            
            .hero-buttons {
                gap: 2rem;
                margin-bottom: 8rem;
            }
            
            .brand-scroll {
                animation: scroll 35s linear infinite;
            }
            
            .brand-item {
                /* flex: 0 0 280px; */
                height: 80px;
                margin: 0 0rem;
            }
            
            .brand-text {
                font-size: 1.6rem;
            }
        }

        /* Large Laptops and Desktops (1440px - 2559px) */
        @media (min-width: 1440px) and (max-width: 2559px) {
            .hero {
                padding: 3rem;
                width: 100%;
            }
            
            .top-badge {
                top: 7rem;
                font-size: 12px;
            }
            
            .hero h1 {
                font-size: clamp(4rem, 6vw, 6.5rem);
                margin-bottom: 2.5rem;
            }
            
            .hero p {
                font-size: clamp(1.4rem, 2.5vw, 1.8rem);
                margin-bottom: 3.5rem;
            }
              .hero-content{
              width: 1200px;
            }
            .btn {
                padding: 16px 3.5rem;
                font-size: 1.1rem;
                min-width: 220px;
                border-radius: 10px;
            }
            
            .hero-buttons {
                gap: 1.5rem;
                margin-bottom: 0rem;
            }
            
            .brand-scroll {
                animation: scroll 30s linear infinite;
            }
            
            .brand-item {
                /* flex: 0 0 220px; */
                height: 70px;
                margin: 0 0rem;
            }
            
            .brand-text {
                font-size: 1.3rem;
            }
        }

        /* Standard Laptops (1024px - 1439px) */
        @media (min-width: 1024px) and (max-width: 1439px) {
            .hero {
                padding: 2.5rem;
            }
            
            .top-badge {
                top: 2.5rem;
                font-size: 0.95rem;
                padding: 0.5rem 1.3rem;
            }
              .hero-content{
              width: 900px;
            }
            .hero h1 {
                font-size: clamp(3.5rem, 5vw, 5rem);
                margin-bottom: 2rem;
            }
            
            .hero p {
                font-size: clamp(1.3rem, 2.2vw, 1.6rem);
                margin-bottom: 3rem;
            }
            
            .btn {
                padding: 16px 2.2rem;
                font-size: 1.05rem;
                min-width: 170px;
            }
            
            .hero-buttons {
                gap: 1.2rem;
                margin-bottom: 5rem;
            }
            
            .brand-scroll {
                animation: scroll 28s linear infinite;
            }
            
            .brand-item {
                flex: 0 0 200px;
                height: 65px;
                margin: 0 1.8rem;
            }
            
            .brand-text {
                font-size: 1.2rem;
            }
        }

        /* Small Laptops (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            .hero {
                padding: 2rem;
            }
            
            .top-badge {
                top: 17rem;
                font-size: 0.9rem;
                padding: 0.5rem 1.2rem;
            }
            .hero-content{
              width: 580px;
            }
            .hero h1 {
                font-size: clamp(2.8rem, 4.5vw, 4rem);
                margin-bottom: 1.8rem;
            }
            
            .hero p {
                font-size: clamp(1.2rem, 2vw, 1.4rem);
                margin-bottom: 2.8rem;
            }
            
            .btn {
                padding: 1rem 2rem;
                font-size: 1rem;
                min-width: 160px;
            }
            
            .hero-buttons {
                gap: 1rem;
                margin-bottom: 4.5rem;
            }
            
            .brand-scroll {
                animation: scroll 25s linear infinite;
            }
            
            .brand-item {
                flex: 0 0 180px;
                height: 60px;
                margin: 0 1.5rem;
            }
            
            .brand-text {
                font-size: 1.1rem;
            }
        }

        /* Tablets (481px - 767px) */
        @media (min-width: 481px) and (max-width: 767px) {
            .hero {
                padding: 1.8rem;
            }
            
            .top-badge {
                top: 1.5rem;
                font-size: 0.85rem;
                padding: 0.45rem 1.1rem;
            }
            
            .hero-buttons {
                gap: 0.9rem;
                margin-bottom: 4rem;
            }
            
            .btn {
                padding: 0.95rem 1.9rem;
                font-size: 0.98rem;
                min-width: 150px;
            }
            
            .brand-scroll {
                animation: scroll 22s linear infinite;
            }
            
            .brand-item {
                flex: 0 0 160px;
                margin: 0 1.2rem;
            }
            
            .brand-text {
                font-size: 1.05rem;
            }
        }

        /* Mobile Phones (320px - 480px) */
        @media (max-width: 480px) {
            .hero {
                padding: 1.5rem;
            }
            
            .top-badge {
                top: 11rem;
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
                margin-bottom: 3.5rem;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
            }
            
            .brand-scroll {
                animation: scroll 18s linear infinite;
            }
            
            .brand-item {
                flex: 0 0 140px;
                margin: 0 1rem;
            }
            
            .brand-text {
                font-size: 0.95rem;
            }
        }

        /* Extra Small Mobile (below 320px) */
        @media (max-width: 319px) {
            .hero {
                padding: 1rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                max-width: 240px;
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .brand-item {
                flex: 0 0 120px;
                margin: 0 0.8rem;
            }
            
            .brand-text {
                font-size: 0.85rem;
            }
        }

        /* High DPI Displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .video-background {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Landscape orientation adjustments */
        @media (orientation: landscape) and (max-height: 600px) {
            .hero {
                min-height: 100vh;
                padding: 1rem 2rem;
            }
            
            .hero h1 {
                font-size: clamp(2rem, 4vw, 3.5rem);
                margin-bottom: 1rem;
            }
            
            .hero p {
                font-size: clamp(1rem, 2vw, 1.2rem);
                margin-bottom: 1.5rem;
            }
            
            .hero-buttons {
                margin-bottom: 2rem;
            }
            
            .top-badge {
                top: 1rem;
            }
        }
   