        /* ========== PERFORMANCE OPTIMIZATION ========== */
        * { 
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            zoom: 1;
        }

        /* Optimize will-change for GPU acceleration */
        * {
            will-change: auto;
        }
        
        /* GPU-accelerated elements */
        .custom-cursor,
        .custom-cursor-follower,
        .portfolio-card,
        .service-card,
        .client-card,
        .team-member,
        .tech-item,
        .stat-card,
        .fade-in {
            will-change: transform, opacity;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
            perspective: 1000px;
        }

        /* ========== SMOOTH SCROLL CONFIGURATION ========== */
        html.lenis {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        html {
            scroll-behavior: smooth;
            font-size: 20px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            position: static !important;
            transform: none !important;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            overflow-x: hidden;
        }

        /* ========== GSAP FADE-IN ANIMATIONS ========== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== BACKGROUND CANVAS OPTIMIZATION ========== */
        #three-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 0;
            pointer-events: none !important;
            will-change: auto;
        }

        #three-container canvas {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
        }

        /* ========== CUSTOM CURSOR - OPTIMIZED ========== */
        .custom-cursor {
            position: fixed;
            left: 0;
            top: 0;
            width: 12px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.8),
                        0 0 40px rgba(102, 126, 234, 0.5),
                        0 0 60px rgba(102, 126, 234, 0.3);
            transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                        height 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .custom-cursor-follower {
            position: fixed;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            border: 2px solid rgba(102, 126, 234, 0.6);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            box-shadow: 0 0 30px rgba(102, 126, 234, 0.4),
                        inset 0 0 20px rgba(102, 126, 234, 0.2);
            transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        @media (max-width: 768px) {
            .custom-cursor,
            .custom-cursor-follower {
                display: none !important;
            }
        }

        .custom-cursor.hovering {
            width: 8px;
            height: 8px;
            box-shadow: 0 0 30px rgba(245, 87, 108, 1),
                        0 0 60px rgba(245, 87, 108, 0.7),
                        0 0 90px rgba(245, 87, 108, 0.4);
        }

        .custom-cursor-follower.hovering {
            border-color: rgba(245, 87, 108, 0.9);
            box-shadow: 0 0 40px rgba(245, 87, 108, 0.6),
                        inset 0 0 30px rgba(245, 87, 108, 0.3);
        }

        /* ========== SUCCESS MESSAGE - OPTIMIZED ========== */
        .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: rgba(22, 22, 22, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 90%;
            width: 400px;
        }

        .success-message.show {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .success-message i {
            font-size: 3rem;
            color: #4CAF50;
            margin-bottom: 1rem;
        }

        .success-message h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: white;
            font-weight: 600;
        }

        .success-message p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Confetti Animation - GPU Optimized */
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            z-index: 999;
            pointer-events: none;
            will-change: transform, opacity;
        }
        
        /* ========== CHATBOT ========== */
        .chat-widget {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            font-family: 'Inter', sans-serif;
        }

        /* Toggle button */
        .chat-toggle {
            background: #E8C547;
            border: none;
            color: #0a0a0a;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
                        box-shadow 0.25s ease,
                        background 0.2s ease;
            box-shadow: 0 4px 20px rgba(232,197,71,0.35);
            position: relative;
        }

        .chat-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(232,197,71,0.5);
            background: #f0d060;
        }

        .chat-toggle i {
            font-size: 1.25rem;
            transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
        }

        .chat-widget.active .chat-toggle i {
            transform: rotate(90deg) scale(0.85);
        }

        /* Status variants - keep yellow */
        .chat-toggle.warming,
        .chat-toggle.ready,
        .chat-toggle.slow { background: #E8C547; }

        @keyframes pulse-warming {
            0%, 100% { box-shadow: 0 4px 20px rgba(232,197,71,0.35); }
            50%       { box-shadow: 0 4px 28px rgba(232,197,71,0.6); }
        }

        /* Chat window */
        .chat-window {
            position: absolute;
            bottom: calc(100% + 14px);
            right: 0;
            width: 350px;
            height: 500px;
            max-width: calc(100vw - 48px);
            max-height: calc(100vh - 110px);
            background: rgba(14, 14, 14, 0.97);
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0,0,0,0.55);
            transform-origin: bottom right;
            /* Closed state */
            opacity: 0;
            transform: scale(0.88) translateY(12px);
            pointer-events: none;
            transition: opacity 0.3s cubic-bezier(0.22,1,0.36,1),
                        transform 0.35s cubic-bezier(0.22,1,0.36,1);
        }

        /* Open state */
        .chat-widget.active .chat-window {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: all;
        }

        /* Header */
        .chat-header {
            padding: 16px 18px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .chat-header-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            overflow: hidden;
            background: rgba(255,255,255,0.08);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-header-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .chat-header-info {
            flex: 1;
            min-width: 0;
        }

        .chat-header-info h3 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0;
            line-height: 1.2;
        }

        .chat-header-status {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 2px;
        }

        .chat-status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #4ade80;
        }

        .chat-header-actions { flex-shrink: 0; }

        .chat-resize-btn {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            width: 30px;
            height: 30px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .chat-resize-btn:hover {
            background: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.9);
        }

        /* Size variants */
        .chat-window.size-compact { width: 320px; height: 450px; }
        .chat-window.size-default { width: 350px; height: 500px; }
        .chat-window.size-large   { width: 400px; height: 600px; }

        /* Messages */
        .chat-messages {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            scroll-behavior: smooth;
        }

        .chat-messages::-webkit-scrollbar { width: 4px; }
        .chat-messages::-webkit-scrollbar-track { background: transparent; }
        .chat-messages::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
        }

        .message-wrapper {
            display: flex;
            gap: 8px;
            align-items: flex-end;
        }

        .message-wrapper.user { flex-direction: row-reverse; }

        .message-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .message-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .message-avatar.bot  { background: rgba(255,255,255,0.08); }
        .message-avatar.user { background: rgba(232,197,71,0.15); }
        .message-avatar.user i { color: #E8C547; font-size: 12px; }

        .message-content {
            max-width: 72%;
            padding: 10px 14px;
            border-radius: 16px;
            font-size: 0.875rem;
            line-height: 1.55;
            word-wrap: break-word;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .message-wrapper.bot .message-content {
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.9);
            border-bottom-left-radius: 4px;
        }

        .message-wrapper.user .message-content {
            background: #E8C547;
            color: #0a0a0a;
            font-weight: 500;
            border-bottom-right-radius: 4px;
        }

        /* Typing animation */
        @keyframes typing-dot {
            0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
            30%            { opacity: 1;   transform: translateY(-5px); }
        }

        /* Suggestion chips */
        .chat-suggestions {
            padding: 8px 14px 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            border-top: 1px solid rgba(255,255,255,0.05);
            flex-shrink: 0;
        }

        .suggestion-chip {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.78rem;
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
        }

        .suggestion-chip:hover {
            background: rgba(232,197,71,0.1);
            border-color: rgba(232,197,71,0.35);
            color: #E8C547;
        }

        /* Input */
        .chat-input {
            padding: 12px 14px;
            border-top: 1px solid rgba(255,255,255,0.07);
            display: flex;
            gap: 8px;
            align-items: center;
            flex-shrink: 0;
        }

        .chat-input input {
            flex: 1;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 10px 14px;
            border-radius: 12px;
            color: white;
            font-family: inherit;
            font-size: 0.875rem;
            min-width: 0;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .chat-input input::placeholder { color: rgba(255,255,255,0.28); }

        .chat-input input:focus {
            outline: none;
            border-color: rgba(232,197,71,0.4);
            background: rgba(255,255,255,0.09);
        }

        .chat-input button {
            background: #E8C547;
            border: none;
            color: #0a0a0a;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
            transition: background 0.2s ease, transform 0.15s ease;
        }

        .chat-input button:hover  { background: #f0d060; transform: scale(1.06); }
        .chat-input button:active { transform: scale(0.94); }

        /* Mobile */
        @media (max-width: 768px) {
            .chat-widget { bottom: 16px; right: 16px; }
            .chat-resize-btn { display: none !important; }
            .chat-suggestions { display: none; }

            .chat-window {
                position: fixed !important;
                bottom: 86px !important;
                right: 12px;
                left: 12px;
                width: auto !important;
                height: 62vh !important;
                max-height: calc(100vh - 108px) !important;
                min-height: 380px;
                border-radius: 18px;
                transform-origin: bottom center;
            }

            .chat-window.size-compact,
            .chat-window.size-default,
            .chat-window.size-large {
                width: auto !important;
                height: 62vh !important;
            }

            .chat-header { padding: 14px 16px; }
            .chat-input { padding: 10px 12px; }
            .chat-input input { padding: 9px 12px; font-size: 0.85rem; }
            .message-content { font-size: 0.85rem; padding: 9px 12px; }
            .message-avatar { width: 26px; height: 26px; }
        }

        @media (max-width: 480px) {
            .chat-window { border-radius: 14px; }
            .message-content { font-size: 0.82rem; }
        }

        html {
            scroll-behavior: smooth;
            font-size: 20px; /* Base font size - 125% zoom equivalent */
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            cursor: none;
            min-height: 100vh;
            font-size: 1rem; /* Ensure readable base size */
        }
        
        a, button, .portfolio-card, .service-card, .client-card, .team-member {
            cursor: none;
        }

        #three-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: #0a0a0a;
        }

        /* ======== RESIZABLE NAVBAR ======== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
            padding: 0;
            pointer-events: none;
        }

        .navbar-wrapper {
            pointer-events: all;
            width: 100%;
            max-width: 100%;
            background: rgba(10, 10, 10, 0.92);
            border: 1px solid transparent;
            border-bottom-color: rgba(255, 255, 255, 0.08);
            padding: 1.1rem 5%;
            border-radius: 0;
            margin-top: 0;
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            box-shadow: none;
            will-change: max-width, border-radius, margin-top, padding;
            /* Transition only GPU-friendly / cheap-to-animate properties */
            transition:
                max-width        0.55s cubic-bezier(0.22, 1, 0.36, 1),
                border-radius    0.55s cubic-bezier(0.22, 1, 0.36, 1),
                margin-top       0.55s cubic-bezier(0.22, 1, 0.36, 1),
                padding          0.45s cubic-bezier(0.22, 1, 0.36, 1),
                border-color     0.4s  ease,
                background-color 0.4s  ease,
                box-shadow       0.4s  ease,
                backdrop-filter  0.4s  ease;
        }

        .navbar-wrapper.scrolled {
            max-width: 860px;
            margin-top: 0.85rem;
            border-radius: 50px;
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(12, 12, 12, 0.82);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            padding: 0.65rem 1.75rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.06);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-left: auto;
        }

        .logo {
            height: 38px;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
            max-height: 38px;
            transition: all 0.4s ease;
        }

        .navbar-wrapper.scrolled .logo img {
            max-height: 30px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.25s ease;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1.3rem;
            background: #E8C547;
            color: #0a0a0a;
            text-decoration: none;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .nav-cta-btn:hover {
            background: #f0d060;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(232, 197, 71, 0.3);
        }

        /* Mobile menu styles */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.4rem;
            background: none;
            border: none;
            z-index: 1001;
            flex-shrink: 0;
            touch-action: manipulation;
        }

        .hamburger {
            width: 22px;
            height: 2px;
            background: rgba(255, 255, 255, 0.8);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -5px);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-12px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            list-style: none;
            text-align: center;
            padding: 1rem 0;
            width: 100%;
            max-width: 300px;
        }

        .mobile-nav a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 0.85rem 2rem;
            border-radius: 10px;
            display: block;
            transition: all 0.25s ease;
        }

        .mobile-nav a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
        }

        .mobile-nav-cta {
            margin-top: 1.25rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2.5rem;
            background: #E8C547;
            color: #0a0a0a;
            text-decoration: none;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: background 0.25s ease;
        }

        .mobile-nav-cta:hover {
            background: #f0d060;
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-cta-btn { display: none; }
            .mobile-menu-toggle { display: flex; }
            .navbar-wrapper { padding: 0.9rem 1.25rem; }
            .navbar-wrapper.scrolled { width: calc(100% - 1.5rem); padding: 0.65rem 1.25rem; }
        }

        /* ============ SOPHISTICATED HERO ANIMATION ============ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            padding: 120px 5% 80px; /* Added percentage padding */
        }

        .hero-content {
            text-align: center;
            max-width: 1200px; /* Increased from 1000px */
            padding: 0 2rem;
            width: 100%;
        }

          #hero-text {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(3.5rem, 10vw, 8rem); /* Adjusted for better scaling */
            font-weight: 700;
            margin-bottom: 2.5rem;
            letter-spacing: -2px;
            line-height: 1.1;
            position: relative;
            color: #ffffff;
            text-shadow: 
                1px 1px 0 #4a4a4a,
                2px 2px 0 #3a3a3a,
                3px 3px 0 #2a2a2a,
                4px 4px 0 #1a1a1a,
                5px 5px 15px rgba(0, 0, 0, 0.4);
            transform-style: preserve-3d;
            transform: perspective(500px) rotateX(10deg);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
       @media (max-width: 768px) {
    .hero {
        padding: 80px 5% 60px; /* Reduced from 120px to 80px top padding */
        min-height: 90vh; /* Slightly reduced height for mobile */
    }
    
    .hero-content {
        padding: 0 1rem; /* Reduced side padding */
        margin-top: -20px; /* Pull content up slightly */
    }
    
    #hero-text {
        margin-bottom: 1.5rem; /* Reduced from 2.5rem */
        font-size: clamp(3.0rem, 10vw, 8rem); /* Adjusted for better scaling */
    }
    
    .hero-tagline {
        margin-bottom: 2rem; /* Reduced from 3.5rem */
    }
}

/* Additional Mobile Header Fix */
@media (max-width: 768px) {
    html {
        font-size: 14px !important; /* Smaller base font on mobile */
    }
    
    /* header padding handled by .navbar-wrapper.scrolled @media rule */

    /* Add space above tagline */
    .hero-tagline {
        margin-top: 2rem !important;
    }

    /* Fix Slide to Digital button on mobile - compact size */
    .cta-button {
        width: 240px !important;
        max-width: 240px !important;
        height: 48px;
        margin: 0 auto;
    }

    .cta-button-slider {
        width: 40px;
        height: 40px;
    }

    .cta-button-text {
        font-size: 0.55rem;
        letter-spacing: 1px;
        text-align: center;
        width: 100%;
        padding-right: 40px;
    }

    .cta-button-track {
        padding: 0 0.5rem 0 3rem;
        justify-content: center !important;
    }

    .cta-button-arrow {
        display: none;
    }

    /* Fix stats counter - faster animation trigger */
    .stats-grid {
        padding: 0 1rem;
    }

    /* Fix About section - justify text */
    .about-content {
        text-align: justify !important;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    /* Fix Testimonial cards on mobile */
    .testimonials-carousel {
        position: relative !important;
        min-height: unset !important;
        height: auto !important;
        overflow: visible !important;
    }

    .testimonial-card {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        min-height: unset !important;
        height: auto !important;
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .testimonial-card:not(.active) {
        display: none !important;
    }

    .testimonial-card.active {
        display: flex !important;
        position: relative !important;
        transform: none !important;
    }

    .testimonial-quote {
        flex: 0 0 auto !important;
    }

    .testimonial-author {
        margin-top: 1rem !important;
        padding-top: 1rem !important;
    }
}

        /* Elegant fade-in with subtle scale */
        #hero-text .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(40px);
            animation: elegantReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            position: relative;
        }

        @keyframes elegantReveal {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Subtle glow on hover - minimal and professional */
        #hero-text .letter:hover {
            cursor: default;
            animation: subtleGlow 0.6s ease forwards;
        }

        @keyframes subtleGlow {
            0%, 100% {
                text-shadow: 0 0 0px transparent;
            }
            50% {
                text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
            }
        }

        /* Refined underline accent */
        #hero-text::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
            animation: lineExpand 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.2s;
        }

        @keyframes lineExpand {
            to {
                transform: translateX(-50%) scaleX(1);
            }
        }

       .hero-tagline {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem); /* Increased minimum size */
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 3.5rem;
            font-weight: 400;
            line-height: 1.6;
            opacity: 0;
            max-width: 700px; /* Increased from 650px */
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.5s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            position: relative;
            display: inline-block;
            width: 280px;
            height: 60px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.8s;
            cursor: pointer;
        }

        .cta-button-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4rem 0 4.5rem;
            pointer-events: none;
        }

        .cta-button-text {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cta-button-arrow {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }

        .cta-button-slider {
            position: absolute;
            top: 50%;
            left: 5px;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: grab;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 2;
            user-select: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .cta-button-slider:active {
            cursor: grabbing;
            transform: translateY(-50%) scale(0.95);
        }

        .cta-button-slider svg {
            width: 20px;
            height: 20px;
            fill: #0a0a0a;
            transition: transform 0.3s ease;
        }

        .cta-button-slider.animating svg {
            animation: slideArrow 0.6s ease infinite;
        }

        @keyframes slideArrow {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }

        .cta-button-fill {
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            transition: width 0.1s linear;
            pointer-events: none;
        }

        .cta-button.completed .cta-button-fill {
            background: rgba(255, 255, 255, 0.15);
        }

        .cta-button.completed .cta-button-text {
            color: #ffffff;
        }

        .cta-button.completed .cta-button-arrow {
            color: #ffffff;
        }

        .cta-button:hover .cta-button-slider:not(.dragging) {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-button:hover {
            border-color: rgba(255, 255, 255, 0.5);
            transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ============ SECTIONS ============ */
       section {
            padding: 8rem 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 3rem;
            letter-spacing: -1px;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            section {
                padding: 6rem 2rem;
            }
            
            .section-title {
                margin-bottom: 2rem;
                font-size: clamp(1.75rem, 4vw, 2.5rem);
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 5rem 1.5rem;
            }
        }

         /* About Section */
        .about {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2.5rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 4rem;
            color: rgba(255, 255, 255, 0.2);
            transition: color 0.8s ease;
        }

        .section-title.visible {
            color: rgba(255, 255, 255, 1);
        }

        /* ========== ABOUT SECTION - OPTIMIZED TEXT RENDERING ========== */
        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: justify;
            padding: 0 2rem;
        }

        .about-content p {
            color: rgba(255, 255, 255, 0.85);
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Mobile: switch to left-align to avoid gaps */
        @media (max-width: 768px) {
            .about-content {
                text-align: left;
                padding: 0 1.5rem;
            }
        }

        /* Word Animation */
        .word {
            display: inline-block;
            color: rgba(255, 255, 255, 0.25);
            transition: color 0.6s ease;
        }

        .word.visible {
            color: rgba(255, 255, 255, 0.65);
        }

        /* Brand Name Styling */
        .brand-name {
            font-weight: 700;
            font-size: 1.45rem;
            letter-spacing: 0.5px;
            position: relative;
            display: inline-block;
            color: rgba(255, 255, 255, 0.25);
            transition: color 0.6s ease;
        }

        .brand-name.visible {
            color: #ffffff;
        }

        .brand-name::after {
            content: '®';
            font-size: 0.7em;
            vertical-align: super;
            margin-left: 2px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-content {
                font-size: 1.15rem;
                line-height: 1.75;
                padding: 0 1.5rem;
            }

            .brand-name {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 6rem 1rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .about-content {
                font-size: 1.05rem;
                line-height: 1.7;
                padding: 0 0.5rem;
                text-align: left;
            }

            .brand-name {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .about {
                padding: 5rem 0.75rem;
            }

            .section-title {
                font-size: 1.75rem;
                margin-bottom: 1.5rem;
            }

            .about-content {
                font-size: 1rem;
                line-height: 1.65;
                padding: 0 0.5rem;
                text-align: left;
            }

            .brand-name {
                font-size: 1.05rem;
            }
        }

        .services {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2.5rem;
        }

.portfolio {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10rem 5%;
    padding-top: 2.5rem;
}

.portfolio-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1500px;
    overflow: visible;
}

.portfolio-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 650px; /* Increased for portrait mockups */
    transform-style: preserve-3d;
    overflow: visible;
}

.portfolio-card {
    position: absolute;
    width: 450px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    opacity: 0;
    pointer-events: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.portfolio-card:nth-child(1)::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.portfolio-card:nth-child(2)::before {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.portfolio-card:nth-child(3)::before {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio-card:nth-child(4)::before {
    background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
}

.portfolio-card.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
}

.portfolio-card.active::before {
    opacity: 1;
}

.portfolio-card.active:hover {
    transform: translate(-50%, -50%) translateY(-10px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.portfolio-card.prev,
.portfolio-card.next {
    opacity: 0.5;
    pointer-events: auto;
    z-index: 1;
}

.portfolio-card.prev {
    transform: translate(-150%, -50%) scale(0.85);
}

.portfolio-card.next {
    transform: translate(50%, -50%) scale(0.85);
}

.portfolio-card.prev:hover {
    transform: translate(-150%, -50%) scale(0.9);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.portfolio-card.next:hover {
    transform: translate(50%, -50%) scale(0.9);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Updated for portrait mockups */
.portfolio-image {
    width: 100%;
    height: 450px; /* Increased from 350px for portrait mockups */
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the container nicely */
    object-position: center;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 1.5rem 2rem; /* Reduced padding since image is taller */
}

.portfolio-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.portfolio-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.portfolio-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.view-projects-btn {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(102, 126, 234, 0.4);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-projects-btn:hover {
    border-color: rgba(102, 126, 234, 0.8);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

/* Project Modal Styles */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10000;
    border-radius: 12px;
    overflow: hidden;
    background: rgb(15, 15, 15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.modal-body {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.modal-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-slider img.active {
    opacity: 1;
}

.modal-description {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.project-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.portfolio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-overlay.active {
    pointer-events: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio {
        padding: 4rem 1.5rem;
        overflow: hidden;
    }

    .portfolio-carousel-container {
        overflow: hidden;
        width: 100%;
    }

    .portfolio-carousel {
        height: 450px; /* Increased for portrait mockups */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .portfolio-card {
        width: 300px; /* Slightly wider for better mockup display */
        height: auto;
        display: flex;
        flex-direction: column;
        visibility: hidden;
    }

    .portfolio-card.active,
    .portfolio-card.prev,
    .portfolio-card.next {
        visibility: visible;
    }

    .portfolio-image {
        height: 280px; /* Increased from 180px for portrait mockups */
        min-height: 280px;
    }

    .portfolio-content {
        padding: 1rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .portfolio-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .portfolio-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .portfolio-card.prev {
        transform: translate(-150%, -50%) scale(0.8);
        opacity: 0.4;
    }

    .portfolio-card.next {
        transform: translate(50%, -50%) scale(0.8);
        opacity: 0.4;
    }

    .portfolio-card.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        z-index: 5;
    }

    .portfolio-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
        margin-top: 1rem;
    }

    /* Modal adjustments for mobile */
    .modal-content {
        width: 92%;
        height: auto;
        max-height: 90vh;
        margin: 0;
    }

    .modal-body {
        height: 50vh;
    }

    .modal-header {
        padding: 0.75rem;
    }

    .modal-header h3 {
        font-size: 1.1rem;
    }

    .modal-description {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .portfolio-carousel {
        height: 420px;
    }

    .portfolio-card {
        width: 280px;
    }

    .portfolio-image {
        height: 260px;
        min-height: 260px;
    }

    .portfolio-content {
        padding: 0.75rem;
    }

    .portfolio-content h3 {
        font-size: 1rem;
    }

    .portfolio-content p {
        font-size: 0.8rem;
    }
}   
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            justify-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        @media (max-width: 1400px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
                gap: 2rem;
            }
        }

        .service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    will-change: transform;
}

@media (max-width: 768px) {
    .service-icon {
    font-size: 4rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto; /* This centers the icon horizontally */
    width: 100px;
    height: 100px;
}
    
    .service-icon i {
        font-size: 4rem !important;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem !important;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 1rem !important;
        line-height: 1.6;
        text-align: justify;
    }
}

    
    .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
    width: 70px;
    height: 70px;
}

.service-icon i {
    font-size: 2.5rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

        .service-card:nth-child(1)::after {
            background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
        }

        .service-card:nth-child(2)::after {
            background: radial-gradient(circle, rgba(245, 87, 108, 0.15) 0%, transparent 70%);
        }

        .service-card:nth-child(3)::after {
            background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
        }

        .service-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover::after {
            opacity: 1;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ========== FIX ICON SHIFTING ========== */
.service-icon,
.stat-icon,
.tech-item,
.social-icon-wrapper,
.social-icons a {
    position: relative;
    flex-shrink: 0;
}

.service-icon i,
.stat-icon i,
.tech-item i,
.social-icon-wrapper i,
.social-icons a i {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    line-height: 1 !important;
    display: block !important;
}

.service-card:hover .service-icon i {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.stat-card:hover .stat-icon i {
    transform: translate(-50%, -50%) scale(1.15) !important;
}

.tech-item:hover i {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

        /* Color gradients for service icons */
        .service-card:nth-child(1) .service-icon i {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-card:nth-child(2) .service-icon i {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-card:nth-child(3) .service-icon i {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-card:hover .service-icon {
            transform: scale(1.05);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-icon i {
            filter: drop-shadow(0 0 12px currentColor);
            transform: translate(-50%, -50%) scale(1.15) !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
            text-align: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            font-size: 0.95rem;
            text-align: justify;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover h3 {
            transform: translateY(-2px);
            color: rgba(255, 255, 255, 1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .clients {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2.5rem;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            justify-items: center;
        }
        
        @media (max-width: 1200px) {
            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }

        .client-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            width: 100%;
            max-width: 500px;
            will-change: transform;
        }

        .client-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-logo {
            width: 100%;
            height: 250px;
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 2rem;
        }

        .client-logo img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            filter: grayscale(100%) brightness(2);
            transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, filter;
        }

        .client-card:hover .client-logo {
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-card:hover .client-logo img {
            filter: grayscale(0%) brightness(1);
            transform: scale(1.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-info {
            padding: 2rem;
        }

        .client-info h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-info p {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 0.95rem;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-card:hover .client-info h3 {
            transform: translateY(-2px);
            color: rgba(255, 255, 255, 1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-card:hover .client-info p {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .client-link {
            display: inline-block;
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 2px;
            transition: all 0.3s;
        }

        .client-link:hover {
            border-color: #ffffff;
        }

        .team {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2.5rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .team-member {
            text-align: center;
            width: 100%;
            min-width: 0;
            animation: floatIn 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.2s; }
        .team-member:nth-child(3) { animation-delay: 0.3s; }

        @keyframes floatIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .member-avatar {
            width: 180px;
            height: 180px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            overflow: hidden;
            cursor: pointer;
            border-radius: 50%;
            transform: translateZ(0);
            position: relative;
        }

        .member-avatar::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
            animation: rotate 3s linear infinite paused;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            transform: scale(1);
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
        }
        
        .member-avatar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: all;
            z-index: 1;
        }

        .member-avatar:hover {
            border-color: transparent;
            box-shadow: 0 0 40px rgba(102, 126, 234, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(-8px) scale(1.05);
        }

        .member-avatar:hover::before {
            opacity: 1;
            animation-play-state: running;
        }

        .member-avatar:hover img {
            transform: scale(1.1);
        }

        .member-info {
            width: 100%;
            min-width: 0;
        }

        .member-info h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .team-member:hover .member-info h3 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .member-info p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .team-member .social-icons {
            justify-content: center;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            text-decoration: none;
            border-radius: 50%;
            transform: translateZ(0);
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            color: rgba(255, 255, 255, 1);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
        }

        .social-icons a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* ============ TESTIMONIALS SECTION ============ */
        .testimonials {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2.5rem;
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-display {
            position: relative;
        }

        .testimonials-carousel {
            position: relative;
            min-height: 450px;
            height: auto;
            overflow: hidden;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 450px;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            background: transparent;
            backdrop-filter: blur(10px);
        }

        .testimonial-card.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-card.prev {
            transform: translateX(-100%);
        }

        .testimonial-quote {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .quote-icon {
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.2);
            margin-bottom: 1.5rem;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
            margin-bottom: 2rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .testimonial-author {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            flex-shrink: 0;
        }

        .author-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.3rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .author-company {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 0.5rem;
            flex-wrap: nowrap;
            flex-shrink: 0;
        }

        .star {
            color: #ffd700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .star.empty {
            color: rgba(255, 215, 0, 0.3);
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonials-nav button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .testimonials-nav button:hover,
        .testimonials-nav button.active {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
            color: #ffffff;
            transform: scale(1.1);
        }

        .testimonials-form {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 3rem;
            height: fit-content;
            backdrop-filter: blur(10px);
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-header h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .testimonial-form-group {
            margin-bottom: 1.5rem;
        }

        .testimonial-form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.6);
        }

        .testimonial-form-group input,
        .testimonial-form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .testimonial-form-group input:focus,
        .testimonial-form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        .rating-input {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .rating-star {
            font-size: 1.5rem;
            color: rgba(255, 215, 0, 0.3);
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
        }

        .rating-star:hover,
        .rating-star.selected {
            color: #ffd700;
            transform: scale(1.1);
        }

        .submit-testimonial-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(10px);
        }

        .submit-testimonial-btn:hover {
            border-color: #ffffff;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .submit-testimonial-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .submission-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-size: 0.9rem;
            display: none;
        }

        .submission-message.success {
            background: rgba(76, 175, 80, 0.2);
            border: 1px solid rgba(76, 175, 80, 0.3);
            color: rgba(76, 175, 80, 1);
        }

        .submission-message.error {
            background: rgba(244, 67, 54, 0.2);
            border: 1px solid rgba(244, 67, 54, 0.3);
            color: rgba(244, 67, 54, 1);
        }

        @media (max-width: 768px) {
            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }

            .testimonial-card {
                padding: 1.5rem;
                min-height: unset;
                height: auto !important;
                position: relative;
                transform: none;
                display: flex;
                flex-direction: column;
            }

            .testimonial-card.active {
                transform: none;
            }

            .testimonials-carousel {
                min-height: unset;
                height: auto !important;
                display: flex;
                flex-direction: column;
            }

            .testimonial-quote {
                flex: 0 0 auto;
            }

            .testimonial-text {
                font-size: 1rem;
                line-height: 1.6;
            }

            .testimonial-author {
                margin-top: auto;
                padding-top: 1rem;
            }

            .author-name {
                font-size: 1.1rem;
            }

            .author-company {
                font-size: 0.85rem;
            }

            .testimonials-form {
                padding: 1.5rem;
            }

            .testimonials-nav {
                flex-wrap: wrap;
                gap: 0.8rem;
            }

            .testimonials-nav button {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
        }

        .contact {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2.5rem;
        }

        .contact-container {
            max-width: 600px;
        }

        .contact-info {
            margin-bottom: 3rem;
            width: 100%;
            min-width: 0;
        }

        .contact-info p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .contact-info a {
            color: #ffffff;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
        }

        .contact-info a:hover {
            border-color: #ffffff;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.04);
        }

        .submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    color: #ffffff;
    border: 1px solid rgba(102, 126, 234, 0.4);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn span,
.submit-btn i {
    position: relative;
    z-index: 1;
}

.submit-btn:hover {
    border-color: rgba(102, 126, 234, 0.8);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .submit-btn {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
}

        footer {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1.2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            position: relative;
            z-index: 1;
        }

        footer p {
            margin: 0.3rem 0;
            font-size: 0.9rem;
        }

        footer strong {
            color: rgba(255, 255, 255, 0.6);
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            section {
                padding: 4rem 1.5rem;
            }

            .clients-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        /* ============ EXPANDABLE SOCIAL ICONS ============ */
        /* ============ EXPANDABLE SOCIAL ICONS - DYNAMIC WIDTH ============ */
/* ============ EXPANDABLE SOCIAL ICONS - SMOOTH IN & OUT ============ */
.social-icons-expandable {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
}

.social-link-expandable {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    width: 50px;
    flex-shrink: 0;
    min-width: 50px;
}

.social-link-expandable:hover {
    width: auto;
    padding-right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Smooth transition back to circle */
.social-link-expandable:not(:hover) {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 50px;
    padding-right: 0;
}

.social-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.social-icon-wrapper i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-link-expandable:hover .social-icon-wrapper i {
    transform: scale(1.15);
    color: rgba(255, 255, 255, 1);
}

/* Smooth icon return animation */
.social-link-expandable:not(:hover) .social-icon-wrapper i {
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-handle {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    padding-left: 10px;
    max-width: 0;
    overflow: hidden;
}

.social-link-expandable:hover .social-handle {
    opacity: 1;
    transform: translateX(0);
    max-width: 200px;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
                max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Smooth text disappear animation on hover out */
.social-link-expandable:not(:hover) .social-handle {
    opacity: 0;
    transform: translateX(-20px);
    max-width: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .social-link-expandable {
        width: 45px;
        height: 45px;
    }

    .social-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .social-icon-wrapper i {
        font-size: 1.1rem;
    }

    .social-link-expandable:active {
        width: auto;
        padding-right: 20px;
    }

    .social-link-expandable:active .social-handle {
        opacity: 1;
        transform: translateX(0);
        max-width: 180px;
    }
}

/* Statistics Section */
.stats {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1400px) {
    .stats-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        margin-top: 4rem;
    }
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:nth-child(1)::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.stat-card:nth-child(2)::before {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.stat-card:nth-child(4)::before {
    background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover::before {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

/* Colored stat icons */
.stat-card:nth-child(1) .stat-icon i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

.stat-card:nth-child(2) .stat-icon i {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(245, 87, 108, 0.5));
}

.stat-card:nth-child(3) .stat-icon i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.5));
}

.stat-card:nth-child(4) .stat-icon i {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(250, 112, 154, 0.5));
}

.stat-card:hover .stat-icon i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px currentColor);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
    flex-shrink: 0;
    line-height: 1.2;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.stat-card p span {
    display: inline;
    vertical-align: baseline;
}

/* Process Section */
.process {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
}

.process-timeline {
    max-width: 900px;
    margin: 4rem auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(102, 126, 234, 0.3) 0%,
        rgba(245, 87, 108, 0.5) 25%,
        rgba(79, 172, 254, 0.5) 50%,
        rgba(250, 112, 154, 0.5) 75%,
        rgba(102, 126, 234, 0.3) 100%
    );
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.95);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
    opacity: 0.5;
}

/* Colored step numbers */
.process-step:nth-child(1) .step-number {
    border-color: rgba(102, 126, 234, 0.3);
}

.process-step:nth-child(2) .step-number {
    border-color: rgba(245, 87, 108, 0.3);
}

.process-step:nth-child(3) .step-number {
    border-color: rgba(79, 172, 254, 0.3);
}

.process-step:nth-child(4) .step-number {
    border-color: rgba(250, 112, 154, 0.3);
}

.process-step:hover .step-number {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.process-step:nth-child(1):hover .step-number {
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.process-step:nth-child(2):hover .step-number {
    border-color: rgba(245, 87, 108, 0.8);
    box-shadow: 0 0 30px rgba(245, 87, 108, 0.4);
}

.process-step:nth-child(3):hover .step-number {
    border-color: rgba(79, 172, 254, 0.8);
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.4);
}

.process-step:nth-child(4):hover .step-number {
    border-color: rgba(250, 112, 154, 0.8);
    box-shadow: 0 0 30px rgba(250, 112, 154, 0.4);
}

.step-number.active {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.15);
}

.process-step:nth-child(1) .step-number.active {
    border-color: rgba(102, 126, 234, 1);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6),
                0 0 80px rgba(102, 126, 234, 0.3);
}

.process-step:nth-child(2) .step-number.active {
    border-color: rgba(245, 87, 108, 1);
    box-shadow: 0 0 40px rgba(245, 87, 108, 0.6),
                0 0 80px rgba(245, 87, 108, 0.3);
}

.process-step:nth-child(3) .step-number.active {
    border-color: rgba(79, 172, 254, 1);
    box-shadow: 0 0 40px rgba(79, 172, 254, 0.6),
                0 0 80px rgba(79, 172, 254, 0.3);
}

.process-step:nth-child(4) .step-number.active {
    border-color: rgba(250, 112, 154, 1);
    box-shadow: 0 0 40px rgba(250, 112, 154, 0.6),
                0 0 80px rgba(250, 112, 154, 0.3);
}

.process-step.active .step-content h3 {
    color: rgba(255, 255, 255, 1);
    transform: translateX(10px);
    transition: all 0.5s ease;
}

.process-step.active .step-content p {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
}

.step-content {
    flex: 1;
    padding-top: 1rem;
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 1rem;
    text-align: center;
}

.pricing-label {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(232, 197, 71, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #E8C547;
    background: rgba(232, 197, 71, 0.08);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.pricing-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: end;
}

.pricing-card {
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: visible;
    will-change: transform;
}

.pricing-card.featured {
    border-color: rgba(232, 197, 71, 0.25);
    padding: 3rem 2rem 2.5rem;
    background: rgba(18, 18, 18, 0.98);
    z-index: 2;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured:hover {
    border-color: rgba(232, 197, 71, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(232, 197, 71, 0.08);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #E8C547;
    color: #0a0a0a;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(232, 197, 71, 0.3);
    z-index: 10;
}

.pricing-header {
    text-align: left;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 1.75rem;
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.15rem;
    margin: 0;
}

.currency {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
}

.amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.features-list li {
    padding: 0.55rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.features-list li.excluded-feature {
    color: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
}

.feature-icon.included {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.feature-icon.excluded {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.2);
}

.package-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 2rem;
    background: #E8C547;
    border: 2px solid #E8C547;
    color: #0a0a0a;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-btn .btn-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.package-btn:hover {
    background: #f0d060;
    border-color: #f0d060;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 197, 71, 0.3);
}

.package-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.pricing-card.featured .package-btn {
    background: #E8C547;
    border-color: #E8C547;
}

.pricing-card.featured .package-btn:hover {
    background: #f0d060;
    border-color: #f0d060;
}

/* Mobile Responsive Styles */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 420px;
    }

    .pricing-card.featured {
        padding: 2.5rem 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 3.5rem 1rem;
    }

    .pricing-heading {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .pricing-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .pricing-grid {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .pricing-card.featured {
        padding: 2rem 1.5rem 1.5rem;
    }

    .amount {
        font-size: 2.4rem;
    }

    .currency {
        font-size: 1.6rem;
    }

    .badge {
        padding: 0.35rem 1rem;
        font-size: 0.7rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .package-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 3rem 0.5rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .amount {
        font-size: 2rem;
    }

    .currency {
        font-size: 1.3rem;
    }

    .features-list li {
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
}
/* FAQ Section */
.faq {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.faq-question i {
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Technologies Section - Auto Infinite Scroll with Equal Heights */
.technologies {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.technologies .section-title {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.tech-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 2rem;
    padding: 2rem 0;
    width: max-content;
    animation: infiniteScroll 40s linear infinite;
    align-items: stretch;
}

.tech-grid-reverse {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 2rem;
    padding: 2rem 0;
    margin-top: 1rem;
    width: max-content;
    animation: infiniteScrollReverse 40s linear infinite;
    align-items: stretch;
}

/* Pause animation on hover */
.tech-grid:hover,
.tech-grid-reverse:hover {
    animation-play-state: paused;
}

/* Infinite Scroll Animation - Dynamic for 3 sets */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Reverse Infinite Scroll Animation */
@keyframes infiniteScrollReverse {
    0% {
        transform: translateX(-33.33%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Tech Item Cards - Equal Heights */
.tech-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    will-change: transform;
}

/* Animated Gradient Background */
.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(102, 126, 234, 0) 0deg,
        rgba(102, 126, 234, 0.15) 60deg,
        rgba(245, 87, 108, 0.15) 120deg,
        rgba(79, 172, 254, 0.15) 180deg,
        rgba(250, 112, 154, 0.15) 240deg,
        rgba(102, 126, 234, 0) 360deg
    );
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: rotate 8s linear infinite paused;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-item:hover::before {
    opacity: 1;
    animation-play-state: running;
}

/* Glow Effect */
.tech-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    opacity: 0;
}

.tech-item:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* Hover State - 3D Lift Effect */
.tech-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon Container */
.tech-item i {
    font-size: 3.5rem;
    margin: 0;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
    line-height: 1;
    width: 100%;
    text-align: center;
}

/* Individual Icon Colors */
.fa-react { color: #61DAFB; }
.fa-node-js { color: #339933; }
.fa-android { color: #3DDC84; }
.fa-python { color: #3776AB; }
.fa-database { color: #47A248; }
.fa-fire { color: #FFCA28; }
.fa-html5 { color: #E34F26; }
.fa-css3-alt { color: #1572B6; }
.fa-java { color: #007396; }
.fa-code { color: #667EEA; }

/* Icon Bounce on Hover */
.tech-item:hover i {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 20px currentColor);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes iconFloat {
    0%, 100% { transform: scale(1.1); }
    50% { transform: translateY(-3px) scale(1.12); }
}

/* Text Animations */
.tech-item p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    line-height: 1.3;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tech-item:hover p {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(102, 126, 234, 0.5); }
}

@keyframes scrollHint {
    0%, 100% { 
        opacity: 0.4; 
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(-50%) scale(1.05);
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .technologies {
        padding: 6rem 0;
    }
    
    .technologies .section-title {
        max-width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0 2rem;
    }
    
    .tech-grid,
    .tech-grid-reverse {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .tech-grid {
        animation: infiniteScroll 30s linear infinite;
    }
    
    .tech-grid-reverse {
        animation: infiniteScrollReverse 30s linear infinite;
    }
    
    .tech-item {
        width: 170px;
        min-width: 170px;
        max-width: 170px;
        height: 240px;
        padding: 2.5rem 1rem;
    }
    
    .tech-item i {
        font-size: 2.8rem;
    }

    .tech-item p {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .tech-item:hover {
        transform: translateY(-8px) scale(1.05);
    }
    
    .technologies::after {
        bottom: 1rem;
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* Prevent text selection */
.tech-grid * {
    user-select: none;
    -webkit-user-select: none;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
}

.floating-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.floating-cta i {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .floating-cta {
        bottom: 80px;
        right: 20px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

.offer-banner {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 1rem 1.5rem;
    background: rgba(232, 197, 71, 0.06);
    border: 1px solid rgba(232, 197, 71, 0.2);
    border-radius: 50px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.offer-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.offer-icon {
    font-size: 0rem;
    color: #E8C547;
}

.offer-text {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.offer-date {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(232, 197, 71, 0.15);
    border: 1px solid rgba(232, 197, 71, 0.3);
    border-radius: 6px;
    font-weight: 600;
    color: #E8C547;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .offer-banner {
        padding: 0.8rem 1.2rem;
        margin-bottom: 2rem;
    }
    
    .offer-text {
        font-size: 0.85rem;
    }
}
