/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}*/


/* =========================
   NAVIGATION
   ========================= */

/*.navbar {
    background: #030d24;
    padding: 15px 0;
}


.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    width: 190px;
    height: auto;
}


nav {
    display: flex;
    align-items: center;
    gap: 30px;
}


    nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }


        nav a:hover {
            color: #00aaff;
        }


.nav-button {
    background: #007cff;
    padding: 10px 20px;
    border-radius: 5px;
}


    .nav-button:hover {
        color: white;
        background: #0064d0;
    }*/


/* =========================
   HERO
   ========================= */

/*.hero {
    min-height: 650px;
    background: linear-gradient( rgba(2, 12, 35, 0.92), rgba(2, 12, 35, 0.92) );
    display: flex;
    align-items: center;
    color: white;
}


.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


.hero-small {
    color: #00aaff;
    letter-spacing: 5px;
    font-size: 14px;
    margin-bottom: 20px;
}


.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}


.hero-text {
    max-width: 600px;
    font-size: 19px;
    color: #d7deeb;
    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
}*/


/* =========================
   BUTTONS
   ========================= */

/*.primary-button,
.secondary-button {
    display: inline-block;
    padding: 13px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}


.primary-button {
    background: #007cff;
    color: white;
    border: none;
    cursor: pointer;
}


    .primary-button:hover {
        background: #0065d1;
    }


.secondary-button {
    border: 1px solid #ffffff;
    color: white;
}


    .secondary-button:hover {
        background: white;
        color: #030d24;
    }*/


/* =========================
   GENERAL SECTIONS
   ========================= */

/*.section {
    padding: 90px 5%;
}


.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}


.section-label {
    color: #007cff;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 10px;
}


.section-title h2,
.about-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
}*/


/* =========================
   CARDS
   ========================= */

/*.cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.card {
    padding: 35px;
    background: white;
    border: 1px solid #e2e6ed;
    border-radius: 8px;
    transition: 0.3s;
}


    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }


.card-icon {
    font-size: 35px;
    margin-bottom: 15px;
}


.card h3 {
    margin-bottom: 10px;
}*/


/* =========================
   CTA
   ========================= */

/*.cta {
    padding: 80px 20px;
    text-align: center;
    background: #030d24;
    color: white;
}


    .cta h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }


    .cta p {
        margin-bottom: 25px;
        color: #cbd4e3;
    }*/


/* =========================
   PAGE HEADER
   ========================= */

/*.page-header {
    padding: 100px 20px;
    text-align: center;
    background: #030d24;
    color: white;
}


    .page-header h1 {
        font-size: 55px;
    }


    .page-header p {
        color: #00aaff;
        font-size: 18px;
    }*/


/* =========================
   ABOUT
   ========================= */

/*.about-section {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: auto;
}

    .about-content p {
        margin-bottom: 20px;
    }


.values {
    background: #f4f7fb;
    padding: 70px 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


    .values div {
        max-width: 350px;
    }


    .values h3 {
        margin-bottom: 10px;
        color: #007cff;
    }*/


/* =========================
   CONTACT
   ========================= */

/*.contact-section {
    max-width: 1100px;
    margin: auto;
    padding: 90px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}


.contact-info h2,
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 20px;
}


.contact-detail {
    margin-top: 30px;
}


    .contact-detail strong {
        color: #007cff;
    }


.contact-form {
    background: #f5f7fa;
    padding: 35px;
    border-radius: 8px;
}


    .contact-form form {
        display: flex;
        flex-direction: column;
    }


    .contact-form label {
        margin-top: 15px;
        margin-bottom: 5px;
        font-weight: bold;
    }


    .contact-form input,
    .contact-form textarea {
        padding: 13px;
        border: 1px solid #ccd2db;
        border-radius: 5px;
        font-family: inherit;
    }


    .contact-form button {
        margin-top: 20px;
    }*/


/* =========================
   SUCCESS MESSAGE
   ========================= */

/*.success-message {
    background: #dff6e6;
    color: #176b35;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}*/


/* =========================
   FOOTER
   ========================= */

/*footer {
    background: #020a1b;
    color: white;
}


.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}


    .footer-container h3 {
        margin-bottom: 15px;
    }


    .footer-container p {
        color: #aeb8c9;
    }


    .footer-container a {
        display: block;
        color: #aeb8c9;
        text-decoration: none;
        margin-bottom: 8px;
    }


        .footer-container a:hover {
            color: #00aaff;
        }


.copyright {
    border-top: 1px solid #1b2940;
    text-align: center;
    padding: 20px;
    color: #78859a;
}*/


/* =========================
   MOBILE
   ========================= */

/*@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }


    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }


    .hero h1 {
        font-size: 42px;
    }


    .cards {
        grid-template-columns: 1fr;
    }


    .values {
        grid-template-columns: 1fr;
    }


    .contact-section {
        grid-template-columns: 1fr;
    }


    .footer-container {
        grid-template-columns: 1fr;
    }
}*/

/* =========================
COMPANY / DIFFERENCE
========================= */

/*.company-section {
    background: #f4f7fb;
    padding: 80px 5%;
}

.company-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.company-intro {
    max-width: 650px;
}

    .company-intro h2 {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 25px;
    }

    .company-intro p {
        margin-bottom: 18px;
    }

    .company-intro .primary-button {
        margin-top: 15px;
    }

.company-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-box {
    background: white;
    padding: 28px;
    border: 1px solid #e2e6ed;
    border-radius: 8px;
}

    .value-box h3 {
        color: #007cff;
        margin-bottom: 10px;
    }

    .value-box p {
        color: #5b6677;
    }*/


/* MOBILE */

/*@media (max-width: 768px) {

    .company-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-values {
        grid-template-columns: 1fr;
    }
}*/


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* =========================
   BODY
========================= */

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

main {
    flex: 1;
}


/* =========================
   NAVIGATION
========================= */

.navbar {
    background: #030d24;
    padding: 15px 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 190px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

    nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

        nav a:hover {
            color: #00aaff;
        }

.nav-button {
    background: #007cff;
    padding: 10px 20px;
    border-radius: 5px;
}

    .nav-button:hover {
        color: white;
        background: #0064d0;
    }


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;
    background: linear-gradient( rgba(2, 12, 35, 0.92), rgba(2, 12, 35, 0.92) );
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero-small {
    color: #00aaff;
    letter-spacing: 5px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text {
    max-width: 600px;
    font-size: 19px;
    color: #d7deeb;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}


/* =========================
   BUTTONS
========================= */

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 13px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.primary-button {
    background: #007cff;
    color: white;
    border: none;
    cursor: pointer;
}

    .primary-button:hover {
        background: #0065d1;
    }

.secondary-button {
    border: 1px solid #ffffff;
    color: white;
}

    .secondary-button:hover {
        background: white;
        color: #030d24;
    }


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 90px 5%;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-label {
    color: #007cff;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-title h2,
.about-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
}


/* =========================
   CARDS
========================= */

.cards {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    padding: 35px;
    background: white;
    border: 1px solid #e2e6ed;
    border-radius: 8px;
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.card-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}


/* =========================
   CTA
========================= */

.cta {
    padding: 80px 20px;
    text-align: center;
    background: #030d24;
    color: white;
}

    .cta h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .cta p {
        margin-bottom: 25px;
        color: #cbd4e3;
    }


/* =========================
   PAGE HEADER
========================= */

.page-header {
    padding: 100px 20px;
    text-align: center;
    background: #030d24;
    color: white;
}

    .page-header h1 {
        font-size: 55px;
    }

    .page-header p {
        color: #00aaff;
        font-size: 18px;
    }


/* =========================
   ABOUT
========================= */

.about-section {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: auto;
}

    .about-content p {
        margin-bottom: 20px;
    }

.values {
    background: #f4f7fb;
    padding: 70px 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

    .values div {
        max-width: 350px;
    }

    .values h3 {
        margin-bottom: 10px;
        color: #007cff;
    }


/* =========================
   CONTACT
========================= */

.contact-section {
    max-width: 1100px;
    margin: auto;
    padding: 90px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-detail {
    margin-top: 30px;
}

    .contact-detail strong {
        color: #007cff;
    }

.contact-form {
    background: #f5f7fa;
    padding: 35px;
    border-radius: 8px;
}

    .contact-form form {
        display: flex;
        flex-direction: column;
    }

    .contact-form label {
        margin-top: 15px;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 13px;
        border: 1px solid #ccd2db;
        border-radius: 5px;
        font-family: inherit;
    }

    .contact-form button {
        margin-top: 20px;
    }


/* =========================
   SUCCESS MESSAGE
========================= */

.success-message {
    background: #dff6e6;
    color: #176b35;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}


/* =========================
   CAREERS / JOBS PAGE
========================= */

.jobs-page {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 100px;
}


/* HEADER */

.jobs-header {
    max-width: 750px;
    margin-bottom: 50px;
}

    .jobs-header .section-label {
        margin-bottom: 10px;
    }

    .jobs-header h1 {
        font-size: 48px;
        line-height: 1.15;
        color: #030d24;
        margin-bottom: 15px;
    }

    .jobs-header p {
        color: #687386;
        font-size: 18px;
    }


/* JOB GRID */

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}


/* JOB CARD */

.public-job-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e2e6ed;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

    .public-job-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }


/* OPEN LABEL */

.job-status {
    display: inline-block;
    color: #17834b;
    background: #e7f7ee;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}


/* JOB TITLE */

.public-job-card h2 {
    font-size: 27px;
    line-height: 1.25;
    color: #030d24;
    margin-bottom: 28px;
}


/* JOB INFORMATION */

.job-information {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
}

    .job-information div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .job-information span {
        color: #687386;
        font-size: 13px;
    }

    .job-information strong {
        color: #172033;
        font-size: 16px;
    }


/* APPLY BUTTON */

.apply-button {
    width: 100%;
    margin-top: 25px;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    background: #007cff;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

    .apply-button:hover {
        background: #0065d1;
    }


/* NO JOBS */

.no-jobs {
    background: #f4f7fb;
    padding: 70px 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e2e6ed;
}

    .no-jobs h2 {
        color: #030d24;
        margin-bottom: 10px;
    }

    .no-jobs p {
        color: #687386;
    }


/* =========================
   FOOTER
========================= */

footer {
    margin-top: auto;
    background: #020a1b;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

    .footer-container h3 {
        margin-bottom: 15px;
    }

    .footer-container p {
        color: #aeb8c9;
    }

    .footer-container a {
        display: block;
        color: #aeb8c9;
        text-decoration: none;
        margin-bottom: 8px;
    }

        .footer-container a:hover {
            color: #00aaff;
        }

.copyright {
    border-top: 1px solid #1b2940;
    text-align: center;
    padding: 20px;
    color: #78859a;
}


/* =========================
   COMPANY / DIFFERENCE
========================= */

.company-section {
    background: #f4f7fb;
    padding: 80px 5%;
}

.company-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.company-intro {
    max-width: 650px;
}

    .company-intro h2 {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 25px;
    }

    .company-intro p {
        margin-bottom: 18px;
    }

    .company-intro .primary-button {
        margin-top: 15px;
    }

.company-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-box {
    background: white;
    padding: 28px;
    border: 1px solid #e2e6ed;
    border-radius: 8px;
}

    .value-box h3 {
        color: #007cff;
        margin-bottom: 10px;
    }

    .value-box p {
        color: #5b6677;
    }


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }


    /* CAREERS MOBILE */

    .jobs-page {
        padding: 55px 0 70px;
    }

    .jobs-header h1 {
        font-size: 38px;
    }

    .jobs-header p {
        font-size: 16px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .public-job-card {
        padding: 25px;
    }

        .public-job-card h2 {
            font-size: 24px;
        }

    .job-information {
        grid-template-columns: 1fr;
    }


    /* COMPANY MOBILE */

    .company-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-values {
        grid-template-columns: 1fr;
    }
}

/* =========================
   APPLICATION PAGE
========================= */

.application-page {
    min-height: 650px;
    background: #f4f7fb;
    padding: 80px 5%;
}

.application-container {
    max-width: 850px;
    margin: auto;
}

.application-header {
    margin-bottom: 35px;
}

    .application-header h1 {
        font-size: 42px;
        line-height: 1.2;
        color: #030d24;
        margin-bottom: 15px;
    }

    .application-header p {
        color: #687386;
    }


/* APPLICATION CARD */

.application-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e6ed;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}


/* JOB INFORMATION */

.application-job {
    background: #f4f7fb;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

    .application-job > span {
        color: #17834b;
        font-size: 11px;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .application-job h2 {
        margin: 5px 0;
        color: #030d24;
    }

    .application-job p {
        color: #687386;
    }


/* FORM */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 7px;
    }

    .form-group input {
        width: 100%;
        padding: 14px;
        border: 1px solid #ccd2db;
        border-radius: 5px;
        font-family: inherit;
        font-size: 15px;
    }

        .form-group input:focus {
            outline: none;
            border-color: #007cff;
        }


/* ACTIONS */

.application-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.cancel-button {
    display: inline-block;
    padding: 13px 22px;
    border: 1px solid #ccd2db;
    border-radius: 5px;
    color: #172033;
    text-decoration: none;
}

.submit-application {
    padding: 13px 25px;
    background: #007cff;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

    .submit-application:hover {
        background: #0065d1;
    }


/* VALIDATION */

.validation-message {
    color: #b42318;
    margin-bottom: 20px;
}


/* SUCCESS */

.application-success {
    max-width: 650px;
    margin: auto;
    text-align: center;
    background: white;
    padding: 70px 40px;
    border-radius: 8px;
    border: 1px solid #e2e6ed;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #dff6e6;
    color: #176b35;
    font-size: 30px;
    font-weight: bold;
}

.application-success h1 {
    color: #030d24;
    margin-bottom: 15px;
}

.application-success > p:not(.section-label) {
    color: #687386;
    margin-bottom: 30px;
}


/* MOBILE */

@media (max-width: 768px) {

    .application-page {
        padding: 50px 5%;
    }

    .application-header h1 {
        font-size: 34px;
    }

    .application-card {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .application-actions {
        flex-direction: column;
    }

    .cancel-button,
    .submit-application {
        width: 100%;
        text-align: center;
    }
}