:root {
    --ca-blue: #0c2957;
    --ca-blue-deep: #08233d;
    --ca-gold: #caab27;
    --ca-ink: #13324d;
    --ca-muted: #4f6477;
    --ca-sand: #f7f5ef;
    --ca-line: rgba(12, 62, 99, 0.12);
    --ca-shadow: 0 24px 60px rgba(8, 35, 61, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.home-page {
    margin: 0;
    color: var(--ca-ink);
    background: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

body.mobile-menu-visible {
    overflow: hidden;
}

body.home-page img,
body.home-page video {
    display: block;
    max-width: 100%;
}

body.home-page a {
    color: inherit;
    text-decoration: none;
}

body.home-page a:hover {
    text-decoration: none;
}

body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page h4 {
    margin: 0;
    color: var(--ca-blue);
    font-family: "Poppins", sans-serif;
}

body.home-page p {
    margin: 0;
}

.container,
.auto-container {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row > [class*="col-"] {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-9,
.col-xs-3 {
    width: auto;
    flex: 0 0 auto;
}

.col-xs-9 {
    flex: 1 1 auto;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.m-0 {
    margin: 0 !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 3000;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--ca-blue);
    color: #ffffff;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
    color: #ffffff;
}

.page-wrapper {
    overflow: clip;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(12, 62, 99, 0.08);
    backdrop-filter: blur(10px);
}

body.is-scrolled .main-header {
    box-shadow: 0 14px 32px rgba(8, 35, 61, 0.1);
}

.main-header .header-upper {
    border: 0;
}

.header-container {
    width: 100%;
    background: transparent;
    border-bottom: 0;
}

.shrt-container {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.nav-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.875rem 0;
}

.nav-outer > .row {
    display: none;
    width: 100%;
    margin: 0;
}

.nav-outer > .row .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.nav-logo {
    display: none;
    width: auto;
    padding: 0;
}

.nav-logo a,
.newlogo a {
    display: inline-flex;
    align-items: center;
}

.newlogo {
    float: none;
    width: auto;
    margin: 0;
}

.newlogo img,
.nav-logo img {
    width: 238px;
    max-width: min(238px, 38vw);
    height: auto;
}

.main-menu {
    margin-left: auto;
}

.main-menu .navigation {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu .navigation > li {
    position: relative;
}

.main-menu .navigation > li > a {
    display: block;
    padding: 0.8rem 0.95rem;
    color: var(--ca-blue);
    font-family: "Poppins", sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li > a:hover,
.main-menu .navigation > li > a:focus-visible {
    color: var(--ca-blue-deep);
    background: rgba(202, 171, 39, 0.15);
}

.main-menu .navigation > li.dropdown > ul {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 18rem;
    margin: 0;
    padding: 0.5rem;
    list-style: none;
    background: #ffffff;
    border: 1px solid var(--ca-line);
    border-radius: 1rem;
    box-shadow: 0 20px 45px rgba(8, 35, 61, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .navigation > li.dropdown > ul a {
    display: block;
    padding: 0.8rem 0.95rem;
    color: var(--ca-blue);
    border-radius: 0.8rem;
    font-size: 0.94rem;
}

.main-menu .navigation > li.dropdown > ul a:hover,
.main-menu .navigation > li.dropdown > ul a:focus-visible {
    background: rgba(12, 62, 99, 0.05);
}

.social-nav-item a {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    background: rgba(12, 62, 99, 0.05);
}

.social-nav-item a:hover,
.social-nav-item a:focus-visible {
    background: rgba(12, 62, 99, 0.1);
}

.social-icon {
    display: block;
}

.mobile-nav-toggler {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0;
    padding: 0;
    border: 1px solid var(--ca-line);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(8, 35, 61, 0.08);
}

.mobile-nav-toggler img {
    width: 1.25rem;
    height: auto;
}

.sticky-header,
.nav-overlay,
.hidden-sidebar {
    display: none !important;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: min(44rem, calc(100vh - 4rem));
    background: #0c2957;
    display: flex;
    align-items: center;
}

.home-hero__media,
.home-hero__overlay {
    position: absolute;
    inset: 0;
}

.home-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__overlay {
    background:
        linear-gradient(100deg, rgba(8, 35, 61, 0.9) 0%, rgba(8, 35, 61, 0.76) 38%, rgba(8, 35, 61, 0.18) 100%),
        radial-gradient(circle at top right, rgba(202, 171, 39, 0.28), transparent 30%);
}

.home-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.home-hero__content {
    max-width: 40rem;
    color: #ffffff;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero h1 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.02;
}

.home-hero__text {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.8rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--ca-gold);
    color: var(--ca-blue-deep);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-button:hover,
.home-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(202, 171, 39, 0.28);
    color: var(--ca-blue-deep);
}

.home-button--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

.home-button--secondary:hover,
.home-button--secondary:focus-visible {
    color: #ffffff;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.12);
}

.home-section {
    padding: 5rem 0;
}

.section-heading {
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.section-heading p {
    margin-top: 0.95rem;
    color: var(--ca-muted);
    font-size: 1.02rem;
}

.about-copy {
    padding-left: 1rem;
}

.about-copy .section-heading {
    margin: 0 0 1.25rem;
    text-align: left;
}

.about-copy .text {
    margin-bottom: 1rem;
    color: var(--ca-muted);
    font-size: 1.02rem;
}

.globe-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(202, 171, 39, 0.18);
    border-radius: 1.5rem;
    box-shadow: var(--ca-shadow);
    background:
        radial-gradient(circle at top, rgba(202, 171, 39, 0.25), transparent 40%),
        linear-gradient(180deg, #eff4f8, #dce8f0);
    aspect-ratio: 16 / 9;
}

.globe-fallback,
.globe-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.globe-video {
    position: absolute;
    inset: 0;
}

.services-section-two {
    background: linear-gradient(180deg, #f8f9fb 0%, #f4f7fa 100%);
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--ca-line);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(8, 35, 61, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(8, 35, 61, 0.12);
}

.service-card__media {
    display: block;
    aspect-ratio: 9 / 4;
    overflow: hidden;
    background: #e9eff4;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.4rem;
}

.service-card__body h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

.service-card__body p {
    color: var(--ca-muted);
    flex: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--ca-blue);
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.service-card__link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.service-card__link:hover::after,
.service-card__link:focus-visible::after {
    transform: translateX(3px);
}

.funfacts-section {
    background: var(--ca-sand);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.strength-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 100%;
    padding: 1.4rem;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(8, 35, 61, 0.08);
}

.strength-card__icon {
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 auto;
    border-radius: 1rem;
    background: rgba(12, 62, 99, 0.06);
}

.strength-card__value {
    color: var(--ca-blue);
    font-family: "Poppins", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.strength-card__title {
    margin-top: 0.45rem;
    color: var(--ca-muted);
    font-family: "Poppins", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
}

.main-footer {
    position: relative;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    isolation: isolate;
}

.main-footer::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(8, 35, 61, 0.9), rgba(8, 35, 61, 0.96));
}

.main-footer .auto-container {
    position: relative;
    z-index: 1;
}

.main-footer .widgets-section {
    padding: 4.25rem 0 2.5rem;
}

.main-footer .widget-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.main-footer .text,
.main-footer a {
    color: rgba(255, 255, 255, 0.88);
}

.main-footer a:hover,
.main-footer a:focus-visible {
    color: #ffffff;
}

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

.main-footer li + li {
    margin-top: 0.65rem;
}

.main-footer .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.main-footer .social-links li {
    margin-top: 0;
}

.main-footer .social-links a {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.main-footer .footer-bottom {
    position: relative;
    z-index: 1;
    padding: 1rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.main-footer .copyright {
    color: rgba(255, 255, 255, 0.75);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu .menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 35, 61, 0.58);
}

.mobile-menu .menu-box {
    position: absolute;
    top: 0;
    right: 0;
    width: min(22rem, 88vw);
    height: 100%;
    padding: 1.25rem 1.25rem 2rem;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: -20px 0 40px rgba(8, 35, 61, 0.18);
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    transform: translateX(0);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 999px;
    background: rgba(12, 62, 99, 0.08);
    color: var(--ca-blue);
    font-size: 1.75rem;
}

.mobile-menu .navigation {
    display: block;
    margin: 0;
    padding: 4rem 0 0;
    list-style: none;
}

.mobile-menu .navigation li {
    position: relative;
    border-top: 1px solid rgba(12, 62, 99, 0.08);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(12, 62, 99, 0.08);
}

.mobile-menu .navigation a {
    display: block;
    padding: 0.95rem 0.25rem;
    color: var(--ca-blue);
    font-family: "Poppins", sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
}

.mobile-menu .navigation li ul {
    margin: 0 0 0.75rem;
    padding-left: 0.5rem;
    list-style: none;
}

.mobile-menu .navigation li ul a {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    color: var(--ca-muted);
    font-size: 0.92rem;
}

.mobile-menu .navigation .dropdown-btn {
    position: absolute;
    top: 0.65rem;
    right: 0;
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    border-radius: 0.75rem;
    background: rgba(12, 62, 99, 0.08);
    color: var(--ca-blue);
    font-size: 1rem;
    font-weight: 700;
}

.mobile-menu .navigation .dropdown-btn.open {
    background: rgba(202, 171, 39, 0.22);
}

.mobile-menu .social-links {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.mobile-menu .social-links ul {
    display: flex;
    gap: 0.75rem;
}

.mobile-menu .social-links a {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: rgba(12, 62, 99, 0.08);
    color: var(--ca-blue);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .globe-video {
        display: none;
    }

    .service-card,
    .home-button,
    .service-card__link::after {
        transition: none;
    }
}

@media only screen and (max-width: 1199px) {
    .home-services-grid,
    .strengths-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-8 {
        width: 66.666667%;
    }

    .col-md-12 {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .nav-outer {
        padding: 0.75rem 0;
    }

    .nav-outer > .row {
        display: block;
    }

    .nav-logo {
        display: block;
    }

    .newlogo,
    .main-menu {
        display: none;
    }

    .mobile-nav-toggler {
        display: inline-flex;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero .container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .about-copy {
        padding-top: 1.75rem;
        padding-left: 0;
    }

    .globe-video {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-5 {
        width: 41.666667%;
    }

    .col-lg-7 {
        width: 58.333333%;
    }
}

@media only screen and (max-width: 767px) {
    .shrt-container {
        width: calc(100% - 1.25rem);
    }

    .container,
    .auto-container {
        width: calc(100% - 1.25rem);
    }

    .home-section {
        padding: 4rem 0;
    }

    .home-hero .container {
        padding-top: 4.5rem;
        padding-bottom: 4rem;
    }

    .home-hero__text {
        font-size: 1rem;
    }

    .home-services-grid,
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .strength-card {
        align-items: flex-start;
    }

    .main-footer .widgets-section {
        padding-top: 3.5rem;
    }
}
