:root {

    --navy: #081534;

    --blue: #133A7C;

    --blue-2: #2A6BAC;

    --blue-light: #47A8E5;

    --white: #FFFFFF;

    --gray: #C6C6C6;

    --light: #F4F7FA;

    --text: #172033;

    --text-light: #667085;

    --border: #DDE3EA;

    --container: 1200px;

    --font-body: "Inter", sans-serif;

    --font-heading: "Montserrat", sans-serif;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


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


body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}


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


/* =========================
   GLOBAL
========================= */

.container {
    width: min(90%, var(--container));
    margin: 0 auto;
}


.section {
    padding: 120px 0;
}


.eyebrow {
    display: block;

    color: var(--blue-2);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 17px;
}


.section-heading {
    display: flex;

    gap: 40px;

    align-items: flex-start;

    margin-bottom: 70px;
}


.section-number {
    font-size: 12px;

    font-weight: 800;

    color: var(--blue-light);

    padding-top: 6px;
}


.section-heading h2 {
    font-family: var(--font-heading);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;

    color: var(--navy);
}


.section-heading h2 span {
    color: var(--blue-2);
}


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

.header {
    position: fixed;

    width: 100%;

    top: 0;

    left: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid rgba(8, 21, 52, 0.08);

    transition: 0.3s ease;
}


.header.scrolled {
    box-shadow:
        0 5px 30px rgba(8, 21, 52, 0.10);
}


.nav-container {
    height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


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

.logo {
    display: flex;

    align-items: center;

    width: 205px;

    height: 86px;

    overflow: hidden;
}


.logo img {
    display: block;

    width: 205px;

    height: auto;

    max-height: 76px;

    object-fit: contain;
}


/* =========================
   NAVIGATION
========================= */

.nav {
    display: flex;

    align-items: center;

    gap: 32px;
}


.nav a {
    color: var(--navy);

    font-size: 12px;

    font-weight: 700;

    transition: 0.25s;
}


.nav a:hover {
    color: var(--blue-light);
}


.nav-button {
    background: var(--blue);

    color: white;

    padding: 13px 21px;

    font-size: 11px;

    font-weight: 800;

    transition: 0.25s;
}


.nav-button:hover {
    background: var(--blue-2);
}


.menu-button {
    display: none;

    background: none;

    border: 0;

    width: 35px;

    cursor: pointer;
}


.menu-button span {
    display: block;

    height: 2px;

    background: var(--navy);

    margin: 6px 0;
}


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

.hero {
    height: 100vh;

    min-height: 700px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(120deg,
            var(--navy) 0%,
            var(--blue) 58%,
            var(--blue-2) 100%);

    color: white;

    display: flex;

    align-items: center;
}


.hero::before {
    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    right: -250px;

    top: 50%;

    transform: translateY(-50%);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


.hero::after {
    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    right: -160px;

    top: 50%;

    transform: translateY(-50%);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


.hero-pattern {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.025) 50%,
            transparent 100%);

    pointer-events: none;
}


.hero-content {
    position: relative;

    z-index: 5;

    padding-top: 70px;
}


.hero-label {
    display: inline-block;

    color: var(--blue-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

    border-left:
        3px solid var(--blue-light);

    padding-left: 12px;

    margin-bottom: 25px;
}


.hero h1 {
    font-family: var(--font-heading);

    font-size: clamp(58px, 8vw, 105px);

    line-height: 0.92;

    letter-spacing: -6px;

    max-width: 900px;
}


.hero h1 span {
    color: var(--blue-light);
}


.hero p {
    margin-top: 30px;

    max-width: 560px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;

    line-height: 1.8;
}


.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 38px;
}


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

.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    padding: 17px 23px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.5px;

    transition: 0.25s;
}


.button-primary {
    background: var(--blue-light);

    color: var(--navy);
}


.button-primary:hover {
    background: white;
}


.button-outline {
    border:
        1px solid rgba(255, 255, 255, 0.5);

    color: white;
}


.button-outline:hover {
    background: white;

    color: var(--navy);
}


.button-light {
    background: white;

    color: var(--blue);
}


.button-light:hover {
    background: var(--navy);

    color: white;
}


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

.hero-bottom {
    position: absolute;

    z-index: 5;

    bottom: 0;

    width: 100%;

    border-top:
        1px solid rgba(255, 255, 255, 0.18);
}


.hero-bottom-inner {
    display: flex;
}


.hero-stat {
    width: 33.333%;

    padding: 23px 0;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hero-stat:not(:last-child) {
    border-right:
        1px solid rgba(255, 255, 255, 0.18);

    padding-right: 30px;
}


.hero-stat:not(:first-child) {
    padding-left: 30px;
}


.hero-stat strong {
    color: white;

    font-size: 12px;

    letter-spacing: 1px;
}


.hero-stat span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
}


/* =========================
   ABOUT
========================= */

.about {
    background: var(--light);
}


.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.about-visual {
    height: 600px;

    position: relative;

    background: var(--navy);

    overflow: hidden;
}


.about-logo-box {
    position: absolute;

    z-index: 2;

    width: 80%;

    left: 10%;

    top: 50%;

    transform: translateY(-50%);

    background: white;

    padding: 35px 25px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.20);
}


.about-logo-box img {
    width: 100%;

    height: auto;
}


.about-blue-block {
    position: absolute;

    width: 65%;

    height: 65%;

    right: -15%;

    bottom: -20%;

    background: var(--blue-2);

    transform: rotate(20deg);
}


.about-content .large-text {
    font-size: 22px;

    line-height: 1.6;

    font-weight: 500;

    margin-bottom: 25px;

    color: var(--navy);
}


.about-content>p:not(.large-text) {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.9;
}


.about-features {
    margin-top: 45px;
}


.feature {
    display: flex;

    gap: 20px;

    padding: 20px 0;

    border-top:
        1px solid var(--border);
}


.feature:last-child {
    border-bottom:
        1px solid var(--border);
}


.feature-icon {
    color: var(--blue-2);

    font-size: 10px;

    font-weight: 800;

    padding-top: 3px;
}


.feature h3 {
    color: var(--navy);

    font-size: 13px;

    margin-bottom: 6px;
}


.feature p {
    color: var(--text-light);

    font-size: 12px;
}


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

.services {
    background: var(--navy);

    color: white;
}


.services .eyebrow {
    color: var(--blue-light);
}


.services .section-heading h2 {
    color: white;
}


.services .section-heading h2 span {
    color: var(--blue-light);
}


.services .section-number {
    color: var(--blue-light);
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, 0.13);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.13);
}


.service-card {
    min-height: 420px;

    padding: 35px 28px;

    position: relative;

    border-right:
        1px solid rgba(255, 255, 255, 0.13);

    transition: 0.3s;
}


.service-card:last-child {
    border-right: 0;
}


.service-card:hover {
    background: var(--blue);
}


.service-number {
    color: var(--blue-light);

    font-size: 11px;

    font-weight: 800;
}


.service-icon {
    margin-top: 70px;

    width: 45px;

    height: 45px;
}


.service-icon svg {
    width: 100%;

    height: 100%;

    fill: none;

    stroke: var(--blue-light);

    stroke-width: 1.3;
}


.service-card h3 {
    margin-top: 30px;

    font-family: var(--font-heading);

    font-size: 20px;
}


.service-card p {
    margin-top: 17px;

    color: #AEB8C8;

    font-size: 12px;

    line-height: 1.8;
}


.service-card a {
    position: absolute;

    bottom: 30px;

    color: white;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.service-card a span {
    margin-left: 10px;
}


/* =========================
   WHY
========================= */

.why {
    background: white;
}


.why-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 130px;
}


.why-title h2 {
    font-family: var(--font-heading);

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;

    color: var(--navy);
}


.why-title h2 span {
    color: var(--blue-2);
}


.why-title p {
    margin-top: 30px;

    max-width: 400px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;
}


.why-list {
    border-top:
        1px solid var(--border);
}


.why-item {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 28px 0;

    border-bottom:
        1px solid var(--border);
}


.why-item>span {
    color: var(--blue-2);

    font-size: 11px;

    font-weight: 800;
}


.why-item h3 {
    color: var(--navy);

    font-size: 15px;
}


.why-item p {
    margin-top: 8px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================
   GALLERY
========================= */

.gallery {
    background: var(--light);
}


.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.gallery-item {
    position: relative;

    aspect-ratio: 3 / 2;

    overflow: hidden;

    background: var(--navy);
}


.gallery-item img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;
}


.gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-overlay {
    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 25px;

    display: flex;

    align-items: flex-end;

    gap: 18px;

    background:
        linear-gradient(transparent,
            rgba(8, 21, 52, 0.92));

    color: white;

    min-height: 45%;
}


.gallery-overlay>span {
    color: var(--blue-light);

    font-size: 11px;

    font-weight: 800;

    padding-bottom: 3px;
}


.gallery-overlay div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.gallery-overlay strong {
    font-family: var(--font-heading);

    font-size: 18px;

    line-height: 1.1;
}


.gallery-overlay small {
    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
}


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

@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .gallery-item {
        aspect-ratio: 3 / 2;
    }

}


@media (max-width: 480px) {

    .gallery-overlay {
        padding: 20px;
    }


    .gallery-overlay strong {
        font-size: 16px;
    }

}


/* =========================
   CONTACT / BRANCHES
========================= */

.contact {
    background: var(--light);
}


.branches {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: var(--border);

    border:
        1px solid var(--border);
}


.branch-card {
    position: relative;

    min-height: 430px;

    padding: 35px;

    background: white;

    transition: 0.3s ease;
}


.branch-card:hover {
    background: var(--navy);

    color: white;

    transform: translateY(-5px);
}


.branch-number {
    color: var(--blue-light);

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 55px;
}


.branch-label {
    display: block;

    color: var(--blue-2);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.branch-card:hover .branch-label {
    color: var(--blue-light);
}


.branch-card h3 {
    font-family: var(--font-heading);

    color: var(--navy);

    font-size: 28px;

    letter-spacing: -1px;

    margin-bottom: 20px;
}


.branch-card:hover h3 {
    color: white;
}


.branch-card>p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.8;
}


.branch-card:hover>p {
    color: #AEB8C8;
}


.branch-details {
    margin-top: 30px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.branch-card:hover .branch-details {
    border-color:
        rgba(255, 255, 255, 0.15);
}


.branch-details a {
    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}


.branch-card:hover .branch-details a {
    color: white;
}


.branch-details span {
    color: var(--text-light);

    font-size: 10px;

    line-height: 1.6;
}


.branch-card:hover .branch-details span {
    color: #AEB8C8;
}


.branch-map {
    position: absolute;

    left: 35px;

    bottom: 30px;

    color: var(--blue-2);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.branch-map span {
    margin-left: 10px;
}


.branch-card:hover .branch-map {
    color: var(--blue-light);
}


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

.footer {
    background: var(--navy);

    color: white;

    padding: 55px 0 25px;
}


.footer-logo {
    display: block;

    width: 180px;
}


.footer-logo img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;
}


.footer-links {
    display: flex;

    gap: 28px;
}


.footer-links a {
    color: #AEB8C8;

    font-size: 10px;

    transition: 0.25s;
}


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


.footer-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 50px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}


.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 22px;
}


.footer-bottom p {
    color: #71809A;

    font-size: 9px;
}


/* =========================
   SCROLL ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   RESPONSIVE 1000
========================= */

@media (max-width: 1000px) {

    .nav {
        gap: 18px;
    }


    .nav-button {
        display: none;
    }


    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .service-card:nth-child(2) {
        border-right: 0;
    }


    .service-card:nth-child(-n+2) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.13);
    }


    .about-grid,
    .why-grid {
        gap: 50px;
    }


    .branches {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .branch-card:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================
   RESPONSIVE 768
========================= */

@media (max-width: 768px) {

    .section {
        padding: 90px 0;
    }


    .logo {
        width: 175px;

        height: 70px;
    }


    .logo img {
        width: 175px;

        max-height: 64px;
    }


    .nav {
        position: fixed;

        top: 86px;

        left: 0;

        width: 100%;

        background: var(--navy);

        padding: 30px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        transform: translateY(-150%);

        opacity: 0;

        transition: 0.3s;
    }


    .nav.active {
        transform: translateY(0);

        opacity: 1;
    }


    .nav a {
        color: white;
    }


    .menu-button {
        display: block;
    }


    .hero {
        min-height: 650px;
    }


    .hero::before {
        width: 500px;

        height: 500px;

        right: -300px;
    }


    .hero::after {
        width: 350px;

        height: 350px;

        right: -220px;
    }


    .hero h1 {
        font-size:
            clamp(52px, 14vw, 80px);

        letter-spacing: -4px;
    }


    .hero p {
        font-size: 13px;
    }


    .hero-bottom {
        display: none;
    }


    .section-heading {
        gap: 20px;

        margin-bottom: 50px;
    }


    .section-heading h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }


    .about-visual {
        height: 400px;
    }


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


    .service-card {
        border-right: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.13);

        min-height: 350px;
    }


    .service-card:last-child {
        border-bottom: 0;
    }


    .gallery-grid {
        grid-template-columns: 1fr;

       
    }


    .gallery-large {
        grid-row: auto;
    }


    .contact-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }


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


    .branch-card:last-child {
        grid-column: auto;
    }


    .footer-top,
    .footer-bottom {
        flex-direction: column;

        gap: 30px;

        align-items: flex-start;
    }


    .footer-links {
        flex-wrap: wrap;
    }

}


/* =========================
   RESPONSIVE 480
========================= */

@media (max-width: 480px) {

    .container {
        width: 88%;
    }


    .logo {
        width: 160px;

        height: 65px;
    }


    .logo img {
        width: 160px;

        max-height: 60px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .button {
        width: 100%;
    }


    .about-visual {
        height: 320px;
    }


    .about-logo-box {
        width: 88%;

        left: 6%;

        padding: 25px 18px;
    }


    .branch-card {
        min-height: 400px;

        padding: 28px;
    }


    .branch-map {
        left: 28px;
    }


    .contact-cta h2 {
        font-size: 46px;
    }

}