 :root {
    --navy: #0b1f52;
    --muted: #6b7a90;
    --accent: #ff6a1a;
    --green: #148040;
    --bg: #ffffff;
    --peach: #ffece2;
    --blue-50: #e9f5ff;
    --shadow: 0 20px 50px rgba(6, 24, 81, .12);
    --radius: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --max: 1200px;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box
}

body {
    font-family: Montserrat, sans-serif;
    margin: 0;
    color: var(--navy);
    background: var(--bg);
}

 :root {
    --white: #ffffff;
    --blue: #253b73;
    /* HGE Blue */
    --green: #148040;
    /* --muted: #5d6a8f; */
    --overlay-bg: #f4f6fb;
    --muted: #424446;
    --white: #fff;
    --cardBG: #ffffff;
    --radius: 20px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --fs-large: clamp(40px, 6vw, 86px);
}


/* TOP INFO BAR (A: blue with white text) */

a {
    text-decoration: none !important;
}

.topbar {
    background: var(--green);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 90%;
    margin: 0 auto;
}

.top-left,
.top-right {
    display: flex;
    gap: 18px;
    align-items: center
}

.top-left a,
.top-right a {
    color: var(--white);
    opacity: 0.95;
    font-weight: 500
}

.top-left .phone {
    font-weight: 700
}

.top-right .lang {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600
}


/* HEADER / NAVBAR */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(37, 59, 115, 0.04);
}

.nav {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 12px;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    /* background: linear-gradient(180deg, var(--blue), #1b2f61); */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.brand .title {
    font-weight: 700;
    color: var(--blue);
    font-size: 18px
}

.brand .subtitle {
    font-size: 12px;
    color: var(--muted)
}


/* pill menu button */

.menu-btn {
    background: var(--white);
    color: var(--blue);
    padding: 10px 22px;
    border-radius: 40px;
    border: 2px solid var(--blue);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .35s var(--transition);
}

.menu-btn:hover {
    transform: translateY(-2px)
}


/* fullscreen overlay */

.overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .55s var(--transition), transform .65s var(--transition);
    z-index: 1500;
}

.overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.overlay-inner {
    width: 100%;
    max-width: 1100px;
    text-align: center;
    padding: 40px 24px
}

.overlay-close {
    position: absolute;
    right: 24px;
    top: 22px;
    background: var(--white);
    border-radius: 999px;
    padding: 8px 14px;
    border: 2px solid var(--blue);
    font-weight: 700;
    cursor: pointer;
    z-index: 1600;
}

.overlay-links {
    margin-top: 48px
}

.overlay-links a {
    display: block;
    font-weight: 800;
    font-size: 35px;
    line-height: 1;
    color: var(--blue);
    margin: 18px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: transform .45s var(--transition), opacity .45s var(--transition);
}

.overlay.active .overlay-links a:nth-child(1) {
    transition-delay: .10s
}

.overlay.active .overlay-links a:nth-child(2) {
    transition-delay: .17s
}

.overlay.active .overlay-links a:nth-child(3) {
    transition-delay: .24s
}

.overlay.active .overlay-links a:nth-child(4) {
    transition-delay: .31s
}

.overlay.active .overlay-links a:nth-child(5) {
    transition-delay: .38s
}

.overlay.active .overlay-links a {
    opacity: 1;
    transform: none
}


/* small copyright under links */

.overlay .copyright {
    margin-top: 36px;
    color: var(--muted);
    font-size: 14px
}


/* prevent body scroll when overlay open */

body.no-scroll {
    overflow: hidden;
    height: 100%
}


/* responsiveness */

@media (max-width:980px) {
    .overlay-links a {
        font-size: clamp(28px, 7vw, 48px)
    }
    .logo {
        width: 84px;
        height: 84px
    }
    .brand .title {
        font-size: 16px
    }
}

@media (max-width:640px) {
    .topbar {
        font-size: 13px;
        padding: 3px 0;
    }
    .topbar .container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 8px 0
    }
    .top-left .address {
        display: none;
    }
    .top-right {
        /* padding: 6px; */
        display: none;
    }
    .nav {
        width: 95%
    }
    .logo {
        width: 60px;
        height: 60px;
    }
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

.containers {
    max-width: var(--max);
    margin: auto;
    padding: 72px 24px
}

h1,
h2 {
    letter-spacing: .2px;
}

h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 200;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin: 0 0 12px
}

p.lead {
    color: var(--navy);
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
    width: 40%;
    margin-left: 50px;
}

.eyebrow {
    /* font-weight: 700;
            color: #8a94a6;
            letter-spacing: .12em;
            font-size: 14px; */
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.italic-accent {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--green)
}

.grid {
    display: block;
    gap: 52px
}

.company-header {
    display: flex;
    gap: 90px;
}


/* SECTION 1: Journey */

.journey {
    align-items: center;
    grid-template-columns: 1.2fr .8fr
}

.journey-hero {
    /* border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow) */
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(11, 20, 40, 0.06);
    object-fit: cover;
}

.journey-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 580px;
    min-height: 400px;
    border-radius: 28px;
}


/* ensure right column fits */

.journey-hero {
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

.stats {
    /* background: #c7efd7; */
    background: var(--blue-50);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 24px 28px;
    margin-top: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06)
}

.stat {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.stat .icon {
    font-size: 22px
}

.stat .value {
    font-weight: 800;
    font-size: 22px
}

.stat .label {
    color: var(--muted);
    font-size: 14px
}

@media (max-width: 900px) {
    .company-header {
        display: flex;
        gap: 10px;
    }
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .containers {
        padding: 48px 20px;
    }
    .eyebrow {
        text-align: center;
    }
    .grid.journey {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .company-header {
        display: block;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    h1.heading {
        font-size: 32px;
        line-height: 1.2;
    }
    p.lead {
        width: 100%;
        margin: 0 auto;
        font-size: 16px;
        line-height: 1.6;
    }
    .journey-hero {
        width: 100%;
        border-radius: 20px;
    }
    .journey-hero img {
        max-height: 250px;
        min-height: 230px;
        border-radius: 20px;
    }
    /* Stats Section */
    .stats {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 18px;
        margin-top: 32px;
        border-radius: 20px;
    }
    .stat {
        display: flex;
        padding-left: 25%;
        gap: 16px;
    }
    .stat .icon {
        font-size: 26px;
        /* text-align: left; */
        justify-items: left;
    }
    .stat .value {
        font-size: 22px;
    }
    .stat .label {
        font-size: 14px;
    }
    .state .stat-content {
        text-align: right;
    }
}


/* ==========================
   SECTION 2 – OUR STORY
========================== */

.story-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: auto;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.story-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.story-img img {
    width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius);
}

.story-img .story-img-two {
    width: 450px;
    height: 250px;
}

.story-heading {
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    color: var(--blue);
    margin: 8px 0 40px;
}

.story-content {
    width: 100%;
}

.desc {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: justify;
}


/* list */

.story-list {
    background: var(--blue-50);
    padding: 24px;
    border-radius: var(--radius);
    list-style: none;
    margin-top: 24px;
}

.story-list li {
    font-size: 16px;
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    align-items: center;
}

.story-list li:last-child {
    margin-bottom: 0;
}


/* ✅ Responsive */

@media(min-width:768px)and (max-width: 900px) {
    .story-img img {
        width: 450px;
        height: 56 0px;
    }
    .story-img .story-img-two {
        width: 450px;
        height: 560px;
    }
    /* .story-img img {
                width: 100%;
            } */
}

@media (max-width: 767px) {
    .story-container {
        grid-template-columns: 1fr;
    }
    .story-content {
        text-align: left;
    }
    .story-heading {
        font-size: 30px;
        font-weight: 100;
        line-height: 1.15;
        text-align: center;
    }
    .story-img img {
        height: 350px;
    }
    .story-img .story-img-two {
        width: 450px;
        height: 350px;
    }
}


/* SECTION: OUR MISSION */

.mission-section {
    /* background: #f8e7df; */
    /* background: #d4f1df; */
    background: var(--blue-50);
    padding: 110px 24px;
    overflow-x: hidden;
}

.mission-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.mission-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mission-card {
    padding: 40px 20px;
    width: 330px;
    height: 350px;
    background-color: #fff;
    border-radius: 20px;
    text-align: left;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.mission-card p {
    font-size: 16px;
    font-weight: 200;
}

.eyebrow {
    font-size: 17px;
    font-weight: 700;
    color: #7F7F7F;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.mission-heading {
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    color: var(--blue);
    margin: 8px 0 40px;
}

@media(min-width:768px)and (max-width: 900px) {
    .mission-grid {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .mission-card p {
        font-size: 16px;
        font-weight: 200;
        text-align: justify;
    }
}

@media (max-width: 767px) {
    .mission-grid {
        display: block;
        /* grid-template-columns: 1fr; */
        flex-direction: column;
    }
    .mission-card {
        margin-top: 30px;
        padding: 40px 20px;
        width: 100%;
        height: 350px;
        background-color: #fff;
        border-radius: 20px;
        text-align: left;
    }
    .mission-heading {
        font-size: 30px;
        font-weight: 100;
        line-height: 1.15;
    }
}


/* ============ Testimonials Section ============ */

.testimonials-section {
    padding: 100px 24px;
}

.testimonials-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.testimonials-heading {
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    color: var(--blue);
    margin: 8px 0 40px;
}

.testimonial-card {
    background: #e9f5ff;
    padding: 40px;
    border-radius: 25px;
    max-width: 900px;
    margin: auto;
    text-align: left;
}

.quote-icon {
    font-size: 36px;
    color: var(--green);
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin: 0;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--muted);
}


/* Responsive */

@media (max-width: 768px) {
    .testimonials-heading {
        font-size: 30px;
        font-weight: 100;
        line-height: 1.15;
    }
    .testimonial-card {
        padding: 20px;
        max-width: 900px;
        margin: auto;
        text-align: left;
    }
}

.team-section {
    padding: 110px 24px;
    text-align: center;
}

.eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: #6b7a90;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-title {
    /* font-size: clamp(28px, 5vw, 48px);
            font-weight: 600;
            margin-bottom: 60px;
            color: #0b1f52; */
    font-size: 55px;
    font-weight: 100;
    line-height: 1.15;
    color: var(--blue);
    margin: 8px 0 40px;
}

.team-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.team-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-body {
    /* padding: 24px; */
    text-align: left;
}

.team-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0b1f52;
    padding-left: 10px;
}


/* Responsive */

@media (max-width: 950px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* FOOTER */

.footer {
    background: #0b0f1a;
    padding: 80px 28px 50px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    color: #fff;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}


/* Brand */

.footer-logo {
    width: 100px;
}

.italic-accent {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--green);
}

.footer-desc {
    color: #9da3b7;
    line-height: 1.6;
    margin: 14px 0 20px;
}


/* Social icons */

.footer-socials a {
    display: inline-block;
    margin-right: 16px;
    font-size: 18px;
    color: var(--green);
    transition: 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-4px);
}


/* Columns */

.footer-col h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #c9cfdd;
    position: relative;
    padding-left: 14px;
}

.footer-col ul li a {
    color: #c9cfdd;
    text-decoration: none;
}


/* .footer-col ul li {
            position: relative;
            padding-left: 14px;
        }
         */

.footer-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 18px;
    line-height: 1;
}

.footer-contact {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9cfdd;
}

.footer-contact i {
    color: var(--green);
}


/* Line */

.footer hr {
    border: none;
    border-bottom: 1px solid #2a3142;
    margin: 40px 0 24px;
}


/* Copyright */

.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #c9cfdd;
}

a {
    text-decoration: none;
    color: #c9cfdd;
}


/* Responsive */

@media (max-width: 950px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer {
        padding: 70px 20px;
    }
}