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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #000000;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Cyber Grid Background */
        .cyber-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .logo:hover::after {
            transform: scaleX(1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 1px solid transparent;
            transition: border-color 0.3s ease;
        }

        .nav-links a:hover {
            color: #00ffff;
        }

        .nav-links a:hover::before {
            border-color: #00ffff;
        }

        .contact-btn {
            background: linear-gradient(135deg, #00ffff, #0080ff);
            color: #000;
            padding: 12px 24px;
            border-radius: 0;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }

        .contact-btn:hover::before {
            left: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite alternate;
        }

        @keyframes pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-subtitle {
            font-size: 14px;
            color: #00ffff;
            margin-bottom: 20px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 3px;
            opacity: 0;
            animation: slideUp 0.8s ease 0.2s forwards;
        }

        .hero-title {
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 800;
            margin-bottom: 30px;
            line-height: 1;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #0080ff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0;
            animation: slideUp 0.8s ease 0.4s forwards;
        }

        .hero-description {
            font-size: 20px;
            color: #cccccc;
            margin-bottom: 50px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: slideUp 0.8s ease 0.6s forwards;
        }

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

        .hero-cta {
            display: inline-block;
            background: transparent;
            color: #00ffff;
            padding: 18px 40px;
            border: 2px solid #00ffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            animation: slideUp 0.8s ease 0.8s forwards;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .hero-cta:hover {
            color: #000;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

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

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-cube {
            position: absolute;
            width: 20px;
            height: 20px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            animation: float 8s ease-in-out infinite;
        }

        .floating-cube:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-cube:nth-child(2) { top: 60%; right: 20%; animation-delay: 2s; }
        .floating-cube:nth-child(3) { top: 80%; left: 70%; animation-delay: 4s; }
        .floating-cube:nth-child(4) { top: 30%; right: 10%; animation-delay: 6s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-30px) rotate(180deg); opacity: 0.8; }
        }

        /* Vision Section */
        .vision {
            padding: 120px 0;
            position: relative;
        }

        .vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
        }

        .vision-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .energy-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .energy {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(0, 20, 40, 0.5), rgba(0, 40, 80, 0.3));
        }

        /* value Section */
        .value {
            padding: 120px 0;
            position: relative;
        }

        .value::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
        }

        .value-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }


        /* Expertise Section */
        .expertise {
            padding: 120px 0;
            position: relative;
        }

        .expertise::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
        }

        .expertise-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        /* Architecture Section */
        .market {
            padding: 120px 0;
            position: relative;
        }

        .market::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
        }

        .market-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

                
        /* mission Section */
        .mission {
            padding: 120px 0;
            position: relative;
        }

        .mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
        }

        .mission-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        .mission-container {
            display: flex;              /* enables side-by-side layout */
            gap: 20px;                  /* space between the divs */
        }

        .energy-container {
            display: flex;              /* enables side-by-side layout */
            gap: 20px;                  /* space between the divs */
        }

        .section-title {
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 700;
            margin-bottom: 40px;
            line-height: 1.1;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #ffffff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-sub-title {
            font-size: clamp(18px, 4vw, 36px);  /* smaller min, fluid, and max */
            font-weight: 700;
            margin-bottom: 30px;               /* optional: slightly smaller spacing */
            line-height: 1.1;
            letter-spacing: -0.5px;            /* less aggressive */
            background: linear-gradient(135deg, #ffffff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-description {
            font-size: 18px;
            color: #cccccc;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Capabilities Section */
        .capabilities {
            padding: 120px 0;
            position: relative;
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            overflow: hidden;
        }

        .capability-item {
            background: rgba(0, 20, 40, 0.3);
            padding: 50px;
            border-right: 1px solid rgba(0, 255, 255, 0.1);
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .capability-item:hover {
            background: rgba(0, 40, 80, 0.4);
            box-shadow: inset 0 0 50px rgba(0, 255, 255, 0.1);
        }
        /* Modal styles */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 1000; 
            left: 0; top: 0; width: 100%; height: 100%; 
            background: rgba(0,0,0,0.7);
            justify-content: center; 
            align-items: center;
        }
        .modal-content {
            position: relative;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
        }
        .capability-item::before {
            content: '';
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            transform: rotate(45deg);
        }
        .modal img {
            max-width: 80vw;
            max-height: 80vh;
        }
        .close {
            position: absolute;
            top: 8px; right: 12px;
            font-size: 24px;
            cursor: pointer;
        }
        .capability-number {
            font-size: 12px;
            color: #00ffff;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .capability-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .capability-desc {
            font-size: 16px;
            color: #cccccc;
            line-height: 1.6;
        }

        /* Tech Features */
        .tech-features {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(0, 20, 40, 0.5), rgba(0, 40, 80, 0.3));
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 50px;
            margin-top: 80px;
        }

        .feature-card {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            border-color: #00ffff;
            box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border: 2px solid #00ffff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 32px;
            position: relative;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(0, 255, 255, 0.3);
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .feature-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .feature-description {
            font-size: 16px;
            color: #cccccc;
            line-height: 1.7;
        }

        /* Stats Section */
        .stats {
            padding: 120px 0;
            background: linear-gradient(135deg, #000000, #001a33);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 10,0 L 10,10 M 0,10 L 20,10" stroke="rgba(0,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
            opacity: 0.3;
        }

        .stats-content {
            position: relative;
            z-index: 2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
        }

        .stat-number {
            font-size: 64px;
            font-weight: 800;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .non-stat-number {
            font-size: 64px;
            font-weight: 800;
            background: linear-gradient(135deg, #00ffff, #0080ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 14px;
            color: #cccccc;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Companies Section */
        .companies {
            padding: 100px 0;
            text-align: center;
            background: rgba(0, 20, 40, 0.2);
        }

        .companies-title {
            font-size: 14px;
            color: #00ffff;
            margin-bottom: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .companies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .company-logo {
            padding: 30px 20px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            color: #cccccc;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .company-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transition: left 0.4s ease;
        }

        .company-logo:hover {
            border-color: #00ffff;
            color: #ffffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        .company-logo:hover::before {
            left: 100%;
        }

        /* CTA Section */
        .cta {
            padding: 120px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 128, 255, 0.05));
            position: relative;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
        }

        .cta-title {
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-description {
            font-size: 18px;
            color: #cccccc;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, #00ffff, #0080ff);
            color: #000;
        }

        .cta-button.secondary {
            background: transparent;
            color: #00ffff;
            border: 2px solid #00ffff;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0080ff, #00ffff);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-button.secondary::before {
            background: linear-gradient(135deg, #00ffff, #0080ff);
        }

        .cta-button:hover {
            color: #000;
            box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
            transform: translateY(-2px);
        }

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

        /* Footer */
        footer {
            background: #000000;
            border-top: 1px solid rgba(0, 255, 255, 0.2);
            padding: 80px 0 40px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            font-size: 24px;
            margin-bottom: 20px;
            display: block;
        }

        .footer-brand p {
            font-size: 16px;
            color: #cccccc;
            line-height: 1.7;
            max-width: 350px;
        }

        .footer-section h4 {
            font-size: 12px;
            font-weight: 600;
            color: #00ffff;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-section a {
            display: block;
            color: #cccccc;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-section a::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 1px;
            background: #00ffff;
            transition: width 0.3s ease;
        }

        .footer-section a:hover {
            color: #00ffff;
            padding-left: 15px;
        }

        .footer-section a:hover::before {
            width: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #666666;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .capabilities-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

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

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        