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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, #0B1F3A 0%, #138808 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .navbar .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .navbar .logo i {
            font-size: 2rem;
        }

        .navbar-links {
            display: flex;
            gap: 1.1rem;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .navbar-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            white-space: nowrap;
            font-size: 0.95rem;
        }

        .navbar-links a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        .auth-buttons {
            display: flex;
            gap: 0.65rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .navbar-switchers {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .btn-login, .btn-signup, .btn-admin {
            padding: 0.6rem 1.5rem;
            border: 2px solid white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .btn-login {
            background: transparent;
            color: white;
        }

        .btn-login:hover {
            background: white;
            color: #0B1F3A;
        }

        .btn-signup {
            background: white;
            color: #0B1F3A;
        }

        .btn-signup:hover {
            background: transparent;
            color: white;
        }

        .btn-admin {
            background: #ff9933;
            color: #0B1F3A;
            border-color: #ff9933;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .btn-admin:hover {
            background: #0B1F3A;
            color: #fff;
            border-color: #0B1F3A;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0B1F3A 0%, #138808 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            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 1200 600"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.1)"/><circle cx="1100" cy="500" r="100" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.5;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: white;
            color: #0B1F3A;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #0B1F3A;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Features Section */
        .features {
            padding: 4rem 2rem;
            background: #f5f5f5;
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

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

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-card i {
            font-size: 3rem;
            color: #0B1F3A;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Stats Section */
        .stats {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0B1F3A 0%, #138808 100%);
            color: white;
        }

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

        .stat-item h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* How It Works */
        .how-it-works {
            padding: 4rem 2rem;
        }

        .how-it-works h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

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

        .step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0B1F3A 0%, #138808 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .step h3 {
            margin-bottom: 1rem;
            color: #333;
        }

        .step p {
            color: #666;
        }

        /* Pricing Section */
        .pricing {
            padding: 4rem 2rem;
            background: #f5f5f5;
        }

        .pricing h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

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

        .pricing-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .pricing-card h3 {
            margin-bottom: 1rem;
            color: #333;
            font-size: 1.5rem;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            color: #0B1F3A;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .pricing-card ul {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
        }

        .pricing-card li {
            padding: 0.5rem 0;
            color: #666;
        }

        .pricing-card li:before {
            content: '✓ ';
            color: #4caf50;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .pricing-card button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(135deg, #0B1F3A 0%, #138808 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pricing-card button:hover {
            transform: scale(1.05);
        }

        /* CTA Section */
        .cta {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0B1F3A 0%, #138808 100%);
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

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

        .footer-section h4 {
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s;
        }

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

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 2rem;
        }
        /* AI Security Section */
        .ai-security-section {
            padding: 4rem 2rem;
            background: linear-gradient(145deg, #0f172a 0%, #1e293b 70%, #334155 100%);
            color: #e2e8f0;
        }

        .ai-security-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .ai-security-header h2 {
            font-size: 2.4rem;
            margin-bottom: 0.8rem;
            color: #f8fafc;
        }

        .ai-security-header p {
            font-size: 1rem;
            color: #cbd5e1;
            max-width: 860px;
            margin: 0 auto;
        }

        .ai-security-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .ai-security-point {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.25);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .ai-security-point i {
            color: #38bdf8;
            font-size: 1.2rem;
        }

        .ai-security-widget-card {
            background: rgba(15, 23, 42, 0.72);
            border: 1px solid rgba(148, 163, 184, 0.32);
            border-radius: 14px;
            padding: 1.2rem;
            max-width: 920px;
            margin: 0 auto;
            overflow-x: hidden;
        }

        .ai-security-live-score,
        .ai-security-live-level,
        .ai-security-live-fingerprint {
            margin-bottom: 0.7rem;
            font-size: 0.95rem;
        }

        .ai-security-live-fingerprint {
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .ai-level-low { color: #86efac; }
        .ai-level-medium { color: #facc15; }
        .ai-level-high { color: #fb923c; }
        .ai-level-critical { color: #f87171; }

        .ai-security-live-feed {
            list-style: none;
            margin-top: 0.8rem;
            border-top: 1px dashed rgba(148, 163, 184, 0.35);
            padding-top: 0.8rem;
        }

        .ai-security-live-feed li {
            padding: 0.45rem 0;
            color: #cbd5e1;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.15);
        }

        .ai-security-live-feed li span {
            display: inline-block;
            min-width: 90px;
            color: #94a3b8;
            font-size: 0.8rem;
        }

        /* TRI-COLOR OVERRIDES FOR HOMEPAGE (ADDITIVE) */
        :root {
            --india-saffron: #ff9933;
            --india-green: #138808;
            --india-navy: #0b1f3a;
            --india-ivory: #f8f6ef;
        }

        .navbar,
        .hero {
            background: linear-gradient(125deg, var(--india-saffron) 0%, #fff7ed 42%, var(--india-green) 100%);
            color: var(--india-navy);
        }

        .navbar {
            border-bottom: 1px solid rgba(11, 31, 58, 0.14);
        }

        .navbar-links a,
        .navbar .logo,
        .hero h1,
        .hero p {
            color: var(--india-navy);
            opacity: 1;
        }

        .btn-login {
            color: var(--india-navy);
            border-color: rgba(11, 31, 58, 0.32);
            background: rgba(255, 255, 255, 0.66);
        }

        .btn-login:hover {
            background: var(--india-navy);
            color: #fff;
        }

        .btn-signup,
        .btn-admin,
        .btn-primary {
            background: var(--india-navy);
            color: #fff;
        }

        .btn-admin {
            background: linear-gradient(135deg, #ff9933 0%, #ffb85e 100%);
            color: var(--india-navy);
            border-color: rgba(255, 153, 51, 0.62);
        }

        .btn-admin:hover {
            background: linear-gradient(135deg, #e88725 0%, #fca344 100%);
            color: var(--india-navy);
        }

        .navbar-links .btn-login,
        .navbar-links .btn-signup,
        .navbar-links .btn-admin {
            min-width: 96px;
            text-align: center;
            text-decoration: none;
        }

        .navbar-links .btn-login {
            color: var(--india-navy);
        }

        .navbar-links .btn-signup,
        .navbar-links .btn-signup:hover,
        .navbar-links .btn-signup:focus {
            color: #fff;
        }

        .navbar-links .btn-admin,
        .navbar-links .btn-admin:hover,
        .navbar-links .btn-admin:focus {
            color: var(--india-navy);
        }

        .btn-signup:hover,
        .btn-primary:hover {
            background: #142f57;
        }

        .btn-secondary {
            border-color: var(--india-navy);
            color: var(--india-navy);
            background: rgba(255, 255, 255, 0.85);
        }

        .btn-secondary:hover {
            background: var(--india-navy);
            color: #fff;
        }

        .hero::before {
            opacity: 0.25;
        }

        .ai-automation-section {
            padding: 4rem 2rem;
            background: linear-gradient(145deg, #fffaf0 0%, #f7fbf8 55%, #eef5ff 100%);
        }

        .ai-automation-header {
            text-align: center;
            margin-bottom: 1.4rem;
        }

        .ai-automation-header h2 {
            color: var(--india-navy);
            font-size: 2rem;
        }

        .ai-automation-header p {
            color: rgba(11, 31, 58, 0.76);
            max-width: 900px;
            margin: 0.7rem auto 0;
        }

        .ai-automation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
        }

        .ai-automation-card {
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(11, 31, 58, 0.12);
            border-radius: 14px;
            padding: 1rem;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
        }

        .ai-automation-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.6rem;
            font-weight: 700;
            color: var(--india-navy);
        }

        .ai-automation-status {
            font-size: 0.7rem;
            padding: 0.2rem 0.5rem;
            border-radius: 999px;
            border: 1px solid transparent;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .ai-status-healthy {
            color: #0f766e;
            background: #ccfbf1;
            border-color: #99f6e4;
        }

        .ai-status-elevated {
            color: #b45309;
            background: #fef3c7;
            border-color: #fcd34d;
        }

        .ai-status-critical {
            color: #b91c1c;
            background: #fee2e2;
            border-color: #fca5a5;
        }

        .ai-automation-card p {
            color: rgba(11, 31, 58, 0.75);
            font-size: 0.9rem;
            margin-top: 0.55rem;
        }

        .ai-automation-meta {
            margin-top: 1rem;
            text-align: right;
            font-size: 0.76rem;
            color: rgba(11, 31, 58, 0.6);
        }
        /* Responsive */
        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
            }

            .navbar {
                padding: 0.75rem 0;
            }

            .navbar .container {
                padding: 0 0.6rem;
                justify-content: flex-start;
            }

            .navbar .logo {
                width: 100%;
                justify-content: flex-start;
                font-size: 1.35rem;
                gap: 0.5rem;
            }

            .navbar .logo i {
                font-size: 1.35rem;
            }

            .navbar-links {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0.45rem;
                align-items: stretch;
            }

            .navbar-links > a {
                font-size: 0.74rem;
                line-height: 1.2;
                text-align: center;
                white-space: normal;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0.45rem 0.35rem;
                background: rgba(255, 255, 255, 0.65);
                border: 1px solid rgba(11, 31, 58, 0.18);
                border-radius: 8px;
            }

            .auth-buttons {
                grid-column: 1 / -1;
                width: 100%;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
                gap: 0.45rem;
                justify-content: stretch;
            }

            .btn-login, .btn-signup, .btn-admin {
                width: 100%;
                min-width: 0;
                font-size: 0.82rem;
                padding: 0.5rem 0.6rem;
                text-align: center;
            }

            .navbar-switchers {
                grid-column: 1 / -1;
                width: 100%;
                display: grid !important;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.45rem;
            }

            .hero {
                padding: 3rem 1rem;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2rem;
                word-break: break-word;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .container {
                padding: 0 1rem;
            }

            .stats-grid, .steps {
                grid-template-columns: 1fr;
            }
        }
