:root {
            --primary-purple: #6B46C1;
            --secondary-purple: #9333EA;
            --light-purple: #EDE9FE;
            --dark-purple: #4C1D95;
            --accent-pink: #EC4899;
            --accent-cyan: #06B6D4;
            --gradient-primary: linear-gradient(135deg, #9333EA 0%, #6B46C1 50%, #EC4899 100%);
            --gradient-secondary: linear-gradient(45deg, #06B6D4 0%, #9333EA 100%);
            --gradient-accent: linear-gradient(270deg, #EC4899 0%, #F59E0B 100%);
            --text-dark: #0F172A;
            --text-gray: #64748B;
            --bg-dark: #0F172A;
            --bg-light: #F8FAFC;
            --white: #FFFFFF;
            --glass: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Raleway', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--bg-light);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
        }

    .logo-wrapper {
    position: fixed;    
    top: 18px;           
    left: 150px;           
    z-index: 2100;       
    background: none;    
    pointer-events: auto;
}
.logo {
    height: 150px;        
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu-desktop {
    display: flex;
    list-style: none;
    gap: 2rem;
}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .nav-link:hover {
            background: var(--dark-purple);
            color: white;
            transform: translateY(-2px);
        }

   .menu-toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;   
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 2200;
    background: var(--gradient-primary, #fff);
    border: none;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 0;      
    transition: background 0.3s, box-shadow 0.3s;
}

.menu-bar {
    width: 28px;
    height: 4px;
    background: white;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}


        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--bg-dark);
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0.9;
            z-index: 1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(108, 70, 193, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
            animation: heroFloat 20s ease-in-out infinite;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
        .floating-element:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
        .floating-element:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 1s; }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: left;
            max-width: 800px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #FFFFFF 0%, #E5E7EB 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 40px rgba(236, 72, 153, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px) scale(1.05);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* USP Cards */
        .usp-section {
            padding: 120px 0;
            background: var(--bg-light);
            position: relative;
        }

        .usp-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-block;
            background: var(--gradient-secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            color: var(--text-dark);
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title-testimonial {
            font-size: clamp(2.5rem, 6vw, 4rem);
            color: var(--text-light-purple);
            margin-bottom: 1rem;
            
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .usp-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(147, 51, 234, 0.1);
            position: relative;
            overflow: hidden;
        }

        .usp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .usp-card:hover::before {
            transform: scaleX(1);
        }

        .usp-card:hover {
            transform: translateY(-20px) rotateY(5deg);
            box-shadow: 0 40px 80px rgba(147, 51, 234, 0.15);
            border-color: var(--primary-purple);
        }

        .usp-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: white;
            font-size: 2rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .usp-card:hover .usp-icon {
            transform: rotateY(180deg) scale(1.1);
            background: var(--gradient-accent);
        }

        .usp-card h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .usp-card p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Services  */
        .services {
            padding: 120px 0;
            background: var(--bg-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 3rem 2rem;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-secondary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-accent);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            position: relative;
            z-index: 2;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* Timeline */
        .process {
            padding: 120px 0;
            background: var(--bg-light);
            position: relative;
        }

        .process-timeline {
            position: relative;
            margin-top: 4rem;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
           margin-top:20px;
            background: linear-gradient(90deg, var(--primary-purple) 0%, var(--accent-pink) 50%, var(--accent-cyan) 100%);
            border-radius: 2px;
            transform: translateY(-50%);
            z-index: 1;
        }

        .process-steps {
           
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .process-step {
             margin-top:20px;
            text-align: center;
            position: relative;
        }

        .step-circle {
            width: 100px;
            height: 100px;
            background: white;
            border: 4px solid var(--primary-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-purple);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            
        }

        .step-circle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }

        .step-circle:hover::before {
            transform: scale(1);
        }

        .step-circle:hover {
            transform: scale(1.1) rotateY(360deg);
            color: white;
        }

        .step-circle span {
            position: relative;
            z-index: 2;
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-top: 3rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .step-description {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Section */
        .about {
            padding: 120px 0;
            background: var(--bg-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at top left, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-visual {
            position: relative;
            height: 400px;
            perspective: 1000px;
        }

        .about-card {
            position: absolute;
            width: 280px;
            height: 320px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 2rem;
            transition: transform 0.6s ease;
            cursor: pointer;
            display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
        }

       .about-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin: 2rem auto;
    display: block;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

        .about-card:nth-child(1) {
            transform: rotateY(-15deg) translateX(-50px);
            background: var(--gradient-primary);
        }

        .about-card:nth-child(2) {
            transform: rotateY(0deg) translateX(0px) translateZ(50px);
            background: var(--gradient-secondary);
        }

        .about-card:nth-child(3) {
            transform: rotateY(15deg) translateX(50px);
            background: var(--gradient-accent);
        }

        .about-card:hover {
            transform: rotateY(0deg) translateX(0px) translateZ(100px) scale(1.05);
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .tech-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .tech-item:hover {
            background: var(--gradient-primary);
            transform: translateY(-5px) scale(1.05);
        }

        /* CTA */
        .cta {
            background: var(--gradient-primary);
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            animation: backgroundMove 20s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 2rem;
            font-weight: 800;
        }

        .cta p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Testimonials Slider */
.testimonials {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: backgroundMove 20s linear infinite;
}

.testimonials-content {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    margin: 4rem 0;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: slide 40s linear infinite;
    width: calc(200px * 12); /* 6 cards * 2 for seamless loop */
}

.testimonial-card {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-author strong {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
}

.testimonials-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

/* Slider Animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6 - 2rem * 6));
    }
}

/* Pause animation on hover */
.testimonials-slider:hover .testimonials-track {
    animation-play-state: paused;
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
    }
    
    .testimonials-track {
        width: calc(320px * 12);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 6 - 2rem * 6));
        }
    }
    
    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 280px;
        padding: 2rem;
    }
    
    .testimonials-track {
        width: calc(300px * 12);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 6 - 2rem * 6));
        }
    }
}

        /* Contact Form */
        .contact {
            padding: 120px 0;
            background: var(--bg-light);
            position: relative;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            margin-top: 4rem;
        }

        .contact-info {
            background: var(--bg-dark);
            color: white;
            padding: 3rem;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-secondary);
            opacity: 0.1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-accent);
            color: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            transform: rotateY(180deg) scale(1.1);
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(147, 51, 234, 0.1);
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-group label {
            position: absolute;
            top: 15px;
            left: 20px;
            font-weight: 600;
            color: var(--text-gray);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 20px;
            border: 2px solid #E2E8F0;
            border-radius: 15px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group input:not(:placeholder-shown),
        .form-group textarea:not(:placeholder-shown) {
            outline: none;
            border-color: var(--primary-purple);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
        }

        .form-group input:focus + label,
        .form-group textarea:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:not(:placeholder-shown) + label {
            top: -10px;
            left: 15px;
            font-size: 0.8rem;
            color: var(--primary-purple);
            background: white;
            padding: 0 5px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: transparent;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Form notification styling */
.form-notification {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2000;
}

.form-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.form-notification.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.form-notification.error {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.form-notification.info {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

/* Contact form positioning adjustment */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.1);
    position: relative; /* Voor absolute positioning van notification */
}

.notification-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

        /* Footer */
        .footer {
            background: var(--bg-dark);
            color: white;
            padding: 60px 0 40px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-primary);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-links {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        @keyframes backgroundMove {
            0% { transform: translateX(0px); }
            100% { transform: translateX(100px); }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease;
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 4rem;
                text-align: center;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .timeline-line {
                display: none;
            }
        }

        @media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    

     .nav-menu {
        display: none !important;
    }
}



        @media (max-width: 768px) {

            .logo-wrapper {
        top: 10px;
        left: 10px;
    }
    .logo {
        height: 48px;
    }
        .nav-menu-desktop {
        display: none;
    }
    .nav {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 2000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn {
                justify-content: center;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid,
            .usp-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .container {
                padding: 0 15px;
            }

            .hero-content {
                text-align: center;
            }

            .about-visual {
                height: 300px;
            }

            .about-card {
                width: 240px;
                height: 280px;
                padding: 1.5rem;
            }

            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 120px 0 80px;
            }

            .section-header,
            .services,
            .process,
            .about,
            .cta,
            .contact {
                padding: 80px 0;
            }

            .btn {
                padding: 15px 25px;
                font-size: 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

            .step-circle {
                width: 80px;
                height: 80px;
                font-size: 1.5rem;
            }
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Focus styles for accessibility */
        .nav-link:focus,
        .btn:focus,
        input:focus,
        textarea:focus,
        .step-circle:focus,
        .usp-card:focus,
        .service-card:focus {
            outline: 3px solid var(--accent-cyan);
            outline-offset: 2px;
        }

     .back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 2000;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary, #fff);
    color: #fff;
   
    font-size: 2rem;
    display: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.back-to-top:hover {
    box-shadow: 0 6px 24px rgba(147,51,234,0.18);
    background: var(--gradient-accent, #f7f7ff);
}