 /* Services Section */
        .tech-services-section {
            width: 100%;
            padding: 60px 20px;
            background-color: #FFFFFF;
            overflow: hidden;
        }

        /* Header */
        .dev-team-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }

        .dev-team-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #0f1724;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .dev-team-tag {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #5b21b6;
            background: rgba(139, 92, 246, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
            margin-left: 8px;
        }

        .dev-team-lead {
            color: #4a5568;
            font-size: clamp(1rem, 2vw, 1.1rem);
            margin: 20px auto;
            max-width: 700px;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            margin-top: 10px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6, #6d28d9);
            color: #fff;
            box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(107, 70, 193, 0.3);
        }

        /* Services Grid Wrapper */
        .services-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* Services Grid - Desktop: Grid, Mobile: Swipeable */
        .tech-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 20px;
        }

        /* Card Styling */
        .tech-service-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(100, 29, 175, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .tech-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(100, 29, 175, 0.15);
        }

        /* Service Icon */
        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .tech-service-card:hover .service-icon {
            transform: scale(1.1);
        }

        /* Individual Icon Colors */
        .tech-service-card[data-number="01"] .service-icon {
            background: linear-gradient(135deg, #FF6B6B, #FFD93D);
        }

        .tech-service-card[data-number="02"] .service-icon {
            background: linear-gradient(135deg, #4ECDC4, #44A08D);
        }

        .tech-service-card[data-number="03"] .service-icon {
            background: linear-gradient(135deg, #A18CD1, #FBC2EB);
        }

        .service-icon i {
            font-size: 1.8rem;
            color: #fff;
        }

        /* Card Content */
        .tech-service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            color: #1A1A1A;
            font-weight: 600;
        }

        .tech-service-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #4A4A4A;
        }

        /* Scroll Indicators for Mobile */
        .scroll-indicator {
            display: none;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .scroll-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.3);
            transition: all 0.3s ease;
        }

        .scroll-dot.active {
            width: 24px;
            border-radius: 4px;
            background: #8b5cf6;
        }

        /* Tablet View */
        @media (max-width: 1024px) {
            .tech-services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }

        /* Mobile View - Swipeable */
        @media (max-width: 968px) {
            .tech-services-section {
                padding: 40px 0;
            }

            .services-wrapper {
                overflow: hidden;
            }

            .tech-services-grid {
                display: flex;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 20px;
                padding: 20px 20px 20px 20px;
                scrollbar-width: none;
                grid-template-columns: none;
            }

            .tech-services-grid::-webkit-scrollbar {
                display: none;
            }

            .tech-service-card {
                flex: 0 0 85%;
                max-width: 320px;
                scroll-snap-align: center;
                padding: 35px 25px;
            }

            .scroll-indicator {
                display: flex;
            }

            .dev-team-header {
                margin-bottom: 35px;
                padding: 0 20px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .tech-service-card {
                flex: 0 0 90%;
            }
        }

        /* Reduce Motion for Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
            
            .tech-services-grid {
                scroll-behavior: auto !important;
            }
        }