.services-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background: radial-gradient(ellipse at top, #f0f9ff 0%, #ffffff 50%);
            /* padding: 4rem 0 3rem; */
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-bottom: 100px;
        }

        /* Animated background orbs */
        .services-section::before,
        .services-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: floatOrb 20s ease-in-out infinite;
        }

        .services-section::before {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #f7bffe, #a879b4);
            top: 10%;
            left: -10%;
        }

        .services-section::after {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, #f7bffe, #a879b4);
            bottom: 10%;
            right: -5%;
            animation-delay: 10s;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.1); }
            66% { transform: translate(-30px, 30px) scale(0.9); }
        }

        .background-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.25;
            animation: floatOrb 25s ease-in-out infinite;
        }

        .background-orb:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #f7bffe, #a879b4);
            top: 40%;
            right: 15%;
            animation-delay: 5s;
        }

        .background-orb:nth-child(2) {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #f7bffe, #a879b4);
            top: 60%;
            left: 10%;
            animation-delay: 15s;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            z-index: -1;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1a1a1a 0%, #a879b4 50%, #f7bffe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: #666666;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* Service Navigation Pills */
        .service-nav {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }

        .service-pill {
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 2px solid;
            background: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .service-pill::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .service-pill:hover::before {
            left: 100%;
        }

        .service-pill.active {
            color: white;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .service-pill[data-service="web-development"] {
            border-color: #0062ff;
            color: #3b82f6;
        }
        .service-pill[data-service="web-development"].active {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-color: #3b82f6;
            color: white;
        }

        .service-pill[data-service="mobile-development"] {
            border-color: #10b981;
            color: #10b981;
        }
        .service-pill[data-service="mobile-development"].active {
            background: linear-gradient(135deg, #10b981, #059669);
            border-color: #10b981;
            color: white;
        }

        .service-pill[data-service="cybersecurity"] {
            border-color: #54dc26;
            color: #54dc26;
        }
        .service-pill[data-service="cybersecurity"].active {
            background: linear-gradient(135deg, #54dc26, #14b82a);
            border-color: #54dc26;
            color: white;
        }

        .pill-icon {
            font-size: 1.2rem;
        }

        /* Carousel Container */
        .carousel-wrapper {
            position: relative;
            perspective: 2000px;
            height: 420px;
            margin-bottom: 1.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .services-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }

        .service-card {
            position: absolute;
            top: 60%;
            left: 50%;
            width: 650px;
            transform-style: preserve-3d;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            pointer-events: none;
            cursor: default;
        }

        /* Navigation Arrows */
        .carousel-nav {
            display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .carousel-nav.prev-btn {
            left: -50px;
        }

        .carousel-nav.next-btn {
            right: -50px;
        }

        .carousel-nav button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid rgba(59, 130, 246, 0.3);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #3b82f6;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .carousel-nav button:hover {
            background: #3b82f6;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(59, 130, 246, 0.3);
        }

        .carousel-nav button:active {
            transform: scale(0.95);
        }

        .service-card.active {
            transform: translate(-50%, -50%) translateZ(0) scale(1);
            opacity: 1;
            pointer-events: all !important;
            z-index: 3;
            cursor: default;
        }

        .service-card.prev {
            transform: translate(-120%, -50%) translateZ(-400px) rotateY(25deg) scale(0.8);
            opacity: 0.6;
            z-index: 2;
            pointer-events: all !important;
            cursor: pointer !important;
        }

        .service-card.next {
            transform: translate(20%, -50%) translateZ(-400px) rotateY(-25deg) scale(0.8);
            opacity: 0.6;
            z-index: 2;
            pointer-events: all !important;
            cursor: pointer !important;
        }
        
        .service-card.prev .slide-content,
        .service-card.next .slide-content {
            pointer-events: all;
        }

        .slide-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .service-card:hover .slide-content {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .slide-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .service-card[data-service="web-development"] .slide-content {
            border: 1px solid rgba(0, 98, 255, 0.2);
            background: linear-gradient(135deg, rgba(219, 234, 254, 0.4), rgba(255, 255, 255, 0.95));
        }
        .service-card[data-service="web-development"] .slide-content::before {
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
        }
        .service-card[data-service="web-development"] .quote-icon {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }
        .service-card[data-service="web-development"] .slide-image-container {
            background: linear-gradient(135deg, #dbeafe, #eff6ff);
        }

        .service-card[data-service="mobile-development"] .slide-content {
            border: 1px solid rgb(16, 185, 129);
            background: linear-gradient(135deg, rgba(209, 250, 229, 0.4), rgba(255, 255, 255, 0.95));
        }
        .service-card[data-service="mobile-development"] .slide-content::before {
            background: linear-gradient(90deg, transparent, #10b981, transparent);
        }
        .service-card[data-service="mobile-development"] .quote-icon {
            background: linear-gradient(135deg, #10b981, #34d399);
        }
        .service-card[data-service="mobile-development"] .slide-image-container {
            background: linear-gradient(135deg, #d1fae5, #ecfdf5);
        }

        .service-card[data-service="cybersecurity"] .slide-content {
            border: 1px solid #54dc26;
            background: linear-gradient(135deg, rgba(254, 226, 226, 0.4), rgba(255, 255, 255, 0.95));
        }
        .service-card[data-service="cybersecurity"] .slide-content::before {
            background: linear-gradient(90deg, transparent, #54dc26, transparent);
        }
        .service-card[data-service="cybersecurity"] .quote-icon {
            background: linear-gradient(135deg, #54dc26, #14b82a);
        }
        .service-card[data-service="cybersecurity"] .slide-image-container {
            background: linear-gradient(135deg, #e4fee2, #fef2f2);
        }

        .service-card[data-service="web-development"] .service-features li::before {
            color: #3b82f6;
        }
        .service-card[data-service="mobile-development"] .service-features li::before {
            color: #10b981;
        }
        .service-card[data-service="cybersecurity"] .service-features li::before {
            color: #54dc26;
        }

        .service-card[data-service="web-development"] .service-cta {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }
        .service-card[data-service="mobile-development"] .service-cta {
            background: linear-gradient(135deg, #10b981, #059669);
        }
        .service-card[data-service="cybersecurity"] .service-cta {
            background: linear-gradient(135deg, #54dc26, #14b82a);
        }

        .slide-image-container {
            position: relative;
            height: 160px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon-large {
            font-size: 4rem;
            opacity: 0.3;
            transition: all 0.6s ease;
        }

        .service-card.active .service-icon-large {
            transform: scale(1.1);
            opacity: 0.4;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 100%);
        }

        .slide-body {
            padding: 1.25rem;
            position: relative;
        }

        .quote-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: white;
            margin-bottom: 0.85rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .service-title {
            font-size: 1.35rem;
            color: #1a1a1a;
            margin-bottom: 0.65rem;
            font-weight: 700;
        }

        .service-description {
            font-size: 0.875rem;
            line-height: 1.5;
            color: #333333;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.35rem 1rem;
        }

        .service-features li {
            padding: 0.4rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: #333;
            font-size: 0.8rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1rem;
        }

        .card-footer {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .service-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.65rem 1.5rem;
            border: none;
            border-radius: 10px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
        }

        .service-cta:hover {
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .scroll-indicators {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 1023px) {
            .services-section {
                min-height: auto;
                padding: 3rem 0;
            }

            .carousel-wrapper {
                height: auto;
                perspective: none;
                overflow: hidden;
            }

            .services-carousel {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                /*gap: 20px;*/
                /*padding: 0 20px 20px 20px;*/
                scrollbar-width: none;
                transform-style: flat;
            }

            .services-carousel::-webkit-scrollbar {
                display: none;
            }

            .service-card {
                position: relative;
                flex: 0 0 90%;
                max-width: 500px;
                scroll-snap-align: center;
                top: auto;
                left: auto;
                transform: none;
                opacity: 1;
                pointer-events: all;
                transition: transform 0.3s ease;
                cursor: pointer;
            }

            .service-card.active,
            .service-card.prev,
            .service-card.next {
                position: relative;
                transform: none;
                opacity: 1;
                z-index: 1;
            }

            .slide-image-container {
                height: 140px;
            }

            .service-features {
                grid-template-columns: 1fr;
            }

            .carousel-nav {
                display: none;
            }

            .service-nav {
                display: none;
            }

            /* Scroll indicators */
            .scroll-indicators {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 24px;
            }

            .scroll-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(139, 92, 246, 0.3);
                transition: all 0.3s ease;
                cursor: pointer;
                border: 2px solid transparent;
            }

            .scroll-dot:hover {
                background: rgba(139, 92, 246, 0.5);
                transform: scale(1.1);
            }

            .scroll-dot.active {
                width: 32px;
                border-radius: 5px;
                background: linear-gradient(135deg, #8b5cf6, #a78bfa);
                box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
            }
        }

        @media (max-width: 767px) {
            .services-section {
                padding: 2.5rem 0;
            }

            .services-container {
                padding: 0 1.25rem;
            }

            .section-header {
                margin-bottom: 1.5rem;
            }

            .section-title {
                font-size: 1.65rem;
                margin-bottom: 0.75rem;
            }

            .section-subtitle {
                font-size: 0.8rem;
                max-width: 400px;
            }

            .service-card {
                flex: 0 0 92%;
                max-width: 450px;
            }

            .slide-image-container {
                height: 130px;
            }

            .slide-body {
                padding: 1.15rem;
            }

            .card-footer {
                flex-direction: column;
                gap: 0.85rem;
                align-items: stretch;
            }

            .service-cta {
                width: 100%;
                left: 0;
                transform: translateX(0);
            }

            .service-cta:hover {
                transform: translateY(-2px);
            }
        }

        @media (max-width: 479px) {
            .services-section {
                padding: 1.75rem 0;
            }

            .services-container {
                padding: 0 0.875rem;
            }

            .section-title {
                font-size: 1.35rem;
                letter-spacing: -0.02em;
            }

            .section-subtitle {
                font-size: 0.7rem;
                max-width: 280px;
            }

            .service-card {
                flex: 0 0 95%;
            }

            .slide-image-container {
                height: 110px;
            }

            .slide-body {
                padding: 1rem;
            }

            .quote-icon {
                width: 24px;
                height: 24px;
                font-size: 0.95rem;
                margin-bottom: 0.75rem;
            }

            .service-title {
                font-size: 1.15rem;
            }

            .service-description {
                font-size: 0.8rem;
                line-height: 1.5;
                margin-bottom: 0.875rem;
            }

            .service-features li {
                font-size: 0.75rem;
            }

            .card-footer {
                padding-top: 1rem;
            }
        }