        
        .services {
            padding: 6rem 0;
            background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
        }

        [data-theme="dark"] .services {
            background: #334155;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
           /* color: #64748b; */
		   /*newcode 20250605*/
		   color:var(--light2);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .service-card {
            background: var(--light);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            transition: all 0.3s ease;
        }

        .service-card.si::before {
            background: var(--gradient-1);
        }

        .service-card.dev::before {
            background: var(--gradient-2);
        }

        .service-card.consulting::before {
            background: var(--gradient-3);
        }

        .service-card.security::before {
            background: var(--gradient-4);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .service-card.si .service-icon {
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            color: #667eea;
        }

        .service-card.dev .service-icon {
            background: linear-gradient(45deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
            color: #f093fb;
        }

        .service-card.consulting .service-icon {
            background: linear-gradient(45deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
            color: #4facfe;
        }

        .service-card.security .service-icon {
            background: linear-gradient(45deg, rgba(67, 233, 123, 0.1), rgba(56, 249, 215, 0.1));
            color: #43e97b;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .service-description {
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            color: #64748b;
            transition: color 0.3s ease;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

        .service-card:hover .service-features li {
            color: #475569;
        }

        .cta-section {
            padding: 6rem 0;
            background: var(--gradient-1);
            color: white;
            text-align: center;
            position: relative;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .button-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .button-outline:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-2px);
        }


        /* Loading animation for service cards */
        .service-card.loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .service-card.loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .service-card {
                padding: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 500px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card {
                margin: 0 0.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }