
        :root {
            --primary: #00d4ff;
            --secondary: #001f3f;
            --bg-dark: #121212;
            --bg-card: #000000;
            --text-light: #e0e0e0;
            --accent: #31a5e9;
            --glow: 0 0 15px rgba(0, 212, 255, 0.6);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        h1, h2, h3, .logo-text {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 35px;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

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

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

        .btn-primary {
            background-color: var(--primary);
            color: var(--bg-dark);
            box-shadow: var(--glow);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.8);
            transform: translateY(-3px);
        }

        .btn-outline {
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--bg-dark);
            box-shadow: var(--glow);
            transform: translateY(-3px);
        }

        /* Navbar */
        header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    min-height: 74px;
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
    z-index: 1000;
    background: #000000;
    transition: var(--transition);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

header.scrolled {
    padding: 5px 0;
    background: #000000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 50px;
            filter: none;
            transition: var(--transition);
        }

        .logo:hover img {
            transform: rotate(360deg);
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            text-shadow: var(--glow);
        }

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

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
            box-shadow: var(--glow);
        }

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

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

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(5, 5, 5, 0.65), rgba(5, 5, 5, 0.6)), url('https://ik.imagekit.io/t4itchmhb/72.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Particles */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 15px;
            color: var(--primary);
            text-shadow: 0 0 30px rgba(95, 215, 245, 0.87);
            letter-spacing: 5px;
        }

        .hero p {
            font-size: 1.8rem;
            margin-bottom: 40px;
            color: var(--accent);
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 3px;
        }

        .hero-btns {
            display: flex;
            gap: 25px;
            justify-content: center;
        }

        /* Sections General */
        section {
            padding: 120px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .section-title .underline {
            width: 100px;
            height: 4px;
            background: var(--primary);
            margin: 0 auto;
            border-radius: 2px;
            box-shadow: var(--glow);
        }

        /* About Preview */
        .about-preview {
            background-color: var(--bg-dark);
            position: relative;
        }

        .about-flex {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 30px;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
            border: 1px solid rgba(0, 212, 255, 0.3);
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.02);
            border-color: var(--primary);
        }

        /* Services Preview */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: var(--bg-card);
            padding: 50px 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.1);
            text-align: center;
            transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            pointer-events: none;
        }

        .service-card:hover::before {
            transform: translateX(100%);
        }

        .service-card:hover {
            transform: translateY(-15px);
            background: rgba(0, 212, 255, 0.05);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card i {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            text-shadow: var(--glow);
            transition: var(--transition);
        }

        .service-card:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .service-card h3 {
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        /* Why Choose Us */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

        .why-item {
            text-align: center;
            padding: 30px;
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            position: relative;
            overflow: hidden;
        }

        .why-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            pointer-events: none;
        }

        .why-item:hover::before {
            transform: translateX(100%);
        }

        .why-item:hover {
            transform: translateY(-15px);
            background: rgba(0, 212, 255, 0.05);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .why-item i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 25px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
        }

        .why-item:hover i {
            transform: scale(1.2) rotate(10deg);
            color: var(--primary);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 10, 20, 0.85), rgba(0, 10, 20, 0.95)), url('/images/cta_bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            padding: 120px 0;
        }

        .cta-section h2 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: var(--glow);
        }

        /* Footer */
        footer {
            background-color: #050505;
            padding: 55px 0 20px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 1.2rem;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .footer-col p {
            font-size: 1rem;
            margin-bottom: 15px;
            color: #999;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #999;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.3rem;
            border: 1px solid rgba(0, 212, 255, 0.1);
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--bg-dark);
            box-shadow: var(--glow);
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            color: #555;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 { font-size: 3.5rem; }
            .about-flex { flex-direction: column; text-align: center; }
            .about-text .section-title { text-align: center !important; }
            .about-text .underline { margin: 0 auto !important; }
        }

        @media (max-width: 768px) {
            nav {
                min-height: 72px;
            }

            .logo {
                min-width: 0;
            }

            .logo img {
                height: 42px;
                flex-shrink: 0;
            }

            .logo-text {
                font-size: 1rem;
                line-height: 1.2;
            }

            .nav-links {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                opacity: 0;
                overflow: hidden;
                padding: 0 24px;
                pointer-events: none;
                text-align: center;
                transform: translateY(-16px);
                border-bottom: 1px solid var(--primary);
                backdrop-filter: blur(20px);
                box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
                transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
            }

            .nav-links.active {
                max-height: 420px;
                opacity: 1;
                padding: 26px 24px;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-links li {
                width: 100%;
                opacity: 0;
                transform: translateY(-8px);
                transition: opacity 0.28s ease 0.05s, transform 0.28s ease 0.05s;
            }

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

            .nav-links a {
                display: block;
                padding: 14px 0;
            }

            .hamburger {
                align-items: center;
                display: flex;
                height: 44px;
                justify-content: center;
                width: 44px;
            }

            .hero h1 { font-size: 2.2rem; letter-spacing: 2px; }
            .hero p { font-size: 1.1rem; letter-spacing: 1px; }
            .hero-btns { flex-wrap: wrap; justify-content: center; gap: 15px; }
            .section-title h2 { font-size: 2rem; }
            .cta-section h2 { font-size: 2.2rem; }
            .cta-section { background-attachment: scroll; }
            .services-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; letter-spacing: 1px; }
            .hero p { font-size: 0.95rem; letter-spacing: 0; }
            .btn { padding: 12px 24px; font-size: 0.85rem; }
        }
    
