
        .service-section {
            padding: 120px 20px;
            min-height: 100vh;
            position: relative;
        }

        .service-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(140, 180, 255, 0.3), transparent);
        }

        .service-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .service-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 80px;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a90e2 50%, #8cc5ff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
        }

        .service-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #8cc5ff, #b8a9ff, #87ceeb);
            border-radius: 2px;
            opacity: 0.7;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            padding: 50px 35px;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
            opacity: 0;
            transform: translateY(60px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(140, 180, 255, 0.1), rgba(184, 169, 255, 0.1), rgba(135, 206, 235, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 24px;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 60px rgba(140, 180, 255, 0.25);
            border-color: rgba(140, 180, 255, 0.4);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .service-icon svg {
            width: 100%;
            height: 100%;
            stroke: url(#iconGradient);
            stroke-width: 1.5;
            fill: none;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon svg {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 0 20px rgba(6, 6, 6, 0.5));
        }

        .service-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .service-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 35px;
            position: relative;
            z-index: 2;
        }

        .service-cta-button {
            display: inline-block;
            align-items: center;
            top: 3rem;
            
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #79a2cb, #7835ce);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            z-index: 2;
            overflow: hidden;
            left: 35%;
        }

        .service-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #87ceeb, #9370db);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .service-cta-button:hover::before {
            left: 0;
        }

        .service-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(140, 180, 255, 0.4);
        }

        .service-cta-arrow {
            transition: transform 0.3s ease;
        }

        .service-cta-button:hover .service-cta-arrow {
            transform: translateX(5px);
        }

        /* Floating elements */
        .service-floating-element {
            position: absolute;
            background: linear-gradient(45deg, rgba(140, 180, 255, 0.1), rgba(184, 169, 255, 0.1));
            border-radius: 50%;
            filter: blur(1px);
            animation: float 6s ease-in-out infinite;
        }

        .service-floating-element:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 5%;
            animation-delay: -2s;
        }

        .service-floating-element:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 8%;
            animation-delay: -4s;
        }

        .service-floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 10%;
            animation-delay: -1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .service-section {
                padding: 80px 15px;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .service-card {
                padding: 40px 25px;
            }
            
            .service-title {
                margin-bottom: 50px;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                padding: 35px 20px;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
            }
        }