/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

:root {

    --navy: #061a36;
    --navy-dark: #031329;

    --yellow: #ffc21a;
    --yellow-hover: #ffd24d;

    --text: #0c1c34;
    --muted: #657184;

    --border: #e4e8ed;

    --light: #f5f7fa;

    --blue: #0957a5;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--text);

    background: white;

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


.container {

    width: min(
        1110px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    height: 68px;

    background: var(--navy);

    color: white;

    position: relative;

    z-index: 100;
}


.header-container {

    width: min(
        1110px,
        calc(100% - 48px)
    );

    height: 68px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 9px;
}


.logo-globe {

    width: 40px;

    color: var(--yellow);

    font-size: 40px;

    line-height: 1;
}


.logo-text {
    display: flex;
    flex-direction: column;
}


.logo-name {

    font-size: 20px;

    font-weight: 700;

    line-height: 20px;

    letter-spacing: -0.5px;
}


.logo-name span {
    color: var(--yellow);
}


.logo-subtitle {

    margin-top: 2px;

    font-size: 8px;

    letter-spacing: 1.2px;

    color: white;
}


/* DESKTOP NAV */

.desktop-navigation {

    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 13px;
}


.desktop-navigation a {

    transition:
        color 0.2s ease;
}


.desktop-navigation a:hover {
    color: var(--yellow);
}


.language-button {

    padding:
        9px
        14px;

    background:
        transparent;

    color: white;

    border:
        1px solid
        #5c6d84;

    border-radius: 7px;

    cursor: pointer;
}


.language-button span {
    margin-left: 8px;
}


/* MOBILE MENU */

.mobile-menu-button {

    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 25px;

    cursor: pointer;
}


.mobile-navigation {

    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    height: 512px;

    position: relative;

    overflow: hidden;

    background:
        var(--navy);
}


/* HERO PHOTO */

.hero-background {

    position: absolute;

    inset: 0;

    background-image:
        url("hero-photo.png");

    background-position:
        center right;

    background-size:
        cover;

    background-repeat:
        no-repeat;
}


/* DARK GRADIENT */

.hero-dark-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 22, 47, 0.98) 0%,
            rgba(4, 22, 47, 0.94) 30%,
            rgba(4, 22, 47, 0.60) 57%,
            rgba(4, 22, 47, 0.10) 100%
        );
}


.hero-container {

    width: min(
        1110px,
        calc(100% - 48px)
    );

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    position: relative;

    z-index: 2;
}


.hero-content {

    width: 590px;

    color: white;
}


.hero-eyebrow {

    color: var(--yellow);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.hero h1 {

    margin:
        14px
        0
        16px;

    font-size: 39px;

    line-height: 1.18;

    letter-spacing: -1.4px;

    font-weight: 800;
}


.hero-description {

    max-width: 580px;

    margin: 0;

    font-size: 16px;

    line-height: 1.7;

    color: #f2f5f9;
}


.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin:
        25px
        0
        27px;

    font-size: 12px;

    font-weight: 600;
}


.hero-feature {

    display: flex;

    align-items: center;
}


.feature-icon {

    color: var(--yellow);

    margin-right: 8px;

    font-size: 17px;
}


/* BUTTON */

.primary-button {

    min-height: 47px;

    padding:
        0
        22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 4px;

    color: #101010;

    background: var(--yellow);

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    transition:
        0.2s ease;
}


.primary-button:hover {

    background:
        var(--yellow-hover);

    transform:
        translateY(-1px);
}


.button-icon {

    font-size: 18px;
}


.secure-text {

    margin-top: 13px;

    color: #f1f5fa;

    font-size: 11px;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    height: 512px;
    position: relative;
    overflow: hidden;
    background: #031a38;
}


/* =========================================================
   GLOBALPATH HERO IMAGE SLIDER
========================================================= */

.hero-background-slider {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 0;
}


.hero-background-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;

    animation:
        heroSlide
        14s
        infinite
        ease-in-out;
}


.slide-a {
    background-image:
        url("/static/GlobalPathA.png");

    animation-delay: 0s;
}


.slide-b {
    background-image:
        url("/static/GlobalPathB.png");

    animation-delay: 7s;
}


@keyframes heroSlide {

    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    10% {
        opacity: 1;
        transform: translateX(0);
    }

    40% {
        opacity: 1;
        transform: translateX(0);
    }

    50% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}


/* BLUE OVERLAY */

.hero-dark-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(2, 20, 44, 0.95) 0%,
            rgba(2, 20, 44, 0.82) 35%,
            rgba(2, 20, 44, 0.45) 65%,
            rgba(2, 20, 44, 0.25) 100%
        );

    pointer-events: none;
}


/* HERO CONTENT */

.hero-container {
    width: min(
        1110px,
        calc(100% - 48px)
    );

    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;

    position: relative;

    z-index: 2;
}


.hero-content {
    width: 590px;

    color: white;

    position: relative;

    z-index: 3;
}


/* =========================================================
   MOBILE SLIDER
========================================================= */

@media (max-width: 768px) {

    .hero-background-slide {
        background-position: center;
    }

    .hero-dark-overlay {
        background:
            rgba(2, 20, 44, 0.75);
    }

}


/* =========================================================
   CANDIDATE CARD
========================================================= */

.candidate-section {

    width: min(
        1110px,
        calc(100% - 48px)
    );

    margin: auto;

    position: relative;

    z-index: 10;
}


.candidate-card {

    min-height: 82px;

    padding:
        16px
        30px;

    display: flex;

    align-items: center;

    gap: 20px;

    background: white;

    border-radius:
        0
        0
        8px
        8px;

    box-shadow:
        0
        10px
        30px
        rgba(14, 31, 54, 0.12);
}


.candidate-icon {

    width: 60px;

    height: 60px;

    flex: 0 0 60px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #f5f7fa;

    color: var(--navy);

    font-size: 30px;
}


.candidate-description {

    flex: 1;

    font-size: 14px;

    line-height: 1.5;
}


.candidate-avatars {

    display: flex;

    align-items: center;
}


.avatar {

    width: 32px;

    height: 32px;

    margin-left: -5px;

    display: grid;

    place-items: center;

    border:
        2px solid
        white;

    border-radius: 50%;

    background:
        #d7d7d7;

    color: #777;

    font-size: 10px;
}


.candidate-count {

    width: 45px;

    height: 45px;

    margin-left: 5px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--navy);

    color: white;

    font-size: 11px;

    font-weight: 700;
}


.candidate-success {

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding:
        70px
        0;
}


.section-label {

    color: var(--yellow);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.25px;

    text-align: center;
}


.section-label.left {
    text-align: left;
}


.section h2 {

    margin:
        9px
        0
        0;

    text-align: center;

    font-size: 27px;

    line-height: 1.25;

    letter-spacing: -0.7px;
}


.section-yellow-line {

    width: 32px;

    height: 3px;

    margin:
        10px
        auto
        40px;

    background:
        var(--yellow);
}


/* =========================================================
   STEPS
========================================================= */

.steps {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 60px;
}


.step {

    position: relative;

    text-align: center;
}


.step:not(:last-child)::after {

    content: "";

    position: absolute;

    width: 100px;

    top: 68px;

    right: -50px;

    border-top:
        1px solid
        #e0e5eb;
}


.step-icon {

    width: 82px;

    height: 82px;

    margin: auto;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        #f6f8fa;

    color:
        #123a6b;

    font-size: 34px;
}


.step-number {

    width: 28px;

    height: 28px;

    margin:
        -12px
        auto
        13px;

    display: grid;

    place-items: center;

    position: relative;

    border-radius: 50%;

    background:
        var(--navy);

    color: white;

    font-size: 11px;

    font-weight: 700;
}


.step h3 {

    margin:
        0
        0
        8px;

    font-size: 15px;
}


.step p {

    max-width: 260px;

    margin: auto;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   INDUSTRIES
========================================================= */

/* =========================================================
   INDUSTRY ACTION BUTTONS
========================================================= */

.industry-action-buttons {
    margin-top: 25px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .industry-action-buttons {
        width: 100%;
    }


    .industry-action-buttons .dark-button,
    .reviews-button {
        width: 100%;

        justify-content: space-between;
    }

}
.industries {

    display: grid;

    grid-template-columns:
        1fr
        1.4fr;

    gap: 70px;

    align-items: center;

    padding-top: 20px;

    padding-bottom: 70px;
}


.industry-introduction h2 {

    margin:
        10px
        0
        25px;

    text-align: left;

    font-size: 27px;

    line-height: 1.3;
}


.dark-button {

    min-height: 42px;

    padding:
        0
        18px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background:
        var(--navy);

    color: white;

    border-radius: 6px;

    font-size: 11px;

    font-weight: 800;
}


.dark-button:hover {

    background:
        #0b2b52;
}


.industry-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}


.industry-card {

    height: 92px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border:
        1px solid
        var(--border);

    border-radius: 9px;

    background: white;
}


.industry-card:hover {

    border-color:
        #c9d5e2;

    transform:
        translateY(-2px);

    transition:
        0.2s ease;
}


.industry-icon {

    color:
        #12569c;

    font-size: 27px;
}


.industry-card strong {

    font-size: 10px;
}


/* =========================================================
   TRUST
========================================================= */

.trust-section {

    margin-bottom: 70px;

    padding:
        20px
        28px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background:
        #f2f6fa;

    border-radius: 8px;
}


.trust-item {

    padding:
        5px
        25px;

    display: flex;

    gap: 10px;

    border-right:
        1px solid
        #d9e0e8;
}


.trust-item:last-child {

    border-right: none;
}


.trust-icon {

    color:
        #0759ae;

    font-size: 22px;
}


.trust-item strong {

    display: block;

    font-size: 12px;
}


.trust-item p {

    margin:
        5px
        0
        0;

    color:
        var(--muted);

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   IMPORTANT INFORMATION
========================================================= */

.important-section {

    max-width: 780px;

    padding-bottom: 70px;

    text-align: center;
}


.important-section h2 {

    margin:
        9px
        0
        15px;

    font-size: 27px;
}


.important-section p {

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        38px
        0
        18px;

    background:
        var(--navy);

    color: white;
}


.footer-container {

    width: min(
        1110px,
        calc(100% - 48px)
    );

    margin: auto;
}


.footer-top {

    min-height: 92px;

    padding-bottom: 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-bottom:
        1px solid
        #29415e;
}


.footer-message {

    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-globe {

    color:
        var(--yellow);

    font-size: 42px;
}


.footer h2 {

    margin:
        3px
        0
        6px;

    font-size: 19px;

    line-height: 1.25;
}


.footer p {

    margin: 0;

    color:
        #c7d1dc;

    font-size: 11px;
}


.footer-bottom {

    padding-top: 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color:
        #aeb9c7;

    font-size: 10px;
}


.footer-links {

    display: flex;

    gap: 25px;
}


.footer-links a:hover {

    color: white;
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 800px) {

    .desktop-navigation {

        display: none;
    }


    .mobile-menu-button {

        display: block;
    }


    .mobile-navigation {

        position: absolute;

        top: 68px;

        left: 0;

        right: 0;

        padding: 22px;

        display: none;

        flex-direction: column;

        gap: 18px;

        background:
            var(--navy);

        box-shadow:
            0 10px 20px
            rgba(0,0,0,.2);
    }


    .mobile-navigation.open {

        display: flex;
    }


    .hero {

        height: 600px;
    }


    .hero-container {

        align-items:
            flex-start;
    }


    .hero-content {

        width: 100%;

        padding-top: 65px;
    }


    .hero h1 {

        font-size: 34px;
    }


    .candidate-card {

        margin-left: 20px;

        margin-right: 20px;

        flex-wrap: wrap;
    }


    .candidate-description {

        flex-basis: 70%;
    }


    .steps {

        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .step:not(:last-child)::after {

        display: none;
    }


    .industries {

        grid-template-columns:
            1fr;

        gap: 35px;
    }


    .industry-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .trust-section {

        grid-template-columns:
            1fr 1fr;

        gap: 12px;
    }


    .trust-item {

        border-right: none;
    }


    .footer-top {

        flex-direction: column;

        align-items:
            flex-start;
    }


    .footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .container,
    .header-container,
    .hero-container,
    .footer-container {

        width:
            calc(100% - 32px);
    }


    .hero h1 {

        font-size: 30px;
    }


    .hero-description {

        font-size: 14px;
    }


    .hero-features {

        gap: 12px;

        flex-direction:
            column;
    }




    .candidate-section {

        width:
            calc(100% - 32px);
    }


    .candidate-card {

        margin-left: 0;

        margin-right: 0;

        padding: 20px;
    }


    .candidate-success {

        display: none;
    }


    .candidate-avatars {

        margin-left: auto;
    }


    .industry-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .trust-section {

        grid-template-columns:
            1fr;
    }


    .trust-item {

        padding:
            12px;

        border-bottom:
            1px solid
            #d9e0e8;
    }


    .trust-item:last-child {

        border-bottom: none;
    }


    .footer-message {

        align-items:
            flex-start;
    }


    .footer h2 {

        font-size: 17px;
    }


    .footer-bottom {

        line-height: 1.6;
    }


    .footer-links {

        flex-direction:
            column;

        gap: 5px;
    }

}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}


:root {

    --navy: #061a36;
    --navy-dark: #031329;

    --yellow: #ffc21a;
    --yellow-hover: #ffd24d;

    --text: #0c1c34;
    --muted: #657184;

    --border: #e4e8ed;

    --light: #f5f7fa;

    --blue: #0957a5;

}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--text);

    background: #f7f9fc;

    -webkit-font-smoothing: antialiased;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
select,
textarea {

    font-family: inherit;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    height: 68px;

    background: var(--navy);

    color: white;

    position: relative;

    z-index: 100;

}


.header-container {

    width: min(
        1110px,
        calc(100% - 48px)
    );

    height: 68px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 9px;

}


.logo-globe {

    width: 40px;

    color: var(--yellow);

    font-size: 40px;

    line-height: 1;

}


.logo-text {

    display: flex;

    flex-direction: column;

}


.logo-name {

    font-size: 20px;

    font-weight: 700;

    line-height: 20px;

    letter-spacing: -0.5px;

}


.logo-name span {

    color: var(--yellow);

}


.logo-subtitle {

    margin-top: 2px;

    font-size: 8px;

    letter-spacing: 1.2px;

    color: white;

}


/* DESKTOP NAV */

.desktop-navigation {

    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 13px;

}


.desktop-navigation a {

    transition: color 0.2s ease;

}


.desktop-navigation a:hover {

    color: var(--yellow);

}


.language-button {

    padding: 9px 14px;

    background: transparent;

    color: white;

    border: 1px solid #5c6d84;

    border-radius: 7px;

    cursor: pointer;

}


.language-button span {

    margin-left: 8px;

}


/* MOBILE MENU */

.mobile-menu-button {

    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 25px;

    cursor: pointer;

}


.mobile-navigation {

    display: none;

}


/* =========================================================
   APPLICATION PAGE
========================================================= */

.application-page {

    padding: 60px 0 80px;

}


.application-container {

    width: min(
        820px,
        calc(100% - 40px)
    );

    margin: 0 auto;

}


/* =========================================================
   PAGE HEADING
========================================================= */

.application-heading {

    text-align: center;

    margin-bottom: 35px;

}


.section-label {

    color: var(--yellow);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.25px;

}


.application-heading h1 {

    margin: 10px 0 0;

    font-size: 36px;

    line-height: 1.2;

    letter-spacing: -1px;

    color: var(--navy);

}


.yellow-line {

    width: 34px;

    height: 3px;

    margin: 12px auto 18px;

    background: var(--yellow);

}


.application-heading p {

    max-width: 620px;

    margin: auto;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   APPLICATION CARD
========================================================= */

.application-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow:
        0 12px 35px
        rgba(14, 31, 54, 0.08);

    padding: 40px;

}


/* =========================================================
   FORM SECTIONS
========================================================= */

.form-section {

    padding-bottom: 30px;

    margin-bottom: 30px;

    border-bottom: 1px solid #edf0f4;

}


.form-section:last-of-type {

    border-bottom: none;

    margin-bottom: 20px;

}


.form-section-title {

    color: var(--navy);

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 22px;

    position: relative;

    padding-left: 14px;

}


.form-section-title::before {

    content: "";

    position: absolute;

    left: 0;

    top: 2px;

    bottom: 2px;

    width: 4px;

    border-radius: 3px;

    background: var(--yellow);

}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 700;

    color: var(--text);

}


.form-group label span {

    color: #e0a900;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #dce2e9;

    border-radius: 7px;

    background: white;

    color: var(--text);

    font-size: 13px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.form-group input,
.form-group select {

    height: 47px;

    padding: 0 14px;

}


.form-group textarea {

    padding: 13px 14px;

    resize: vertical;

    min-height: 120px;

    line-height: 1.6;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #9aa5b3;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(9, 87, 165, 0.08);

}


/* =========================================================
   CV UPLOAD
========================================================= */

.upload-box {

    min-height: 205px;

    border: 2px dashed #cbd5e1;

    border-radius: 10px;

    background: #fafbfd;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;

}


.upload-box:hover {

    border-color: var(--yellow);

    background: #fffdf5;

}


.upload-icon {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #eef3f8;

    color: var(--blue);

    font-size: 25px;

    font-weight: 700;

    margin-bottom: 12px;

}


.upload-title {

    color: var(--navy);

    font-size: 15px;

    font-weight: 700;

}


.upload-description {

    margin-top: 6px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 600;

}


.upload-format {

    margin-top: 8px;

    color: var(--muted);

    font-size: 10px;

}


.upload-box input {

    display: none;

}


/* =========================================================
   SELECTED FILE
========================================================= */

.selected-file {

    margin-top: 12px;

}


.file-success {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 15px;

    background: #f2f7fc;

    border: 1px solid #dce8f3;

    border-radius: 7px;

}


.file-icon {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 6px;

    background: var(--navy);

    color: white;

    font-size: 9px;

    font-weight: 800;

}


.file-success strong {

    display: block;

    color: var(--text);

    font-size: 12px;

    word-break: break-all;

}


.file-success small {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;

}


/* =========================================================
   AGREEMENT
========================================================= */

.agreement {

    margin-top: 5px;

    margin-bottom: 20px;

}


.checkbox-container {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    cursor: pointer;

}


.checkbox-container input {

    width: 17px;

    height: 17px;

    margin-top: 2px;

    accent-color: var(--yellow);

    flex-shrink: 0;

}


.agreement-text {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================================
   IMPORTANT NOTICE
========================================================= */

.notice-box {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 16px;

    background: #fffaf0;

    border: 1px solid #f3df9d;

    border-radius: 8px;

    margin-bottom: 25px;

}


.notice-icon {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--yellow);

    color: var(--navy);

    font-weight: 800;

    font-size: 13px;

}


.notice-box strong {

    display: block;

    margin-bottom: 5px;

    color: var(--navy);

    font-size: 12px;

}


.notice-box p {

    margin: 0;

    color: #6f654a;

    font-size: 10px;

    line-height: 1.6;

}


/* =========================================================
   SUBMIT
========================================================= */

.submit-area {

    text-align: center;

}


.submit-button {

    min-height: 50px;

    padding: 0 28px;

    border: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: #101010;

    background: var(--yellow);

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.2s ease;

}


.submit-button:hover {

    background: var(--yellow-hover);

    transform: translateY(-1px);

}


.submit-icon {

    font-size: 18px;

}


.secure-text {

    margin-top: 12px;

    color: var(--muted);

    font-size: 11px;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding: 35px 0 18px;

    background: var(--navy);

    color: white;

}


.footer-container {

    width: min(
        1110px,
        calc(100% - 48px)
    );

    margin: auto;

}


.footer-top {

    min-height: 80px;

    padding-bottom: 25px;

    display: flex;

    align-items: center;

    border-bottom: 1px solid #29415e;

}


.footer-message {

    display: flex;

    align-items: center;

    gap: 18px;

}


.footer-globe {

    color: var(--yellow);

    font-size: 42px;

}


.footer h2 {

    margin: 3px 0 6px;

    font-size: 19px;

    line-height: 1.25;

}


.footer p {

    margin: 0;

    color: #c7d1dc;

    font-size: 11px;

}


.footer-bottom {

    padding-top: 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #aeb9c7;

    font-size: 10px;

}


.footer-links {

    display: flex;

    gap: 25px;

}


.footer-links a:hover {

    color: white;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .desktop-navigation {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .mobile-navigation {

        position: absolute;

        top: 68px;

        left: 0;

        right: 0;

        padding: 22px;

        display: none;

        flex-direction: column;

        gap: 18px;

        background: var(--navy);

        box-shadow:
            0 10px 20px
            rgba(0,0,0,.2);

    }


    .mobile-navigation.open {

        display: flex;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .application-card {

        padding: 30px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-container,
    .footer-container {

        width: calc(100% - 32px);

    }


    .application-container {

        width: calc(100% - 24px);

    }


    .application-page {

        padding: 40px 0 55px;

    }


    .application-heading h1 {

        font-size: 30px;

    }


    .application-heading p {

        font-size: 13px;

    }


    .application-card {

        padding: 22px 18px;

        border-radius: 9px;

    }


    .form-section-title {

        font-size: 16px;

    }


    .upload-box {

        min-height: 190px;

    }


    .submit-button {

        width: 100%;

    }


    .footer-message {

        align-items: flex-start;

    }


    .footer h2 {

        font-size: 17px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        line-height: 1.6;

    }


    .footer-links {

        flex-direction: column;

        gap: 5px;

    }

}