:root {
            --primary-red: #ff0033;
            --dark-red: #cc0029;
            --bright-red: #ff3355;
            --pure-black: #000000;
            --near-black: #0a0a0a;
            --dark-gray: #1a1a1a;
            --mid-gray: #2a2a2a;
            --light-gray: #404040;
            --accent-white: #ffffff;
            --glow-red: rgba(255, 0, 51, 0.4);
        }

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

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--pure-black);
            color: var(--accent-white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.03;
            background: 
                linear-gradient(45deg, transparent 30%, var(--primary-red) 30%, var(--primary-red) 70%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, var(--primary-red) 30%, var(--primary-red) 70%, transparent 70%);
            background-size: 100px 100px;
            animation: bgScroll 30s linear infinite;
        }

        @keyframes bgScroll {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 100px 100px, -100px 100px; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--mid-gray);
            z-index: 1000;
            padding: 1rem 0;
        }

        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-white);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60%;
            height: 3px;
            background: var(--primary-red);
            box-shadow: 0 0 10px var(--glow-red);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            color: var(--accent-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

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

        nav a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        nav a:hover::before {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            margin-top: 80px;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero h1 {
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--accent-white) 0%, var(--primary-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero .subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 300;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary-red);
            color: var(--accent-white);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 2px solid var(--primary-red);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s both;
            box-shadow: 0 0 30px var(--glow-red);
        }

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

        .cta-button:hover {
            color: var(--pure-black);
            border-color: var(--accent-white);
        }

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

        /* Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-red);
            border-radius: 50%;
            animation: float 15s infinite;
            opacity: 0.3;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translate(100vw, -100vh);
                opacity: 0;
            }
        }

        /* Services Section */
        .services {
            position: relative;
            padding: 8rem 2rem;
            background: linear-gradient(180deg, var(--pure-black) 0%, var(--near-black) 100%);
        }

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(135deg, var(--accent-white) 0%, var(--primary-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 5rem;
            letter-spacing: 1px;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--near-black) 100%);
            padding: 3rem 2rem;
            border: 1px solid var(--mid-gray);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

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

        .service-card:hover::before {
            left: 0;
        }

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

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-red);
            display: block;
        }

        .service-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .service-card p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 8rem 2rem;
            background: var(--pure-black);
            position: relative;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: scale(1.05);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 0 10px 30px var(--glow-red);
        }

        .feature-item h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .feature-item p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
        }

        /* Stats Section */
        .stats {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--pure-black) 100%);
            border-top: 1px solid var(--mid-gray);
            border-bottom: 1px solid var(--mid-gray);
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 4rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
            font-family: 'Space Mono', monospace;
        }

        .stat-item p {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Contact Section */
        .contact {
            padding: 8rem 2rem;
            background: var(--pure-black);
            text-align: center;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info {
            margin-top: 3rem;
            padding: 3rem;
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--near-black) 100%);
            border: 1px solid var(--mid-gray);
            border-left: 4px solid var(--primary-red);
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .contact-email {
            font-size: 1.5rem;
            color: var(--primary-red);
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            display: inline-block;
            padding: 1rem 2rem;
            border: 2px solid var(--primary-red);
            transition: all 0.3s ease;
        }

        .contact-email:hover {
            background: var(--primary-red);
            color: var(--accent-white);
            box-shadow: 0 10px 30px var(--glow-red);
        }

        /* Footer */
        footer {
            background: var(--near-black);
            border-top: 1px solid var(--mid-gray);
            padding: 3rem 2rem;
            text-align: center;
        }

        footer p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .footer-brand {
            color: var(--primary-red);
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.9rem;
            }

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

            .hero {
                margin-top: 60px;
            }
        }
