* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #1a1a1a;
    line-height: 1.6;
}

/* UTILITIES */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 60px 0;
}

.light-bg {
    background: #f4f6f8;
}

h2,
h3,
h4 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* TOP BAR */
.top-bar {
    background: #0b1f33;
    color: #fff;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #005ea2;
}

/* BUTTONS */
.btn,
.btn-primary {
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
}

.btn {
    border: 1px solid #005ea2;
    color: #005ea2;
}

.btn-primary {
    background: #005ea2;
    color: #fff;
}

/* HERO */
.hero {
    background: #eef3f8;
    padding: 80px 0;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* GRID */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
}

/* LIST */
.bullet-list {
    list-style: disc;
    margin-left: 20px;
}

/* FOOTER */
.footer {
    background: #0b1f33;
    color: #fff;
    padding: 40px 0;
}

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

.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
}


/* CONTACT FORM */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


/* OFFICE SECTION */
.section h4 {
    margin-top: 25px;
    margin-bottom: 8px;
    color: #0b1f33;
}




/* MOBILE & TABLET HEADER FIX */
@media (max-width: 1024px) {

    /* Header layout */
    .header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo h1 {
        font-size: 22px;
        margin: 0;
    }

    .logo h1 a {
        text-decoration: none;
        color: inherit;
    }

    /* Hamburger icon */
    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        user-select: none;
    }

    /* Hide nav by default */
    #mainNav {
        display: none;
        width: 100%;
    }

    #mainNav.active {
        display: block;
    }

    /* Mobile menu layout */
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: #ffffff;
        margin-top: 15px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }

    .nav-menu .btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* Top bar stacking */
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}




/* JOB TABLE CLEAN VERSION */
.job-table-wrapper {
    overflow-x: auto;
}

.job-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    margin-top: 20px;
}

.job-table th {
    background: #0b1f33;
    color: #ffffff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.job-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
}

.job-table tbody tr:hover {
    background: #f5f7fa;
}

/* EXPANDABLE JOB ROWS */

.job-row {
    cursor: pointer;
}

.job-row:hover {
    background: #f5f7fa;
}

.job-details {
    display: none;
    background: #f9fbfd;
}

.job-details td {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.job-details ul {
    margin-top: 10px;
    padding-left: 20px;
}