   :root {
            --primary: #00f2ff;
            --primary-glow: rgba(0, 242, 255, 0.4);
            --secondary: #7000ff;
            --secondary-glow: rgba(112, 0, 255, 0.4);
            --bg-dark: #050508;
            --bg-card: rgba(20, 20, 30, 0.6);
            --bg-card-solid: #13131f;
            --text-main: #ffffff;
            --text-muted: #b0b0c0;
            --gradient: linear-gradient(135deg, var(--secondary), var(--primary));
            --glass-border: 1px solid rgba(255, 255, 255, 0.08);
            --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
            letter-spacing: -0.5px;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- UTILITIES --- */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 36px;
            border-radius: 100px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.85rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 0%; height: 100%;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transition: var(--transition);
            z-index: -1;
        }

             .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo span {
    color: #ff6b35;
}

        .btn-primary {
            background: var(--bg-card-solid);
            color: white;
            border: 1px solid var(--primary);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
        }

        .btn-primary:hover::before { width: 100%; }
        .btn-primary:hover {
            border-color: transparent;
            box-shadow: 0 0 30px var(--primary-glow);
            transform: translateY(-3px);
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, #fff, #a0a0b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- LOADER --- */
        #loader {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--bg-dark);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .loader-ring {
            width: 60px; height: 60px;
            border: 4px solid rgba(255,255,255,0.1);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin { to { transform: rotate(360deg); } }

        /* --- NAVIGATION --- */
        header {
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
            backdrop-filter: blur(15px);
            background: rgba(5, 5, 8, 0.7);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        header.scrolled {
            padding: 15px 0;
            background: rgba(5, 5, 8, 0.95);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 1px;
        }
        
        .logo span { color: var(--primary); }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .nav-links a:hover, .nav-links a.active { color: white; }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: white;
        }

        /* --- HERO SECTION --- */
        #hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 80px;
        }

        #networkCanvas {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
            opacity: 0.6;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 4.5rem;
            margin-bottom: 25px;
            line-height: 1.1;
            background: linear-gradient(180deg, #ffffff 0%, #a0a0b0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .hero-desc {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 45px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- SERVICES SECTION --- */
        #services { padding: 120px 0; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            padding: 45px 35px;
            border-radius: 20px;
            border: var(--glass-border);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            background: linear-gradient(145deg, rgba(20,20,30,0.9), rgba(30,30,50,0.9));
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .icon-box {
            width: 70px; height: 70px;
            background: linear-gradient(135deg, rgba(112,0,255,0.1), rgba(0,242,255,0.1));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 30px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .service-card h3 { margin-bottom: 15px; font-size: 1.4rem; }
        .service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

        /* --- NEW STATS SECTION --- */
        #stats {
            padding: 80px 0;
            background: linear-gradient(rgba(5,5,8,0.9), rgba(5,5,8,0.9)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIMHY0MHptMjAtMjB2MjBoMjBWMjBIMjB6TTEwIDEwdjEwaDEwVjEwSDEwem0yMCAwdjEwaDEwVjEwSDMweiIgZmlsbD0iIzIyMiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L2c+PC9zdmc+');
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 10px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .stat-item p {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* --- WHAT WE DO (INDUSTRIES) --- */
        #industries { padding: 100px 0; background: rgba(255,255,255,0.02); }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .industry-item {
            background: var(--bg-card);
            padding: 35px 20px;
            border-radius: 16px;
            text-align: center;
            border: var(--glass-border);
            transition: var(--transition);
        }

        .industry-item:hover {
            background: rgba(255,255,255,0.05);
            transform: translateY(-5px);
            border-color: var(--secondary);
        }

        .industry-item i {
            font-size: 2.2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .industry-item h4 { font-size: 1.1rem; color: white; font-weight: 600; }

        /* --- SUCCESS STORIES --- */
        #success-stories { padding: 100px 0; }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .story-card {
            background: var(--bg-card-solid);
            border-radius: 20px;
            padding: 40px;
            border: var(--glass-border);
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition);
            position: relative;
        }

        .story-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .story-card:hover::after { transform: scaleX(1); }
        .story-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.2); }

        .story-card h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            line-height: 1.4;
            color: white;
        }

        .story-card p { color: var(--text-muted); font-size: 0.95rem; }

        /* --- WHY CHOOSE US --- */
        #why-us { padding: 100px 0; background: linear-gradient(to bottom, var(--bg-dark), #0f0f1a); }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .why-us-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 30px;
            background: rgba(255,255,255,0.03);
            border-radius: 16px;
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
        }

        .why-us-item:hover {
            background: rgba(255,255,255,0.05);
            transform: translateX(10px);
        }

        .why-us-item i {
            font-size: 1.8rem;
            color: var(--primary);
            margin-top: 5px;
        }

        .why-us-item h4 { font-size: 1.2rem; color: white; margin-bottom: 8px; }
        .why-us-item p { font-size: 0.9rem; color: var(--text-muted); }


        /* --- CONTACT SECTION --- */
        #contact { padding: 120px 0; }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            background: rgba(255,255,255,0.03);
            padding: 20px;
            border-radius: 12px;
        }

        .info-icon {
            width: 50px; height: 50px;
            background: rgba(112, 0, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .contact-form {
            background: var(--bg-card-solid);
            padding: 50px;
            border-radius: 24px;
            border: var(--glass-border);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .form-group { margin-bottom: 25px; position: relative; }

        .form-control {
            width: 100%;
            padding: 18px 20px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            color: white;
            font-family: inherit;
            outline: none;
            transition: var(--transition);
            font-size: 1rem;
        }

        .form-control:focus {
            border-color: var(--primary);
            background: rgba(0, 242, 255, 0.02);
            box-shadow: 0 0 0 4px rgba(0, 242, 255, 0.1);
        }

        /* --- FOOTER --- */
        footer {
            background: #020203;
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; display: block; letter-spacing: 1px; }
        .footer-logo span { color: var(--primary); }

        .social-links { display: flex; gap: 15px; margin-top: 25px; }
        .social-links a {
            width: 40px; height: 40px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .social-links a:hover { background: var(--primary); color: var(--bg-dark); transform: translateY(-3px); }

        .footer-links h4 { color: white; margin-bottom: 25px; font-size: 1.1rem; }
        .footer-links ul li { margin-bottom: 12px; }
        .footer-links ul li a { color: var(--text-muted); transition: 0.3s; }
        .footer-links ul li a:hover { color: var(--primary); padding-left: 5px; }

        /* --- ANIMATION UTILS --- */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title { font-size: 3.5rem; }
            .footer-content { grid-template-columns: 1fr 1fr; }
            .contact-wrapper { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2.8rem; }
            .nav-links {
                position: fixed;
                top: 0; right: 0;
                height: 100vh; width: 70%;
                background: #0a0a12;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                z-index: 999;
                box-shadow: -10px 0 30px rgba(0,0,0,0.5);
            }
            .nav-links.nav-active { transform: translateX(0); }
            .hamburger { display: block; z-index: 1001; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .social-links { justify-content: center; }
            .stats-container { gap: 30px; }
            .stat-item h3 { font-size: 2.5rem; }
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 14px 36px;
            border-radius: 100px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            background: var(--gradient);
            color: white;
            box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
        }

        .btn:hover {
            box-shadow: 0 0 40px rgba(0, 242, 255, 0.5);
            transform: translateY(-2px);
        }

        /* --- NAVIGATION --- */
        header {
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            padding: 20px 0;
            backdrop-filter: blur(15px);
            background: rgba(5, 5, 8, 0.8);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo span { color: var(--primary); }
        .nav-links { display: flex; gap: 40px; }
        .nav-links a { color: var(--text-muted); transition: 0.3s; font-weight: 500; }
        .nav-links a:hover, .nav-links a.active { color: white; }
        .hamburger { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

        /* --- HERO SECTION --- */
        .page-hero {
            padding: 160px 0 100px;
            text-align: center;
            background: radial-gradient(circle at 50% 50%, rgba(112,0,255,0.1) 0%, rgba(5,5,8,1) 70%);
        }

        .page-hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-hero p {
            color: var(--text-muted);
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* --- MISSION & VISION --- */
        .mv-section { padding: 80px 0; }
        
        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .mv-card {
            background: var(--bg-card);
            padding: 50px 40px;
            border-radius: 24px;
            border: var(--glass-border);
            position: relative;
            overflow: hidden;
        }

        .mv-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
            background: var(--gradient);
        }

        .mv-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .mv-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
        .mv-card p { color: var(--text-muted); font-size: 1rem; }

        /* --- TIMELINE (STORY) --- */
        .story-section { padding: 100px 0; background: var(--bg-secondary); }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 60px auto 0;
        }

        .timeline::after {
            content: ''; position: absolute; width: 2px; background: rgba(255,255,255,0.1);
            top: 0; bottom: 0; left: 50%; margin-left: -1px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: ''; position: absolute; width: 20px; height: 20px;
            right: -10px; background-color: var(--bg-dark); border: 4px solid var(--primary);
            top: 25px; border-radius: 50%; z-index: 1;
        }

        .left { left: 0; text-align: right; }
        .right { left: 50%; text-align: left; }
        .right::after { left: -10px; }

        .content-box {
            padding: 25px;
            background: var(--bg-card);
            border-radius: 16px;
            border: var(--glass-border);
        }

        .year {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
            font-family: 'Outfit', sans-serif;
        }

        /* --- TEAM SECTION --- */
        .team-section { padding: 100px 0; }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .team-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: var(--glass-border);
            transition: var(--transition);
            text-align: center;
            padding-bottom: 30px;
        }

        .team-card:hover { transform: translateY(-10px); border-color: var(--primary); }

        .team-img-placeholder {
            width: 100%;
            height: 280px;
            background: linear-gradient(45deg, #1a1a2e, #16213e);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .team-img-placeholder i {
            font-size: 4rem;
            color: rgba(255,255,255,0.2);
        }

        .team-info { padding: 25px; }
        .team-info h3 { font-size: 1.4rem; margin-bottom: 5px; color: white; }
        .team-info p { color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-bottom: 15px; }
        
        .social-links { display: flex; justify-content: center; gap: 15px; }
        .social-links a {
            width: 35px; height: 35px; background: rgba(255,255,255,0.05);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            transition: 0.3s; color: var(--text-muted);
        }
        .social-links a:hover { background: var(--primary); color: var(--bg-dark); }

        /* --- CTA --- */
        .cta-section {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(rgba(5,5,8,0.8), rgba(5,5,8,0.8)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIMHY0MHptMjAtMjB2MjBoMjBWMjBIMjB6TTEwIDEwdjEwaDEwVjEwSDEwem0yMCAwdjEwaDEwVjEwSDMweiIgZmlsbD0iIzIyMiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L2c+PC9zdmc+');
        }

        /* --- FOOTER --- */
        footer {
            background: #020203;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: var(--text-muted);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .page-hero h1 { font-size: 2.5rem; }
            .timeline::after { left: 31px; }
            .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
            .timeline-item::after { left: 21px; }
            .left { text-align: left; }
            .nav-links {
                position: fixed; top: 0; right: 0;
                height: 100vh; width: 70%;
                background: #0a0a12;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: 0.4s;
            }
            .nav-links.active { transform: translateX(0); }
            .hamburger { display: block; z-index: 1001; }
        }



        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 14px 36px;
            border-radius: 100px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            background: transparent;
            color: white;
            border: 1px solid var(--primary);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
        }

        .btn-filled {
            background: var(--gradient);
            border: none;
        }

        .btn:hover {
            box-shadow: 0 0 30px rgba(112, 0, 255, 0.5);
            transform: translateY(-2px);
        }

        /* --- NAVIGATION --- */
        header {
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            padding: 20px 0;
            backdrop-filter: blur(15px);
            background: rgba(5, 5, 8, 0.8);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo span { color: var(--primary); }
        .nav-links { display: flex; gap: 40px; }
        .nav-links a { color: var(--text-muted); transition: 0.3s; font-weight: 500; }
        .nav-links a:hover { color: white; }
        .hamburger { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

        /* --- HERO SECTION --- */
        .career-hero {
            padding: 160px 0 100px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(112,0,255,0.15) 0%, rgba(5,5,8,1) 70%);
        }

        .career-hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .career-hero p {
            color: var(--text-muted);
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* --- CULTURE SECTION --- */
        .culture-section { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .culture-item {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 20px;
            border: var(--glass-border);
        }
        .culture-item h3 { margin-bottom: 15px; color: var(--primary); }
        .culture-item p { color: var(--text-muted); font-size: 0.95rem; }

        /* --- BENEFITS SECTION --- */
        .benefits-section { padding: 100px 0; background: var(--bg-secondary); }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        .benefit-card {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255,255,255,0.02);
            border-radius: 16px;
            transition: var(--transition);
        }
        .benefit-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }
        .benefit-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .benefit-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
        .benefit-card p { color: var(--text-muted); font-size: 0.9rem; }

        /* --- OPEN POSITIONS --- */
        .openings-section { padding: 100px 0; }
        
        .job-card {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg-card);
            padding: 30px 40px;
            border-radius: 16px;
            margin-bottom: 20px;
            border: var(--glass-border);
            transition: var(--transition);
        }

        .job-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: translateX(10px);
        }

        .job-info h3 { font-size: 1.4rem; margin-bottom: 5px; }
        .job-meta { color: var(--text-muted); font-size: 0.9rem; display: flex; gap: 15px; margin-top: 10px; }
        .job-meta span { display: flex; align-items: center; gap: 5px; }

        .tag {
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 50px;
            background: rgba(0, 242, 255, 0.1);
            color: var(--primary);
            border: 1px solid rgba(0, 242, 255, 0.2);
        }

        /* --- APPLICATION FORM --- */
        .apply-section { padding: 100px 0; background: var(--bg-secondary); }
        
        .apply-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-dark);
            padding: 50px;
            border-radius: 24px;
            border: var(--glass-border);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .form-group { margin-bottom: 25px; }
        .form-control {
            width: 100%;
            padding: 18px 20px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            color: white;
            font-family: inherit;
            outline: none;
            transition: 0.3s;
        }
        .form-control:focus { border-color: var(--primary); }
        
        textarea.form-control { resize: vertical; min-height: 120px; }
        .file-upload {
            border: 2px dashed rgba(255,255,255,0.2);
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            color: var(--text-muted);
            cursor: pointer;
            transition: 0.3s;
        }
        .file-upload:hover { border-color: var(--primary); color: var(--primary); }

        /* --- FOOTER --- */
        footer {
            background: #020203;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: var(--text-muted);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .career-hero h1 { font-size: 2.5rem; }
            .job-card { flex-direction: column; align-items: flex-start; gap: 20px; }
            .job-card .btn { width: 100%; }
            .nav-links {
                position: fixed; top: 0; right: 0;
                height: 100vh; width: 70%;
                background: #0a0a12;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: 0.4s;
            }
            .nav-links.active { transform: translateX(0); }
            .hamburger { display: block; z-index: 1001; }
        }

        
        h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; letter-spacing: -0.5px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 14px 36px;
            border-radius: 100px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            background: var(--bg-card-solid);
            color: white;
            border: 1px solid var(--primary);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
        }

        .btn:hover {
            background: var(--gradient);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(112, 0, 255, 0.4);
        }

        /* --- NAVIGATION --- */
        header {
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            padding: 20px 0;
            backdrop-filter: blur(15px);
            background: rgba(5, 5, 8, 0.8);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 1px;
        }
        
        .logo span { color: var(--primary); }
        .nav-links { display: flex; gap: 40px; }
        .nav-links a { color: var(--text-muted); transition: 0.3s; font-weight: 500; }
        .nav-links a:hover { color: white; }
        .hamburger { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

        /* --- HERO SECTION --- */
        .page-hero {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at center, rgba(112,0,255,0.1) 0%, rgba(5,5,8,1) 70%);
            padding-top: 80px;
        }

        .page-hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #a0a0b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-hero p {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* --- SERVICES GRID --- */
        .services-section { padding: 100px 0; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 100px;
        }

        .service-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: var(--glass-border);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .service-card .icon-box {
            width: 60px; height: 60px;
            background: rgba(112,0,255,0.1);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; color: var(--primary);
            margin-bottom: 25px;
        }

        .service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
        
        .service-link {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .service-link:hover { gap: 12px; }

        /* --- IN-DEPTH SECTION (Alternating Layout) --- */
        .deep-dive-section { padding: 50px 0 100px; }

        .deep-dive-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 120px;
        }

        .deep-dive-item.reverse { direction: rtl; }
        .deep-dive-item.reverse .deep-content { direction: ltr; }

        .deep-visual {
            background: linear-gradient(135deg, rgba(20,20,30,0.5), rgba(30,30,50,0.5));
            border-radius: 24px;
            border: var(--glass-border);
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .deep-visual i { font-size: 8rem; color: rgba(255,255,255,0.05); }
        .deep-visual::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle, rgba(0,242,255,0.1), transparent 70%);
        }

        .deep-content h3 { font-size: 2.5rem; margin-bottom: 20px; color: white; }
        .deep-content p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.1rem; }

        .feature-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: #d0d0d0;
        }
        .feature-list li i { color: var(--primary); }

        /* --- PROCESS SECTION --- */
        .process-section { padding: 100px 0; background: var(--bg-dark-secondary); }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            position: relative;
        }

        .process-steps::before {
            content: ''; position: absolute; top: 30px; left: 0; width: 100%; height: 2px;
            background: rgba(255,255,255,0.1);
            z-index: 0;
        }

        .step-card {
            position: relative;
            z-index: 1;
            background: var(--bg-dark);
            padding: 20px;
            border-radius: 16px;
            border: var(--glass-border);
            width: 23%;
            text-align: center;
            transition: var(--transition);
        }

        .step-card:hover { transform: translateY(-10px); border-color: var(--secondary); }

        .step-num {
            width: 60px; height: 60px;
            background: var(--bg-dark-secondary);
            border: 2px solid var(--primary);
            border-radius: 50%;
            margin: -50px auto 20px;
            display: flex;
            align-items: center; justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary);
            box-shadow: 0 0 15px rgba(0,242,255,0.2);
        }

        .step-card h4 { margin-bottom: 10px; color: white; }
        .step-card p { font-size: 0.9rem; color: var(--text-muted); }

        /* --- CTA SECTION --- */
        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(rgba(5,5,8,0.8), rgba(5,5,8,0.8)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIMHY0MHptMjAtMjB2MjBoMjBWMjBIMjB6TTEwIDEwdjEwaDEwVjEwSDEwem0yMCAwdjEwaDEwVjEwSDMweiIgZmlsbD0iIzIyMiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L2c+PC9zdmc+');
        }

        /* --- FOOTER --- */
        footer {
            background: #020203;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: var(--text-muted);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .deep-dive-item, .deep-dive-item.reverse { grid-template-columns: 1fr; text-align: center; }
            .deep-dive-item { gap: 30px; margin-bottom: 80px; }
            .feature-list li { justify-content: center; }
            .process-steps { flex-direction: column; gap: 40px; }
            .process-steps::before { width: 2px; height: 100%; left: 50%; top: 0; }
            .step-card { width: 80%; margin: 0 auto; }
            .step-num { margin: 0 auto 20px; }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed; top: 0; right: 0;
                height: 100vh; width: 70%;
                background: #0a0a12;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: 0.4s;
            }
            .nav-links.active { transform: translateX(0); }
            .hamburger { display: block; z-index: 1001; }
            .page-hero h1 { font-size: 2.5rem; }
        }
   