   :root {
            --primary: #0a3d62; /* Professional Navy */
            --accent: #27ae60;  /* Growth Green */
            --bg-light: #f8fafc;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }

        /* Navigation */

/* Updated Navigation for Image Logo */
        nav {
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            padding: 1rem 10%; 
            background: var(--white);
            border-bottom: 1px solid var(--border); 
            position: sticky; 
            top: 0; 
            z-index: 1000;
            height: 80px; /* Fixed height keeps things consistent */
        }

        .logo-container {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .logo-image {
            height: 50px; /* Adjust this based on your logo's proportions */
            width: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.02);
        }

        .nav-links a { text-decoration: none; color: var(--text-dark); margin-left: 2rem; font-size: 0.95rem; font-weight: 500; }
        .btn-nav { background: var(--primary); color: white !important; padding: 0.6rem 1.2rem; border-radius: 6px; }

        /* Hero Section */
        /* Updated Hero with Background Image Support */
.hero {
    position: relative;
    padding: 140px 10% 160px;
    /* Replace the URL below with your image path */
    background: url('https://images.pexels.com/photos/5125783/pexels-photo-5125783.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* The Overlay: This ensures your text pops */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 98, 0.75); /* Match your Navy Primary color with transparency */
    z-index: 1;
}

/* Ensure content sits above the overlay */
.hero h1, .hero p, .hero .cta-group {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}        .cta-group { display: flex; gap: 1rem; justify-content: center; }
        .btn-main { background: var(--accent); color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.1rem; }
        .btn-secondary { background: rgba(255,255,255,0.1); border: 1px solid white; color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; }

        /* Stats/Trust Bar */
        .trust-bar { padding: 2rem 10%; background: var(--bg-light); display: flex; justify-content: space-around; text-align: center; }
        .stat h3 { color: var(--primary); font-size: 1.5rem; }
        .stat p { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

        /* Services */
        .services { padding: 80px 10%; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 2.2rem; color: var(--primary); }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .card { padding: 40px; border: 1px solid #e2e8f0; border-radius: 12px; transition: 0.3s; }
        .card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .card h3 { margin-bottom: 1rem; color: var(--primary); }
        
        /* Contact/Footer */
        footer { background: #0f172a; color: white; padding: 60px 10% 20px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
        .footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; display: block; }
        .copyright { border-top: 1px solid #334155; padding-top: 20px; font-size: 0.8rem; color: #94a3b8; text-align: center; }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .nav-links { display: none; }
            .cta-group { flex-direction: column; }
        }

         /* About Hero */
        .about-hero {
            padding: 80px 10%;
            background: var(--bg-light);
            text-align: center;
        }
        .about-hero h1 { font-size: 3rem; color: var(--primary); font-weight: 800; margin-bottom: 1rem; }

        /* The Definition Section */
        .definition-box {
            max-width: 800px;
            margin: -40px auto 60px;
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary);
        }
        .phonetic { font-style: italic; color: var(--text-muted); margin-bottom: 15px; display: block; }
        .definition-box h2 { font-size: 1.8rem; margin-bottom: 5px; }
        .definition-list { list-style: none; margin-top: 20px; }
        .definition-list li { margin-bottom: 10px; padding-left: 20px; position: relative; font-size: 1.1rem; }
        .definition-list li::before { content: "•"; position: absolute; left: 0; color: var(--primary); }

        /* Content Sections */
        .content-section { padding: 60px 10%; max-width: 1200px; margin: 0 auto; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        
        .leadership-card {
            background: var(--primary);
            color: white;
            padding: 40px;
            border-radius: 12px;
        }
        .leadership-card h3 { color: #a5d8ff; margin-bottom: 15px; }
        .leadership-card p { opacity: 0.9; margin-bottom: 20px; }

        .philosophy-list { margin-top: 30px; }
        .philosophy-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .philosophy-item span {
            background: #e0f2fe;
            color: var(--primary);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-weight: bold;
        }

        footer { background: #0f172a; color: white; padding: 40px 10%; text-align: center; margin-top: 80px; }

        @media (max-width: 768px) {
            .grid-2 { grid-template-columns: 1fr; }
            .about-hero h1 { font-size: 2.2rem; }
        }
    
          /* Services Hero */
        .services-hero {
            background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.9)), 
                        url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=2011') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 80px 10%;
            text-align: center;
        }
        .services-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }

        /* Services Grid */
        .services-container {
            padding: 80px 10%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 40px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }
        .service-card h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .service-card h3::before {
            content: "";
            display: inline-block;
            width: 8px;
            height: 24px;
            background: var(--accent);
            margin-right: 12px;
            border-radius: 2px;
        }
        .service-card p {
            color: #64748b;
            font-size: 1rem;
            flex-grow: 1;
        }

        /* Specialized Highlight Section */
        .specialized-section {
            background: #f1f5f9;
            padding: 80px 10%;
            margin-top: 40px;
        }
        .vendor-box {
            background: var(--white);
            border-radius: 16px;
            padding: 50px;
            max-width: 1000px;
            margin: 0 auto;
            border-top: 5px solid var(--accent);
        }
        .vendor-box h2 { color: var(--primary); margin-bottom: 20px; }
        .tag {
            background: #dcfce7;
            color: #166534;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: inline-block;
        }

         /* Application Container */
        .app-container {
            max-width: 1100px;
            margin: 40px auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
            padding: 0 20px;
        }

        /* Sidebar Info */
        .sidebar {
            background: var(--primary);
            color: white;
            padding: 30px;
            border-radius: 12px;
            height: fit-content;
        }
        .sidebar h2 { font-size: 1.2rem; margin-bottom: 1.5rem; color: #a5d8ff; }
        .info-step { margin-bottom: 20px; font-size: 0.9rem; opacity: 0.9; position: relative; padding-left: 25px; }
        .info-step::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

        /* Form Area */
        .form-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        .form-header {
            padding: 25px;
            border-bottom: 1px solid #edf2f7;
            background: #fff;
        }
        .form-header h1 { font-size: 1.5rem; color: var(--primary); margin-bottom: 5px; }
        .security-badge { 
            display: inline-flex; 
            align-items: center; 
            font-size: 0.75rem; 
            color: #059669; 
            background: #ecfdf5; 
            padding: 4px 8px; 
            border-radius: 4px;
            margin-top: 10px;
        }

        /* Responsive Iframe */
        .iframe-wrapper {
            position: relative;
            width: 100%;
            height: 900px; /* Adjust based on form length */
        }
        iframe {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            border: none;
        }

        @media (max-width: 850px) {
            .app-container { grid-template-columns: 1fr; }
            .sidebar { order: 2; }
        }