  :root {
            --primary: #0a192f;  /* Deep navy */
            --secondary: #64ffda; /* Teal */
            --accent: #ff6b6b;   /* Coral */
            --text: #333333;
            --accent-blue: #0066cc;
            --accent-teal: #00ccb4;
            --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        body {
            font-family: 'Times New Roman', Times, serif;
            background-color: white;
            color: var(--text);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Hero Section */
        .services-hero {
            background: white;
            padding: 6rem 2rem 8rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .company-name {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
        }

        .company-name::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .company-name:hover::after {
            width: 80px;
            background: var(--accent);
        }

        .services-hero h1 {
            font-size: 3.5rem;
            margin: 0.5rem auto 1.5rem;
             background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal)) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
            max-width: 800px;
            position: relative;
        }

        .services-hero h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal)) !important;
            opacity: 0;
            transition: var(--transition);
        }

        .services-hero:hover h1::after {
            opacity: 1;
            width: 200px;
        }

        .services-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: #555;
            position: relative;
        }

        .floating-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background-color: rgba(10, 25, 47, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }

        /* Services Grid */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem;
            max-width: 1200px;
            margin: 6rem auto 6rem;
            position: relative;
            z-index: 1;
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            padding: 2.5rem;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            transition: var(--transition);
            display: inline-block;
        }

        .service-card:hover .service-icon {
            color: var(--accent);
            transform: rotate(15deg) scale(1.1);
        }

        .service-card h2 {
            font-size: 1.6rem;
            margin: 0 0 1rem;
            color: var(--primary);
            position: relative;
            /*display: inline-block;*/
        }

        .service-card h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .service-card:hover h2::after {
            width: 100%;
        }

        .service-card p {
            margin-bottom: 2rem;
            color: #666;
            transition: var(--transition);
        }

        .service-card:hover p {
            color: #444;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: bold;
            text-decoration: none;
            position: relative;
            transition: var(--transition);
        }

        .learn-more::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--secondary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .learn-more:hover {
            color: var(--accent);
        }

        .learn-more:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .learn-more i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .learn-more:hover i {
            transform: translateX(5px);
        }

        /* Particle background for cards */
        .service-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover .service-card-bg {
            opacity: 1;
        }

        .service-particle {
            position: absolute;
            background: rgba(100, 255, 218, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        /* Animations */
        .hidden {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating animation */
        @keyframes float-up {
            0% { transform: translateY(20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        /* Pulse animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }
            .services-container {
                grid-template-columns: 1fr;
                margin-top: 3rem;
            }
        }

        /* SEO enhancements */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
   