* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    color: #1a1a1a;
    line-height: 1.6;
}

/*Navbar*/

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.1);
    z-index: 1000;
    width: auto;
    min-width: 350px;
    max-width: 450px;
    height: 70px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll hide animations */
.navbar.hide {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

.navbar.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.navbar.expanded {
    width: 90%;
    max-width: 800px;
}

/* Logo Section */
.logo-section {
    text-decoration: none;  /* Remove underline from link */
    position: relative;
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo-section:hover {
    transform: scale(1.05);
    background: rgba(139, 92, 246, 0.05);
}

.logo-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 15px;
    background: rgba(139, 92, 246, 0.05);
    padding: 8px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 450px;
    max-width: 600px;
}

.nav-links.collapsed {
    max-width: 0;
    padding: 8px 0;
    opacity: 0;
}

.nav-item {
    position: relative;
    padding: 12px 20px;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    transform: translateY(-1px);
}

/* Right actions with bubble design */
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
img{
    max-width: 100%;
    height: auto;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.08);
    border: none;
    border-radius: 50%;
    color: #8B5CF6;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.action-btn:hover {
    transform: scale(1.1);
    background: rgba(139, 92, 246, 0.15);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.action-btn:hover::before {
    width: 100%;
    height: 100%;
}

.chat-btn {
    background: linear-gradient(135deg, #8B5CF6, #a78bfa);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.25);
}

.chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
}

/* Mobile hamburger */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: #8B5CF6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Content area */
.content {
    margin-top: 120px;
    padding: 40px;
    text-align: center;
    color: #1a1a1a;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.content p {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.content-section {
    margin-bottom: 100vh;
    padding: 60px 40px;
    background: rgba(139, 92, 246, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.08);
}

/* Slide down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu button styles for desktop */
.menu-btn {
    background: rgba(139, 92, 246, 0.08);
    border: none;
    border-radius: 50%;
    color: #8B5CF6;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.menu-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.menu-btn:hover::before {
    width: 100%;
    height: 100%;
}

/* Hero Section */

        /* Hero Section - Advanced Design */
        .services-hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fefeff 0%, #f9f9fa 100%);
            padding: 120px 20px 80px;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .hero-background {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        /* Floating Orbs */
        .floating-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #a890e1a7, #A78BFA);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, #ff9bcd, #f0abceba);
            top: 20%;
            right: -80px;
            animation-delay: 3s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #9ad7e2c0, #b2e2eac9);
            bottom: -80px;
            left: 20%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        /* Grid Pattern */
        .grid-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.5;
        }

        /* Hero Content */
        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        /* Animated Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            border: 2px solid rgba(139, 92, 246, 0.2);
            margin-bottom: 30px;
            animation: slideDown 0.8s ease-out;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
        }

        .badge-icon {
            font-size: 1.2rem;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .badge-text {
            font-size: 0.95rem;
            font-weight: 600;
            background: linear-gradient(135deg, #8B5CF6, #6366F1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Hero Title */
        .hero-title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -2px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .title-gradient {
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 50%, #1a1a1a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        .title-highlight {
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, #a07bf7f0, #5053f8e3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #bba1f7ce, #8a8cf5c0);
            border-radius: 2px;
            animation: underlineExpand 1.5s ease-out 0.8s both;
        }

        @keyframes underlineExpand {
            from {
                width: 0;
                left: 50%;
            }
            to {
                width: 100%;
                left: 0;
            }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Hero Subtitle */
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: #666666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        

       

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-hero {
                min-height: 75vh;
                padding: 100px 20px 60px;
            }

            .hero-badge {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .hero-title {
                margin-bottom: 25px;
            }

            .hero-subtitle {
                margin-bottom: 30px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .hero-stats {
                gap: 40px;
                margin-top: 50px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .orb-1, .orb-2, .orb-3 {
                filter: blur(80px);
            }
        }

        @media (max-width: 480px) {
            .services-hero {
                min-height: 70vh;
                padding: 80px 15px 50px;
            }

            .hero-badge {
                padding: 8px 16px;
                gap: 8px;
            }

            .badge-text {
                font-size: 0.85rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .cta-button {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .hero-stats {
                gap: 30px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }
        }

/* Services Grid */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    padding: 20px 20px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}



 .process-section {
            padding: 10px 20px;
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .process-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #8B5CF6, #6366F1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Timeline Container */
        .process-timeline {
            position: relative;
            padding: 40px 0;
        }

        /* Connecting Line - Horizontal */
        .timeline-line {
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 4px;
            background: linear-gradient(90deg, 
                rgba(139, 92, 246, 0.2) 0%,
                rgba(139, 92, 246, 0.6) 25%,
                rgba(99, 102, 241, 0.6) 75%,
                rgba(99, 102, 241, 0.2) 100%
            );
            border-radius: 10px;
            transform: translateY(-50%);
            z-index: 0;
        }

        .timeline-line::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #8B5CF6, #6366F1);
            border-radius: 10px;
            transform: translateY(-50%);
            animation: progressLineHorizontal 3s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        @keyframes progressLineHorizontal {
            0%, 100% { width: 0%; }
            50% { width: 100%; }
        }

        /* Process Grid */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-template-rows: 1fr;
            gap: 20px;
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Process Card */
        .process-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(139, 92, 246, 0.1);
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #8B5CF6, #6366F1);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .process-card:hover::before {
            opacity: 1;
        }

        .process-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle at center,
                rgba(139, 92, 246, 0.05) 0%,
                transparent 70%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .process-card:hover::after {
            opacity: 1;
        }

        .process-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 
                0 25px 50px rgba(139, 92, 246, 0.2),
                0 0 50px rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.3);
        }

        /* Step Number Circle */
        .step-circle {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-circle-bg {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            opacity: 0.1;
            transition: all 0.4s ease;
        }

        /* Different colors for each card */
        .process-card:nth-child(1) .step-circle-bg {
            background: linear-gradient(135deg, #8B5CF6, #A78BFA);
        }

        .process-card:nth-child(2) .step-circle-bg {
            background: linear-gradient(135deg, #EC4899, #F472B6);
        }

        .process-card:nth-child(3) .step-circle-bg {
            background: linear-gradient(135deg, #06B6D4, #22D3EE);
        }

        .process-card:nth-child(4) .step-circle-bg {
            background: linear-gradient(135deg, #10B981, #34D399);
        }

        .process-card:nth-child(5) .step-circle-bg {
            background: linear-gradient(135deg, #ff0000, #ff0000);
        }

        .process-card:hover .step-circle-bg {
            opacity: 0.4;
            transform: scale(1.1);
        }

        .step-circle-inner {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
            transition: all 0.4s ease;
        }

        /* Different gradient colors for each card number */
        .process-card:nth-child(1) .step-circle-inner {
            background: linear-gradient(135deg, #8B5CF6, #A78BFA);
        }

        .process-card:nth-child(2) .step-circle-inner {
            background: linear-gradient(135deg, #EC4899, #F472B6);
        }

        .process-card:nth-child(3) .step-circle-inner {
            background: linear-gradient(135deg, #06B6D4, #22D3EE);
        }

        .process-card:nth-child(4) .step-circle-inner {
            background: linear-gradient(135deg, #10B981, #34D399);
        }
        .process-card:nth-child(5) .step-circle-inner {
            background: linear-gradient(135deg, #ff0000, #ff0000);
        }

        .process-card:hover .step-circle-inner {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
        }

        .step-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            position: relative;
        }

        /* Icon Container */
        .step-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: inline-block;
            transition: transform 0.4s ease;
        }

        .process-card:hover .step-icon {
            transform: scale(1.2) rotateY(180deg);
        }

        /* Step Title */
        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            position: relative;
            transition: color 0.3s ease;
        }

        .process-card:hover .step-title {
            background: linear-gradient(135deg, #8B5CF6, #6366F1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Step Description */
        .step-description {
            font-size: 0.9rem;
            color: #666666;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .process-card:hover .step-description {
            color: #333333;
        }

        /* Progress Indicator */
        .step-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(139, 92, 246, 0.1);
            overflow: hidden;
        }

        .step-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #8B5CF6, #6366F1);
            width: 0%;
            transition: width 1s ease;
        }

        .process-card:hover .step-progress-bar {
            width: 100%;
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #8B5CF6, #6366F1);
            border-radius: 50%;
            opacity: 0;
            animation: float 4s ease-in-out infinite;
        }

        .process-card:hover .particle {
            opacity: 0.6;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            top: 60%;
            right: 20%;
            animation-delay: 1s;
        }

        .particle:nth-child(3) {
            bottom: 20%;
            left: 30%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            50% {
                transform: translateY(-20px) translateX(10px);
                opacity: 0.6;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
                gap: 25px;
            }

            .timeline-line {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }

            .process-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                max-width: 600px;
                gap: 25px;
            }

            .process-card {
                padding: 28px 20px;
            }

            .step-circle {
                width: 70px;
                height: 70px;
            }

            .step-circle-inner {
                width: 55px;
                height: 55px;
            }

            .step-number {
                font-size: 1.6rem;
            }

            .step-title {
                font-size: 1.2rem;
            }

            .step-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .process-section {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 1.9rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .process-card {
                padding: 25px 18px;
            }
        }

/* Technologies Section */
.tech-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    padding: 10px 20px;
}

.tech-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tech Grid Layout - Equal size grid items */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    grid-template-rows: repeat(3, 1fr);    /* 3 rows */ 
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.tech-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    aspect-ratio: 1;         /* Force square aspect ratio */
    width: 120px;           /* Fixed width */
    height: 120px;          /* Fixed height equal to width */
    margin: 0 auto;         /* Center in grid cell */
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.tech-icon {
    font-size: 32px;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    position: relative;
    z-index: 2;
}

.tech-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15),
        rgba(99, 102, 241, 0.1)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Hover effects */
.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item:hover .tech-icon {
    transform: scale(1.2) rotate(10deg);
    animation: iconFloat 2s ease-in-out infinite;
}

.tech-item:hover .tech-name {
    color: #8b5cf6;
    transform: translateY(4px);
}

/* Floating animation */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1.2);
    }
    50% {
        transform: translateY(-8px) scale(1.3);
    }
}

/* Ensure text transitions smoothly */
.tech-name {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Optional: Add glow effect on hover */
.tech-item:hover::after {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle at center,
        rgba(139, 92, 246, 0.15),
        transparent 70%
    );
    opacity: 0.8;
    z-index: 0;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tech-item,
    .tech-icon,
    .tech-name {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #8B5CF6, #a78bfa);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover span {
    transform: translateX(5px);
}

/* Footer */
.services-footer {
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
    padding: 60px 0 30px;
    color: #1a1a1a;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #8B5CF6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #666666;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-nav a {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-nav a:hover {
    color: #8B5CF6;
    transform: translateY(-1px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(139, 92, 246, 0) 100%);
    margin: 24px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.95rem;
    color: #666666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

/* Enhanced Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.slide-in-left {
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInFromRight 0.8s ease-out forwards;
}

.scale-in {
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.bounce-in {
    opacity: 0;
    animation: bounceIn 1s ease-out forwards;
}

.rotate-in {
    opacity: 0;
    animation: rotateIn 0.8s ease-out forwards;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax elements */
.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.scale {
    transform: translateY(60px) scale(0.9);
}

.scroll-animate.scale.animate {
    transform: translateY(0) scale(1);
}

/* Stagger animation delays */
.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }

/* Service card expand/collapse */
.service-card.expanded {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-card.expanded .service-details {
    max-height: 200px;
}

/* ===== Glassy Smooth Cursor ===== */
@media (pointer: fine) {
    body { cursor: default; }

    .glass-cursor {
        position: fixed;
        top: 0; left: 0;
        width: 28px; height: 28px;
        border-radius: 50%;
        background: rgba(139, 92, 246, 0.08);
        border: 1px solid rgba(139, 92, 246, 0.25);
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15), inset 0 0 12px rgba(139, 92, 246, 0.08);
        backdrop-filter: blur(10px) saturate(120%);
        -webkit-backdrop-filter: blur(10px) saturate(120%);
        pointer-events: none;
        z-index: 9999;
        transform: translate3d(-100px, -100px, 0) scale(1);
        transition: opacity 0.3s ease;
        will-change: transform, opacity;
        opacity: 0;
    }

    .glass-cursor.visible { opacity: 1; }
    .glass-cursor.hidden { opacity: 0; }

    /* Enlarged style over interactive elements */
    .glass-cursor.cursor-hover {
        background: rgba(139, 92, 246, 0.15);
        border-color: rgba(139, 92, 246, 0.4);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2), inset 0 0 18px rgba(139, 92, 246, 0.12);
    }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .services-container,
    .process-container,
    .tech-container,
    .cta-container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 35px;
    }
}

/* Laptop (1024px - 1199px) */
@media (max-width: 1199px) {
    .navbar {
        width: calc(100% - 40px);
        max-width: 700px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .service-card {
        padding: 35px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* Tablet Landscape & Small Laptop (900px - 1023px) */
@media (max-width: 1023px) {
    .navbar {
        padding: 12px 20px;
        height: 65px;
    }

    .nav-links {
        gap: 10px;
        width: 400px;
    }

    .nav-item {
        padding: 10px 16px;
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        padding: 32px;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 25px;
    }

    .services-hero,
    .services-section,
    .process-section,
    .tech-section,
    .cta-section {
        padding: 80px 2px;
    }
}

/* Tablet Portrait (768px - 899px) */
@media (max-width: 899px) {
    .navbar {
        height: 60px;
        padding: 0 15px;
        min-width: 300px;
    }

    .logo-section {
        padding: 10px 20px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-nav {
        flex-wrap: wrap;
    }
}

/* Mobile & Tablet Responsive (max-width: 768px) */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        max-width: 80vw;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 100;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(139, 92, 246, 0.15);
        backdrop-filter: blur(20px);
        box-shadow: -5px 0 30px rgba(139, 92, 246, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links.collapsed {
        display: none;
    }

    .nav-links:not(.collapsed) {
        display: flex;
        position: absolute;
        top: 70px;
        left: 15px;
        right: 15px;
        max-width: none;
        opacity: 1;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        border: 1px solid rgba(139, 92, 246, 0.15);
        flex-direction: column;
        padding: 12px;
        gap: 0px;
        box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
        animation: slideDown 0.3s ease-out;
        height: 400px;
        min-width: 100px;
        max-width: 280px;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
    }

    .nav-item {
        padding: 12px 16px;
        border-radius: 10px;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        color: #333333;
    }

    .nav-item:hover {
        background: rgba(139, 92, 246, 0.08);
    }

    .chat-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .process-grid,
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .services-hero,
    .services-section,
    .process-section,
    .tech-section,
    .cta-section {
        padding: 70px 18px;
    }
}

/* Mobile Landscape (640px - 767px) */
@media (max-width: 767px) {
    .navbar {
        top: 15px;
        width: calc(100% - 20px);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .step-number {
        width: 55px;
        /*height: 55px;*/
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
    }

    .tech-item {
        padding: 18px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* Mobile Portrait (480px - 639px) */
@media (max-width: 639px) {
    .services-hero,
    .services-section,
    .process-section,
    .tech-section,
    .cta-section {
        padding: 60px 16px;
    }

    .navbar {
        top: 12px;
        width: calc(100% - 16px);
        min-width: 280px;
    }

    .logo-section {
        padding: 8px 16px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .logo-text {
        font-size: 16px;
    }

    .action-btn, .menu-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /*.hero-title {*/
    /*    font-size: 2rem;*/
    /*}*/

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 25px 16px;
        border-radius: 16px;
    }

    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .service-features {
        margin-bottom: 20px;
    }

    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .service-price {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .service-cta {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-number {
        width: 50px;
        /*height: 50px;*/
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.15rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 16px;
    }

    .tech-item {
        padding: 16px;
        border-radius: 12px;
    }

    .tech-icon {
        font-size: 1.8rem;
    }

    .tech-name {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        /*align-items: flex-start;*/
        gap: 0.5rem;
    }

    .footer-copy {
        font-size: 0.85rem;
    }

    .content-section {
        padding: 40px 20px;
    }
}

/* Small Mobile (375px - 479px) */
@media (max-width: 479px) {
    .navbar {
        top: 10px;
        width: calc(100% - 12px);
        min-width: 260px;
        height: 56px;
    }

    .logo-section {
        padding: 6px 14px;
        gap: 10px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 15px;
    }

    .action-btn, .menu-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .services-hero,
    .services-section,
    .process-section,
    .tech-section,
    .cta-section {
        padding: 50px 14px;
    }

    .hero-title {
        /*font-size: 1.75rem;*/
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 22px 14px;
        border-radius: 14px;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .service-features {
        margin-bottom: 20px;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 5px;
        padding-left: 18px;
    }

    .service-price {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }

    .service-cta {
        padding: 9px 18px;
        font-size: 0.9rem;
        gap: 6px;
    }

    .step-number {
        width: 46px;
        /*height: 46px;*/
        font-size: 1.1rem;
        /*margin-bottom: 16px;*/
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 14px;
    }

    .tech-item {
        padding: 12px;
        border-radius: 10px;
    }

    .tech-icon {
        font-size: 1.6rem;
    }

    .tech-name {
        font-size: 0.8rem;
    }

    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .cta-button {
        padding: 13px 26px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .footer-services {
        padding: 50px 0 25px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-nav {
        gap: 0.85rem;
        font-size: 0.85rem;
    }

    .footer-nav a {
        padding: 8px 0;
    }

    .footer-copy {
        font-size: 0.8rem;
    }

    .content {
        margin-top: 100px;
        padding: 30px 16px;
    }

    .content h1 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .content-section {
        padding: 35px 18px;
        margin-bottom: 80vh;
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .navbar {
        top: 8px;
        width: calc(100% - 10px);
        min-width: 240px;
        height: 54px;
        padding: 0 12px;
    }

    .logo-section {
        padding: 5px 12px;
        gap: 8px;
    }

    .logo-icon {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 14px;
    }

    .action-btn, .menu-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .services-hero,
    .services-section,
    .process-section,
    .tech-section,
    .cta-section {
        padding: 45px 12px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 20px 12px;
        border-radius: 12px;
    }

    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .service-description {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .service-features li {
        font-size: 0.8rem;
        padding-left: 16px;
    }

    .service-price {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .service-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .step-number {
        width: 44px;
        /*height: 44px;*/
        font-size: 1rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 12px;
    }

    .tech-item {
        padding: 12px;
    }

    .tech-icon {
        font-size: 1.4rem;
    }

    .tech-name {
        font-size: 0.75rem;
    }

    .cta-title {
        font-size: 1.45rem;
    }

    .cta-text {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-nav {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .footer-copy {
        font-size: 0.75rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .services-hero,
    .services-section,
    .process-section,
    .tech-section,
    .cta-section {
        padding: 40px 16px;
    }

    .navbar {
        height: 54px;
        top: 8px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .process-grid {
        gap: 30px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-card,
    .tech-item,
    .navbar {
        border-width: 0.5px;
    }

    .step-number {
        border-width: 1.5px;
    }
}

/* Show menu button on desktop when nav is collapsed */
@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
}

/* Hide menu button on mobile */
@media (max-width: 768px) {
    .menu-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Ultra-wide displays (1920px+) */
@media (min-width: 1920px) {
    .services-container,
    .process-container,
    .tech-container {
        max-width: 1800px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 45px;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .section-title {
        font-size: 3.2rem;
    }
}

.logo-letter {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #a78bfa 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease infinite, letterPop 0.5s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.logo-letter:nth-child(1) { animation-delay: 0.1s; }
.logo-letter:nth-child(2) { animation-delay: 0.2s; }
.logo-letter:nth-child(3) { animation-delay: 0.3s; }
.logo-letter:nth-child(4) { animation-delay: 0.4s; }
.logo-letter:nth-child(5) { animation-delay: 0.5s; }
.logo-letter:nth-child(6) { animation-delay: 0.6s; }
.logo-letter:nth-child(7) { animation-delay: 0.7s; }
.logo-letter:nth-child(8) { animation-delay: 0.8s; }
.logo-letter:nth-child(9) { animation-delay: 0.9s; }

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}