
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-teal: #00d4ff;
    --accent-purple: #a855f7;
    --accent-blue: #3b82f6;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --navbar-height: 80px;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --danger-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

[data-theme="light"] {
    --primary-bg: #ffffff;
    --secondary-bg: #ededed;
    --nav-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    --nav-bg-solid: #f8fafc;
    --accent-teal: #0891b2;
    --accent-purple: #7c3aed;
    --accent-blue: #2563eb;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    padding-top: 80px;

}

/* Container responsive fixes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 30px);
}

/* Section responsive fixes */
.section {
    width: 100%;
    padding: clamp(60px, 8vw, 90px) 0;
    overflow: hidden;
  
}




        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 5rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--accent-teal);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(100px);
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }



/* Mobile specific optimizations */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-width: unset;
    }
    

    
    .social-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .glass-card {
        padding: 20px 15px;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Prevent horizontal scroll on all elements */
* {
    max-width: 100%;
}

/* Specific fixes for common overflow issues */
img, video, iframe, object, embed {
    max-width: 100%;
    height: auto;
}

pre, code {
    overflow-x: auto;
    max-width: 100%;
}

table {
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
}

        /* Enhanced Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(45deg, var(--primary-bg), var(--secondary-bg));
            overflow: hidden;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 20%, var(--accent-teal)20 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, var(--accent-purple)20 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        /* Coding Animation Layers */
        .code-rain {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.3;
        }

        .code-line {
            position: absolute;
            color: var(--accent-teal);
            font-family: 'Courier New', monospace;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            animation: codeFlow 15s linear infinite;
        }

        .code-line:nth-child(odd) {
            color: var(--accent-purple);
            animation-duration: 12s;
        }

        .code-line:nth-child(3n) {
            color: var(--accent-blue);
            animation-duration: 18s;
        }

        /* Binary Rain Effect */
        .binary-rain {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.15;
        }

        .binary-column {
            position: absolute;
            color: var(--accent-teal);
            font-family: 'Courier New', monospace;
            font-size: 12px;
            animation: binaryFall 10s linear infinite;
            opacity: 0;
        }

        /* Floating Code Blocks */
        .floating-code {
            position: absolute;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 8px;
            padding: 10px;
            font-family: 'Courier New', monospace;
            font-size: 10px;
            color: var(--accent-teal);
            opacity: 0.6;
            animation: floatCode 20s ease-in-out infinite;
            backdrop-filter: blur(5px);
        }

        .floating-code:nth-child(even) {
            background: rgba(168, 85, 247, 0.1);
            border-color: rgba(168, 85, 247, 0.2);
            color: var(--accent-purple);
            animation-duration: 25s;
            animation-delay: -5s;
        }

        /* Network Nodes */
        .network-nodes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .node {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 50%;
            opacity: 0.8;
            animation: pulse 3s ease-in-out infinite;
        }

        .node::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            border: 1px solid var(--accent-teal);
            border-radius: 50%;
            top: -4px;
            left: -4px;
            animation: ripple 3s ease-in-out infinite;
        }

        .connection-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
            opacity: 0.3;
            animation: connectionPulse 4s ease-in-out infinite;
        }

        /* Terminal Cursor */
        .terminal-cursor {
            position: absolute;
            width: 2px;
            height: 20px;
            background: var(--accent-teal);
            animation: blink 1.5s infinite;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
            50% { transform: translate(-50%, -50%) rotate(180deg); }
        }

        @keyframes codeFlow {
            0% {
                opacity: 0;
                transform: translateX(-100vw) translateY(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateX(100vw) translateY(-50px);
            }
        }

        @keyframes binaryFall {
            0% {
                opacity: 0;
                transform: translateY(-100vh);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(100vh);
            }
        }

        @keyframes floatCode {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.6;
            }
            25% {
                transform: translateY(-20px) rotate(1deg);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-10px) rotate(-1deg);
                opacity: 0.7;
            }
            75% {
                transform: translateY(-30px) rotate(0.5deg);
                opacity: 0.9;
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.5);
                opacity: 1;
            }
        }

        @keyframes ripple {
            0% {
                transform: scale(0);
                opacity: 1;
            }
            100% {
                transform: scale(3);
                opacity: 0;
            }
        }

        @keyframes connectionPulse {
            0%, 100% {
                opacity: 0.1;
                transform: scaleX(0);
            }
            50% {
                opacity: 0.6;
                transform: scaleX(1);
            }
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Particle System */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent-teal);
            border-radius: 50%;
            opacity: 0.7;
            animation: particleFloat 15s linear infinite;
        }

        .particle:nth-child(2n) {
            background: var(--accent-purple);
            animation-duration: 18s;
            animation-delay: -2s;
        }

        .particle:nth-child(3n) {
            background: var(--accent-blue);
            animation-duration: 12s;
            animation-delay: -4s;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
                transform: translateY(90vh) translateX(10px) scale(1);
            }
            90% {
                opacity: 0.7;
                transform: translateY(10vh) translateX(-10px) scale(1);
            }
            100% {
                transform: translateY(-10vh) translateX(0) scale(0);
                opacity: 0;
            }
        }

        /* Grid Pattern */
        .grid-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                linear-gradient(var(--accent-teal) 1px, transparent 1px),
                linear-gradient(90deg, var(--accent-teal) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 30s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .code-line {
                font-size: 10px;
            }
            .binary-column {
                font-size: 8px;
            }
            .floating-code {
                font-size: 8px;
                padding: 5px;
            }
            .grid-pattern {
                background-size: 25px 25px;
            }
        }




        /* Sections */
        .section {
           
            padding: 2rem 2rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary), var(--accent-teal), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
            color: white;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .btn-secondary {
            background: var(--glass-bg);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
        }

        .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%;
        }

        /* Glass Cards */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1rem;
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* About Section */
        .about {
            text-align: center;
        }

        .about h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            text-align: center;
            position: relative;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            text-align: center;
            position: relative;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--accent-teal);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-teal);
            margin-bottom: 1rem;
        }

        .price span {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .features {
            list-style: none;
            margin: 2rem 0;
            padding: 0;
        }

        .features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
        }

        .features li::before {
            content: '✓';
            color: var(--accent-teal);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* Forms */
        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: var(--text-primary);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-teal);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, var(--accent-teal)20, var(--accent-purple)20);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            margin: 2rem 0;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 2rem auto 0;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 50px;
            background: var(--glass-bg);
            color: var(--text-primary);
            backdrop-filter: blur(20px);
        }

        .newsletter-form button {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            background: var(--accent-teal);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

       /* Contact Info Grid - Responsive */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-item {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-teal), #06b6d4);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow-color);
            border-color: var(--accent-teal);
        }

        .contact-item:hover::before {
            transform: scaleX(1);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1);
            color: #06b6d4;
        }

        .contact-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .contact-details {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.5;
        }

        .contact-details a {
            color: var(--accent-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #06b6d4;
            text-decoration: underline;
        }

        /* Social Links - Responsive */
        .social-section {
            text-align: center;
            padding: 3rem 0;
            border-top: 1px solid var(--glass-border);
        }

        .social-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .social-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-teal);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .social-link:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
        }

        .social-link:hover::before {
            transform: scale(1);
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 3rem;
            }

            .contact-item {
                padding: 1.5rem 1rem;
                margin: 0 0.5rem;
            }

            .contact-icon {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .contact-title {
                font-size: 1.2rem;
            }

            .contact-details {
                font-size: 0.95rem;
            }

            .social-links {
                gap: 0.8rem;
                padding: 0 1rem;
            }

            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 480px) {
            body {
                padding: 1rem 0.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .contact-info {
                gap: 1rem;
            }

            .contact-item {
                padding: 1.5rem 0.8rem;
                margin: 0;
                border-radius: 12px;
            }

            .contact-icon {
                font-size: 1.8rem;
            }

            .contact-title {
                font-size: 1.1rem;
            }

            .contact-details {
                font-size: 0.9rem;
            }

            .social-links {
                gap: 0.6rem;
                max-width: 300px;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .social-title {
                font-size: 1.3rem;
            }
        }

        /* Very Small Screens */
        @media (max-width: 360px) {
            .contact-info {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .contact-item {
                padding: 1.2rem 0.6rem;
            }

            .contact-icon {
                font-size: 1.6rem;
            }

            .social-links {
                gap: 0.5rem;
            }

            .social-link {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
        }

        /* Landscape Mobile Orientation */
        @media (max-width: 768px) and (orientation: landscape) {
            .contact-info {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .contact-item {
                padding: 1rem 0.8rem;
            }

            .contact-icon {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            top: 100px;
            right: 2rem;
            background: var(--accent-teal);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 1001;
        }

        .toast.show {
            transform: translateX(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .section {
                padding: 4rem 1rem 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        
        .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent-teal);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}






  /* Toast Styles */
        .toast-container {
            position: fixed;
            top: 1rem;
            right: 1rem;
            z-index: 10000;
            max-width: min(400px, calc(100vw - 2rem));
            width: 100%;
            pointer-events: none;
        }

        .toast {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 1rem;
            margin-bottom: 0.75rem;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.08);
            animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            overflow: hidden;
            pointer-events: auto;
            transform-origin: top right;
        }

        .toast::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--toast-color, #6b7280);
        }

        .toast-success {
            --toast-color: #10b981;
        }

        .toast-error {
            --toast-color: #ef4444;
        }

        .toast-info {
            --toast-color: #14b8a6;
        }

        .toast-warning {
            --toast-color: #f59e0b;
        }

        .toast-content {
            display: flex;
            align-items: flex-start;
            padding: 1rem 1.25rem;
            gap: 0.75rem;
        }

        .toast-icon {
            flex-shrink: 0;
            width: 1.25rem;
            height: 1.25rem;
            margin-top: 0.125rem;
            color: var(--toast-color, #6b7280);
        }

        .toast-body {
            flex: 1;
            min-width: 0;
        }

        .toast-title {
            font-weight: 600;
            font-size: 0.875rem;
            line-height: 1.25;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .toast-message {
            font-size: 0.8rem;
            line-height: 1.4;
            color: #6b7280;
            word-wrap: break-word;
        }

        .toast-close {
            flex-shrink: 0;
            background: none;
            border: none;
            color: #9ca3af;
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 0.375rem;
            transition: all 0.2s ease;
            width: 1.75rem;
            height: 1.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -0.125rem;
        }

        .toast-close:hover {
            background: rgba(0, 0, 0, 0.05);
            color: #4b5563;
            transform: scale(1.1);
        }

        .toast-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: var(--toast-color, #6b7280);
            border-radius: 0 0 1rem 1rem;
            animation: progressBar 5s linear forwards;
            opacity: 0.6;
        }

        @keyframes slideIn {
            from {
                transform: translateX(120%) scale(0.9);
                opacity: 0;
            }
            to {
                transform: translateX(0) scale(1);
                opacity: 1;
            }
        }

        @keyframes slideOut {
            from {
                transform: translateX(0) scale(1);
                opacity: 1;
                max-height: 200px;
                margin-bottom: 0.75rem;
            }
            to {
                transform: translateX(120%) scale(0.9);
                opacity: 0;
                max-height: 0;
                margin-bottom: 0;
                padding-top: 0;
                padding-bottom: 0;
            }
        }

        @keyframes progressBar {
            from {
                width: 100%;
            }
            to {
                width: 0%;
            }
        }

        .toast.removing {
            animation: slideOut 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            .toast {
                background: rgba(31, 41, 55, 0.95);
                border-color: rgba(75, 85, 99, 0.3);
            }

            .toast-title {
                color: #f9fafb;
            }

            .toast-message {
                color: #d1d5db;
            }

            .toast-close {
                color: #9ca3af;
            }

            .toast-close:hover {
                background: rgba(255, 255, 255, 0.1);
                color: #e5e7eb;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .toast-container {
                top: 0.5rem;
                right: 0.5rem;
                left: 0.5rem;
                max-width: none;
            }

            .toast {
                border-radius: 0.75rem;
                margin-bottom: 0.5rem;
            }

            .toast-content {
                padding: 0.875rem 1rem;
                gap: 0.625rem;
            }

            .toast-title {
                font-size: 0.8rem;
            }

            .toast-message {
                font-size: 0.75rem;
            }

            .toast-icon {
                width: 1.125rem;
                height: 1.125rem;
            }
        }

        @media (max-width: 480px) {
            .toast-container {
                top: 0.25rem;
                right: 0.25rem;
                left: 0.25rem;
            }

            .toast-content {
                padding: 0.75rem 0.875rem;
            }

            .demo-buttons {
                flex-direction: column;
                align-items: center;
            }

            .demo-btn {
                width: 100%;
                max-width: 200px;
            }
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .toast {
                animation: fadeIn 0.3s ease;
            }

            .toast.removing {
                animation: fadeOut 0.3s ease forwards;
            }

            .toast-close:hover {
                transform: none;
            }

            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }

            @keyframes fadeOut {
                from { opacity: 1; }
                to { opacity: 0; }
            }
        





  /* Glass card effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        /* Enhanced subscription card */
        .subscription-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }
        
        .subscription-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        
        /* Info item styling */
        .info-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .info-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }
        
        .info-label {
            font-size: 0.85rem;
            opacity: 0.8;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }
        
        .info-value {
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* Status badges */
        .status-badge {
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 2px solid;
        }
        
        .status-active {
            background: rgba(40, 167, 69, 0.2);
            border-color: #28a745;
            color: #28a745;
        }
        
        .status-warning {
            background: rgba(255, 193, 7, 0.2);
            border-color: #ffc107;
            color: #ffc107;
        }
        
        /* Feature badges */
        .feature-badge {
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin: 0.25rem;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .feature-badge:hover {
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
            transform: translateY(-1px);
        }
        
        /* Crown icon animation */
        .crown-icon {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }
        
        /* Price styling */
        .price-value {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(45deg, #007bff, #0056b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Mobile optimizations */
        @media (max-width: 768px) {
            .subscription-card {
                padding: 1.5rem;
                margin: 0 0.5rem;
            }
            
            .info-item {
                padding: 1rem;
            }
            
            .info-value {
                font-size: 1rem;
            }
            
            .price-value {
                font-size: 1.2rem;
            }
        }
        
        
        
   
/* Print styles */
@media print {
    .mobile-nav {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
}

/* Integration with existing auth page styles */
.auth-card {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .auth-card {
        margin: 1rem 1rem 100px 1rem;
        padding: 1rem;
        border-radius: 16px;
    }

    .auth-header h1 {
        font-size: 2rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-feature-icon {
        font-size: 5rem;
    }

    .auth-feature-title {
        font-size: 1.5rem;
    }

    .auth-feature-description {
        font-size: 1rem;
    }

    .glass-card {
        margin: 1rem 1rem 20px 1rem;
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-control {
        padding: 1rem;
        font-size: 16px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }

    .d-flex.gap-3 .btn {
        width: 100%;
    }
}
