:root {
    --white: #ffffff;
    --black: #000000;
    --yellow: #FFB000;
    --dark-blue: #19476E;
    --text-blue: #1C4970;
    --orange: #FCB813;
    --orange-2: #F58220;
    --light-gray: #F5F5F5;
    --btn-light: #FEF1E1;

    /* Desktop */
    --text-80: 4.167vw;
    --text-75: 3.906vw;
    --text-65: 3.385vw;
    --text-60: 3.125vw;
    --text-50: 2.604vw;
    --text-45: 2.344vw;
    --text-40: 2.083vw;
    --text-38: 1.979vw;
    --text-34: 1.771vw;
    --text-32: 1.667vw;
    --text-30: 1.563vw;
    --text-28: 1.458vw;
    --text-26: 1.354vw;
    --text-25: 1.302vw;
    --text-24: 1.25vw;
    --text-23: 1.198vw;
    --text-22: 1.146vw;
    --text-20: 1.042vw;
    --text-18: 0.938vw;
    --text-16: 0.833vw;
    --text-14: 0.729vw;

    --spacing-120: 6.208vw;
    --spacing-100: 5.208vw;
    --spacing-90: 4.688vw;
    --spacing-80: 4.167vw;
    --spacing-70: 3.646vw;
    --spacing-50: 2.604vw;
    --spacing-40: 2.083vw;
    --header-height: 4.896vw;
    --btn-height: 2.396vw;
    --logo-width: 10.523vw;
}

/* Mobile first (<=767px) */
@media (max-width: 767px) {
    :root {
        --text-80: 3rem;
        --text-75: 2.75rem;
        --text-65: 2.4rem;
        --text-60: 2.2rem;
        --text-50: 30px;
        --text-45: 24px;
        --text-40: 22px;
        --text-38: 20px;
        --text-34: 18px;
        --text-32: 16px;
        --text-30: 15px;
        --text-28: 14px;
        --text-26: 14px;
        --text-25: 14px;
        --text-24: 14px;
        --text-23: 14px;
        --text-22: 14px;
        --text-20: 14px;
        --text-18: 14px;
        --text-16: 0.8rem;
        --text-14: 0.75rem;
        --spacing-120: 70px;
        --spacing-100: 60px;
        --spacing-90: 60px;
        --spacing-80: 45px;
        --spacing-70: 35px;
        --spacing-50: 30px;
        --spacing-40: 20px;
        --header-height: 70px;
        --logo-width: 100px;
        --btn-height: 45px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --text-80: 3rem;
        --text-75: 2.75rem;
        --text-65: 2.4rem;
        --text-60: 2.2rem;
        --text-50: 30px;
        --text-45: 24px;
        --text-40: 22px;
        --text-38: 20px;
        --text-34: 18px;
        --text-32: 16px;
        --text-30: 15px;
        --text-28: 14px;
        --text-26: 14px;
        --text-25: 14px;
        --text-24: 14px;
        --text-23: 14px;
        --text-22: 14px;
        --text-20: 14px;
        --text-18: 14px;
        --text-16: 0.8rem;
        --text-14: 0.75rem;

        --spacing-120: 70px;
        --spacing-100: 60px;
        --spacing-90: 60px;
        --spacing-80: 50px;
        --spacing-70: 42px;
        --spacing-50: 40px;
        --spacing-40: 30px;
        --header-height: 70px;
        --btn-height: 45px;
    }
}

/* Small desktop  */
@media (min-width: 992px) and (max-width: 1200px) {
    :root {
        --text-80: 3rem;
        --text-75: 2.75rem;
        --text-65: 2.4rem;
        --text-60: 2.2rem;
        --text-50: 30px;
        --text-45: 24px;
        --text-40: 22px;
        --text-38: 20px;
        --text-34: 18px;
        --text-32: 16px;
        --text-30: 15px;
        --text-28: 14px;
        --text-26: 14px;
        --text-25: 14px;
        --text-24: 14px;
        --text-23: 14px;
        --text-22: 14px;
        --text-20: 14px;
        --text-18: 14px;
        --text-16: 0.8rem;
        --text-14: 0.75rem;

        --header-height: 70px;

        --spacing-120: 100px;
        --spacing-100: 80px;
        --spacing-90: 70px;
        --spacing-80: 50px;
        --spacing-70: 64px;
        --spacing-50: 60px;
        --spacing-40: 50px;
        --header-height: 70px;
        --btn-height: 40px;
    }
}



.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.badge {
    font-size: var(--text-14);
    font-weight: 600;
    border-radius: 4px;
}

/*font sizes*/
.text-80 {
    font-size: var(--text-80);
}

.text-75 {
    font-size: var(--text-75);
}

.text-65 {
    font-size: var(--text-65);
}

.text-50 {
    font-size: var(--text-50);
}

.text-60 {
    font-size: var(--text-60);
}

.text-38 {
    font-size: var(--text-38);
}

.text-28 {
    font-size: var(--text-28);
}

.text-45 {
    font-size: var(--text-45);
}

.text-40 {
    font-size: var(--text-40);
}

.text-34 {
    font-size: var(--text-34);
}

.text-32 {
    font-size: var(--text-32);
}

.text-30 {
    font-size: var(--text-30);
}

.text-25 {
    font-size: var(--text-25);
}

.text-26 {
    font-size: var(--text-26);
}

.text-24 {
    font-size: var(--text-24);
}

.text-23 {
    font-size: var(--text-23);
}

.text-22 {
    font-size: var(--text-22);
}

.text-20 {
    font-size: var(--text-20);
}

.text-16 {
    font-size: var(--text-16);
}

.text-14 {
    font-size: var(--text-14);
}

.text-18 {
    font-size: var(--text-18);
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.leading-150 {
    line-height: 150% !important;
}

.leading-140 {
    line-height: 140% !important;
}

.leading-130 {
    line-height: 130% !important;
}

.leading-120 {
    line-height: 120% !important;
}

.leading-100 {
    line-height: 100% !important;
}

img {
    max-width: 100%;
    height: auto;
}

/*colors*/

.black {
    color: var(--black);
}

.dark-blue {
    color: var(--dark-blue);
}

.text-blue {
    color: var(--text-blue);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-orange {
    background-color: var(--orange);
}

.orange {
    color: var(--orange);
}

.orange2 {
    color: var(--orange-2);
}

.wrap-balance {
    text-wrap: balance;
}

.radius-8 {
    border-radius: 8px;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.form-container select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* SVG arrow as background */
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    /* adjust size */
    /* Adjust size of your arrow */
    padding-right: 40px;
    /* Give space for arrow */
}

/* For IE 10/11 hide default arrow */
select.form-control::-ms-expand {
    display: none;
}

html {
    overflow-x: hidden;
}



body {
    font-family: "Arimo", sans-serif;
    font-optical-sizing: auto;
    font-size: var(--text-20);
    color: var(--black);
    font-weight: 400;
    text-rendering: optimizeSpeed;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
    overflow-x: hidden;
}



.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 4.861vw;
    padding-right: 4.861vw;
}

.container-fluid {
    padding-left: 8vw;
    padding-right: 8vw;
}

@media (max-width: 1200px) {

    .container,
    .container-fluid {
        padding: 0px 20px;
    }
}



.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: 99999;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}


.btn {
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 12px;
    min-width: 200px;
    font-size: var(--text-25);
    justify-content: space-between;
    padding: 2px 5px 2px 25px;
    transition: all 0.3s ease;
}

.btn span:first-child {
    flex-grow: 1;
}

/* ─────────────────────────────────────────
   MAIN NAV  (dark-blue)
───────────────────────────────────────── */

.header-wrap {
    background-color: #EEF8FF;
    padding: 15px 0;
    height: var(--header-height);
    position: fixed;
    top: 0;
    z-index: 1030;
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 4px #00000029;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    width: var(--logo-width);
    height: auto;
}


.navbar-nav .nav-link {
    letter-spacing: -3%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--text-blue);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--dark-blue);
    font-weight: bold;
}

@media (min-width: 992px) {
    .nav-main-links {
        gap: 1.75vw;
        margin-right: 2vw;
    }

    .nav-main-links {
        gap: 1.5rem;
    }
}

.whatsapp-btn {
    width: var(--btn-height);
    height: var(--btn-height);
    background-color: var(--dark-blue);
    border-radius: 0px;
    transition: 0.3s;
}

.whatsapp-btn img {
    width: 1.094vw;
    height: 1.094vw;
}


.whatsapp-btn:hover {
    opacity: 0.9;
}

.contact-btn {
    background-color: var(--white);
    border: 1px solid var(--dark-blue);
    border-radius: 0px;
    padding: 0 0.75vw;
    height: var(--btn-height);
    width: 11vw;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: inherit;
    gap: inherit;
}

.contact-btn img {
    width: 0.625vw;
    height: 0.625vw;
}

.contact-btn:hover {
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 2px var(--dark-blue);
}

.contact-btn.active {
    background: var(--dark-blue);
    color: var(--white);
}

.contact-btn.active span {
    color: var(--white);
}

.whatspp-icon-maxbtn {
    gap: 0.5vw;
}

/* ─────────────────────────────────────────
   HAMBURGER TOGGLER  (mobile)
───────────────────────────────────────── */
.bar-toggler {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--dark-blue);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.bar-toggler:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}

/* ─────────────────────────────────────────
   DRAWER CLOSE BUTTON
───────────────────────────────────────── */
.drawer-close-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 0px;
    border: 1px solid var(--dark-blue);
    background: transparent;
    color: var(--dark-blue);
    cursor: pointer;
    margin-bottom: 20px;
    margin-left: auto;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.drawer-close-btn:hover {
    background: rgba(5, 29, 55, 0.08);
}

/* ─────────────────────────────────────────
   SHARED TOGGLE HELPERS
───────────────────────────────────────── */
.noneblock {
    display: none !important;
}

.activeblock {
    display: block !important;
}

.opened .noneblock {
    display: block !important;
}

.opened .activeblock {
    display: none !important;
}

/* ─────────────────────────────────────────
   OVERLAY (behind mobile drawer)
───────────────────────────────────────── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 104;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET & MOBILE (≤ 991px)
───────────────────────────────────────── */
@media (max-width: 991px) {

    .bar-toggler {
        display: flex;
    }

    .drawer-close-btn {
        display: flex;
    }

    /* Slide-out drawer */
    .main-nav-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        background: var(--white);
        height: 100vh !important;
        overflow-y: auto;
        z-index: 1050;
        padding: 80px 30px 40px;
        /* space for close button */
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.14);
        transform: translateX(105%);
        transition: transform 0.35s ease-out;
        will-change: transform;
        -webkit-backface-visibility: hidden;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav-collapse.show {
        transform: translateX(0);
    }

    .main-nav-collapse .navbar-nav {
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .main-nav-collapse .nav-link {
        font-size: var(--text-25);
        padding: 12px 0;
        color: var(--text-blue);
        display: block;
        width: 100%;
    }

    .drawer-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .contact-btn {
        width: 100%;
        padding: 0 10px;
    }

    .contact-btn img {
        width: 10px;
        height: 10px;
    }

    .whatsapp-btn img {
        width: 16px;
        height: 16px;
    }

    .whatspp-icon-maxbtn {
        gap: 10px;
    }

}

@media (max-width: 767px) {

    .header-logo img {
        height: 50px;
        width: auto;
    }
}

/* ─────────────────────────────────────────
   DESKTOP (≥ 992px) — inline nav
───────────────────────────────────────── */
@media (min-width: 992px) {

    .main-nav-collapse {
        display: flex !important;
        align-items: center;
        gap: 20px;
        flex: 1;
        justify-content: flex-end;
        background: transparent;
        position: static;
        height: auto;
        width: auto;
        padding: 0;
        transform: none;
        box-shadow: none;
        overflow: visible;
    }

    .main-nav-links {
        flex-direction: row;
        align-items: center;
    }

    .main-nav-links li {
        border: none;
    }

    .drawer-close-btn {
        display: none !important;
    }
}

/*header end*/

/* ═══════════════════════════════════════════
   HOME SECTIONS
   ═══════════════════════════════════════════ */

/* Hero Banner */

/* Inner Banner */
.inner-banner {
    position: relative;
    padding: var(--spacing-100) 0;
    overflow: hidden;
    background-color: var(--text-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40.781vw;
}

.inner-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.inner-banner-content {
    position: relative;
    z-index: 2;
    width: 73vw;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.section-padding {
    padding: var(--spacing-120) 0;
}

.heading-space-xl {
    margin-bottom: var(--spacing-80);
}

.heading-space-lg {
    margin-bottom: var(--spacing-70);
}




/* What Drives Us */
.grid-box-two-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.grid-box-two-wrap>div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1vw 2vw 2vw 2vw;
    transition: all 0.3s ease;
}

.grid-box-two-wrap>div:hover {
    background-color: var(--orange) !important;
}

.grid-box-two-wrap>div:hover h3,
.grid-box-two-wrap>div:hover p,
.grid-box-two-wrap>div:hover .orange,
.grid-box-two-wrap>div:hover h4 {
    color: var(--text-blue);
}

.grid-box-two-wrap>div:focus h3,
.grid-box-two-wrap>div:focus p,
.grid-box-two-wrap>div:focus .orange,
.grid-box-two-wrap>div:focus h4 {
    color: var(--text-blue);
}

.grid-box-two-wrap>div:active h3,
.grid-box-two-wrap>div:active p,
.grid-box-two-wrap>div:active .orange,
.grid-box-two-wrap>div:active h4 {
    color: var(--text-blue);
}

.grid-box-two-wrap>div:hover .value-item .value-title,
.grid-box-two-wrap>div:focus .value-item .value-title,
.grid-box-two-wrap>div:active .value-item .value-title {
    border-color: var(--text-blue);
    color: var(--text-blue);
}

.grid-box-two-wrap>div h3 {
    margin-bottom: 1.5vw !important;
}

.grid-box-two-wrap>div:last-child {
    grid-column: 1 / -1;
}

@media (max-width: 991px) {
    .grid-box-two-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .grid-box-two-wrap>div:last-child {
        grid-column: 1;
    }

    .inner-banner-content {
        width: 100%;
    }

    .grid-box-two-wrap>div {
        padding: 15px;
    }

    .values-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-box-two-wrap>div h3 {
        margin-bottom: 10px !important;
    }
}

.value-item {
    display: flex;
    align-items: center;
}

.value-item .value-title {
    font-size: var(--text-16);
    color: var(--white);
    border-left: 2px solid var(--orange);
    /* bright blue border */
    padding-left: 1vw;
}

/* How It Works */
.bg-light-blue {
    background-color: #EEF8FF;
}

.process-steps {
    padding: 0 50px;
}

.process-step {
    padding: 0 15px;
    position: relative;
    outline: none;
}

/* Slider Custom Arrows */
.slick-custom-prev,
.slick-custom-next {

    width: 2.552vw;
    height: 2.552vw;
    background-color: var(--white) !important;
    color: var(--text-blue) !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slick-custom-prev:hover,
.slick-custom-next:hover {
    background-color: var(--text-blue);
    color: var(--white);
}

.slick-custom-prev {
    left: 0;
}

.slick-custom-next {
    right: 0;
}

@media (max-width: 991px) {
    .process-steps {
        padding: 0 40px;
    }

    .slick-custom-prev {
        left: 0;
    }

    .slick-custom-next {
        right: 0;
    }
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    font-size: var(--text-75);
    line-height: 1;
}

@media (max-width: 991px) {
    .step-number {
        font-size: 40px;
    }
}

.step-arrow {
    flex: 1;
    height: 2px;
    background-color: var(--text-blue);
    margin-left: 20px;
    position: relative;
}

.step-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.938vw;
    height: 1.302vw;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='25' viewBox='0 0 18 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H6.79539L18 12.4742L6.63977 25H0.155621L11.5159 12.5258L0 0Z' fill='%231C4970'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.process-step:last-child .step-arrow {
    display: none;
}

.step-title {
    font-size: var(--text-32);
    color: var(--black);
    margin-bottom: 1.5vw;
}

.step-desc {
    color: var(--black);
    line-height: 1.5;
}

/* People Section */
.person-card {
    overflow: hidden;
    position: relative;
}

.person-card:before {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 0, 36, 0)), color-stop(25%, rgba(9, 9, 121, 0)), to(#000000));
    background-image: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(9, 9, 121, 0) 25%, #19476E 100%);
}

.person-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5vw;

}

.person-info h4,
.person-info p {
    font-size: var(--text-32);
    font-weight: bold;
}

@media (max-width: 991px) {
    .person-info {
        padding: 15px;
    }
}

.person-info p.person-desc {
    font-size: 13px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.6;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    max-height: 0;
    overflow: hidden;
}

.person-card:hover .person-desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
}

.person-card:before {
    transition: background-image 0.35s ease;
}

.person-card:hover:before {
    background-image: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(9, 9, 121, 0) 10%, rgba(25, 71, 110, 0.97) 100%);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: var(--spacing-90) 0;
    background-image: url('../images/footer/plane.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 15.208vw;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--text-blue);
    opacity: 0.8;
    z-index: 1;
}

.cta-section .container-fluid {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cta-shape {
    position: absolute;
    right: 18vw;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 2;
    object-fit: cover;
}

@media (max-width: 991px) {
    .cta-shape {
        right: 0px;
        opacity: 0.8;
    }
}

@media (max-width: 767px) {
    .cta-shape {
        right: 0px;
        opacity: 1;
    }
}

/* Contact Us Banner */
.contact-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange) !important;
    color: var(--dark-blue);
    width: 14.229vw;
    height: 2.5vw;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-banner-btn:hover {
    background-color: var(--orange);
    color: var(--black);
}

.banner-down-arrow {
    width: 2.5vw;
    height: auto;
    animation: bounce 2s infinite;
}

.contactmain-btns {
    gap: 1vw;
    margin-bottom: var(--spacing-50);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

@media (max-width: 991px) {
    .contact-banner-btn {
        width: 300px;
        height: 50px;
    }

    .banner-down-arrow {
        width: 30px;
    }
}

/* Footer Start */
/* Footer */
.footer-wrap {
    background-color: var(--text-blue);
    padding: var(--spacing-90) 0 var(--spacing-100) 0;
    color: var(--white);
}

.footer-logo {
    margin-bottom: 1.75vw;
}

.footer-logo img {
    height: auto;
    width: var(--logo-width);
}

.footer-address {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-16);
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-address a {
    color: var(--white);
    text-decoration: none;
}

.footer-socials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5vw;
}

.footer-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25vw;
    height: 1.25vw;
    background-color: var(--white);
}



.footer-heading {
    color: var(--yellow);
    font-size: var(--text-18);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -3%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--white);
    font-size: var(--text-16);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-newsletter-text {
    font-size: var(--text-16);
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 60px;
}

.footer-newsletter-form {
    display: flex;
}

.footer-newsletter-form input {
    flex: 1;
    height: 48px;
    border: none;
    padding: 0 16px;
    font-size: var(--text-16);
    border-radius: 0;
    outline: none;
    background-color: var(--white);
}

.footer-newsletter-form button {
    height: 48px;
    background-color: var(--yellow);
    color: var(--text-blue);
    border: none;
    padding: 0 24px;
    font-size: var(--text-16);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0;
}

.footer-newsletter-form button:hover {
    background-color: var(--orange);
}

.footer-locations-grid {
    display: block;
    column-count: 2;
    column-gap: 20px;
}

@media (min-width: 992px) {
    .footer-wrap .row>*:first-child {
        width: 26%;
    }

    .footer-wrap .row>*:nth-last-child(4) {
        width: 12%;
    }

    .footer-wrap .row>*:nth-last-child(3) {
        width: 20%;
    }

    .footer-wrap .row>*:nth-last-child(2) {
        width: 10%;
    }

    .footer-wrap .row>*:last-child {
        width: 32%;
    }

    .what-drives-us-wrap .row>*:first-child {
        width: 30.85%;
    }

    .what-drives-us-wrap .row>*:last-child {
        width: 69.15%;
    }

}

@media (max-width: 992px) {

    .footer-socials {
        gap: 10px;
    }

    .footer-socials li a {
        width: 34px;
        height: 34px;
    }

    .footer-heading {
        margin-bottom: 10px;
    }

    .footer-newsletter-text {
        margin-bottom: 30px;
    }
}

/* Ready to Relocate Form Section */
.form-reloactsection {
    height: 60.052vw;
}

.form-left-section {
    width: 38%;
    border-radius: 10px;
    position: absolute;
    margin: -30px 0 -30px -30px;
    box-shadow: 0 15px 35px rgba(28, 73, 112, 0.2);
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
}

.leftcontact-inner {
    padding: 5vw 3vw 3vw 3vw;
}

.contact-bg-svg {
    top: 0;
    left: 0;
}

.form-right-section {
    width: 85%;
    margin-left: auto;
    background: white;
    z-index: 0;
    padding: 12% 4% 12% 25%;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.03);
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-list img {
    margin-top: 2px;
    width: 1.25vw;
    height: 1.25vw;
}

.contact-divider {
    border-top: 1px solid var(--orange);
    opacity: 1;
}

.contact-input {
    border: none;
    border-bottom: 1px solid #E0E0E0;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: none;
    font-size: var(--text-16);
    background: transparent;
    height: 2.604vw;
}

.contact-input:focus {
    border-bottom-color: var(--text-blue);
    box-shadow: none;
}

textarea.contact-input {
    resize: none;
}

.send-message-btn {
    border: 1px solid var(--dark-blue);
    padding: 8px 25px;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
    height: 2.604vw;
    width: 13.073vw;
}

.location-block:not(:last-child) {
    margin-bottom: var(--spacing-50);
}

.send-message-btn:hover,
.send-message-btn:focus {
    background: var(--dark-blue);
    color: var(--white);
}

.send-message-btn:hover span,
.send-message-btn:focus span {
    color: var(--white);
}

.send-message-btn:hover .text-orange,
.send-message-btn:focus .text-orange {
    color: var(--orange2) !important;
}

.contactbtn-wrap {
    margin-top: var(--spacing-80);
}

.letter-send-graphic {
    right: 4vw;
    bottom: -6vw;
    width: 44vw;
    z-index: 1;
}

label {
    font-size: var(--text-16);
    color: var(--black);
    font-weight: 600;
}

.imag-marker {
    position: absolute;
    width: 3.177vw;
    height: 4.792vw;
    left: 42%;
    top: 32%;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .send-message-btn {
        height: 42px;
    }

    .contact-banner-btn {
        width: 200px;
        height: 42px;
    }
}

@media (max-width: 991px) {
    .form-reloactsection {
        height: auto;
    }


    .form-left-section {
        width: 100%;
        margin: 0;
        border-radius: 10px 10px 0 0;
        position: relative;
        transform: inherit;
    }

    .leftcontact-inner,
    .form-right-section {
        padding: 20px;
    }

    .send-message-btn {
        width: 100%;
        height: auto;
    }

    .contact-info-list img {
        width: 16px;
        height: 16px;
    }

    .form-right-section {
        width: 100%;
    }

    .letter-send-graphic {
        display: none;
    }
}

/* Blogs Feature Section */
.featured-post {
    border-radius: 12px;
}

.featured-post:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg, rgba(25, 71, 110, 0) 35%, rgba(25, 71, 110, 0.4) 59%, rgba(25, 71, 110, 1) 90%);
}

.featured-post svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.feature-post-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.featured-post-content {
    padding: 2.5vw;
}

.latest-post-info {
    padding-right: 5vw;
    padding-left: 0.5vw;
}

.latest-posts-list {
    gap: var(--spacing-40);
}

.latest-post-img {
    width: 7.083vw;
    height: 6.563vw;
}

.latest-post-item {
    transition: all 0.3s ease;
}

.latest-post-item:hover h4 {
    color: var(--orange2) !important;
}

.industry-slide .card,
.blogs-slider-home .card {
    padding: 6%;
    border: 1px solid var(--dark-blue);
}

.industry-slide .card .card-body>*:nth-child(3),
.blogs-slider-home .card .card-body>*:nth-child(3) {
    margin-bottom: var(--spacing-50);
}


/* Industry Insights Slider */
.industry-slider .slick-slide,
.blogs-slider-home .slick-slide {
    height: auto;
}

.btn-outline-dark-blue {
    border: 1px solid #E0E0E0;
    color: var(--text-blue);
    border-radius: 0;
    padding: 10px 15px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-dark-blue:hover {
    background: var(--text-blue);
    color: var(--white);
    border-color: var(--text-blue);
}

.btn-outline-dark-blue:hover .text-orange {
    color: var(--orange2) !important;
}

.industry-slider-arrows {
    gap: 1vw;
    margin-top: var(--spacing-50);
}


.industry-slider-arrows .slick-custom-prev:hover,
.industry-slider-arrows .slick-custom-next:hover {
    background: var(--text-blue);
    border-color: var(--text-blue);
}

.mx-n3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.mx-n3 .px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}


@media (max-width: 991px) {
    .featured-post-img {
        height: auto;
    }

    .featured-post-content {
        padding: 16px;
    }

    .featured-post-content h2 {
        margin-bottom: 5px !important;
    }

    .featured-post-content>*:nth-child(2) {
        margin-bottom: 10px !important;
    }

    .latest-post-img {
        width: auto;
        height: auto;
    }

    .industry-slider-arrows {
        gap: 10px;
    }

    .slick-custom-prev,
    .slick-custom-next {
        width: 40px;
        height: 40px;
    }
}

/* Slick slider equal height cards fix */
.industry-slider .slick-track,
.blogs-slider-home .slick-track {
    display: flex !important;
}

.industry-slider .slick-slide,
.blogs-slider-home .slick-slide {
    height: inherit !important;
    display: flex !important;
}

.industry-slider .slick-slide>div,
.blogs-slider-home .slick-slide>div {
    display: flex;
    width: 100%;
}

.industry-slider .industry-slide,
.blogs-slider-home .industry-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Services Page Styles */
.service-image-wrapper {
    max-width: 100%;
}

.service-corner {
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
}

.service-card {
    border-radius: 12px;
    box-shadow: 0px 3px 4.4px 4px rgba(0, 0, 0, 0.09);
    padding: 60px 30px 40px 30px;
    position: relative;
    margin-top: 40px;
    margin-bottom: 5px;
    /* Space for the icon */
}

@media (min-width: 992px) {
    .service-card {
        padding: 6vw 2vw 3vw 2vw;
        margin-top: 4.1145vw;

    }
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.services-item-main {
    gap: var(--spacing-80);
}

.service-line {
    width: 50px;
    height: 4px;
    background-color: var(--orange);
}

@media (min-width: 992px) {
    .service-icon-wrap {
        width: 8.229vw;
        height: 8.229vw;
        top: -4.1145vw;
    }

    .service-line {
        width: 4.323vw;
    }

    .service-icon-wrap h4 {
        height: 4vw;
    }

}

.service-icon-wrap img {
    max-width: 50%;
    max-height: 50%;
}



/* Services slider equal height fix */
.services-slider .slick-track {
    display: flex !important;
}

.services-slider.pb-5 {
    padding-bottom: 0px !important;
}

.services-slider .slick-slide {
    height: inherit !important;
    display: flex !important;
}

.services-slider .slick-slide>div {
    display: flex;
    width: 100%;
}

.services-slider .service-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.services-slider .slick-dots,
.awards-slider .slick-dots {
    bottom: -50px;
}

.slick-dots:has(li:only-child) {
    display: none !important;
}

.slick-dots li button::before {
    display: none;
}

.slick-dots li {
    width: auto;
    height: auto;
}

.services-slider .slick-dots li button,
.awards-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    background: #DDE0E4;
    border-radius: 50%;
}

@media (min-width: 992px) {

    .services-slider .slick-dots li button,
    .awards-slider .slick-dots li button {
        width: 0.75vw;
        height: 0.75vw;
    }
}

.slick-dots li.slick-active button {
    background-color: var(--text-blue);
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    overflow: hidden;
    height: auto;
    padding: 80px 0;
    background-color: var(--dark-blue);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@media (min-width: 992px) {
    .hero-banner {
        height: 46.823vw;
        padding: 0;
    }

    .hero-bg {
        width: 62%;
    }
}



.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(25, 71, 110, 0.7);
        z-index: 1;
    }
}

.hero-curve-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    z-index: 1;
}

.hero-curve-yellow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    transform: translateX(69.8972%);
    z-index: 2;
}

.hero-curve-corner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    z-index: 2;
}

/* Utility Classes */
.leading-120 {
    line-height: 1.2;
}

.leading-150 {
    line-height: 1.5;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-900 {
    max-width: 900px;
}

.bg-dark-blue-90 {
    background-color: rgba(25, 71, 110, 0.9);
}

/* Home Page - What We Do & Who We Support */
.orange-2-text {
    color: var(--orange-2);
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.home-service-img-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--orange);
}

.section-wrapper-homes {
    gap: var(--spacing-80);
}


.card-services-home .send-message-btn {
    background: var(--white);
}

.card-services-home .send-message-btn:hover,
.card-services-home .send-message-btn:focus {
    background: var(--dark-blue);
    color: var(--orange);
}

@media (min-width: 992px) {
    .home-service-img-bottom {
        height: 1.042vw;
    }

    .card-services-home p {
        padding-right: 6.45vw;
    }
}

.home-learn-more-btn {
    border: 1px solid #DDE0E4;
    border-radius: 0;
    padding: 6px 16px;
    transition: all 0.3s ease;
}

.home-learn-more-btn:hover {
    background-color: var(--light-gray) !important;
}

.who-support-card {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    padding: 7.5%;
    transition: all 0.3s ease;
}

.who-support-card:hover,
.who-support-card:focus,
.who-support-card:active {
    background: var(--text-blue) !important;
    color: var(--white) !important;
}

.who-support-card:hover h3,
.who-support-card:focus h3,
.who-support-card:active h3 {
    color: var(--white) !important;
}

.who-support-card:hover p,
.who-support-card:focus p,
.who-support-card:active p {
    color: var(--white) !important;
}

.who-support-card:hover img,
.who-support-card:focus img,
.who-support-card:active img {
    filter: brightness(0) invert(1);
}

.who-support-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--orange);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .who-support-bottom-line {
        height: 0.521vw;
    }

    .who-support-content p {
        padding-right: 5vw;
    }
}

.who-support-icon img {
    width: 60px;
    height: 60px;
}

@media (min-width: 992px) {
    .who-support-icon img {
        width: 3.906vw;
        height: 3.906vw;
    }
}

/* Statistics Section */
.statistics-section {
    position: relative;
    height: auto;
    background-color: var(--dark-blue);
    overflow: hidden;
}

@media (min-width: 992px) {
    .statistics-section {
        height: 39.479vw;
    }
}

.stats-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    z-index: 0;
}

.stats-bg-image .map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-orange-curve {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    z-index: 1;
}

.stats-left-arrow {
    position: absolute;
    top: 0;
    right: 42%;
    height: 100%;
    width: auto;
    z-index: 0;
    transform: translateX(1px);
    /* To prevent 1px gap */
}

.orange {
    color: var(--orange);
}


/* Why Us Section */
.why-card {
    border-radius: 0px;
    padding: 7%;
    transition: all 0.5s ease;
}

.why-card:hover,
.why-card:focus,
.why-card:active {
    background-color: var(--orange) !important;
}

.why-card:hover h4,
.why-card:focus h4,
.why-card:active h4 {
    color: var(--text-blue);
}

.why-card:hover p,
.why-card:focus p,
.why-card:active p {
    color: var(--text-blue);
}

.why-card:hover .orange,
.why-card:focus .orange,
.why-card:active .orange {
    color: var(--text-blue);
}

.why-card-orange {
    background-color: var(--orange);
}

.why-card p {
    line-height: 1.4;
}

.why-image-wrapper {
    overflow: hidden;
}

/* Awards Section */
.awards-slider {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.award-card {
    border-radius: 12px;
}

.award-card {
    height: 100vw;
}

.award-year {
    right: 7px;
}

@media (min-width: 992px) {
    .award-card {
        height: 26vw;
    }

    .award-year {
        right: 0px;
    }
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(25, 71, 110, 0) 35%, rgba(25, 71, 110, 0.4) 59%, rgba(25, 71, 110, 1) 90%);
    z-index: 1;
}

.award-year {
    top: 2vw;
    padding: 5px 16px;
    border-radius: 0;
    z-index: 2;
}

.award-content {
    z-index: 2;
    padding: 6%;
}

/* CTA Section */
.cta-section-new {
    height: auto;
    padding: 80px 0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .cta-section-new {
        height: 33.906vw;
        padding: 0;
    }
}

.cta-bg {
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    background-color: rgba(25, 71, 110, 0.85);
}

.space-top-lg {
    margin-top: var(--spacing-70);
}

.btn-cta {
    background-color: var(--yellow);
    color: var(--text-blue);
    padding: 12px 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    height: 40px;
    border-radius: 0;
}

.btn-cta:hover {
    background-color: var(--orange-2);
    color: var(--white);
}

/* Testimonials Section */
.testimonial-card {
    padding: 6%;
}

.testimonial-card-orange {
    border-left: 8px solid var(--orange);
}

.testimonial-card-blue {
    border-left: 8px solid var(--text-blue);
}

@media (min-width: 992px) {
    .testimonial-card-orange {
        border-left: 0.8vw solid var(--orange);
    }

    .testimonial-card-blue {
        border-left: 0.8vw solid var(--text-blue);
    }

    .btn-cta {
        width: 9.063vw;
        height: 2.292vw;
    }
}

.text-1b {
    color: #1B1B1B !important;
}

.client-logo {
    object-fit: contain;
    transition: all 0.3s ease;
    height: 8vw;
    width: auto;
    margin: 0 auto;
    display: block;
}

.client-logo:hover {
    filter: grayscale(100%);
    opacity: 1;
}

.border-blue-light {
    border-color: var(--dark-blue) !important;
}

.border-light-subtle {
    border-color: var(--white) !important;
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btn-outline-blue {
    border: 1px solid #D1D5DB;
    /* Lighter border matching design */
    color: var(--text-blue);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    border-color: var(--text-blue);
}

@media (max-width: 991px) {
    .client-logo {
        height: 50px;
    }
}

/* Locations Card */
.inner-banner-content-location {
    width: 100%;
}

.inner-banner-content-location .services-item-main {
    margin-top: var(--spacing-80);
}

.map-iframe-location iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 10px;
}

.location-btn {
    background-color: var(--white);
    height: 2.917vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 0;
    white-space: nowrap;
    min-width: 100%;
    border-bottom: 0.3vw solid var(--orange);
    color: var(--text-blue);
    font-weight: bold;
}

.location-btn:hover,
.location-btn.active {
    background-color: var(--orange);
    color: var(--dark-blue);
    border-color: var(--orange-2);
    box-shadow: 0px 5px 10px 0px rgba(255, 164, 0, 0.4);

}

.locations-btns {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.5vw;
}

@media (max-width: 991px) {


    .map-iframe-location iframe,
    .map-iframe-container iframe {
        height: 350px !important;
    }

    .locations-btns {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .heading-space-xl {
        margin-bottom: var(--spacing-50);
    }

    .location-btn {
        height: 45px;
        padding: 0 20px;
        border-width: 4px;
    }
}

@media (max-width: 767px) {
    .locations-btns {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Process Slider Custom Arrows */
.process-slider-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.process-slider-arrows .slick-custom-prev,
.process-slider-arrows .slick-custom-next {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-blue);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-slider-arrows .slick-custom-prev:hover,
.process-slider-arrows .slick-custom-next:hover {
    background: var(--text-blue);
}

.process-slider-arrows .slick-custom-prev:hover svg path,
.process-slider-arrows .slick-custom-next:hover svg path {
    stroke: var(--white);
}