* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Header Wrapper */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Header */
.header {
    max-width: 80rem;
    margin: 0 auto;
    padding: 15px 10px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 2.6rem;

    font-family: "Mulish", ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 20px;
    width: auto;
    display: block;
}

/* Desktop Nav */
.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #003454;
}

.nav-list a:hover {
    text-decoration: underline;
    text-underline-offset: 1.5px;
}

/* Buttons */
.button-wrapper {
    display: flex;
    gap: 0.5rem;
}

.btn {
    font-size: 1rem;
    padding: 9px 22px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.btn-cockpit {
    background-color: #AB2368;
    color: #ffffff;
}

.btn-cockpit:hover {
    background-color: #f2b705;
    color: #003454;
}

.btn-register {
    background-color: #ffffff;
    color: #003454;
    border: 2px solid #f2b705;
    padding-top: 6.9px;
    padding-bottom: 6.9px;
}

.btn-register:hover {
    background-color: #f2b705;
}

/* Hamburger Menu */
.menu-toggle {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    justify-self: end;
}

.menu-toggle span {
    height: 2px;
    width: 100%;
    background-color: #003454;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Dropdown */
.mobile-nav {
    position: relative;
    z-index: 999;

    max-width: 80rem;
    margin: 0 auto;
    background-color: #ffffff;
    font-family: "Mulish", ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        transform 0.25s ease;

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.mobile-nav.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu List */
.mobile-nav ul {
    list-style: none;
    margin: 0 10px;

    border-top: 1px solid #00CCFF;
}

.mobile-nav li {
    border-bottom: 1px solid #00CCFF;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #003454;
    text-decoration: none;
}

/* Mobile Buttons */
.mobile-buttons {
    display: flex;
    gap: 1rem;
    padding: 20px 10px 30px;
}

.mobile-buttons .btn {
    flex: 1;
    text-align: center;
}

/* Responsive */
.nav,
.button-wrapper {
    display: none;
}

/* Breadcrumb */
.breadcrumb {
    min-height: 5rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 10px 10px 0;

    font-family: "Mulish", ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb__item {
    font-size: 14px;
    line-height: 1.214;
    /* font-weight: 500; */
    color: #003454;
    padding: 10px 0;
}

.breadcrumb__item a {
    text-decoration: none;
    color: #003454;
}

.breadcrumb__item a:hover {
    text-decoration: underline;
    text-underline-offset: 1.5px;
}

.breadcrumb__separator {
    font-size: 14px;
    color: #003454;
    padding: 10px 5px;
}

.breadcrumb__item--current {
    /* font-weight: 600; */
    color: #003454;
    cursor: default;
}

/* Hero */
.hero {
    width: 100%;
    background-color: #ffffff;

}

.hero__container {
    max-width: 52.5rem;
    margin: 0 auto;
    padding: 0 10px;

    display: flex;
    flex-direction: column;

    text-align: start;
}

.hero__title {
    font-size: clamp(2.25rem, 1rem + 3.13vw, 3.5rem);
    line-height: clamp(2.925rem, 1.6625rem + 3.1563vw, 4.1875rem);
    font-weight: 400;
    color: #003454;
    font-family: Montserrat, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-bottom: 24px;


}

.hero__description {
    font-family: "Mulish", ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #003454;
    margin-bottom: 70px;
}

.hero__image {
    max-width: 80rem;
    width: 100%;
    margin: 0 auto 3.125rem;
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.open-positions-wrapper {
    background-color: #ecf0f4;
    padding: 30px 0;
}

.container {
    max-width: 80rem;
    margin: auto;
    /* padding: 60px 20px; */
    font-family: Montserrat, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002B49;
    border-left: 6px solid #f6a800;
    padding-left: 15px;
    margin-bottom: 40px;
}

/* JOB CARD */
.job-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

.job-card h3 {
    font-size: 1.55rem;
    color: #002B49;
    margin: 0;
}

.job-meta {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.job-meta span {
    background: #eef4f8;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 6px solid #f6a800;
}

/* ACCORDION */
.accordion-btn {
    width: 100%;
    background: #002b49;
    color: #fff;
    padding: 14px 18px;
    border: none;
    border-radius: 6px;
    margin-top: 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.accordion-btn::after {
    content: "+";
    float: right;
    font-size: 1.4rem;
}

.accordion-btn.active::after {
    content: "−";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
    padding: 0 15px;
    border-left: 6px solid #f6a800;
    margin-top: 10px;
}

.accordion-content ul {
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
}

/* APPLY */
.apply-btn {
    display: inline-block;
    margin-top: 22px;
    background: #f6a800;
    color: #000;
    padding: 12px 26px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #d29000;
}




/* Footer */
.footer {
    max-width: 80rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* padding: 80px 40px 10px; */

    /* padding-top: 5000px; */
    display: flex;
    flex-direction: column;
    font-family: "Mulish", ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.footer-row1 {
    width: 100%;
    display: flex;
    flex-direction: row;
}



.footer-col1 {
    display: flex;
    flex-direction: column;
    padding-right: 30px;
}

.footer-col1 .col1-label {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    margin: 20px 0px 5px;
}

.footer-col1 .col1-text {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    line-height: 1.5;
}

/* for grid layout use this */

/* .footer-col2-row1 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;

    padding-left: 30px;
    border-left: 1px solid #00CCFF;
    margin-bottom: 1.875rem;
} */

/* for flex layout use this */
.footer-col2-row1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;

    padding-left: 30px;
    border-left: 1px solid #00CCFF;
    margin-bottom: 1.875rem;
}

.footer-col2-row1 .col2-item {
    display: flex;
    flex-direction: column;
}

.footer-col2-row1 .col2-item .col2-item-list {
    list-style: none;
    margin: 10px 0 0 0;
}

.footer-col2-row1 .col2-item-label {
    font-size: 16px;
    font-weight: 700;
    color: #0071b8;
}

.col2-item li {
    margin: 0 0 10px;
}

.footer .col2-item-link a {
    text-decoration: none;
    color: #222222;
}

.footer .col2-item-link {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    cursor: pointer;

}

.footer .col2-item-link a:hover {
    text-decoration: underline;
    text-underline-offset: 1.5px;
}

.footer-col2-row2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.875rem;
    justify-content: end;
    list-style: none;
}

.footer-col2-row2-text {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
}

.footer-col2-row2-text::before {
    content: "© ";
}


.footer-row2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer-col2-row1 .footer-row2-item {
    display: flex;
    flex-direction: column;
}

.footer-col2-row1 .footer-row2-item .text {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 10px;

}

.footer-col2-row1 .footer-row2-item .footer-row2-item-icon-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-col2-row1 .footer-row2-item .footer-row2-item-icon-wrapper img {
    max-width: 100%;
    height: 26px;
}

.footer-col2-row1 .footer-row2-item .footer-row2-item-icon-wrapper .img-small-size {
    max-width: 100%;
    height: 20px;
}


.site-footer {
    background-color: #ffffff;
    color: #555555;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    /* Slightly larger for white bg readability */
    line-height: 1.6;
    padding: 60px 0 20px;
    border-top: 5px solid #0071b8;
    /* Top accent bar */
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Section Layout --- */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* --- Branding Column --- */


.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.cert-label {
    display: block;
    font-weight: 700;
    color: #0071b8;
    /* Blue text for label */
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* --- Links Column --- */
.footer-heading {
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 0;
    position: relative;
}

/* Optional: Small blue underline under headings */
.footer-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #0071b8;
    margin-top: 8px;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0071b8;
    padding-left: 8px;
}

/* --- Highlighted Member Section --- */
.trust-group {
    margin-bottom: 30px;
}

/* Specific styling for the Member Highlight Box */
.member-highlight {
    background-color: #f4f9fd;
    /* Light Blue Background */
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #0071b8;
    /* Blue accent on left */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.member-highlight .footer-heading {
    color: #0071b8;
    /* Make heading blue inside highlight */
    margin-bottom: 15px;
}

.member-highlight .footer-heading::after {
    display: none;
    /* Remove underline for this specific box */
}

.member-icons {
    display: flex;
}

/* Icons styling */
.payment-icons img,
.member-icons img {
    height: 40px;
    width: auto;
    margin-right: 15px;
    vertical-align: middle;
    /* Since bg is white, we don't need a white box around icons anymore */
}

/* --- Divider --- */
.footer-divider {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

/* --- Bottom Section --- */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #888;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
}

.legal-links a:hover {
    color: #0071b8;
    text-decoration: underline;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        /* Puts copyright at bottom on mobile */
        text-align: center;
        padding-bottom: 20px;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-heading::after {
        margin: 8px auto 0;
        /* Center underline on mobile */
    }

    .footer-col {
        text-align: center;
    }

    .member-highlight {
        text-align: left;
        /* Keep card content left-aligned or center as preferred */
    }
}



@media (max-width: 1279px) {

    .footer {
        padding: 80px 10px 40px;

    }

    .footer-col2-row1 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .footer {
        flex-direction: column;
    }

    .footer-col1 {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .footer-col2-row1 {
        padding: 25px 0 0 0;
        border-left: none;
        border-top: 1px solid #00CCFF;
    }

    .footer-col2-row1 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-col2-row2 {
        justify-content: start;
    }
}

@media (max-width: 640px) {

    .footer-row1 {
        flex-direction: column;
    }

    .footer-col2-row1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}





@media (max-width: 1023px) {
    .header {
        grid-template-columns: auto 1fr auto;
        column-gap: 0;
        padding: 20px 10px;

    }
}

@media (min-width: 1024px) {
    .nav {
        display: block;
    }

    .button-wrapper {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none;
    }




}