        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-bg: #0a0a0a;
            --secondary-bg: #141414;
            --accent-blue: #4a9eff;
            --accent-cyan: #00d4ff;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --card-bg: #1a1a1a;
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(74, 158, 255, 0.1);
            transition: var(--transition);
        }

        nav.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 50px;
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.05) !important;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-cyan);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            transition: var(--transition);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 2rem 2rem;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(74, 158, 255, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInLeft 1s ease;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(74, 158, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 6px 30px rgba(74, 158, 255, 0.6);
        }

        .hero-visual {
            animation: fadeInRight 1s ease;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ============================================
   HERO VISUAL - NEON GLOW EFFECT
   ============================================ */

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

/* Multiple glow layers */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    opacity: 0;
    filter: blur(30px);
    transform: scale(0.9);
    z-index: -1;
    transition: all 0.5s ease;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 23px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan), var(--accent-blue));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(74, 158, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

/* Floating Animation */
@keyframes neonFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.2));
    }
    25% {
        transform: translateY(-10px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(74, 158, 255, 0.4));
    }
    75% {
        transform: translateY(-12px) rotate(-0.5deg);
    }
}

.hero-visual img {
    animation: neonFloat 6s ease-in-out infinite;
}

/* Hover Effects */
.hero-visual:hover::before {
    opacity: 0.5;
    transform: scale(1);
    filter: blur(40px);
}

.hero-visual:hover::after {
    opacity: 1;
}

.hero-visual:hover img {
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px var(--accent-cyan),
        0 0 30px rgba(74, 158, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.2);
}

        .marketplace-icons {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .marketplace-icon {
            padding: 0.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(74, 158, 255, 0.2);
            font-weight: 500;
            transition: var(--transition);
        }

        .marketplace-icon:hover {
            background: rgba(74, 158, 255, 0.1);
            border-color: var(--accent-cyan);
            transform: translateY(-5px) !important;
        }

        .services {
            padding: 6rem 2rem;
            background: var(--secondary-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.2rem;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(74, 158, 255, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px) !important;            
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 40px rgba(74, 158, 255, 0.2);
            
        }

        /* Centered Icon with Glow */
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem auto; /* Centers the icon */
    background: radial-gradient(circle, rgba(74, 158, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%; /* Circle shape */
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    transition: all 0.3s ease;
}

.service-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(74, 158, 255, 0.4));
    transition: all 0.3s ease;
}

/* Hover Effects */
.service-card:hover .service-icon::before {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.2) !important;
}

.service-card:hover .service-icon img {
    transform: scale(1.15) translateY(-5px) !important;
    filter: brightness(1.2) drop-shadow(0 5px 20px rgba(74, 158, 255, 0.6));
}

/* Responsive */
@media (max-width: 768px) {
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .service-icon img {
        width: 42px;
        height: 42px;
    }
}

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .core-values {
            padding: 6rem 2rem;
            background: var(--primary-bg);
        }

        .values-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .value-card {
            background: var(--card-bg);
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(74, 158, 255, 0.15);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(74, 158, 255, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-card:hover {
            transform: translateY(-10px) scale(1.02) !important;
            border-color: var(--accent-cyan);
            box-shadow: 0 20px 50px rgba(74, 158, 255, 0.3);
        }

        .value-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.5));
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            color: var(--accent-cyan);
        }

        .value-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* .video-showcase {
            padding: 6rem 2rem;
            background: var(--secondary-bg);
        }

        .video-container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .video-player {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(74, 158, 255, 0.3);
            box-shadow: 0 20px 60px rgba(74, 158, 255, 0.2);
            transition: var(--transition);
            background: var(--card-bg);
        }

        .video-player:hover {
            transform: scale(1.02) !important;
            border-color: var(--accent-cyan);
            box-shadow: 0 25px 70px rgba(74, 158, 255, 0.4);
        }

        .video-placeholder {
            width: 100%;
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a3e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(74, 158, 255, 0.5);
        }

        .play-button:hover {
            transform: scale(1.1) !important;
            box-shadow: 0 15px 40px rgba(74, 158, 255, 0.7);
        }

        .play-button::after {
            content: '▶';
            color: white;
            font-size: 2rem;
            margin-left: 5px;
        }

        .video-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .video-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .video-content ul {
            list-style: none;
            margin-bottom: 2rem;
        }

        .video-content ul li {
            color: var(--text-secondary);
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }

        .video-content ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
            font-weight: bold;
            font-size: 1.2rem;
        } */


/* ============================================
   VIDEO SHOWCASE SECTION
   ============================================ */

.video-showcase {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

.video-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 1rem;
}

/* ============================================
   VIDEO PLAYER CONTAINER
   ============================================ */

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(74, 158, 255, 0.3);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--card-bg);
}

/* Glow effect behind player */
.video-player::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-player:hover {
    transform: translateY(-10px) scale(1.02) !important;
    border-color: var(--accent-cyan);
    box-shadow: 
        0 30px 80px rgba(74, 158, 255, 0.3),
        0 0 40px rgba(0, 212, 255, 0.15);
}

.video-player:hover::before {
    opacity: 1;
}

/* ============================================
   VIDEO PLACEHOLDER & VIDEO ELEMENT
   ============================================ */

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   VIDEO OVERLAY (Play Button Overlay)
   ============================================ */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* ============================================
   PLAY BUTTON
   ============================================ */

.play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 40px rgba(74, 158, 255, 0.5),
        0 0 30px rgba(74, 158, 255, 0.3);
    position: relative;
}

/* Pulsing ring animation */
.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 
        0 15px 50px rgba(74, 158, 255, 0.6),
        0 0 50px rgba(74, 158, 255, 0.4);
}

/* Play Icon Triangle */
.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.play-button:hover .play-icon {
    transform: scale(1.1);
}

/* ============================================
   VIDEO CONTROLS BAR
   ============================================ */

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px 15px 15px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.video-placeholder:hover .video-controls,
.video-controls.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Control Buttons */
.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.control-btn:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: scale(1.1);
}

/* Play/Pause Button Icons */
#playPauseBtn .icon-pause {
    display: none;
}

#playPauseBtn.playing .icon-play {
    display: none;
}

#playPauseBtn.playing .icon-pause {
    display: block;
}

/* Mute Button Icons */
#muteBtn .icon-mute {
    display: none;
}

#muteBtn.muted .icon-volume {
    display: none;
}

#muteBtn.muted .icon-mute {
    display: block;
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 3px;
    transition: width 0.1s linear;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-container:hover .progress-bar::after {
    opacity: 1;
}

/* ============================================
   TIME DISPLAY
   ============================================ */

.time-display {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: monospace;
    min-width: 90px;
    text-align: center;
    flex-shrink: 0;
}

/* ============================================
   VIDEO CONTENT (Right Side)
   ============================================ */

.video-content {
    padding: 1rem;
}

.video-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.video-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.video-content ul li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.video-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    background: rgba(74, 158, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content ul li:hover {
    color: var(--text-primary);
    transform: translateX(10px);
}

.video-content ul li:hover::before {
    background: rgba(74, 158, 255, 0.2);
    box-shadow: 0 0 15px rgba(74, 158, 255, 0.3);
}

/* ============================================
   VIDEO LOADING STATE
   ============================================ */

.video-placeholder.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border: 4px solid rgba(74, 158, 255, 0.2);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 5;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .video-container-wrapper {
        gap: 3rem;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .video-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 4rem 1.5rem;
    }
    
    .video-container-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-player {
        max-width: 100%;
    }
    
    .video-content {
        order: 1;
        text-align: center;
    }
    
    .video-content ul {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-icon {
        border-width: 12px 0 12px 20px;
    }
    
    .video-controls {
        padding: 15px 10px 10px 10px;
        gap: 8px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .time-display {
        font-size: 0.75rem;
        min-width: 70px;
    }
    
    .video-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        padding: 3rem 1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        border-width: 10px 0 10px 16px;
        margin-left: 3px;
    }
    
    .video-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .progress-container {
        order: -1;
        width: 100%;
        flex: none;
    }
    
    #fullscreenBtn {
        display: none; /* Hide fullscreen on very small screens */
    }
    
    .video-content h2 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 1rem;
    }
}        

        .about {
            padding: 6rem 2rem;
            background: var(--primary-bg);
        }

        .about-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .about-container h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-container p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 2;
            margin-bottom: 1.5rem;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .stat-item {
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 15px;
            border: 1px solid rgba(74, 158, 255, 0.1);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-5px) !important;
            border-color: var(--accent-cyan);
            box-shadow: 0 15px 30px rgba(74, 158, 255, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .contact {
            padding: 6rem 2rem;
            background: var(--secondary-bg);
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-container h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-container p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        input, textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            background: var(--card-bg);
            border: 1px solid rgba(74, 158, 255, 0.2);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition);
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(74, 158, 255, 0.2);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        footer {
            background: var(--primary-bg);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(74, 158, 255, 0.2);
            position: relative;
        }

        .footer-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-blue));
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-cyan);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logo {
            height: 60px;
            width: auto;
        }

        .footer-tagline {
            color: var(--text-secondary);
            font-style: italic;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
            transform: translateX(5px) !important;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-info li::before {
            content: '▸';
            color: var(--accent-cyan);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: var(--card-bg);
            border: 1px solid rgba(74, 158, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
            border-color: var(--accent-cyan);
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 20px rgba(74, 158, 255, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(74, 158, 255, 0.1);
            color: var(--text-secondary);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(74, 158, 255, 0.4);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(74, 158, 255, 0.6);
        }

        .back-to-top::after {
            content: '↑';
            font-size: 1.5rem;
            font-weight: bold;
        }

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .reveal-card.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-container,
            .video-container-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-visual,
            .video-content {
                order: -1;
            }

            .services-grid,
            .values-grid {
                grid-template-columns: 1fr;
            }

            .form-group {
                grid-template-columns: 1fr;
            }

            .section-header h2,
            .about-container h2,
            .contact-container h2,
            .video-content h2 {
                font-size: 2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
