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

        :root {
            --primary-dark: #1a1a2e;
            --primary-green: #10b981;
            --accent-cyan: #06b6d4;
            --text-light: #e5e7eb;
            --text-muted: #9ca3af;
        }

        body {
            font-family: 'Space Mono', monospace;
            background: linear-gradient(135deg, #1a1a2e 0%, #10b981 50%, #1a1a2e 100%);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated background particles */
        .background-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(16, 185, 129, 0.3);
            border-radius: 50%;
            animation: float 20s 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;
            }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        /* Header */
        header {
            padding: 1rem 0;
            backdrop-filter: blur(10px);
            background: rgba(26, 26, 46, 0.8);
            border-bottom: 2px solid var(--primary-green);
            position: sticky;
            top: 0;
            z-index: 100;
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            padding: 8rem 0 6rem;
            text-align: center;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(180deg, #fff 0%, var(--primary-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero .subtitle {
            font-size: 1.4rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.4s both;
            font-weight: 400;
        }

        .hero .tagline {
            font-size: 1.1rem;
            color: var(--primary-green);
            margin-bottom: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary-green);
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 0;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
            animation: fadeInUp 1s ease-out 0.8s both;
            border: 2px solid var(--primary-green);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent-cyan);
            transition: left 0.5s;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            border-color: var(--accent-cyan);
        }

        /* Section Styles */
        section {
            padding: 3rem 0;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--primary-green);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Section */
        .about-content {
            background: rgba(26, 26, 46, 0.7);
            border: 2px solid var(--primary-green);
            padding: 3rem;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .about-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary-green);
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .service-card {
            background: rgba(26, 26, 46, 0.8);
            border: 2px solid var(--primary-green);
            padding: 3rem;
            position: relative;
            transition: transform 0.3s, border-color 0.3s;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
            transition: transform 0.5s;
        }

        .service-card:hover::before {
            transform: translate(-25%, -25%);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-cyan);
        }

        .service-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-card ul {
            list-style: none;
            padding-left: 0;
        }

        .service-card li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1rem;
            color: var(--text-light);
        }

        .service-card li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-size: 1.2rem;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: rgba(26, 26, 46, 0.7);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-green);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

        .feature-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-green);
            text-transform: uppercase;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .value-item {
            background: rgba(26, 26, 46, 0.8);
            border-left: 4px solid var(--primary-green);
            padding: 2rem;
            transition: all 0.3s;
        }

        .value-item:hover {
            transform: translateX(10px);
            background: rgba(16, 185, 129, 0.1);
        }

        .value-item h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--primary-green);
            text-transform: uppercase;
        }

        .value-item p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Mission/Vision Cards */
        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .mv-card {
            background: rgba(26, 26, 46, 0.9);
            border: 2px solid var(--primary-green);
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-cyan));
        }

        .mv-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
            text-transform: uppercase;
        }

        .mv-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Footer */
        footer {
            background: rgba(26, 26, 46, 0.95);
            border-top: 2px solid var(--primary-green);
            padding: 3rem 0 1.5rem;
            text-align: center;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .footer-tagline {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(16, 185, 129, 0.3);
            padding-top: 1.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Responsive */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            font-size: 1.5rem;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .mobile-menu-toggle:hover {
            background: var(--primary-green);
            color: var(--primary-dark);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 1.5rem;
            }

            .nav-links a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(26, 26, 46, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 2px solid var(--primary-green);
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                pointer-events: none;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-links a {
                font-size: 1.1rem;
                text-align: center;
            }

            .hero {
                padding: 4rem 0 3rem;
            }

            .hero h1 {
                font-size: 2.2rem;
                letter-spacing: 1px;
            }

            .hero .subtitle {
                font-size: 1rem;
            }

            .hero .tagline {
                font-size: 0.9rem;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            section {
                padding: 4rem 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .service-card h3 {
                font-size: 1.4rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-content,
            .mv-card {
                padding: 2rem 1.5rem;
            }

            .mv-card h3 {
                font-size: 1.5rem;
            }

            .footer-logo {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .service-card h3,
            .mv-card h3 {
                font-size: 1.2rem;
            }

            .feature-card h3 {
                font-size: 1.1rem;
            }

            .value-item h3 {
                font-size: 1.2rem;
            }
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }