/* ==============================
   GLOBAL
================================ */

:root {
    --navy: #071c68;
    --navy-dark: #06175b;
    --blue: #173681;
    --light-blue: #84d3ec;
    --white: #ffffff;
    --light-gray: #f1f1f1;
    --text: #071c68;

    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.container {
    width: min(90%, var(--container));
    margin: 0 auto;
}


/* ==============================
   TYPOGRAPHY
================================ */

h1,
h2,
h3,
p {
    margin-top: 0;
}

.section-eyebrow {
    margin-bottom: 12px;

    font-size: 16px;
    font-weight: 700;
}

.section-eyebrow-light {
    color: #fff;
}

.section-heading {
    max-width: 950px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 10px;

    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.15;
}

.section-heading > p:not(.section-eyebrow) {
    max-width: 850px;
    margin: 0 auto;

    font-size: 19px;
    line-height: 1.4;
}


/* ==============================
   DIVIDERS
================================ */

.divider {
    width: 58px;
    height: 2px;

    margin: 30px auto 0;

    background: var(--navy);
}

.divider-light {
    margin-left: 0;

    background: #fff;
}


/* ==============================
   BUTTONS
================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 13px 30px;

    font-size: 16px;
    font-weight: 700;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-light {
    color: var(--navy);
    background: #fff;
    border: 1px solid #fff;
}

.btn-light:hover {
    color: #fff;
    background: var(--navy);
}

.btn-outline-light {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}

.btn-outline-light:hover {
    color: var(--navy);
    background: #fff;
}


/* =========================================
   HOME HERO
========================================= */

.home-hero {
    position: relative;

    width: 100%;
    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #111;
}


/* =========================================
   VIMEO BACKGROUND
========================================= */

.hero-video-wrapper {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 0;

    pointer-events: none;
}


/*
 * Vimeo video is 16:9.
 *
 * These dimensions make the iframe behave
 * similar to background-size: cover.
 */
.hero-video {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100vw;
    height: 56.25vw;

    min-width: 177.78vh;
    min-height: 100vh;

    transform: translate(-50%, -50%);

    border: 0;

    pointer-events: none;
}


/* =========================================
   BACKGROUND OVERLAY
========================================= */

.hero-background-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background: rgba(0, 0, 0, 0.30);

    pointer-events: none;
}


/* =========================================
   HERO CONTAINER
========================================= */

.hero-container {
    position: relative;

    z-index: 2;

    width: min(90%, 1180px);

    margin: 0 auto;

    padding: 70px 0;
}


/* =========================================
   BLUE CONTENT BOX
========================================= */

.hero-content {
    width: 670px;
    max-width: 100%;

    padding: 55px 45px;

    color: #fff;

    background: rgba(7, 28, 104, 0.80);
}


/* Small heading */

.hero-eyebrow {
    margin: 0 0 20px;

    color: #fff;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.4;
}


/* Main heading */

.hero-content h1 {
    max-width: 600px;

    margin: 0;

    color: #fff;

    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;

    line-height: 1.08;

    letter-spacing: 0.5px;
}


/* White line */

.hero-divider {
    width: 60px;
    height: 2px;

    margin: 32px 0;

    background: #fff;
}


/* Description */

.hero-description {
    max-width: 590px;

    margin: 0;

    color: #fff;

    font-size: 17px;

    line-height: 1.5;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    gap: 35px;

    margin-top: 35px;
}


.hero-btn {
    flex: 1;

    min-height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px 20px;

    color: #071c68;

    background: #fff;

    border: 1px solid #fff;

    font-size: 15px;
    font-weight: 700;

    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}


.hero-btn:hover {
    color: #fff;

    background: #071c68;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .home-hero {
        min-height: 650px;
    }

    .hero-container {
        padding: 50px 0;
    }

    .hero-content {
        width: 620px;

        padding: 45px 35px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
    .home-hero {
        min-height: 620px;
    }
    .hero-container {
        width: 92%;
        padding: 35px 0;
    }
    .hero-content {
        width: 100%;
        padding: 35px 25px;
    }

    .hero-content h1 {
        font-size: 37px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-btn {
        width: 100%;
    }
}

/* =========================================
   WELCOME SECTION
========================================= */

.welcome-section {
    position: relative;
    width: 100%;
    padding: 55px 0 55px;
    background: #071c68;
    color: #ffffff;
    overflow: hidden;
}


/* =========================================
   DECORATIVE BACKGROUND IMAGE
========================================= */

.welcome-bg-decoration {
    position: absolute;

    right: -20px;
    top: 50%;

    width: 520px;
    height: auto;

    transform: translateY(-50%);

    opacity: 0.12;

    pointer-events: none;
    user-select: none;

    z-index: 0;
}


/* =========================================
   CONTENT GRID
========================================= */

.welcome-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 70px;

    align-items: center;
}


/* =========================================
   LOGO
========================================= */

.welcome-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
}


/* =========================================
   CONTENT
========================================= */

.welcome-content {
    max-width: 650px;
}

.welcome-eyebrow {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.welcome-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: 32px;
    font-weight: 700;

    line-height: 1.2;
}


/* Small white line */

.welcome-divider {
    width: 46px;
    height: 2px;

    margin: 32px 0 38px;

    background: #ffffff;
}


/* Paragraphs */

.welcome-content p:not(.welcome-eyebrow) {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================
   ABOUT BUTTON
========================================= */

.welcome-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 265px;
    min-height: 55px;

    margin-top: 35px;

    padding: 14px 30px;

    color: #ffffff;
    background: transparent;

    border: 1px solid #ffffff;

    font-size: 20px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.welcome-btn:hover {
    color: #071c68;
    background: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .welcome-section {
        padding: 70px 0;
    }

    .welcome-grid {
        grid-template-columns: 220px 1fr;

        gap: 45px;
    }

    .welcome-logo img {
        width: 210px;
    }

    .welcome-content h2 {
        font-size: 32px;
    }

    .welcome-bg-decoration {
        width: 420px;

        opacity: 0.08;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .welcome-section {
        padding: 60px 0;
    }

    .welcome-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .welcome-logo img {
        width: 190px;
    }

    .welcome-content {
        text-align: center;
    }

    .welcome-content h2 {
        font-size: 30px;
    }

    .welcome-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .welcome-content p:not(.welcome-eyebrow) {
        font-size: 15px;
    }

    .welcome-btn {
        min-width: 230px;

        font-size: 17px;
    }

    .welcome-bg-decoration {
        width: 380px;

        right: -150px;

        opacity: 0.07;
    }

}

/* =========================================
   HOME ABOUT SECTION
========================================= */

.home-about-section {
    padding: 85px 0;

    background: #ffffff;
    color: #071c68;
}


/* =========================================
   TWO COLUMN LAYOUT
========================================= */

.home-about-grid {
    max-width: 1170px;

    display: grid;

    grid-template-columns: 1fr 1.1fr;

    gap: 70px;

    align-items: center;
}


/* =========================================
   CONTENT
========================================= */

.home-about-content {
    max-width: 500px;
}


/* Eyebrow */

.home-about-eyebrow {
    margin: 0 0 15px;

    color: #071c68;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;
}


/* Heading */

.home-about-content h2 {
    margin: 0;

    color: #071c68;

    font-size: 34px;
    font-weight: 500;

    line-height: 1.1;
}


/* Small line */

.home-about-divider {
    width: 22px;
    height: 1px;

    margin: 28px 0 25px;

    background: #071c68;
}


/* Description */

.home-about-content p:not(.home-about-eyebrow) {
    margin: 0 0 15px;

    color: #071c68;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================
   BUTTON
========================================= */

.home-about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 45px;

    margin-top: 12px;

    padding: 12px 24px;

    color: #ffffff;
    background: #071c68;

    border: 1px solid #071c68;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.home-about-btn:hover {
    color: #071c68;

    background: #ffffff;
}


/* =========================================
   IMAGE
========================================= */

.home-about-image {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-image img {
    width: 100%;
    height: 360px;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .home-about-section {
        padding: 70px 0;
    }

    .home-about-grid {
        gap: 40px;

        grid-template-columns: 1fr 1fr;
    }

    .home-about-content h2 {
        font-size: 30px;
    }

    .home-about-image img {
        height: 330px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .home-about-section {
        padding: 55px 0;
    }

    .home-about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .home-about-content {
        max-width: none;
    }

    .home-about-content h2 {
        font-size: 29px;
    }

    /* Don't force line break on mobile */
    .home-about-content h2 br {
        display: none;
    }

    .home-about-content p:not(.home-about-eyebrow) {
        font-size: 14px;

        line-height: 1.6;
    }

    .home-about-image img {
        height: auto;
        max-height: 400px;

        object-fit: cover;
    }

}

/* ==============================
   GET STARTED
================================ */

.get-started-section {
    padding: 100px 0;

    background: #f1f1f1;
}

.step-row {
    max-width: 1000px;

    margin: 50px auto 0;

    display: grid;

    grid-template-columns: 1fr 1fr;
    gap: 90px;

    align-items: center;
}

.step-image img {
    width: 100%;
    max-height: 450px;

    object-fit: contain;
}

.step-content {
    max-width: 430px;
}

.step-number {
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;
}

.step-line {
    width: 65px;
    height: 3px;

    margin: 10px 0 18px;

    background: var(--navy);
}

.step-content h3 {
    margin-bottom: 25px;

    font-size: 28px;
    font-weight: 500;
}

.step-content p {
    font-size: 18px;
    line-height: 1.6;
}


/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .home-hero {
        min-height: 650px;
    }

    .home-hero-box {
        padding: 40px 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;
    }

    .welcome-content {
        margin: auto;
    }

    .welcome-content .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .step-row {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .step-content {
        max-width: none;
    }

    .welcome-decoration {
        opacity: .5;
    }
}


@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .home-hero {
        min-height: 600px;
    }

    .home-hero-box {
        padding: 35px 22px;
    }

    .home-hero-box h1 {
        font-size: 38px;
    }

    .services-section,
    .welcome-section,
    .get-started-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .service-card {
        min-height: 400px;
    }

    .service-card-content {
        padding: 25px;
    }

    .service-card-content h3 {
        font-size: 27px;
    }
}