
   
      
        :root {
            --z-black: #050505;
            --z-dark: #0a0a0a;
            --z-blue: #00f2ff;
            --z-green: #39ff14;
            --z-silver: #e0e0e0;
            --z-glass: rgba(255, 255, 255, 0.03);
            --z-border: rgba(0, 242, 255, 0.2);
        }

        body {
            background-color: var(--z-black);
            color: var(--z-silver);
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
        }

       

        /* --- 2. UTILITY CLASSES --- */
        .text-gradient-blue {
            background: linear-gradient(90deg, #fff, var(--z-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gradient-green {
            background: linear-gradient(90deg, #fff, var(--z-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- 3. PREMIUM BUTTONS (Tech Shape) --- */
        .btn-tech {
            background: transparent;
            color: var(--z-blue);
            border: 1px solid var(--z-blue);
            padding: 12px 35px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: 0.4s;
            clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
            margin-right:15px;
        }

        .btn-tech::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, var(--z-blue), transparent);
            transition: 0.5s;
        }

        .btn-tech:hover::before {
            left: 100%;
        }

        .btn-tech:hover {
            background: var(--z-blue);
            color: var(--z-black);
            box-shadow: 0 0 20px var(--z-blue);
        }

        .btn-tech-green {
            color: var(--z-green);
            border: 1px solid var(--z-green);
        }
        .btn-tech-green:hover {
            background: var(--z-green);
            color: var(--z-black);
            box-shadow: 0 0 20px var(--z-green);
        }

        /* --- 4. HERO SECTION (Skewed & Dynamic) --- */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: 
                radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 40%);
            overflow: hidden;
        }

        /* Animated Background Grid */
        .grid-bg {
            position: absolute;
            width: 200%;
            height: 200%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
            animation: gridMove 20s linear infinite;
            z-index: -1;
        }

        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(40px) translateZ(-200px); }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-content .glitch-text {
            position: relative;
            color: var(--z-blue);
        }

        /* --- 5. GLASS CARDS --- */
        .tech-card {
            background: var(--z-glass);
            border: 1px solid var(--z-border);
            padding: 2.5rem;
            position: relative;
            transition: 0.4s;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
        }

        .tech-card:hover {
            border-color: var(--z-green);
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
        }

        .tech-card i {
            font-size: 2.5rem;
            color: var(--z-blue);
            margin-bottom: 20px;
        }
        .tech-card:hover i {
            color: var(--z-green);
        }

        /* --- 6. CLIENT MARQUEE --- */
        .clients-strip {
            background: var(--z-dark);
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
            padding: 20px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .marquee-content {
            display: inline-block;
            animation: slideLeft 30s linear infinite;
        }
        
        .client-logo {
            display: inline-block;
            margin: 0 40px;
            font-family: 'Orbitron';
            font-weight: 700;
            color: #555;
            font-size: 1.5rem;
        }
        
        .client-logo:hover {
            color: var(--z-blue);
            text-shadow: 0 0 10px var(--z-blue);
        }

        @keyframes slideLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- 7. SEPARATORS (Skewed Dividers) --- */
        .separator-top {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .separator-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }
        .separator-top .shape-fill {
            fill: var(--z-black);
        }

        /* --- 8. PROGRESS BARS (Tech Style) --- */
        .progress-custom {
            height: 6px;
            background: #222;
            border-radius: 0;
            margin-top: 15px;
        }
        .progress-bar-custom {
            background: var(--z-blue);
            box-shadow: 0 0 10px var(--z-blue);
        }
        .progress-bar-custom.green {
            background: var(--z-green);
            box-shadow: 0 0 10px var(--z-green);
        }

        /* --- 9. NEWS CARDS --- */
        .news-card {
            background: #0f0f0f;
            border: 1px solid #222;
            border-radius: 10px; /* Slightly softer here */
            overflow: hidden;
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: var(--z-blue);
            transform: scale(1.02);
        }
        .news-card img {
            transition: 0.5s;
            filter: grayscale(80%);
        }
        .news-card:hover img {
            filter: grayscale(0%);
        }
        
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero-content{ font-size: 3.2rem !important; }
            .tech-card { clip-path: none; border-radius: 10px; }
            .btn-tech { clip-path: none; border-radius: 5px; }
        }
        @media(max-width:576px){
            .hero-content{ font-size: 2.2rem !important;
        font-weight: bold;
    } }
        .hero-content{
            font-weight:bold;
        }
    