 /* Services Grid Section */
        .services-grid-section {
            min-height: 100vh;
            background: #000000;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .services-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .services-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .services-header h2 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .services-header p {
            font-size: clamp(16px, 2vw, 18px);
            color: #999;
        }

        /* Services Grid */
        .services-grid-wrapper {
            position: relative;
        }

        .services-grid {
            display: flex;
            gap: 25px;
            padding: 20px 40px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #333 #000;
        }

        .services-grid::-webkit-scrollbar {
            height: 8px;
        }

        .services-grid::-webkit-scrollbar-track {
            background: #000;
        }

        .services-grid::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }

        .services-grid::-webkit-scrollbar {
            display: none;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: #ffffff;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 1;
            animation: fadeInOut 2s ease-in-out infinite;
            pointer-events: none;
            z-index: 10;
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        .scroll-indicator i {
            animation: slideRight 1.5s ease-in-out infinite;
        }

        @keyframes slideRight {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 35px 28px;
            position: relative;
            overflow: hidden;
            min-width: 340px;
            max-width: 340px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
        }

        .service-icon {
            width: 65px;
            height: 65px;
            background: #ffffff;
            color: #000000;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.05);
        }

        .service-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .service-description {
            font-size: 14px;
            line-height: 1.6;
            color: #999;
            margin-bottom: 18px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 10px;
        }

        /* Responsive - Mobile Vertical Layout */
        @media (max-width: 768px) {
            .services-grid-section {
                padding: 60px 0 80px;
            }

            .services-grid {
                flex-direction: column;
                padding: 20px;
                overflow-x: visible;
                overflow-y: visible;
            }

            .service-card {
                min-width: 100%;
                max-width: 100%;
                padding: 28px 22px;
            }

            .services-header {
                margin-bottom: 30px;
            }

            .scroll-indicator {
                display: none;
            }
        }