 /* Hero Section */
        .hero-section {
            font-family: 'Futura PT', sans-serif;
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: white;
            overflow: hidden;
            z-index: 0;
            margin-top: 0%;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: -1;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-text-top-left {
            position: absolute;
            /*top: 150px;*/
            left: 30px;
            max-width: 500px;
            margin-top: 120px;
        }

        .hero-text-top-right {
            position: absolute;
            /*top: 150px;*/
             margin-top: 120px;
            right: 30px;
            max-width: 400px;
            text-align: right;
        }

        .hero-text-bottom-left {
            position: absolute;
            bottom: 30px;
            left: 30px;
            max-width: 600px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero-subtitle b {
            font-weight: 700;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .hero-description, .hero-description1 {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }

        .hero-description1 {
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease 1.2s forwards;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
            transform: translateY(-2px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .hero-content {
                padding: 0 1.5rem;
            }

            .hero-text-top-left {
                top: 100px;
                left: 20px;
                max-width: 450px;
            }

            .hero-text-top-right {
                top: 100px;
                right: 20px;
                max-width: 350px;
            }

            .hero-text-bottom-left {
                bottom: 20px;
                left: 20px;
                max-width: 550px;
            }

            .hero-subtitle {
                font-size: 1rem;
                letter-spacing: 2px;
                margin-bottom: 0.8rem;
            }

            .hero-description, .hero-description1 {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-buttons {
                gap: 1.2rem;
            }

            .btn {
                padding: 0.9rem 1.8rem;
                font-size: 0.95rem;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .hero-section {
                height: 100vh;
                align-items: flex-start;
                padding-top: 80px;
            }

            .hero-content {
                padding: 0 1rem;
                display: flex;
                flex-direction: column;
                height: auto;
                min-height: calc(100vh - 80px);
            }

            .hero-text-top-left {
                position: relative;
                top: 0;
                left: 0;
                max-width: 100%;
                margin-bottom: 2rem;
                order: 1;
            }

            .hero-text-top-right {
                position: relative;
                top: 0;
                right: 0;
                max-width: 100%;
                text-align: left;
                margin-bottom: 2rem;
                order: 2;
            }

            .hero-text-bottom-left {
                position: relative;
                bottom: 0;
                left: 0;
                max-width: 100%;
                margin-top: auto;
                padding-bottom: 2rem;
                order: 3;
            }

            .hero-subtitle {
                font-size: 0.9rem;
                letter-spacing: 1px;
                margin-bottom: 0.6rem;
            }

            .hero-description, .hero-description1 {
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                width: 100%;
                max-width: 250px;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .hero-section {
                padding-top: 60px;
            }

            .hero-content {
                padding: 0 0.8rem;
                min-height: calc(100vh - 60px);
            }

            .hero-text-top-left {
                margin-bottom: 1.5rem;
            }

            .hero-text-top-right {
                margin-bottom: 1.5rem;
            }

            .hero-text-bottom-left {
                padding-bottom: 1.5rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                letter-spacing: 0.5px;
                margin-bottom: 0.5rem;
            }

            .hero-description, .hero-description1 {
                font-size: 0.85rem;
                line-height: 1.4;
                margin-bottom: 1.2rem;
            }

            .hero-buttons {
                gap: 0.8rem;
            }

            .btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
                max-width: 200px;
            }
        }

        /* Extra Small Mobile Styles */
        @media (max-width: 320px) {
            .hero-content {
                padding: 0 0.5rem;
            }

            .hero-subtitle {
                font-size: 0.75rem;
                letter-spacing: 0.3px;
            }

            .hero-description, .hero-description1 {
                font-size: 0.8rem;
                line-height: 1.3;
            }

            .btn {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                max-width: 180px;
            }
        }

        /* Landscape Mobile Styles */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-section {
                height: 100vh;
                padding-top: 20px;
            }

            .hero-content {
                min-height: calc(100vh - 20px);
                justify-content: space-between;
            }

            .hero-text-top-left {
                margin-bottom: 1rem;
            }

            .hero-text-top-right {
                margin-bottom: 1rem;
            }

            .hero-text-bottom-left {
                padding-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                margin-bottom: 0.4rem;
            }

            .hero-description, .hero-description1 {
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }

            .hero-buttons {
                flex-direction: row;
                gap: 0.8rem;
            }

            .btn {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                width: auto;
                max-width: 150px;
            }
        }