        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #06b6d4;
            --dark: #0f172a;
            --dark-transparent: rgba(15, 23, 42, 0.95);
            --light: #f8fafc;
            --gray: #64748b;
            --accent: #8b5cf6;
            --tech-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --success: #10b981;
            --warning: #f59e0b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 20%);
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 10px 0;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--tech-gradient);
            border-radius: 2px;
        }

        /* ===== Header Styles ===== */
        header {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(100, 116, 139, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700; 
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;    
        }

        .logo span {
            color: var(--primary);
        }

        .logo .tech {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:not(.cta-button):hover {
            color: var(--primary);
        }

        .nav-links a:not(.cta-button)::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:not(.cta-button):hover::after {
            width: 100%;
        }

        .cta-buttons {
            background: linear-gradient(135deg, #6C63FF, #3F8EFC);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.35s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
            text-align: center;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .cta-buttons:hover {
            background: linear-gradient(135deg, #3F8EFC, #6C63FF);
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(63, 142, 252, 0.45);
            color: #fff !important;
        }

        .mobile-menu-btn {
            display: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== Services Hero ===== */
        .services-hero {
            padding: 135px 0 100px;
            min-height: 40vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .services-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05), transparent 70%);
            z-index: -1;
        }

        .services-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .services-hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            color: #94a3b8;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb span {
            color: #64748b;
        }

        /* ===== Services Overview ===== */
        .services-overview {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 100px;
        }

        .services-intro {
            flex: 1;
        }

        .services-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .services-image::before {
            content: '';
            position: absolute;
            width: 90%;
            height: 90%;
            background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
            border-radius: 15px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .services-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            font-family: 'Orbitron', sans-serif;
            background: linear-gradient(to right, var(--light), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .services-intro p {
            margin-bottom: 25px;
            color: #cbd5e1;
            line-height: 1.8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: rgba(15, 23, 42, 0.6);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(100, 116, 139, 0.2);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            background: rgba(15, 23, 42, 0.8);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
            font-family: 'Orbitron', sans-serif;
        }

        .stat-label {
            font-size: 1rem;
            color: #94a3b8;
        }

        /* ===== Services Grid ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 100px;
        }

        .service-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--tech-gradient);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--secondary);
            margin-bottom: 25px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
            text-align: center;
        }

        .service-desc {
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 25px;
            text-align: center;
            flex-grow: 1;
        }

        .service-features {
            text-align: left;
            margin-bottom: 30px;
        }

        .service-features ul {
            padding-left: 20px;
        }

        .service-features li {
            margin-bottom: 10px;
            color: #cbd5e1;
            position: relative;
            padding-left: 25px;
            text-align: left;
        }

        /* .service-features li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--success);
            position: absolute;
            left: 0;
        } */

        .service-cta-container {
            margin-top: auto;
            padding-top: 20px;
            text-align: center;
        }

        .service-cta {
            background: var(--tech-gradient);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none; 
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
            text-decoration: none;
            display: inline-block;
            min-width: 150px;
        }

        .service-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

        /* ===== Industries Section ===== */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .industry-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .industry-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .industry-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 25px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .industry-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
        }

        .industry-desc {
            color: #cbd5e1;
            line-height: 1.8;
            flex-grow: 1;
        }

        /* ===== Call to Action ===== */
        .cta-section {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
            border-radius: 20px;
            padding: 70px;
            text-align: center;
            margin-bottom: 100px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            position: relative;
            overflow: hidden;
        }
        .cta-section-info {
             background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            margin-bottom: 100px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            position: relative;
            overflow: hidden;
            top: 40px;
        }


        .cta-section-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover;
            opacity: 0.1;
            z-index: -1;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-family: 'Orbitron', sans-serif;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .cta-button-large {
            background: var(--tech-gradient);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
            font-size: 1.1rem;
        }

        .cta-button-large:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.6);
        }
      
        /* ===== Footer ===== */
        .footer {
            background: rgba(2, 6, 23, 0.9);
            padding: 70px 0 0;
            border-top: 1px solid rgba(100, 116, 139, 0.2);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-col {
            padding: 20px;
        }

        .footer-col h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--tech-gradient);
            border-radius: 3px;
        }

        .footer-col p {
            color: #cbd5e1;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .footer-links a {
            display: flex;
            align-items: center;
            color: #cbd5e1;
            text-decoration: none;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .footer-links i {
            margin-right: 10px;
            color: var(--secondary);
            font-size: 0.8rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-top: 15px;
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid rgba(100, 116, 139, 0.3);
            background: rgba(15, 23, 42, 0.5);
            color: var(--light);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        .submit-btn {
            background: var(--tech-gradient);
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: button;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(100, 116, 139, 0.2);
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .footer-bottom i {
            color: #ef4444;
            margin: 0 5px;
        }

        /* ===== Responsive Styles ===== */
        @media (max-width: 1200px) {
            .services-hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .services-overview {
                flex-direction: column;
            }
            
            .services-image {
                width: 100%;
                max-width: 600px;
                margin-top: 40px;
            }
            
            .cta-section {
                padding: 50px 30px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--dark-transparent);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: right 0.3s ease;
                z-index: 999;
                padding: 20px;
            }

            .nav-links.active {
                right: 0;
            }

            .mobile-menu-btn {
                display: block;
                z-index: 1000;
            }

            .services-hero {
                padding: 160px 0 80px;
            }
            
            .services-hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-padding {
                padding: 1px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .industries-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-subtitle {
                font-size: 1.1rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .cta-section {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .services-hero {
                padding: 140px 0 60px;
            }
            
            .services-hero-title {
                font-size: 2rem;
            }
            
            .services-intro h2 {
                font-size: 2rem;
            }
            
            .cta-section {
                padding: 30px 15px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .cta-button-large {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .service-icon {
                font-size: 3rem;
            }
            
            .service-title {
                font-size: 1.4rem;
            }
            
            .service-desc {
                min-height: auto;
            }
            
            .service-cta {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .industry-card {
                padding: 30px 20px;
            }
            
            .industry-icon {
                font-size: 2.5rem;
            }
        }

        /* Animation for service cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card, .industry-card, .stat-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        .industry-card:nth-child(1) { animation-delay: 0.1s; }
        .industry-card:nth-child(2) { animation-delay: 0.2s; }
        .industry-card:nth-child(3) { animation-delay: 0.3s; }
        .industry-card:nth-child(4) { animation-delay: 0.4s; }
@media (min-width: 768px) {
    .footer-container { grid-template-columns: repeat(4, 1fr); }
    .footer-col { padding: 18px 1px; }
    .footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}
}