:root {
            --primary: #2563EB;
            /* Blue 600 */
            --primary-dark: #1E40AF;
            /* Blue 800 */
            --secondary: #0EA5E9;
            /* Sky 500 */
            --bg-dark: #0F172A;
            /* Slate 900 */
            --bg-card: rgba(255, 255, 255, 0.03);
            --bg-card-hover: rgba(255, 255, 255, 0.08);
            --text-main: #F8FAFC;
            --text-muted: #94A3B8;
            --border-color: rgba(255, 255, 255, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Nav */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-logo {
            height: 64px;
            width: auto;
            object-fit: contain;
        }

        .logo-text-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
        }

        .logo-subtext {
            color: var(--secondary);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 2px;
        }

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

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

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

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

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

        /* Sub Navigation */
        .sub-nav {
            position: fixed;
            top: 105px;
            width: 100%;
            padding: 12px 5%;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 999;
            display: flex;
            justify-content: center;
            gap: 30px;
            overflow-x: auto;
            white-space: nowrap;
        }

        .sub-nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .sub-nav a:hover {
            background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #ec4899, #f43f5e, #8b5cf6, #0ea5e9);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 6s linear infinite;
        }

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

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.15;
            filter: blur(80px);
            z-index: -1;
            animation: pulse 10s infinite alternate;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
            opacity: 0.15;
            filter: blur(80px);
            z-index: -1;
            animation: pulse-alt 8s infinite alternate;
        }

        @keyframes pulse {
            0% {
                transform: scale(1) translate(0, 0);
            }

            100% {
                transform: scale(1.2) translate(50px, 50px);
            }
        }

        @keyframes pulse-alt {
            0% {
                transform: scale(1) translate(0, 0);
            }

            100% {
                transform: scale(1.3) translate(-50px, -30px);
            }
        }

        .hero-content {
            max-width: 1000px;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid rgba(37, 99, 235, 0.3);
            border-radius: 50px;
            color: #60A5FA;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: 5.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            padding-bottom: 15px;
            background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #ec4899, #f43f5e, #8b5cf6, #0ea5e9);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 6s linear infinite;
        }

        @keyframes gradientMove {
            to {
                background-position: 200% center;
            }
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .btn-primary {
            display: inline-block;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
        }

        .btn-secondary {
            display: inline-block;
            padding: 16px 32px;
            background: transparent;
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            margin-left: 16px;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: white;
        }

        /* Stats Cards */
        .stats {
            padding: 80px 5%;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: var(--bg-card-hover);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff, var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .stat-item:hover .stat-icon {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transform: scale(1.1);
        }

        .stat-item h3 {
            font-size: 3rem;
            color: white;
            font-weight: 800;
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-item p {
            color: var(--text-muted);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            margin-top: 5px;
        }

        /* Section Global */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services */
        .services {
            padding: 100px 5%;
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            z-index: 1;
            position: relative;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

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

        .service-card:hover {
            transform: translateY(-10px);
            background: var(--bg-card-hover);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #60A5FA;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: white;
        }

        .service-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* About */
        .about {
            padding: 100px 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            background: rgba(255, 255, 255, 0.01);
        }

        .about-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: inset 0 0 20px rgba(0, 0, 0, 0.5);
            pointer-events: none;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
            color: white;
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .feature-list {
            list-style: none;
            margin-top: 30px;
            margin-bottom: 40px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 16px;
            color: #E5E7EB;
            font-size: 1.1rem;
        }

        .feature-list i {
            color: var(--primary);
            background: rgba(37, 99, 235, 0.1);
            padding: 8px;
            border-radius: 50%;
            font-size: 0.9rem;
        }

        /* Contact */
        .contact {
            padding: 100px 5%;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        .contact-info {
            padding-right: 20px;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .info-content h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .info-content p {
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .contact-form {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 50px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #E5E7EB;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 16px;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
        }

        /* Footer */
        footer {
            padding: 40px 5%;
            background: #050810;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-links a {
            color: var(--text-muted);
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: white;
        }

        .footer-policy-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-policy-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-policy-links a:hover {
            color: white;
            text-decoration: underline;
        }

        /* Particle Background */
        #tsparticles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* Colorful Glowing Cards */
        .service-card {
            border-top: 2px solid transparent;
        }
        
        .service-card:hover {
            border-top: 2px solid var(--card-color);
            box-shadow: 0 10px 40px -10px var(--card-color);
        }
        
        .service-card:hover .service-icon {
            background: var(--card-color);
            color: white;
            box-shadow: 0 0 20px var(--card-color);
            transform: scale(1.1) rotate(5deg);
        }
        
        .services-grid .service-card:nth-child(1) { --card-color: #3b82f6; } /* Blue */
        .services-grid .service-card:nth-child(2) { --card-color: #8b5cf6; } /* Purple */
        .services-grid .service-card:nth-child(3) { --card-color: #10b981; } /* Emerald */
        .services-grid .service-card:nth-child(4) { --card-color: #f59e0b; } /* Amber */
        .services-grid .service-card:nth-child(5) { --card-color: #ec4899; } /* Pink */
        .services-grid .service-card:nth-child(6) { --card-color: #06b6d4; } /* Cyan */
        .services-grid .service-card:nth-child(7) { --card-color: #eab308; } /* Yellow */
        .services-grid .service-card:nth-child(8) { --card-color: #14b8a6; } /* Teal */
        .services-grid .service-card:nth-child(9) { --card-color: #6366f1; } /* Indigo */

        /* Enterprise Quote */
        .enterprise-quote {
            padding: 80px 5%;
            text-align: center;
            background: linear-gradient(90deg, rgba(15,23,42,1) 0%, rgba(30,58,138,0.2) 50%, rgba(15,23,42,1) 100%);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        
        .enterprise-quote h2 {
            font-size: 2.5rem;
            font-weight: 300;
            line-height: 1.4;
            max-width: 900px;
            margin: 0 auto 30px;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .quote-author {
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .trusted-by {
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            opacity: 0.5;
            flex-wrap: wrap;
        }
        
        .trusted-by span {
            font-size: 1.5rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 992px) {

            .about,
            .contact {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 4.5rem;
            }

            .sub-nav {
                gap: 20px;
                padding: 10px 5%;
            }

            .sub-nav a {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                /* Add mobile menu logic here ideally */
            }

            .hero h1 {
                font-size: 3.2rem;
            }

            .btn-secondary {
                margin-left: 0;
                margin-top: 16px;
            }

            .contact-form {
                padding: 30px;
            }

            .sub-nav {
                gap: 15px;
                padding: 8px 5%;
            }

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