/* --------------------------------------------------
   GLOBAL STYLES — DARK NAVY BRAND THEME
-------------------------------------------------- */

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #0d1117; /* Dark navy */
    color: #e6edf3;      /* Soft white */
    line-height: 1.6;
}

/* Smooth edges */
* {
    box-sizing: border-box;
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */

.navbar {
    width: 100%;
    padding: 18px 40px;
    background: rgba(13,17,23,0.85);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 95px;
}

.nav-title {
    display: flex;
    flex-direction: column;
    color: white;
}

.nav-title strong {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 12px;
    opacity: 0.65;
    margin-top: -2px;
}

.nav-right a {
    color: #e6edf3;
    margin-left: 24px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.nav-right a:hover {
    color: #9bbcf2; /* Soft blue */
}

.contact-btn {
    padding: 8px 16px;
    background: #2563eb;
    border-radius: 6px;
}

.contact-btn:hover {
    background: #1e4fc4;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */

.hero {
    display: flex;
    justify-content: space-between;
    padding: 80px 40px;
    flex-wrap: wrap;
}

.hero-box {
    background: #161b22;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 12px;
    width: 55%;
    min-width: 360px;
    box-shadow: 0 0 22px rgba(0,0,0,0.4);
}

.hero-box h1 {
    font-size: 36px;
    margin-top: 0;
}

.hero-sub {
    margin-top: 10px;
    max-width: 600px;
    opacity: 0.85;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #2563eb;
    padding: 12px 22px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #1d4ec7;
}

.btn-secondary {
    background: #30363d;
    padding: 12px 22px;
    border-radius: 8px;
    color: #e6edf3;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #3a4149;
}

.notice-bar {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.65;
}

/* RIGHT BOX */
.help-box {
    background: #161b22;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 12px;
    width: 38%;
    min-width: 320px;
    box-shadow: 0 0 22px rgba(0,0,0,0.35);
}

.help-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.help-box ul {
    padding-left: 20px;
}

.hero-phone {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero-phone a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

.hero-phone a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------
   SERVICES SECTION
-------------------------------------------------- */

#services {
    padding: 60px 40px;
}

#services h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.service-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    background: #161b22;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 12px;
    width: 30%;
    min-width: 280px;
    box-shadow: 0 0 18px rgba(0,0,0,0.32);
}

.service-card h4 {
    margin-top: 0;
    font-size: 18px;
    color: #9bbcf2;
}

/* --------------------------------------------------
   PROCESS SECTION
-------------------------------------------------- */

.process {
    padding: 60px 40px;
    background: #0f141a;
}

.process h2 {
    font-size: 28px;
}

.process-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.process-step {
    background: #161b22;
    border-radius: 12px;
    padding: 25px;
    width: 23%;
    min-width: 260px;
    border: 1px solid rgba(255,255,255,0.08);
}

.num {
    background: #2563eb;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* --------------------------------------------------
   ABOUT
-------------------------------------------------- */

.about {
    padding: 60px 40px;
}

.veteran-tag {
    margin-top: 20px;
    font-weight: bold;
    color: #9bbcf2;
}

/* --------------------------------------------------
   CONTACT
-------------------------------------------------- */

/* CONTACT SECTION */
.contact-section {
    padding: 80px 40px;
    text-align: center;
    background: #111827;  /* subtle darker panel */
    border-radius: 12px;
    margin: 60px auto;
    max-width: 900px;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #a3b3ff;
}

.contact-section p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.contact-details p {
    margin: 8px 0;
}

.contact-section a {
    color: #7b8cff;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background: #4f46e5;
    border-radius: 8px;
    font-size: 18px;
    color: white !important;
    text-decoration: none;
}

.btn-primary:hover {
    background: #6366f1;
}
/* ========================================================= */
/* CERTIFICATIONS                                             */
/* ========================================================= */

.certifications {
    padding: 80px 40px;
    background: #0a0f1a; /* dark navy similar to your theme */
    border-radius: 12px;
    margin: 60px auto;
    max-width: 1200px;
}

.certifications h2 {
    color: #9bbcf2; /* soft blue for headings */
    font-size: 32px;
    margin-bottom: 20px;
}

.cert-intro {
    color: #cdd5e3;
    font-size: 18px;
    margin-bottom: 40px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.cert-box {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 8px;
    color: #e5e7eb;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.cert-box:hover {
    transform: translateY(-4px);
    border-color: #4C6FFF; /* light blue hover glow */
}

.cert-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #f3f4f6;
}

.cert-code {
    display: block;
    font-size: 14px;
    opacity: 0.6;
    margin-top: 4px;
}

.cert-code.in-progress {
    color: #eab308; /* gold/yellow highlight */
    opacity: 1;
    font-weight: 600;
}

.legal {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    margin-top: 20px;
}
.legal a {
    color: #7b8cff; /* matches your existing accent blue */
    text-decoration: none;
    font-size: 13px;
}

.legal a:hover {
    text-decoration: underline;
    color: #a3b3ff;
}
/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer {
    padding: 2.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-column {
    min-width: 220px;
}

.footer-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.footer-tagline {
    opacity: 0.9;
}

.footer-contact a,
.footer-meta a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-meta a:hover {
    text-decoration: underline;
}

/* Mobile stacking */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.3rem;
    }
}