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

        :root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary-color: #06b6d4;
            --accent-color: #8b5cf6;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --success-color: #10b981;
            --gradient-primary: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
            --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-icon {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        .arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
}

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: var(--shadow-medium);
            background: rgba(255, 255, 255, 0.98);
        }

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

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

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .logo img {
            width: 32px;
            height: 32px;
            margin-right: 0.5rem;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.1) rotate(5deg);
        }
        
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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


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

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

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

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

        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .dropdown-toggle::after {
            content: '▼';
            font-size: 0.8rem;
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            box-shadow: var(--shadow-medium);
            min-width: 200px;
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: none;
            position: relative;
        }
        
        .dropdown-menu a::after {
            display: none; /* Remove the underline effect for dropdown items */
        }
        
        .dropdown-menu a:hover {
            background: var(--bg-light);
            color: var(--primary-color);
            padding-left: 2rem;
        }
        
        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

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

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

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(45deg, #fff, #e0e7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-text p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: slideInLeft 1s ease-out 0.4s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 0.875rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            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: rgba(255, 255, 255, 0.2);
            color: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-primary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: var(--shadow-large);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out 0.3s both;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: var(--shadow-large);
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            transform: scale(1.05);
        }

        /* Floating elements */
        .floating-widget {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            animation: floatUpDown 6s ease-in-out infinite;
        }

        .floating-widget:nth-child(1) {
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-widget:nth-child(2) {
            top: 60%;
            right: 5%;
            animation-delay: -2s;
        }

        .floating-widget:nth-child(3) {
            top: 40%;
            left: 5%;
            animation-delay: -4s;
        }

        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        /* Stats Section */
        .stats {
            background: var(--bg-white);
            padding: 4rem 0;
            box-shadow: var(--shadow-soft);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

       .stat-item {
            padding: 1.5rem;
            transition: transform 0.3s ease;
            border-radius: 0.5rem;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 500;
            font-size: 1rem;
            line-height: 1.4;
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            background: var(--bg-light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-title p {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--bg-white);
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .feature-card:hover::before {
            left: 0;
            opacity: 0.05;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-large);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            position: relative;
            z-index: 2;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
            position: relative;
            z-index: 2;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* Demo Section */
        .demo {
            padding: 6rem 0;
            background: var(--bg-white);
        }

        .demo-container {
            margin-top: 3rem;
        }

        .demo-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .demo-website {
            background: var(--bg-light);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
        }

        .demo-website:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-large);
        }

        .demo-label {
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
        }

        .demo-label.without-tool {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .demo-label.with-tool {
            background: var(--gradient-primary);
            color: white;
        }

        .demo-frame {
            width: 100%;
            height: 300px;
            border: none;
            background: white;
        }

        .demo-footer {
            padding: 1.5rem;
            background: var(--bg-white);
        }

        .demo-footer p {
            margin: 0;
            color: var(--text-light);
        }

        .demo-footer strong {
            color: var(--text-dark);
        }

        /* Interactive Demo Controls */
        .demo-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .demo-btn {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 0.5rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .demo-btn.active,
        .demo-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

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

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .cta p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

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

        .footer-column h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-column p {
            color: #9ca3af;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

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

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--gradient-primary);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* Accessibility Widget Simulation */
        .accessibility-widget {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: var(--shadow-large);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .accessibility-widget:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        .widget-panel {
            position: fixed;
            right: 20px;
            bottom: 90px;
            width: 250px;
            background: white;
            border-radius: 1rem;
            box-shadow: var(--shadow-large);
            padding: 1.5rem;
            transform: translateY(20px) scale(0.8);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .widget-panel.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            visibility: visible;
        }

        .widget-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
        }

        .widget-option:last-child {
            border-bottom: none;
        }

        .widget-toggle {
            width: 40px;
            height: 20px;
            background: #ccc;
            border-radius: 10px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .widget-toggle.active {
            background: var(--primary-color);
        }

        .widget-toggle::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 16px;
            height: 16px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .widget-toggle.active::after {
            transform: translateX(20px);
        }

        /* LOGIN FORM STYLES - Simple and Compatible */
        .login-container input[type="text"],
        .login-container input[type="password"] {
            color: #000000 !important;
            background: #ffffff !important;
            background-color: #ffffff !important;
            border: 2px solid #e5e7eb !important;
            border-radius: 0.5rem;
            padding: 0.875rem;
            font-size: 1rem;
            width: 100%;
            box-sizing: border-box;
            -webkit-text-fill-color: #000000 !important;
            -webkit-appearance: none !important;
            -moz-appearance: none !important;
            appearance: none !important;
        }

        .login-container input[type="text"]:focus,
        .login-container input[type="password"]:focus {
            outline: none !important;
            border-color: #2563eb !important;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
            color: #000000 !important;
            background: #ffffff !important;
            background-color: #ffffff !important;
            -webkit-text-fill-color: #000000 !important;
        }

        .login-container input::placeholder {
            color: #6b7280 !important;
            -webkit-text-fill-color: #6b7280 !important;
            opacity: 1 !important;
        }

        /* Remove autofill styling overrides - not needed anymore */
        .login-container input:-webkit-autofill,
        .login-container input:-webkit-autofill:hover,
        .login-container input:-webkit-autofill:focus,
        .login-container input:-webkit-autofill:active {
            -webkit-text-fill-color: #000000 !important;
            background-color: #ffffff !important;
            background: #ffffff !important;
        }

        .login-container .btn-primary {
            background: #2563eb !important;
            color: #ffffff !important;
            border: none !important;
            padding: 0.875rem 1.5rem;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
            -webkit-text-fill-color: #ffffff !important;
            -webkit-appearance: none;
            text-align: center !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .login-container .btn-primary:hover,
        .login-container .btn-primary:focus,
        .login-container .btn-primary:active {
            background: #1d4ed8 !important;
            color: #ffffff !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            -webkit-text-fill-color: #ffffff !important;
        }
        
                /* API Generator Form Styles - Mobile Compatible */
.hero .api-generator-container input[type="text"],
.hero .api-generator-container input[type="password"],
.hero .api-generator-container input[type="url"] {
    color: #000000;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.875rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

        .api-generator-container input[type="text"]:focus,
        .api-generator-container input[type="password"]:focus,
        .api-generator-container input[type="url"]:focus {
            outline: none !important;
            border-color: #2563eb !important;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
            color: #000000 !important;
            background: #ffffff !important;
            background-color: #ffffff !important;
            -webkit-text-fill-color: #000000 !important;
        }

        .api-generator-container input::placeholder {
            color: #6b7280 !important;
            -webkit-text-fill-color: #6b7280 !important;
            opacity: 1 !important;
        }

        .api-generator-container .btn-primary {
            background: #2563eb !important;
            color: #ffffff !important;
            border: none !important;
            padding: 0.875rem 1.5rem;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
            -webkit-text-fill-color: #ffffff !important;
            -webkit-appearance: none;
            text-align: center !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .api-generator-container .btn-primary:hover,
        .api-generator-container .btn-primary:focus,
        .api-generator-container .btn-primary:active {
            background: #1d4ed8 !important;
            color: #ffffff !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            -webkit-text-fill-color: #ffffff !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* Simple mobile styles that work reliably */
            .login-container input[type="text"],
            .login-container input[type="password"] {
                color: #000000 !important;
                background: #ffffff !important;
                background-color: #ffffff !important;
                border: 2px solid #d1d5db !important;
                -webkit-text-fill-color: #000000 !important;
                -webkit-appearance: none !important;
                font-size: 16px !important; /* Prevents zoom on iOS */
            }
            
            .login-container input[type="text"]:focus,
            .login-container input[type="password"]:focus {
                color: #000000 !important;
                background: #ffffff !important;
                background-color: #ffffff !important;
                border-color: #2563eb !important;
                box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
                -webkit-text-fill-color: #000000 !important;
                outline: none !important;
            }
            
            .login-container input::placeholder {
                color: #6b7280 !important;
                -webkit-text-fill-color: #6b7280 !important;
                opacity: 1 !important;
            }
            
            .login-container .btn-primary {
                color: #ffffff !important;
                background: #2563eb !important;
                background-color: #2563eb !important;
                border: none !important;
                font-weight: 600 !important;
                -webkit-text-fill-color: #ffffff !important;
                -webkit-appearance: none !important;
                font-size: 16px !important; /* Prevents zoom on iOS */
                text-align: center !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            
            .login-container .btn-primary:hover,
            .login-container .btn-primary:focus,
            .login-container .btn-primary:active {
                color: #ffffff !important;
                background: #1d4ed8 !important;
                background-color: #1d4ed8 !important;
                -webkit-text-fill-color: #ffffff !important;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }

            .demo-comparison {
                grid-template-columns: 1fr;
            }

         .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: -100%;
        right: 20px;
        width: 300px;
        max-width: calc(100vw - 40px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transform: scale(0.8) translateX(20px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border: 1px solid var(--border-color);
        margin-top: 80px;
    }
    
    .nav-links.active {
        top: 0;
        transform: scale(1) translateX(0);
        opacity: 1;
    }
    
    /* Style direct navigation links in mobile */
    .nav-links > a {
        font-size: 1rem;
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        color: var(--text-dark);
        text-decoration: none;
        display: block;
        text-align: left;
    }
    
    .nav-links a:hover {
        background: var(--bg-light);
        transform: translateX(5px);
    }
    
      .nav-links .user-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        width: 100%;
        padding: 1rem;
        border-top: 2px solid var(--border-color);
        margin-top: 1rem;
        border-radius: 0.5rem;
        background: var(--bg-light);
    }
    
    .nav-links .user-info span {
        font-size: 0.9rem !important;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem !important;
        background: var(--bg-white) !important;
        border-radius: 0.5rem !important;
        border: 1px solid var(--border-color) !important;
        display: block !important;
    }
    
    .nav-links .user-info span span {
        display: inline !important;
        width: auto !important;
        padding: 0.25rem 0.5rem !important;
        margin-left: 0.5rem !important;
        background: var(--gradient-primary) !important;
        color: white !important;
        border-radius: 0.25rem !important;
        font-size: 0.75rem !important;
        border: none !important;
        text-align: center !important;
    }
    
    .nav-links .user-info a {
        background: var(--primary-color) !important;
        color: white !important;
        padding: 0.75rem 1rem !important;
        border-radius: 0.5rem !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        text-align: center !important;
        width: 100% !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }
    
    .nav-links .user-info a:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-2px) !important;
    }
    
    .user-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        width: 100%;
        padding: 1rem;
        border-top: 2px solid var(--border-color);
        margin-top: 1rem;
        border-radius: 0.5rem;
        background: var(--bg-light);
    }
    
    .user-info span {
        font-size: 0.9rem !important;
        width: 100%;
        text-align: center;
    }
    
    .user-info a {
        background: var(--primary-color) !important;
        color: white !important;
        padding: 0.5rem 1rem !important;
        border-radius: 0.5rem !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        text-align: center !important;
        width: 100% !important;
        transition: all 0.3s ease !important;
    }
    
    .user-info a:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-2px) !important;
    }
    
    /* Dropdown styles for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        padding: 0.5rem;
        margin: 0.5rem 0;
        border-radius: 0.5rem;
        display: none;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        border-bottom: none;
        margin-bottom: 0.25rem;
        border-radius: 0.25rem;
    }

    .dropdown-menu a:hover {
        background: white;
        transform: translateX(3px);
    }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-cards {
                grid-template-columns: 1fr;
            }
            
            .stats {
                padding: 3rem 0; /* Reduced padding for mobile */
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
                gap: 1.5rem; /* Slightly smaller gap */
            }

            .stat-item {
                padding: 1rem; /* Reduced padding */
            }

            .stat-number {
                font-size: 2.5rem; /* Smaller number size */
            }

            .stat-label {
                font-size: 0.9rem; /* Slightly smaller label */
            }
            
            .api-generator-container input[type="text"],
            .api-generator-container input[type="password"],
            .api-generator-container input[type="url"] {
                color: #000000 !important;
                background: #ffffff !important;
                background-color: #ffffff !important;
                border: 2px solid #d1d5db !important;
                -webkit-text-fill-color: #000000 !important;
                -webkit-appearance: none !important;
                font-size: 16px !important; /* Prevents zoom on iOS */
            }
            
            .api-generator-container input[type="text"]:focus,
            .api-generator-container input[type="password"]:focus,
            .api-generator-container input[type="url"]:focus {
                color: #000000 !important;
                background: #ffffff !important;
                background-color: #ffffff !important;
                border-color: #2563eb !important;
                box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
                -webkit-text-fill-color: #000000 !important;
                outline: none !important;
            }
            
            .api-generator-container input::placeholder {
                color: #6b7280 !important;
                -webkit-text-fill-color: #6b7280 !important;
                opacity: 1 !important;
            }
            
            .api-generator-container .btn-primary {
                color: #ffffff !important;
                background: #2563eb !important;
                background-color: #2563eb !important;
                border: none !important;
                font-weight: 600 !important;
                -webkit-text-fill-color: #ffffff !important;
                -webkit-appearance: none !important;
                font-size: 16px !important; /* Prevents zoom on iOS */
                text-align: center !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            
            .api-generator-container .btn-primary:hover,
            .api-generator-container .btn-primary:focus,
            .api-generator-container .btn-primary:active {
                color: #ffffff !important;
                background: #1d4ed8 !important;
                background-color: #1d4ed8 !important;
                -webkit-text-fill-color: #ffffff !important;
            }
            
            
            
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px; /* Smaller container padding */
            }
            
            .stats {
                padding: 2.5rem 0; /* Even more reduced padding */
            }
            
            .stats-grid {
                grid-template-columns: 1fr; /* Single column on very small screens */
                gap: 1rem;
                max-width: 300px; /* Constrain width */
                margin: 0 auto; /* Center the grid */
            }

            .stat-item {
                padding: 1.5rem 1rem; /* Adjusted padding */
                background: #f8fafc; /* Subtle background */
                border-radius: 0.75rem;
            }

            .stat-number {
                font-size: 2.2rem; /* Appropriately sized for small screens */
                margin-bottom: 0.25rem;
            }

            .stat-label {
                font-size: 0.85rem;
                line-height: 1.3;
            }
        }

        /* Animation for elements coming into view */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.in-view {
            opacity: 1;
            transform: translateY(0);
        }