
        /* Services Section Styling */
        .our-services {
            background: var(--neutral-50);
            position: relative;
        }
        
        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 2;
        }
        
        
        
        .services-wrapper {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(300px, 1fr));
            gap: 30px;
            perspective: 1000px;
            margin: 0 auto;
            max-width: 1200px;
            width: 100%;
        }
        
        .service-card {
            border-radius: 16px;
            overflow: hidden;
            background: white;
            box-shadow: var(--shadow-lg);
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
            box-shadow: var(--shadow-xl);
        }
        
        .service-card-inner {
            padding: 30px;
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            z-index: 1;
            transition: height 0.3s ease;
        }
        
        .service-card:hover::before {
            height: 8px;
        }
        
        .service-card-accent-blue::before {
            background: var(--gradient-blue);
        }
        
        .service-card-accent-purple::before {
            background: var(--gradient-purple);
        }
        
        .service-card-accent-green::before {
            background: var(--gradient-green);
        }
        
        .service-card-accent-orange::before {
            background: var(--gradient-orange);
        }
        
        .service-card-accent-red::before {
            background: var(--gradient-red);
        }
        
        .service-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: var(--neutral-100);
            border-radius: 50%;
            opacity: 0.3;
            transform: translate(30%, 30%);
            z-index: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        
        .service-card:hover::after {
            opacity: 0.5;
            transform: translate(25%, 25%) scale(1.2);
        }
        
        .service-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .service-icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--neutral-100);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .service-card-accent-blue .service-icon-wrapper {
            background: rgba(37, 99, 235, 0.1);
        }
        
        .service-card-accent-purple .service-icon-wrapper {
            background: rgba(139, 92, 246, 0.1);
        }
        
        .service-card-accent-green .service-icon-wrapper {
            background: rgba(16, 185, 129, 0.1);
        }
        
        .service-card-accent-orange .service-icon-wrapper {
            background: rgba(245, 158, 11, 0.1);
        }
        
        .service-card-accent-red .service-icon-wrapper {
            background: rgba(239, 68, 68, 0.1);
        }
        
        .service-icon {
            font-size: 28px;
            z-index: 1;
            transition: transform 0.3s ease;
        }
        
        .service-card-accent-blue .service-icon {
            color: var(--primary-blue);
        }
        
        .service-card-accent-purple .service-icon {
            color: var(--primary-purple);
        }
        
        .service-card-accent-green .service-icon {
            color: var(--primary-green);
        }
        
        .service-card-accent-orange .service-icon {
            color: var(--primary-orange);
        }
        
        .service-card-accent-red .service-icon {
            color: var(--primary-red);
        }
        
        .service-card:hover .service-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            background: var(--neutral-100);
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            color: var(--neutral-700);
        }
        
        .service-tag i {
            margin-right: 4px;
            font-size: 10px;
        }
        
        .service-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .service-title {
            transform: translateX(4px);
        }
        
        .service-description {
            color: var(--neutral-600);
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .service-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--neutral-200);
        }
        
        .stats-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .stats-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            background: var(--neutral-100);
            color: var(--neutral-700);
            transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
        }
        
        .service-card-accent-blue:hover .stats-icon {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.1);
        }
        
        .service-card-accent-purple:hover .stats-icon {
            background: var(--primary-purple);
            color: white;
            transform: scale(1.1);
        }
        
        .service-card-accent-green:hover .stats-icon {
            background: var(--primary-green);
            color: white;
            transform: scale(1.1);
        }
        
        .service-card-accent-orange:hover .stats-icon {
            background: var(--primary-orange);
            color: white;
            transform: scale(1.1);
        }
        
        .service-card-accent-red:hover .stats-icon {
            background: var(--primary-red);
            color: white;
            transform: scale(1.1);
        }
        
        .stats-info {
            display: flex;
            flex-direction: column;
        }
        
        .stats-number {
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
        }
        
        .stats-label {
            font-size: 12px;
            color: var(--neutral-500);
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 24px;
        }
        
        .service-features li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 14px;
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .service-features li:hover {
            transform: translateX(5px);
        }
        
        .service-features li i {
            margin-right: 8px;
            font-size: 12px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease, color 0.3s ease;
        }
        
        .service-card-accent-blue .service-features li i {
            color: var(--primary-blue);
            background: rgba(37, 99, 235, 0.1);
        }
        
        .service-card-accent-purple .service-features li i {
            color: var(--primary-purple);
            background: rgba(139, 92, 246, 0.1);
        }
        
        .service-card-accent-green .service-features li i {
            color: var(--primary-green);
            background: rgba(16, 185, 129, 0.1);
        }
        
        .service-card-accent-orange .service-features li i {
            color: var(--primary-orange);
            background: rgba(245, 158, 11, 0.1);
        }
        
        .service-card-accent-red .service-features li i {
            color: var(--primary-red);
            background: rgba(239, 68, 68, 0.1);
        }
        
        .service-card-accent-blue:hover .service-features li:hover i {
            background: var(--primary-blue);
            color: white;
        }
        
        .service-card-accent-purple:hover .service-features li:hover i {
            background: var(--primary-purple);
            color: white;
        }
        
        .service-card-accent-green:hover .service-features li:hover i {
            background: var(--primary-green);
            color: white;
        }
        
        .service-card-accent-orange:hover .service-features li:hover i {
            background: var(--primary-orange);
            color: white;
        }
        
        .service-card-accent-red:hover .service-features li:hover i {
            background: var(--primary-red);
            color: white;
        }
        
/* This CSS section can be removed since we're not using the CTAs anymore */
        .service-cta {
            display: none;
        }
        
        /* Decorative Shapes */
        .services-shape-1,
        .services-shape-2,
        .services-shape-3 {
            position: absolute;
            z-index: 1;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.1;
            animation: float 12s ease-in-out infinite;
        }
        
        .services-shape-1 {
            background: var(--primary-blue);
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }
        
        .services-shape-2 {
            background: var(--primary-purple);
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -150px;
            animation-delay: -3s;
        }
        
        .services-shape-3 {
            background: var(--primary-green);
            width: 250px;
            height: 250px;
            top: 40%;
            right: 10%;
            animation-delay: -6s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }
        
        /* Service Counters */
        .service-counters {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 80px;
        }
        
        .counter-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .counter-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .counter-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .counter-icon::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: currentColor;
            opacity: 0.1;
            z-index: 0;
        }
        
        .counter-icon i {
            position: relative;
            z-index: 1;
        }
        
        .counter-value {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 4px;
            line-height: 1;
            background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .counter-label {
            font-size: 14px;
            color: var(--neutral-600);
            font-weight: 500;
        }
        
        .counter-1 .counter-icon {
            color: var(--primary-blue);
        }
        
        .counter-2 .counter-icon {
            color: var(--primary-purple);
        }
        
        .counter-3 .counter-icon {
            color: var(--primary-green);
        }
        
        .counter-4 .counter-icon {
            color: var(--primary-orange);
        }
        
        /* CTA Section */
        .services-cta {
            text-align: center;
            margin-top: 80px;
            padding: 60px;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        
        .services-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(139, 92, 246, 0.03));
            z-index: 0;
        }
        
        .services-cta-content {
            position: relative;
            z-index: 1;
        }
        
        .services-cta-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .services-cta-text {
            font-size: 16px;
            color: var(--neutral-600);
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .services-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
        }
        
        
        
        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .service-counters {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-cta {
                padding: 40px;
            }
        }
        
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, minmax(280px, 1fr));
                max-width: 800px;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .services-grid {
                grid-template-columns: repeat(1, minmax(280px, 1fr));
                max-width: 400px;
                margin: 0 auto;
            }
            
            .services-cta-buttons {
                flex-direction: column;
                gap: 16px;
                max-width: 300px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 480px) {
            .service-stats {
                flex-direction: column;
                gap: 16px;
            }
            
            .service-counters {
                grid-template-columns: 1fr;
            }
            
            .services-cta {
                padding: 30px 20px;
            }
            
            .services-cta-title {
                font-size: 28px;
            }
        }

        /* Custom Hover Effects */
        .service-card {
            position: relative;
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
            background-size: 250% 250%;
            background-position: 100% 100%;
            transition: all 0.6s ease-out;
            z-index: 1;
            pointer-events: none;
        }

        .service-card:hover::before {
            background-position: 0% 0%;
        }

        /* Micro-animations for services cards */
        .service-card {
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        /* Animated underline for titles */
        .service-title {
            position: relative;
            display: inline-block;
        }

        .service-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            transition: width 0.3s ease;
        }

        .service-card-accent-blue .service-title::after {
            background: var(--primary-blue);
        }

        .service-card-accent-purple .service-title::after {
            background: var(--primary-purple);
        }

        .service-card-accent-green .service-title::after {
            background: var(--primary-green);
        }

        .service-card-accent-orange .service-title::after {
            background: var(--primary-orange);
        }

        .service-card-accent-red .service-title::after {
            background: var(--primary-red);
        }

        .service-card:hover .service-title::after {
            width: 100%;
        }

        /* Focus states for accessibility */
        .service-card:focus-within {
            outline: 2px solid var(--primary-blue);
            outline-offset: 4px;
        }

        /* Loading animations */
        @keyframes shimmer {
            0% {
                background-position: -500px 0;
            }
            100% {
                background-position: 500px 0;
            }
        }

        .is-loading {
            position: relative;
            overflow: hidden;
        }

        .is-loading::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.4) 50%, 
                rgba(255,255,255,0) 100%);
            background-size: 500px 100%;
            animation: shimmer 1.5s infinite linear;
        }
