
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a0e17;
            --secondary: #00f3ff;
            --accent: #7b00ff;
            --text: #ffffff;
            --dark-bg: #05080f;
        }
        html {
             scroll-behavior: smooth;
}
        body {
            font-family: 'Exo 2', sans-serif;
            color: var(--text);
            background-color: var(--primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: rgba(5, 8, 15, 0.8);
            position: fixed;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            left: 0;
            bottom: -5px;
            transition: width 0.3s;
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--text);
            z-index: 1001;
        }

        /* Music Control */
        .music-control {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            background: rgba(5, 8, 15, 0.8);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid var(--secondary);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }

        .music-control i {
            font-size: 20px;
            color: var(--secondary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(5, 8, 15, 0.8), rgba(5, 8, 15, 0.9)), url('https://images.unsplash.com/photo-1536240478700-b869070f9279?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 10%, var(--dark-bg) 80%);
            opacity: 0.8;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0% { text-shadow: 0 0 10px rgba(0, 243, 255, 0.5); }
            50% { text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 30px rgba(123, 0, 255, 0.5); }
            100% { text-shadow: 0 0 10px rgba(0, 243, 255, 0.5); }
        }

        .hero-content p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #c3c3c3;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--accent), var(--secondary));
            color: #000;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.4);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--dark-bg);
            position: relative;
        }

        .about:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            opacity: 0.05;
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
        }

        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .about-img:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent), var(--secondary));
            opacity: 0.3;
            z-index: 1;
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 30px;
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: var(--primary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--secondary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
            height: 250px;
            background: linear-gradient(45deg, #0a0e17, #1a1f2e);
            border: 1px solid rgba(0, 243, 255, 0.1);
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 243, 255, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(transparent, rgba(5, 8, 15, 0.9));
            padding: 20px;
            color: var(--text);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            color: var(--secondary);
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .gallery-overlay p {
            font-size: 0.9rem;
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(123, 0, 255, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.8;
            transition: all 0.3s;
        }

        .play-button i {
            color: white;
            font-size: 20px;
            margin-left: 4px;
        }

        .gallery-item:hover .play-button {
            opacity: 1;
            background: var(--accent);
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Video Slideshow */
        .slideshow {
            padding: 100px 0;
            background-color: var(--dark-bg);
            position: relative;
        }

        .slideshow-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .slide {
            display: none;
            width: 100%;
            height: 450px;
            position: relative;
        }

        .slide.active {
            display: block;
        }

        .slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(5, 8, 15, 0.9));
            padding: 20px;
            color: var(--text);
        }

        .slide-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .slide-controls button {
            background: var(--accent);
            border: none;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .slide-controls button:hover {
            background: var(--secondary);
        }

        /* Resources Section */
        .resources {
            padding: 100px 0;
            background-color: var(--primary);
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .resource-card {
            background: linear-gradient(145deg, #0c1019, #070a12);
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s;
            border: 1px solid rgba(0, 243, 255, 0.1);
        }

        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
        }

        .resource-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--accent), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .resource-card h3 {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .resource-card p {
            margin-bottom: 20px;
            color: #c3c3c3;
        }

        .download-btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(45deg, var(--accent), var(--secondary));
            color: #000;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
        }

        /* Video Modal */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 8, 15, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .video-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            width: 80%;
            max-width: 900px;
            position: relative;
            background: var(--dark-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
        }

        .modal-content video {
            width: 100%;
            display: block;
        }

        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: var(--text);
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--secondary);
        }

        .video-info {
            padding: 20px;
        }

        .video-info h3 {
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .video-info p {
            margin-bottom: 15px;
            color: #c3c3c3;
        }

        /* Process Section */
        .process {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }

        .process-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .process-card {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(145deg, #0c1019, #070a12);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
            border: 1px solid rgba(0, 243, 255, 0.1);
        }

        .process-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
        }

        .process-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--accent), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .process-card h3 {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--primary);
            position: relative;
        }

        .contact:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            opacity: 0.05;
        }

        .contact-container {
            display: flex;
            gap: 50px;
            position: relative;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-details p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .contact-details i {
            color: var(--secondary);
            margin-right: 10px;
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--accent), var(--secondary));
            color: #000;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
        }

        .contact-form {
            flex: 1;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: var(--secondary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(5, 8, 15, 0.8);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 4px;
            color: var(--text);
            font-family: 'Exo 2', sans-serif;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: var(--text);
            padding: 50px 0 20px;
            text-align: center;
            border-top: 1px solid rgba(0, 243, 255, 0.1);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            color: var(--secondary);
        }

        .footer-nav {
            display: flex;
            gap: 20px;
        }

        .footer-nav a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-nav a:hover {
            color: var(--secondary);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            font-size: 14px;
            color: #888;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .modal-content {
                width: 90%;
            }

            .slide {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                flex-direction: column;
                background-color: var(--dark-bg);
                width: 70%;
                height: 100vh;
                padding: 100px 20px 20px;
                transition: left 0.3s;
                border-right: 1px solid rgba(0, 243, 255, 0.1);
                z-index: 999;
                overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-nav {
                flex-direction: column;
                gap: 10px;
            }
            
            .gallery-grid, .resources-grid {
                grid-template-columns: 1fr;
            }

            .slide {
                height: 250px;
            }
        }
 