      
        :root {
            --brand-primary: #0062ff;
            --brand-dark: #050a15;
            --brand-accent: #00d4ff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
        body { background-color: var(--bg-light); color: var(--text-main); line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        a { text-decoration: none; transition: 0.3s; }

        /* --- NAVIGATION --- */
        nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 1.2rem 0; position: sticky; top: 0; z-index: 1000; }
        .nav-content { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.4rem; font-weight: 800; color: var(--brand-dark); letter-spacing: -0.5px; }
        .logo span { color: var(--brand-primary); }
        .nav-links a { color: var(--text-main); font-weight: 600; margin-left: 2rem; font-size: 0.9rem; }
        .btn-nav { background: var(--brand-dark); color: white !important; padding: 0.7rem 1.4rem; border-radius: 8px; }

        .mobile-toggle { display: none; cursor: pointer; z-index: 1001; }

        /* --- HERO --- */
        .hero { background: radial-gradient(circle at top right, #f1f5f9, #ffffff); padding: 120px 0 80px; text-align: center; }
        .badge { background: #e0eaff; color: var(--brand-primary); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
        .hero h1 { font-size: 3.8rem; font-weight: 800; letter-spacing: -2px; margin-bottom: 1.5rem; color: var(--brand-dark); line-height: 1.1; }
        .hero h1 span { background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { color: var(--text-muted); font-size: 1.2rem; max-width: 750px; margin: 0 auto 2.5rem; }
        .hero-btns { display: flex; justify-content: center; gap: 1rem; }
        .btn { padding: 1rem 2rem; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: 0.3s; }
        .btn-blue { background: var(--brand-primary); color: white; }
        .btn-blue:hover { background: var(--brand-dark); transform: translateY(-2px); }

        /* --- TRUSTED BY --- */
        .trusted { padding: 40px 0; border-top: 1px solid var(--border); background: white; text-align: center; }
        .trusted p { font-size: 0.85rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; margin-bottom: 20px; }
        .niche-list { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; opacity: 0.7; font-weight: 700; color: var(--brand-dark); }

        /* --- SERVICES --- */
        .services { padding: 100px 0; background: var(--white); }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 50px; }
        .card { padding: 3rem; border-radius: 20px; border: 1px solid var(--border); transition: 0.4s; position: relative; overflow: hidden; }
        .card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow); transform: translateY(-5px); }
        .card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--brand-dark); }
        .card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
        .card ul { list-style: none; font-size: 0.85rem; font-weight: 600; color: var(--text-main); }
        .card ul li { margin-bottom: 8px; display: flex; align-items: center; }
        .card ul li::before { content: "→"; color: var(--brand-primary); margin-right: 10px; }

        /* --- INVENTORY --- */
        .inventory { padding: 100px 0; }
        .table-box { background: white; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
        .table-header { padding: 25px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
        .search-bar { padding: 12px 20px; border-radius: 8px; border: 1px solid var(--border); width: 100%; max-width: 400px; outline: none; }
        .table-wrapper { overflow-x: auto; }
        table { width: 100%; border-collapse: collapse; min-width: 900px; }
        th { background: #f8fafc; padding: 18px 25px; font-size: 0.7rem; text-transform: uppercase; color: var(--text-muted); text-align: left; font-weight: 700; }
        td { padding: 20px 25px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
        .tag { background: #f1f5f9; padding: 4px 10px; border-radius: 6px; font-weight: 600; font-size: 0.75rem; }

        /* Blog & Sidebar Layout */
        .page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }

        /* Blog Feed (Category Page) */
        .category { padding: 100px 0; }
        .post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
        .post-card { background: white; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; transition: 0.3s; }
        .post-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .placeholder-img { height: 200px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; }
        .post-meta { padding: 1.5rem; }
        .post-meta span { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; }
        .post-meta h3 { margin: 10px 0; font-size: 1.25rem; line-height: 1.3; }
        .post-meta h3 a { color: var(--brand-dark); text-decoration: none; }

        /* Single Post Styles */
        .blog { padding: 100px 0; }
        .single-post-header { margin-bottom: 2rem; }
        .single-post-header h1 { font-size: 2.5rem; color: var(--brand-dark); line-height: 1.2; margin: 10px 0; }
        .post-body { font-size: 1.15rem; color: #334155; }
        .post-body p { margin-bottom: 1.5rem; }
        .post-body h2 { margin: 2rem 0 1rem; color: var(--brand-dark); }
        .post-body blockquote { border-left: 4px solid var(--brand-primary); padding: 1.5rem; background: #f1f5f9; font-style: italic; margin: 2rem 0; }

        .featured-img-wrapper { 
            width: 100%; 
            height: clamp(250px, 40vh, 450px); 
            background: #f1f5f9; 
            margin-bottom: 3rem; 
            border-radius: 20px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            overflow: hidden;
            border: 1px solid var(--border);
        }

        /* Sidebar Widgets */
        .sidebar { position: sticky; top: 100px; }
        .widget { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; }
        .widget h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; border-bottom: 2px solid var(--brand-primary); display: inline-block; }
        .widget ul { list-style: none; }
        .widget li { margin-bottom: 12px; font-size: 0.9rem; font-weight: 600; border-bottom: 1px solid #f8fafc; padding-bottom: 8px; }
        .widget li a { color: var(--text-main); text-decoration: none; }

        /* Ads Banner Widget */
        .ad-banner { background: var(--brand-dark); color: white; padding: 2rem; border-radius: 12px; text-align: center; }
        .ad-banner h3 { font-size: 1.2rem; margin-bottom: 10px; }
        .ad-banner p { font-size: 0.85rem; color: #94a3b8; margin-bottom: 1.5rem; }
        .btn-ad { background: var(--brand-primary); color: white; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: 700; display: block; font-size: 0.85rem; }

        /* Enlistment Form */
        .enlist-card { background: white; padding: 3rem; border-radius: 20px; border: 1px solid var(--border); margin: 60px auto; max-width: 800px; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
        .input-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.85rem; }
        .input-group input, .input-group select { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 8px; }
        .btn-submit { background: var(--brand-primary); color: white; border: none; padding: 1rem; border-radius: 8px; font-weight: 700; width: 100%; cursor: pointer; margin-top: 1rem; }

        /* --- FOOTER --- */
        footer { background: var(--brand-dark); color: #94a3b8; padding: 100px 0 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 60px; }
        .footer-logo { color: white; font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
        .footer-col h4 { color: white; margin-bottom: 1.5rem; font-size: 1rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a { color: #94a3b8; font-size: 0.9rem; }
        .footer-col a:hover { color: var(--brand-primary); }

        /* --- MOBILE NAV LOGIC --- */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block; /* Show hamburger icon */
                color: var(--brand-dark);
            }

            .nav-links {
                display: none; /* Hide links by default on mobile */
                flex-direction: column;
                position: absolute;
                top: 100%; /* Sits right under the nav bar */
                left: 0;
                width: 100%;
                background: white;
                padding: 20px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow);
            }

            /* When this class is added via JS, the menu shows */
            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                margin: 10px 0;
                margin-left: 0; /* Reset desktop margin */
                font-size: 1.1rem;
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .page-layout { grid-template-columns: 1fr; }
            .sidebar { position: relative; top: 0; }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .nav-links { display: none; }
        }
