        /* Pixar-style animations */
        @keyframes pixarBounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }
        
        @keyframes pixarFloat {
            0%, 100% { 
                transform: translateY(0) rotate(0deg) scale(1); 
                filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
            }
            50% { 
                transform: translateY(-20px) rotate(2deg) scale(1.05);
                filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
            }
        }
        
        @keyframes pixarPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @keyframes pixarPopIn {
            0% { 
                transform: scale(0.8); 
                opacity: 0; 
            }
            70% { 
                transform: scale(1.1); 
                opacity: 1; 
            }
            100% { 
                transform: scale(1); 
                opacity: 1; 
            }
        }
        
        @keyframes pixarSlideIn {
            from { 
                transform: translateY(50px); 
                opacity: 0; 
            }
            to { 
                transform: translateY(0); 
                opacity: 1; 
            }
        }
        
        @keyframes pixarColorShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .pixar-bounce {
            animation: pixarBounce 1s ease;
        }
        
        .pixar-float {
            animation: pixarFloat 4s ease-in-out infinite;
        }
        
        .pixar-pulse {
            animation: pixarPulse 2s infinite;
        }
        
        .pixar-pop {
            animation: pixarPopIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }
        
        .pixar-slide {
            animation: pixarSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
        }
        
        .pixar-color-shift {
            animation: pixarColorShift 8s ease infinite;
            background-size: 200% 200%;
        }
        
        /* Existing styles... */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #8b5cf6;
            --accent: #ec4899;
            --dark: #0f172a;
            --darker: #0a1120;
            --light: #f8fafc;
            --lighter: #ffffff;
            --gray: #64748b;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
            --glass: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            /* Light mode variables */
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #8b5cf6;
            --accent: #ec4899;
            --text: #0f172a;
            --text-light: #64748b;
            --bg: #f8fafc;
            --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            --card-bg: rgba(255, 255, 255, 0.85);
            --card-border: rgba(0, 0, 0, 0.1);
            --hero-text-gradient: linear-gradient(to right, #1e293b, #475569);
            --stat-gradient: linear-gradient(to right, #a3c1ff, var(--accent));
            --badge-bg: rgba(37, 99, 235, 0.15);
            --badge-text: #2563eb;
            --btn-outline-bg: transparent;
            --btn-outline-border: rgba(37, 99, 235, 0.3);
            --scroll-prompt: #94a3b8;
        }

        body.dark-mode {
            --process-bg: #0d2139;
            --process-text: #e2e8f0;
            --process-line: rgba(255, 255, 255, 0.2);
            --step-bg: rgba(255, 255, 255, 0.15);
            --step-text: #e0e0ff;
            --step-active-border: white;
            --gdpr-bg: rgba(255, 255, 255, 0.08);
            --form-bg: rgba(255, 255, 255, 0.1);
            --form-border: rgba(255, 255, 255, 0.2);
            --label-color: #e0e0ff;
            --input-bg: rgba(255, 255, 255, 0.15);
            --input-text: white;
            --input-border: rgba(255, 255, 255, 0.2);
            --input-focus-bg: rgba(255, 255, 255, 0.25);
            --input-focus-border: #1e90ff;
            --btn-secondary-bg: rgba(255, 255, 255, 0.15);
            --btn-secondary-text: white;
            --btn-secondary-border: rgba(255, 255, 255, 0.3);
            --btn-secondary-hover: rgba(255, 255, 255, 0.25);
            --glass: rgba(15, 23, 42, 0.15);
            --glass-border: rgba(255, 255, 255, 0.1);
            /* Dark mode variables */
            --text: #e2e8f0;
            --text-light: #94a3b8;
            --bg: #0f172a;
            --bg-gradient: linear-gradient(135deg, #0c1a2d 0%, #0d2139 100%);
            --card-bg: rgba(15, 23, 42, 0.7);
            --card-border: rgba(255, 255, 255, 0.1);
            --hero-text-gradient: linear-gradient(to right, #e2e8f0, #a3c1ff);
            --stat-gradient: linear-gradient(to right, #818cf8, #ec4899);
            --badge-bg: rgba(37, 99, 235, 0.25);
            --badge-text: #a3c1ff;
            --btn-outline-bg: rgba(255, 255, 255, 0.1);
            --btn-outline-border: rgba(255, 255, 255, 0.2);
            --scroll-prompt: #cbd5e1;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--lighter);
            overflow-x: hidden;
            background: var(--bg-gradient);
            padding-top: 100px; /* Added to prevent content under fixed header */
        }

        body.dark-mode {
            background-color: var(--darker);
            color: #e2e8f0;
            background: var(--bg-gradient);
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 100px 0;
            opacity: 0;
            transform: translateY(30px);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 30px auto 0;
            opacity: 0;
            transform: translateY(20px);
        }

        body.dark-mode .section-title p {
            color: #94a3b8;
        } 

        /* Header Styles - Fixed issues */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1001; /* Increased z-index */
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            transform: translateY(0);
        }
        
        body.dark-mode header {
            background: rgba(15, 23, 42, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 6px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.03) rotate(-2deg);
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            animation: pixarFloat 6s ease-in-out infinite;
        }

        .logo-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        body.dark-mode .logo-text .zeno {
            color: #e2e8f0;
        }
        
        .logo-text .launch {
            color: var(--primary);
            font-weight: 700;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 35px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            font-size: 1.05rem;
            transform-origin: center bottom;
        }
        
        body.dark-mode .nav-links a {
            color: #e2e8f0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            transform: translateY(-3px);
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1002;
            color: var(--dark);
            transition: transform 0.3s ease;
        }
        
        .menu-toggle:hover {
            transform: scale(1.1);
        }
        
        body.dark-mode .menu-toggle {
            color: white;
        }
        
        /* Theme Toggle Styles */
        .theme-toggle-container {
            display: flex;
            align-items: center;
        }
        
        .theme-toggle {
            width: 60px;
            height: 30px;
            background: rgba(37, 99, 235, 0.2);
            border-radius: 50px;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0 5px;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover {
            transform: scale(1.05);
        }
        
        body.dark-mode .theme-toggle {
            background: rgba(37, 99, 235, 0.3);
        }
        
        .toggle-switch {
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            left: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        body.dark-mode .toggle-switch {
            background: #1e293b;
            transform: translateX(30px);
        }
        
        .toggle-icon {
            font-size: 0.9rem;
            color: #FFA500;
            transition: opacity 0.3s ease;
        }
        
        body.dark-mode .toggle-icon {
            color: #FFD700;
        }
        
        .sun-icon {
            position: absolute;
            left: 7px;
        }
        
        .moon-icon {
            position: absolute;
            right: 7px;
            opacity: 0.7;
        }
        
        body.dark-mode .sun-icon {
            opacity: 0.7;
        }
        
        body.dark-mode .moon-icon {
            opacity: 1;
        }

        /* Fixed particles z-index */
        #particles-js {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0; /* Stay behind content */
        }

        /* Hero Section */
        .hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            width: 90%;
            margin: 0 auto;
            padding: 2rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
            max-width: 650px;
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: var(--badge-bg);
            color: var(--badge-text);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.8rem;
            background: var(--hero-text-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: background 0.5s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .typing-text {
            display: inline-block;
            position: relative;
        }

        .typing-text::after {
            content: "|";
            position: absolute;
            right: -10px;
            color: var(--accent);
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .hero p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 2.8rem;
            max-width: 550px;
            transition: color 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .hero-btns {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3.5rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 16px 38px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: none;
            cursor: pointer;
            transform-origin: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .btn-outline {
            background: var(--btn-outline-bg);
            color: var(--text);
            border: 2px solid var(--btn-outline-border);
            backdrop-filter: blur(10px);
        }

        .dark-mode .btn-outline {
            color: white;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px) scale(1.05);
        }

        .btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .btn:hover i {
            transform: translateX(5px);
        }

        .stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            background: var(--stat-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            transition: background 0.5s ease;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 8px;
            transition: color 0.3s ease;
        }

        .hero-graphic {
            position: relative;
            z-index: 10;
            width: 50%;
            perspective: 1000px;
        }

        .graphic-container {
            position: relative;
            width: 100%;
            height: 500px;
            transform-style: preserve-3d;
            animation: float 8s ease-in-out infinite;
        }

        .glass-card {
            position: absolute;
            width: 300px;
            height: 380px;
            background: var(--card-bg);
            backdrop-filter: blur(12px);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            padding: 2.2rem;
            transition: all 0.4s ease;
            overflow: hidden;
            z-index: 1;
            transform-origin: center;
        }

        .glass-card:hover {
            transform: scale(1.05) rotate(2deg);
            z-index: 10;
        }

        .dark-mode .glass-card {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.1), transparent 70%);
            z-index: -1;
        }

        .card-1 {
            top: 0;
            left: 0;
            transform: rotate(-5deg) translateZ(20px);
            z-index: 3;
            animation: pulse 4s infinite 0.5s;
        }

        .card-2 {
            top: 60px;
            left: 180px;
            transform: rotate(3deg) translateZ(10px);
            z-index: 2;
            animation: pulse 4s infinite 1s;
        }

        .card-3 {
            top: 120px;
            left: 360px;
            transform: rotate(8deg) translateZ(5px);
            z-index: 1;
            animation: pulse 4s infinite 1.5s;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            background: rgba(255, 255, 255, 0.1);
            font-size: 2rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .dark-mode .card-icon {
            background: rgba(255, 255, 255, 0.15);
        }

        .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--text);
            transition: color 0.3s ease;
        }

        .dark-mode .card-title {
            color: white;
        }

        .card-content {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.7;
            transition: color 0.3s ease;
        }

        .scroll-prompt {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--scroll-prompt);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
            transition: color 0.3s ease;
        }

        .scroll-prompt i {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(2deg); }
        }

        @keyframes pulse {
            0% { 
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); 
            }
            70% { 
                box-shadow: 0 0 0 20px rgba(59, 130, 246, 0); 
            }
            100% { 
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); 
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-15px);}
            60% {transform: translateY(-8px);}
        }

        /* Responsive design - Fixed mobile menu */
        @media (max-width: 1100px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 3rem;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .hero p {
                margin: 0 auto 2.5rem;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .stats {
                justify-content: center;
            }
            
            .hero-graphic {
                width: 100%;
            }
            
            .graphic-container {
                height: 400px;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: var(--lighter);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 30px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 1000;
            }
            
            body.dark-mode .nav-links {
                background: var(--darker);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0 0 25px 0;
                width: 100%;
            }
            
            .nav-links a {
                font-size: 1.2rem;
                padding: 10px 0;
                display: block;
                width: 100%;
            }
            
            .theme-toggle-container {
                margin-top: 20px;
            }
            
            .menu-toggle {
                display: block;
                z-index: 1002;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .stats {
                display: none;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
                text-align: center;
            }
            
            .graphic-container {
                height: auto;
                transform: none;
                animation: none;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .glass-card {
                position: relative !important;
                margin: 0 auto 2rem;
                width: 100%;
                max-width: 300px;
                top: auto !important;
                left: auto !important;
                transform: none !important;
            }
            
            .card-1, .card-2, .card-3 {
                animation: none;
            }
            
            .hero-graphic {
                display: none;
            }
            
            .scroll-prompt {
                text-align: center;
                color: white;
            }
            
            .logo-icon{
                display: none;
            }
        }

        /* Modal Styles */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            position: relative;
            width: 80%;
            max-width: 900px;
            background: #0f172a;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .modal-content.active {
            transform: scale(1);
            opacity: 1;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: var(--darker);
            color: white;
        }

        .modal-header h3 {
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-header .close {
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .modal-header .close:hover {
            transform: scale(1.1);
            color: var(--accent);
        }

        video {
            width: 100%;
            display: block;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 30px;
        }
        
        .service-card {
            background: var(--lighter);
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateY(30px);
            opacity: 0;
        }
        
        body.dark-mode .service-card {
            background: #1e293b;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            z-index: -1;
            transition: var(--transition);
        }
        
        .service-card:hover::before {
            height: 100%;
            opacity: 0.03;
        }
        
        .service-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: var(--shadow-hover);
        }
        
        .service-card i {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .service-card:hover i {
            transform: scale(1.1);
        }
        
        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .service-card p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        
        body.dark-mode .service-card p {
            color: #94a3b8;
        }
        
        .feature-list {
            text-align: left;
            margin-top: auto;
            width: 100%;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 8px 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        
        body.dark-mode .feature-list li {
            border-bottom: 1px dashed #334155;
        }
        
        .feature-list li i {
            font-size: 1rem;
            color: var(--success);
            margin-right: 12px;
            margin-bottom: 0;
        }
        
        /* Business Registration Card Specific Styles */
        .business-card {
            position: relative;
            overflow: visible;
        }
        
        .business-card::before {
            background: var(--success);
        }
        
        .business-card i {
            color: var(--success);
        }
        
        .business-card .badge {
            position: absolute;
            top: -15px;
            right: -15px;
            background: var(--success);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            transform: rotate(5deg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            animation: pixarPulse 2s infinite;
        }
        
        /* About Section */
        .about-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-column {
            background: var(--lighter);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform: translateY(30px);
            opacity: 0;
        }
        
        body.dark-mode .about-column {
            background: #1e293b;
        }
        
        .about-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
            z-index: -1;
            transition: var(--transition);
        }
        
        .about-column:hover::before {
            width: 100%;
            opacity: 0.05;
        }
        
        .about-column:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: var(--shadow-hover);
        }
        
        .column-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        .about-column h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .about-column p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        body.dark-mode .about-column p {
            color: #94a3b8;
        }
        
        .about-column ul {
            list-style: none;
            margin: 25px 0;
        }
        
        .about-column ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            padding-left: 5px;
        }
        
        .about-column ul li i {
            color: var(--success);
            margin-right: 12px;
            font-size: 1.2rem;
        }
        
        .vision-pillars {
            margin: 25px 0;
        }
        
        .pillar {
            display: flex;
            margin-bottom: 20px;
            align-items: flex-start;
            background: rgba(37, 99, 235, 0.05);
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .pillar:hover {
            transform: translateX(5px);
        }
        
        body.dark-mode .pillar {
            background: rgba(37, 99, 235, 0.1);
        }
        
        .pillar span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .signature {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }
        
         .signature img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            transition: transform 0.3s ease;
        }
        
        .signature img:hover {
            transform: scale(1.1);
        }

        .signature p {
            margin-bottom: 0;
        }


        
        .signature p span {
            display: block;
            color: var(--primary);
            font-weight: 600;
            margin-top: 5px;
        }
        
        .founder-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            align-items: center;
            background: var(--lighter);
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        body.dark-mode .founder-section {
            background: #1e293b;
        }
        
        .founder-image {
            position: relative;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .founder-image img {
            width: 100%;
            display: block;
            transition: var(--transition);
        }
        
        .founder-image:hover img {
            transform: scale(1.05);
        }
        
        .founder-bio h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primary);
        }
        
        .founder-bio p {
            margin-bottom: 20px;
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        body.dark-mode .founder-bio p {
            color: #94a3b8;
        }
        
        .founder-bio .btn {
            margin-top: 15px;
        }
        
       /* Portfolio Section */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }
        
        .portfolio-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            background-size: cover;
            background-position: center;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .portfolio-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: var(--shadow-hover);
        }
        
        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            z-index: 1;
        }
        
        .card-content {
            padding: 35px;
            position: relative;
            z-index: 2;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        
        .portfolio-card h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .date {
            color: #cbd5e1;
            font-size: 1rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .date i {
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        .description {
            color: #e2e8f0;
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .tech-tags span {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .tech-tags span:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        .card-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 24px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: fit-content;
        }
        
        .card-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px) scale(1.05);
        }
        
        .card-link i {
            margin-left: 10px;
            transition: var(--transition);
        }
        
        .card-link:hover i {
            transform: translateX(5px);
        }
        
        
        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }
        
        .pricing-card {
            background: var(--lighter);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            transform: translateY(30px);
            opacity: 0;
        }
        
        body.dark-mode .pricing-card {
            background: #1e293b;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: var(--shadow-hover);
        }
        
        .pricing-card.popular {
            transform: scale(1.03);
            z-index: 2;
            border: 2px solid var(--primary);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-10px) rotate(1deg);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary);
            color: white;
            padding: 8px 40px;
            font-size: 1rem;
            font-weight: 700;
            transform: rotate(45deg);
            animation: pixarPulse 2s infinite;
        }
        
        .pricing-badge {
            display: flex;
            justify-content: space-between;
            padding: 15px 25px;
        }
        
        .best-value, .save-badge {
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
        }
        
        .best-value {
            background: var(--success);
            color: white;
        }
        
        .save-badge {
            background: var(--warning);
            color: white;
        }
        
        .pricing-header {
            padding: 35px 25px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
        }
        
        .pricing-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .pricing-price {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .pricing-period {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .pricing-features {
            padding: 35px 30px;
        }
        
        .pricing-features ul {
            list-style: none;
            margin-bottom: 35px;
        }
        
        .pricing-features ul li {
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        body.dark-mode .pricing-features ul li {
            border-bottom: 1px solid #334155;
        }
        
        .pricing-features ul li i {
            color: var(--success);
            margin-right: 15px;
            font-size: 1.3rem;
        }
        
        .pricing-button {
            display: block;
            width: 100%;
            text-align: center;
            padding: 15px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .pricing-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px) scale(1.05);
        }
        
        .shopify-button {
            background: var(--accent) !important;
        }
        
        .shopify-button:hover {
            background: #db2777 !important;
        }
        
        .small-text {
            font-size: 0.9rem;
            text-align: center;
            margin-top: 15px;
            color: var(--gray);
        }
        
        .special-offer {
            background: rgba(236, 72, 153, 0.1);
            border: 1px solid rgba(236, 72, 153, 0.2);
            padding: 15px;
            border-radius: 12px;
            margin-top: 25px;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        
        .special-offer:hover {
            transform: translateY(-3px);
        }
        
        .special-offer i {
            margin-right: 12px;
            color: var(--accent);
            font-size: 1.4rem;
        }
        
        /* Testimonials */
        #testimonials {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        body.dark-mode #testimonials {
            background: linear-gradient(135deg, #0c1a2d 0%, #0d2139 100%);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }
        
        .testimonial-card {
            background: var(--lighter);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            position: relative;
            transform: translateY(30px);
            opacity: 0;
        }
        
        body.dark-mode .testimonial-card {
            background: #1e293b;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px) rotate(1deg);
        }
        
        .testimonial-card::before {
            content: "";
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--primary);
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover .author-avatar {
            transform: scale(1.1);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Contact Section */

        /* Responsive Design */
        @media (max-width: 900px) {
            .contact-container {
                gap: 40px;
            }
            
            .contact-info, .form-container {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .contact-info, .form-container {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .contact-info, .form-container {
                padding: 25px 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .contact-method {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .contact-icon {
                margin-bottom: 15px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        .decoration {
            position: absolute;
            z-index: -1;
            opacity: 0.05;
            font-size: 15rem;
            color: var(--primary);
            transform: rotate(-15deg);
        }
        
        .dec-1 {
            top: -60px;
            right: -30px;
        }
        
        .dec-2 {
            bottom: -80px;
            left: -40px;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
        }
        
        .contact-info {
            padding: 40px;
            background: var(--lighter);
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            transform: translateY(30px);
            opacity: 0;
        }
        
        body.dark-mode .contact-info {
            background: #1e293b;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            color: var(--primary);
        }
        
        .contact-info p {
            margin-bottom: 35px;
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        body.dark-mode .contact-info p {
            color: #94a3b8;
        }
        
        .contact-details div {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .contact-details div:hover {
            transform: translateX(5px);
        }
        
        .contact-details i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .contact-details div:hover i {
            transform: scale(1.1);
        }
        
        .contact-details span {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .social-links {
            display: flex;
            gap: 18px;
            margin-top: 40px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #f1f5f9;
            border-radius: 50%;
            color: var(--primary);
            transition: var(--transition);
            font-size: 1.4rem;
            text-decoration: none;
        }
        
        body.dark-mode .social-links a {
            background: #1e293b;
            border: 1px solid #334155;
        }
        
        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px) scale(1.1);
        }
        
        #contactForm {
            padding: 40px;
            background: var(--lighter);
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
            transform: translateY(30px);
            opacity: 0;
        }
        
        body.dark-mode #contactForm {
            background: #1e293b;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1.1rem;
            background: #f8fafc;
            transition: var(--transition);
        }
        
        body.dark-mode .form-group input,
        body.dark-mode .form-group select,
        body.dark-mode .form-group textarea {
            background: #0f172a;
            border-color: #334155;
            color: #e2e8f0;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
            transform: scale(1.02);
        }
        
        .form-group textarea {
            min-height: 180px;
            resize: vertical;
        }
        
        .form-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 10px;
        }
        
        .form-buttons button {
            width: 100%;
        }
        
        button {
            flex: 1;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 150px;
        }
        
        .btn-primary {
            background: linear-gradient(to right, #1e90ff, #00bfff);
            color: white;
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .btn-primary:hover {
            background: linear-gradient(to right, #1c86ee, #00ace6);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        
        /* GDPR Consent Styling */
        .gdpr-consent {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-top: 30px;
            padding: 20px;
            border-radius: 16px;
            transition: all 0.4s ease;
            background: rgba(37, 99, 235, 0.05);
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        body.dark-mode .gdpr-consent {
            background: rgba(37, 99, 235, 0.08);
            border: 1px solid rgba(37, 99, 235, 0.15);
        }

        .gdpr-consent input[type="checkbox"] {
            position: relative;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border: 2px solid var(--primary);
            border-radius: 6px;
            background: transparent;
            cursor: pointer;
            margin-top: 4px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .gdpr-consent input[type="checkbox"]:checked {
            background: var(--primary);
            border-color: var(--primary);
        }

        .gdpr-consent input[type="checkbox"]:checked::after {
            content: "✓";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 14px;
            font-weight: bold;
        }

        .gdpr-consent input[type="checkbox"]:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
        }

        .gdpr-consent label {
            color: var(--primary);
            font-size: 1rem;
            line-height: 1.6;
            cursor: pointer;
            transition: color 0.3s ease;
            font-weight: 500;
            margin-bottom: 0;
        }

        body.dark-mode .gdpr-consent label {
            color: #a3c1ff;
        }

        .gdpr-consent a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        body.dark-mode .gdpr-consent a {
            color: #8bb2ff;
        }

        .gdpr-consent a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }

        body.dark-mode .gdpr-consent a:hover {
            color: #cbd5e1;
        }

        /* Hover effects */
        .gdpr-consent:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(37, 99, 235, 0.1);
            border-color: rgba(37, 99, 235, 0.2);
        }

        body.dark-mode .gdpr-consent:hover {
            box-shadow: 0 5px 20px rgba(37, 99, 235, 0.2);
            border-color: rgba(37, 99, 235, 0.3);
        }

        /* Animation for the checkbox */
        @keyframes checkmarkPulse {
            0% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
            100% { transform: translate(-50%, -50%) scale(1); }
        }

        .gdpr-consent input[type="checkbox"]:checked::after {
            animation: checkmarkPulse 0.4s ease;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .badge {
            background: var(--lighter);
            padding: 15px 25px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .badge:hover {
            transform: translateY(-5px);
        }
        
        body.dark-mode .badge {
            background: #1e293b;
        }
        
        .badge i {
            font-size: 2.5rem;
            color: var(--success);
        }
        
        .badge-text {
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color: #94a3b8;
            font-size: 1.1rem;
        }
        
        .footer-column a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .footer-column a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-column form {
            display: flex;
            flex-direction: column;
        }
        
        .footer-column input {
            padding: 16px;
            border: none;
            border-radius: 12px;
            margin-bottom: 15px;
            font-family: inherit;
            font-size: 1.1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright-links a {
            color: #94a3b8;
            text-decoration: none;
            margin-left: 25px;
            transition: var(--transition);
        }
        
        .copyright-links a:hover {
            color: white;
        }

        /* Process section styles */
        .process-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 80px 0;
        }
        
        body.dark-mode .process-section {
            background: linear-gradient(135deg, #0c1a2d 0%, #0d2139 100%);
        }
        
        .process-container {
            position: relative;
            padding: 30px 0;
        }
        
        .process-line {
            position: absolute;
            top: 50%;
            left: 10%;
            width: 80%;
            height: 4px;
            background: rgba(37, 99, 235, 0.2);
            z-index: 1;
        }
        
        body.dark-mode .process-line {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .process-line-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(to right, #1e90ff, #00bfff);
            transition: width 0.8s ease;
            z-index: 2;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 3;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 20%;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 10px;
            transition: all 0.5s ease;
            border: 2px solid transparent;
        }
        
        body.dark-mode .step-number {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .step.active .step-number {
            background: linear-gradient(to right, #1e90ff, #00bfff);
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(30, 144, 255, 0.5);
            border-color: white;
        }
        
        .step-text {
            text-align: center;
            font-size: 14px;
            max-width: 90px;
            color: #333; 
        }
        body.dark-mode .step-text {
            color: #e0e0ff; 
        }
        
        .restart-btn {
            display: block;
            margin: 30px auto 0;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            width: 200px;
        }
        
        .restart-btn:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Notification wrapper */
        .validation-message {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            padding: 16px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            color: #fff;
            font-size: 15px;
            max-width: 320px;
            animation: fadeIn 0.4s ease-out;
        }

        /* Success */
        .validation-success {
            background-color: #28a745;
        }

        /* Error */
        .validation-error {
            background-color: #dc3545;
        }

        /* Close button */
        .validation-message .close-btn {
            float: right;
            margin-left: 12px;
            cursor: pointer;
            font-weight: bold;
            font-size: 18px;
            line-height: 1;
            color: #fff;
            transition: color 0.3s ease;
        }
        .validation-message .close-btn:hover {
            color: #000;
        }

        /* Optional: pulse for success */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .pulse {
            animation: pulse 1s infinite;
        }

        /* Fade-in animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

                /* Responsive */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .form-buttons {
                flex-direction: column;
            }
            
            button {
                width: 100%;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background: var(--lighter);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 40px 40px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 1000;
            }
            
            body.dark-mode .nav-links {
                background: var(--darker);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0 0 25px 0;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            /* Modal adjustments */
            .modal-content {
                width: 95%;
            }
            
            /* Process section adjustments */
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .step {
                width: 33%;
                margin-bottom: 20px;
            }
            
            .process-line {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero-content {
                padding-top: 50%;
            }
            
            .hero-badge {
                display: none;
            }
            
            .stats {
                gap: 0.5rem;
            }
            
            .stat-item {
                min-width: 70px;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .stat-label {
                font-size: 0.7rem;
            }
            
            .contact-container {
                gap: 30px;
            }
            
            .contact-info, #contactForm {
                padding: 20px;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-card {
                min-height: 400px;
            }
            
            .card-content {
                padding: 20px;
            }
            
            .portfolio-card h3 {
                font-size: 1.5rem;
            }
        }

