﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 77px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #101827;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}



/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}



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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 77px;
    background: #ffffff;
    z-index: 99999;
    border-bottom: 1px solid #e5e8ec;
}

.nav-container {
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}



/* =========================================================
   LOGO
========================================================= */

.brand-logo {
    display: flex;
    align-items: center;
    color: #00a3e0;
}

.brand-text {
    color: #00a3e0;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.4px;
}

.brand-logo:hover,
.brand-logo:hover .brand-text {
    color: #00a3e0;
}



/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

    .desktop-nav a {
        color: #101827;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        transition: .2s ease;
    }

        .desktop-nav a:hover {
            color: #00a3e0;
        }

    .desktop-nav .nav-apply {
        padding: 10px 21px;
        color: #ffffff;
        background: #00a3e0;
        border-radius: 2px;
        box-shadow: 0 4px 10px rgba(0,0,0,.10);
    }

        .desktop-nav .nav-apply:hover {
            color: #ffffff;
            background: #008fca;
        }



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

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 29px;
    color: #101827;
}

.mobile-nav {
    display: none;
}



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

.hero-section {
    position: relative;
    margin-top: 77px;
    height: 522px;
    background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.97) 35%, rgba(255,255,255,.82) 57%, rgba(255,255,255,.40) 80%, rgba(255,255,255,.12) 100% );
}

.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 35px;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: -3px;
}



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

.hero-label {
    display: inline-block;
    margin-bottom: 20px;
    padding: 5px 12px;
    background: #00a3e0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 1px;
}



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

.hero-content h1 {
    margin: 0;
    color: #101827;
    font-size: 94px;
    line-height: .96;
    font-weight: 800;
    letter-spacing: -5px;
}

    .hero-content h1 span {
        display: block;
        color: #00a3e0;
    }



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

.hero-content p {
    width: 590px;
    margin: 28px 0 32px;
    color: #19324c;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
}



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

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-btn {
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: .2s ease;
}

.hero-btn-blue {
    width: 213px;
    background: #00a3e0;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,.10);
}

    .hero-btn-blue:hover {
        color: #ffffff;
        background: #008fca;
    }

.hero-btn-white {
    width: 180px;
    background: #ffffff;
    color: #101827;
    border: 1px solid #d9dee4;
}

    .hero-btn-white:hover {
        color: #101827;
        background: #f8fafb;
    }



/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: #00a3e0;
}

.stat-item {
    padding: 32px 15px;
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.stat-title {
    margin-top: 7px;
    font-size: 13px;
}



/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 105px 0;
}

.services-image {
    width: 100%;
    overflow: hidden;
}

    .services-image img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

.eyebrow {
    margin-bottom: 14px;
    color: #00a3e0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.services-content h2 {
    margin: 0;
    color: #101827;
    font-size: 43px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.services-content > p {
    margin: 20px 0 0;
    color: #657184;
    font-size: 15px;
    line-height: 1.8;
}

.service-point {
    display: flex;
    gap: 13px;
    margin-top: 25px;
}

.service-check {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #00a3e0;
    color: #ffffff;
}

.service-point strong {
    display: block;
    color: #101827;
    font-size: 14px;
}

.service-point span {
    color: #657184;
    font-size: 14px;
}



/* =========================================================
   CULTURE
========================================================= */

.culture-section {
    padding: 105px 0;
    background: #f5f7fa;
}

.center-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

    .center-heading h2 {
        margin: 0;
        color: #101827;
        font-size: 43px;
        line-height: 1.12;
        font-weight: 800;
    }

    .center-heading p {
        margin: 20px auto 0;
        max-width: 630px;
        color: #657184;
        font-size: 15px;
        line-height: 1.8;
    }

.culture-card {
    height: 100%;
    background: #ffffff;
    overflow: hidden;
}

.culture-image img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.culture-body {
    padding: 27px 25px 30px;
}

    .culture-body h3 {
        margin: 0 0 10px;
        color: #101827;
        font-size: 19px;
        font-weight: 700;
    }

    .culture-body p {
        margin: 0;
        color: #657184;
        font-size: 14px;
        line-height: 1.7;
    }



/* =========================================================
   OPENINGS
========================================================= */

.openings-section {
    padding: 105px 0;
}

.opening-heading {
    margin-bottom: 38px;
}

    .opening-heading h2 {
        margin: 0;
        color: #101827;
        font-size: 43px;
        font-weight: 800;
    }

    .opening-heading p {
        margin: 15px 0 0;
        color: #657184;
        font-size: 15px;
    }

.job-card {
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4e8ed;
    transition: .2s ease;
}

    .job-card:hover {
        border-color: #00a3e0;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0,0,0,.06);
    }

    .job-card h3 {
        min-height: 55px;
        margin: 0;
        color: #101827;
        font-size: 18px;
        line-height: 1.45;
        font-weight: 700;
    }

.job-meta {
    display: flex;
    gap: 18px;
    margin: 22px 0;
    color: #687383;
    font-size: 12px;
}

    .job-meta i {
        margin-right: 4px;
        color: #00a3e0;
    }

.apply-link {
    color: #00a3e0;
    font-size: 12px;
    font-weight: 700;
}

    .apply-link:hover {
        color: #008fca;
    }



/* =========================================================
   APPLICATION SECTION
   MATCHING YOUR SCREENSHOT
========================================================= */

.application-section {
    padding: 42px 0 100px;
    background: #f2f7fb;
}



/* CARD */

.application-card {
    width: 850px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 67px 64px 61px;
    background: #ffffff;
    border-top: 8px solid #e3e7eb;
    border-radius: 17px;
    box-shadow: 0 25px 45px rgba(16,24,39,.15);
}



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

.application-header {
    text-align: center;
    margin-bottom: 49px;
}

    .application-header h2 {
        margin: 0;
        color: #101827;
        font-size: 33px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -1.4px;
    }

    .application-header p {
        margin: 13px 0 0;
        color: #657184;
        font-size: 16px;
        line-height: 1.4;
    }



/* =========================================================
   FORM LAYOUT
========================================================= */

.application-form {
    width: 100%;
}

.form-row {
    display: grid;
    gap: 32px;
    margin-bottom: 31px;
}

.two-columns {
    grid-template-columns: 1fr 1fr;
}

.three-columns {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    min-width: 0;
}

.full-width {
    margin-bottom: 31px;
}



/* =========================================================
   LABELS
========================================================= */

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #8a98aa;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .8px;
}



/* =========================================================
   INPUTS
========================================================= */

.reference-input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 2px solid #e8eef4;
    border-radius: 8px;
    background: #ffffff;
    color: #101827;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .reference-input:focus {
        border-color: #cbdce8;
        box-shadow: 0 0 0 3px rgba(0,163,224,.04);
    }

select.reference-input {
    appearance: auto;
    padding-right: 15px;
    cursor: pointer;
}



/* =========================================================
   FORM SPACING
========================================================= */

.application-form > .form-row:last-of-type {
    margin-bottom: 31px;
}



/* =========================================================
   BLACK SUBMIT BUTTON
========================================================= */

.formal-submit {
    width: 100%;
    height: 65px;
    margin-top: 1px;
    border: 0;
    border-radius: 7px;
    background: #000000;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.2px;
    cursor: pointer;
    box-shadow: 0 18px 32px rgba(0,0,0,.13);
    transition: .2s ease;
}

    .formal-submit:hover {
        background: #111111;
        transform: translateY(-1px);
    }



/* =========================================================
   SECURITY TEXT
========================================================= */

.security-text {
    margin-top: 34px;
    text-align: center;
    color: #9ba9b9;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 1px;
}



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

.site-footer {
    width: 100%;
    height: 255px;
    padding: 64px 20px 0;
    background: #101827;
    text-align: center;
    color: #ffffff;
}



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

    .site-footer .footer-logo {
        margin: 0;
        color: #00a3e0;
        font-size: 24px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -1.3px;
    }



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

    .site-footer .footer-links {
        margin-top: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
    }

        .site-footer .footer-links a {
            color: #a7adb7;
            font-size: 12px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: .5px;
            transition: color .2s ease;
        }

            .site-footer .footer-links a:hover {
                color: #00a3e0;
            }



    /* =========================================================
   COPYRIGHT
========================================================= */

    .site-footer .footer-copyright {
        margin-top: 38px;
        color: #737c8b;
        font-size: 10px;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 4px;
    }



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

@media (max-width: 767px) {

    .site-footer {
        height: auto;
        min-height: 255px;
        padding-top: 55px;
        padding-bottom: 45px;
    }

        .site-footer .footer-logo {
            font-size: 20px;
        }

        .site-footer .footer-links {
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

            .site-footer .footer-links a {
                font-size: 11px;
            }

        .site-footer .footer-copyright {
            margin-top: 32px;
            font-size: 8px;
            letter-spacing: 2.5px;
            line-height: 1.8;
        }
}

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

@media (max-width: 991px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        position: absolute;
        top: 77px;
        left: 0;
        width: 100%;
        padding: 15px 25px 25px;
        background: #ffffff;
        border-top: 1px solid #edf0f3;
        box-shadow: 0 12px 30px rgba(0,0,0,.08);
    }

        .mobile-nav a {
            display: block;
            padding: 14px 0;
            color: #101827;
            font-size: 13px;
            font-weight: 700;
            border-bottom: 1px solid #edf0f3;
        }

        .mobile-nav.show {
            display: block;
        }


    .hero-content h1 {
        font-size: 76px;
    }


    .application-card {
        width: 850px;
    }
}



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

@media (max-width: 767px) {

    .site-header {
        height: 72px;
    }

    .nav-container {
        height: 72px;
    }

    .mobile-nav {
        top: 72px;
    }


    .brand-text {
        font-size: 20px;
    }


    .hero-section {
        margin-top: 72px;
        height: auto;
        min-height: 610px;
    }

    .hero-container {
        padding: 60px 25px;
    }

    .hero-content h1 {
        font-size: 54px;
        letter-spacing: -3px;
    }

    .hero-content p {
        width: auto;
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }


    .two-columns,
    .three-columns {
        grid-template-columns: 1fr;
        gap: 26px;
    }


    .application-card {
        width: 100%;
        max-width: calc(100% - 25px);
        padding: 45px 25px 40px;
    }

    .application-header {
        margin-bottom: 38px;
    }

        .application-header h2 {
            font-size: 28px;
        }

        .application-header p {
            font-size: 14px;
        }


    .reference-input {
        height: 56px;
    }


    .formal-submit {
        height: 60px;
        font-size: 12px;
        letter-spacing: 1.6px;
    }


    .footer-top {
        flex-direction: column;
    }
}



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

@media (max-width: 480px) {

    .brand-text {
        font-size: 17px;
    }

    .hero-content h1 {
        font-size: 47px;
    }

    .application-card {
        max-width: calc(100% - 20px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .security-text {
        font-size: 8px;
    }
}
