* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #fff;
}

/* CONTAINER */
.container {
    max-width: 1150px;
    margin: 30px auto;
    padding: 0 15px;
}

/* HEADER */
.header {
    background: #2F4B8F;
    border-radius: 14px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;

    /* âœ¨ ADD DEPTH */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.logo img {
    height: auto;
    object-fit: contain;
    width: 100%;
}

/* NAV */
.nav {
    display: flex;
    gap: 45px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav a:hover {
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 45px;
    margin-left: auto;
    /* ðŸ‘ˆ THIS pushes nav to right */
}

.cta {
    margin-left: 35px;
}

/* CTA BUTTON */
.cta button {
    background: #ffffff;
    color: #2F4B8F;
    border: none;
    padding: 10px 16px;
    /* better balance */
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;

    font-size: 14px;
    font-weight: bold !important;
    font-family: 'Roboto', sans-serif;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta button:hover {
    transform: translateY(-1px);
}

.cta img {
    height: 16px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* HERO WRAPPER (same width as header container) */
.hero-wrapper {
    max-width: 1300px;
    margin: 20px auto;
    padding: 0 15px;
}

/* HERO BOX */
.hero {
    background: #E6F0FF;
    border-radius: 14px;
    text-align: center;
    padding: 50px 20px 0;
    overflow: hidden;
}

.hero-subtitle {
    color: rgb(13, 51, 110);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 25px;
    font-family: "League Spartan", sans-serif;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* TITLE */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #0D336E;
    margin-top: 10px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

/* UNDERLINE */
.underline {
    width: 90px;
    height: 3px;
    background: #ff8c00;
    margin: 12px auto;
    border-radius: 2px;
}

/* DESCRIPTION */
.hero-desc {
    max-width: 900px;
    margin: 15px auto;
    font-size: 15px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* BUTTON */
.hero-btn {
    background: #17468F;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}

.hero-btn img {
    height: 16px;
}

.hero-image img {
    display: block;
    text-align: center;
    margin: auto;
}

.hero-btn {
    position: relative;
    z-index: 3;
    /* ðŸ”¥ bring button above image */
}

.hero-image {
    position: relative;
    z-index: 1;
    /* ðŸ”½ keep image below */
}

.hero-image img {
    position: relative;
    z-index: 0;
    top: 0px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #0D336E;
    margin-top: 10px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

/* highlight wrapper */
.highlight {
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

/* orange underline image */
.highlight img {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    pointer-events: none;
}

/* SECTION */
.performance {

    margin: auto;
    text-align: center;
}

/* INNER BOX */
.performance-inner {
    background: #fff;
    padding: 50px 20px;
    border-radius: 14px;
}

/* TITLE */
.perf-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0D336E;
    margin-bottom: 10px;
}

/* SUBTEXT */
.perf-sub {
    font-size: 16px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* DOTTED IMAGES */
.dotted-top img,
.dotted-bottom img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* CARD */
.card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    width: 300px;
    text-align: center;
    z-index: 1;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 8px;
    /* border thickness */
    border-radius: 10px;

    background: linear-gradient(180deg,
            #0D336E 0%,
            #3576DB 47%,
            #0D336E 100%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(13, 51, 110, 0.15);
}

/* CARD TITLE */
.card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    /* ðŸ‘ˆ change this */
    color: #0D336E;
    font-size: 25px;
    margin-bottom: 10px;
}

/* ICON */
.card img {
    height: auto;
    margin: 10px 0;
}

/* TEXT */
.card p {
    font-size: 17px;
    color: #000;
    line-height: 1.5;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

/* BOTTOM */
.perf-bottom {
    margin-top: 20px;
}

.perf-bottom img {
    height: 80px;
    margin-bottom: 10px;
}

.perf-bottom p {
    font-size: 25px;
    font-weight: 700;
    color: #0D336E;
    font-family: 'Roboto', sans-serif;
}

/* SECTION */
.call-us {
    background: #fff;
    padding: 140px 20px;
    text-align: center;
}

/* CONTAINER */
.call-us-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* HEADING */
.call-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #23448A;
    margin-bottom: 15px;
    font-weight: 900;
}

/* SUBTEXT */
.call-sub {
    font-size: 18px;
    color: #000;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.5;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

#smallsub {
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

/* CARDS ROW */
.call-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CARD */
.call-card {
    background: #fff;
    border: 2px solid #0D336E;
    border-radius: 8px;
    width: 200px;
    padding: 20px 15px;
    text-align: left;
    transition: 0.3s;
}

/* ICON */
.call-card img {
    width: 40px;
    margin-bottom: 10px;
}

/* TEXT */
.call-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    font-weight: 800;
}

/* HOVER (SUBTLE) */
.call-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* SECTION */


/* ðŸ“± RESPONSIVE */
@media (max-width: 768px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .hero {
        padding: 30px 15px 0;
    }

    .card {
        width: 275px;
    }

    .dotted-top img,
    .dotted-bottom img {
        max-width: 250px;
    }

}

/* ðŸ“± MOBILE */
@media (max-width: 768px) {

    .nav {
        position: absolute;
        top: 75px;
        /* ðŸ”¥ FIX: attach exactly below header */
        left: 0;
        width: 100%;
        background: #2F4B8F;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        gap: 18px;
        display: none;
        border-radius: 0 0 14px 14px;
        z-index: 99999999;
    }

    .nav.active {
        display: flex;
    }

    .cta {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

.patterns {
    position: relative;
    background: url('images/background-image-leadership.jpg') center/cover no-repeat;
    height: 520px;
    overflow: visible;

    margin-top: 20px;
    /* ðŸ”¥ pulls section upward (KEY FIX) */
    padding-top: 0;
    /* remove any internal top spacing */
}

/* LEFT ICEBERG */
.patterns-image {
    position: absolute;
    left: 20%;
    bottom: -120px;
    /* makes it overlap like design */
}

.patterns-image img {
    width: 400px;
}

/* RIGHT CONTENT */
.patterns-content {
    position: absolute;
    top: 80px;
    /* slightly tighter than 80px */
    right: 10%;
    width: 500px;
}

/* HEADING */
.patterns-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    line-height: 1.3;
    color: #0D336E;
    margin-bottom: 10px;
}

/* SUBTITLE */
.subtitle {
    font-size: 16px;
    color: #23448A;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}



/* highlight wrapper */
.highlight {
    position: relative;
    display: inline-block;
}

/* underline image */
.highlight img {
    position: absolute;
    left: 0;
    bottom: -6px;
    /* adjust for perfect placement */
    width: 100%;
    pointer-events: none;
}

/* LIST TITLE */
.list-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 60px;
    margin-left: 50px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

/* LIST */
.list {
    list-style: none;
    padding: 0;
    margin-left: 50px;
}

.list li {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 22px;
    /* space for icon */
    position: relative;
    color: #ffffff;
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;

    width: 12px;
    /* adjust based on your icon */
    height: 12px;

    background: url('images/vector-list-items.png') no-repeat center;
    background-size: contain;
}

@media (max-width: 768px) {

    .patterns {
        height: auto;
        padding: 40px 20px;
    }

    .patterns-image {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }

    .patterns-image img {
        width: 200px;
    }

    .patterns-content {
        position: static;
        width: 100%;
        text-align: center;
    }

}

/* SECTION */
.take2 {
    background: #e6edf5;
    padding: 40px 20px;
}

/* CONTAINER */
.take2-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.take2-left {
    width: 55%;
}

/* HEADING */
.take2-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #23448A;
    margin-bottom: 10px;
    font-weight: 900;

}

/* SUBTEXT */
.take2-sub {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 25px;
    font-weight: 500;
}

/* LIST */
.take2-list .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

/* NUMBER IMAGE */
.take2-list .item img {
    width: 30px;
    margin-top: 3px;
}

/* TEXT */
.take2-list .item p {
    font-size: 20px;
    color: #2C2C2C;
    line-height: 1.5;
    font-weight: 700;
    font-family: 'League Spartan', sans-serif;
}

/* RIGHT IMAGE */
.take2-right {
    width: 40%;
}

.take2-right img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .take2-container {
        flex-direction: column;
        align-items: center;
    }

    .take2-left,
    .take2-right {
        width: 100%;
    }

    .take2-right {
        margin-top: 20px;
    }

}

/* SECTION */
.support {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

/* CONTAINER */
.support-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* HEADING */
.support h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #23448A;
    margin-bottom: 10px;
    font-weight: 900;
}

/* SUBTEXT */
.support-sub {
    font-size: 16px;
    margin-bottom: 40px;
    color: #000;
    font-weight: 700;
}

/* CARDS ROW */
.support-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

/* CARD */
.support-card {
    background: rgba(201, 143, 76, 0.05);
    border-radius: 12px;
    width: 340px;
    text-align: left;
    overflow: hidden;
    border-bottom: 3px solid #f4a261;
    /* orange bottom line */
    transition: 0.3s;
    display: flex;
    /* ðŸ”¥ ADD */
    flex-direction: column;
}

.card-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    /* ðŸ”¥ line added */
}


/* IMAGE */
.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */
.card-content {
    padding: 20px;
    display: flex;
    /* ðŸ”¥ ADD */
    flex-direction: column;
    /* ðŸ”¥ ADD */
    height: 100%;
}

/* TITLE */
.card-content h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.card-content h3 span {
    font-size: 13px;
    color: #666;
}

/* TEXT */
.card-content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

/* LIST */
.card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card-content ul {
    flex-grow: 1;
    /* ðŸ”¥ ADD (VERY IMPORTANT) */
}



/* ICON BULLET */
.card-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: url('images/list-icon.png') no-repeat center;
    background-size: contain;
}

/* LINK */
.card-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #2F4B8F;
    text-decoration: none;
    margin-top: 10px;

    position: relative;
}

/* underline animation */
.card-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #2F4B8F;
    transition: 0.3s;
}

.card-content a:hover::after {
    width: 100%;
}

/* arrow */
.card-content a::before {
    content: "→";
    /* ✅ correct arrow */
    font-size: 18px;
    transition: 0.3s;
}

.card-content a:hover::before {
    transform: translateX(4px);
}

/* HOVER */
.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

    .support-cards {
        flex-direction: column;
        align-items: center;
    }

    .support-card {
        width: 90%;
    }

}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;


}

.card-content li {
    position: relative;
    padding-left: 22px;
    /* space for icon */
    margin-bottom: 8px;
    font-size: 14px;
    color: #2C2C2C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 22px;
}

/* PNG ICON */
.card-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;

    width: 12px;
    /* adjust based on your icon */
    height: 12px;

    background: url('images/ul-list-icon-new.svg') no-repeat center;
    background-size: contain;
}

/* SECTION */
.outcomes {
    background: #EBF3FF;
    padding: 50px 20px;
    text-align: center;
}

/* CONTAINER */
.outcomes-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADINGS */
.outcomes h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2F4B8F;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 800;
}

.outcomes h3 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

/* GRID */
.outcomes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* ðŸ”¥ centers last row */
    gap: 20px;
}

/* 4 cards per row */
.outcome-card {
    width: calc(25% - 20px);
}

/* CARD */
.outcome-card {
    background: #fff;
    border: 2px solid #0D336E;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: 0.3s;
}

/* ICON */
.outcome-card img {
    width: 70px;
    margin-bottom: 10px;
}

/* TEXT */
.outcome-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

/* ACTIVE CARD (first one highlight) */
.outcome-card:hover {
    border: 2px solid #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* HOVER */
.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* SECTION */
.leaders {
    background: #FCF9F6;
    padding: 80px 20px;
    text-align: center;
}

/* CONTAINER */
.leaders-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADING */
.leaders h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2F4B8F;
    margin-bottom: 50px;
    line-height: 1.4;
    font-weight: 800;
}

/* ROW */
.leaders-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* EACH PROFILE */
.leader {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 48%;
    text-align: left;
}

/* IMAGE */
.leader-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

/* CONTENT */
.leader-content h3 {
    font-size: 20px;
    color: #2F4B8F;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 900;
}

.leader-content .icon {
    width: 18px;
}

/* ROLE */
.role {
    font-size: 15px;
    color: #2F4B8F;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 5px 0;
}

/* LIST */
.leader-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.leader-content li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

/* BULLET ICON */
.leader-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: url('images/list-icon.png') no-repeat center;
    background-size: contain;
}

/* EMAIL */
.email {
    font-size: 16px;
    color: #23448A;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding-top: 8px;
}

.email img {
    width: 16px;
}

@media (max-width: 768px) {

    .leaders-row {
        flex-direction: column;
    }

    .leader {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .leader-content {
        text-align: center;
    }

    .outcomes h2 {
        font-size: 22px;
    }

    .leaders h2 {
        font-size: 30px;
    }

}

.leader-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.leader-content li {
    position: relative;
    padding-left: 22px;
    /* space for icon */
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

/* ICON IMAGE */
.leader-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;

    width: 12px;
    /* adjust if needed */
    height: 12px;

    background: url('images/ul-list-icon-new.svg') no-repeat center;
    background-size: contain;
}

/* SECTION */
.why-partner {
    background: #ffff;
    padding: 80px 20px;
}

/* CONTAINER */
.why-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT IMAGE */
.why-left {
    width: 45%;
}

.why-left img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* RIGHT */
.why-right {
    width: 55%;
}

/* HEADING */
.why-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2F4B8F;
    margin-bottom: 20px;
    font-weight: 800;
}

/* ITEM */
.why-item {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.why-item {
    position: relative;
    padding: 12px 0;
    border-bottom: none;
    /* remove default */
}

.why-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 70%;
    /* ðŸ”¥ adjust length here */
    height: 1px;
    background: #ddd;
}

/* TITLE */
.why-item h4 {
    font-size: 20px;
    color: #2F4B8F;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 800;
}

/* DESCRIPTION */
.why-item p {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-style: italic;
    /* ðŸ”¥ add this */
}

@media (max-width: 768px) {

    .why-container {
        flex-direction: column;
    }

    .why-left,
    .why-right {
        width: 100%;
    }

    .why-left {
        margin-bottom: 20px;
    }

}

/* SECTION */
.contact {
    background: url('images/footer-bg-take-2.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 40px;
    color: #fff;
    text-align: center;
}

/* OVERLAY CONTENT */
.contact-overlay {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADING */
.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    margin-bottom: 30px;
    font-weight: 800;
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 25px;
}

/* PERSON */
.person h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.person p {
    position: relative;
    padding-left: 20px;
    /* space for icon */
    margin: 4px 0;
    font-size: 13px;
}

/* EMAIL ICON (1st p) */
.person p:nth-child(2)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;

    width: 12px;
    height: 12px;

    background: url('images/footer-mail.svg') no-repeat center;
    background-size: contain;
}

/* PHONE ICON (2nd p) */
.person p:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;

    width: 12px;
    height: 12px;

    background: url('images/footer-phone.svg') no-repeat center;
    background-size: contain;
}

.person p {
    font-size: 13px;
    margin: 5px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-info {
    position: relative;
}

.contact-info::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    width: 1px;
    background: #fff;
}

/* BUTTON */
.contact-btn {
    margin-top: 10px;
    background: #ffffff;
    color: #2F4B8F;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-btn img {
    width: 14px;
}

/* FOOTER TEXT */
.copyright {
    margin-top: 20px;
    font-size: 11px;
    opacity: 0.7;
    font-family: 'Laila', serif;
    font-weight: 300;

}

@media (max-width: 768px) {

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contact h2 {
        font-size: 28px;
        margin-top: 50px;
    }

    .patterns-content h2 {
        font-size: 20px;
        line-height: 1.3;
        color: #fff;
        margin-bottom: 10px;
    }

    .subtitle {
        color: #fff;
        font-size: 14px;
    }

    .list li {
        text-align: left;
        font-size: 14px;
    }

    .call-cards {
        flex-direction: column;
        /* stack cards */
        align-items: stretch;
        /* full width */
    }

    .call-card {
        width: 100%;
        /* ðŸ”¥ full width */
    }

    p.role {
        text-align: left;
    }

    .leader-content li {
        text-align: left;
    }

    .list-title {
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 15px;
        margin-top: 30px;
        font-weight: 600;
        font-family: 'Roboto', sans-serif;
        margin-left: 0px;
    }

    .support h2 {
        font-size: 30px;
    }

    .hero-image img {
        display: block;
        text-align: center;
        margin: 0px auto auto;
        max-width: 250px;
        top: 8px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        /* ðŸ”¥ 1 column on mobile */
    }

}

@media (max-width: 768px) {

    .contact-info::after {
        top: 50%;
        /* center vertically */
        left: 10%;
        /* start from left */
        right: 10%;
        /* end before right */
        width: auto;
        /* remove fixed width */
        height: 1px;
        /* ðŸ”¥ horizontal line */

        transform: translateY(-50%);
    }

}

@media (max-width: 768px) {

    /* stack layout */
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        /* ðŸ”¥ LEFT align */
        text-align: left;
        /* ðŸ”¥ LEFT text */
    }

    .person {
        width: 100%;
        margin-bottom: 20px;
    }

    /* icon + text left aligned */
    .person p {
        display: flex;
        /* ðŸ”¥ LEFT */
        align-items: center;
        gap: 10px;
    }

    /* fix icon */
    .person p::before {
        position: static;
    }

    /* horizontal divider */
    .contact-info::after {
        top: 50%;
        left: 0;
        /* ðŸ”¥ start from left */
        right: 0;
        /* full width */
        height: 1px;
        width: auto;
        transform: translateY(-50%);
    }

}

@media (max-width: 992px) {
    .outcome-card {
        width: calc(50% - 20px);
        /* 2 per row */
    }
}

@media (max-width: 576px) {
    .outcome-card {
        width: 100%;
        /* 1 per row */
    }
}

@media (max-width: 768px) {

    .header {
        padding: 12px 16px;
    }

    .logo img {
        width: 140px;
        /* control logo */
    }

}

/* popup css */
/* POPUP WRAPPER */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
}

/* OVERLAY */
.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13, 51, 110, 0.7);
    /* ðŸ”¥ your theme blue */
}

/* CONTENT BOX */
.popup-content {
    position: relative;
    max-width: 400px;
    margin: 80px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* HEADING */
.popup-content h2 {
    font-family: 'Playfair Display', serif;
    color: #0D336E;
    margin-bottom: 20px;
}

/* INPUTS */
.popup-content input,
.popup-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* BUTTON */
.popup-content button {
    background: #2F4B8F;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.popup-content button:hover {
    background: #0D336E;
}

/* HIDE BY DEFAULT */
.patterns-mobile {
    display: none;
}

/* SHOW ONLY MOBILE */
@media (max-width: 768px) {

    .patterns {
        display: none;
    }

    .patterns-mobile {
        display: block;
        background: url('images/background-image-leadership.jpg') center/cover no-repeat;
        padding: 40px 20px;
        color: #fff;
        text-align: center;
    }

    .patterns-inner {
        max-width: 400px;
        margin: auto;
    }

    /* HEADING */
    .patterns-mobile h2 {
        font-size: 22px;
        line-height: 1.3;
        font-family: 'Playfair Display', serif;
        color: #0D336E;
        margin-bottom: 10px;
    }

    /* SUBTITLE */
    .patterns-mobile .subtitle {
        font-size: 14px;
        color: #0D336E;
        margin-bottom: 20px;
    }

    .patterns-mobile .highlight {
        position: relative;
        display: inline-block;
    }

    .patterns-mobile .highlight img {
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
    }

    /* ICEBERG */
    .patterns-mobile .iceberg img {
        width: 320px;
        margin: 20px auto;
        display: block;
    }

    /* LIST TITLE */
    .patterns-mobile .list-title {
        font-size: 16px;
        margin: 20px 0 15px;
        font-weight: 600;
        text-align: left;
    }

    /* GRID LIST */
    .list-grid {
        display: flex;
        gap: 20px;
        text-align: left;
    }

    .list-grid ul {
        list-style: none;
        padding: 0;
        flex: 1;
    }

    .list-grid li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 18px;
        position: relative;
    }
}

    @media (max-width: 768px) {

        .list-grid li {
            position: relative;
            padding-left: 22px;
            /* space for icon */
        }

        .list-grid li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;

            width: 12px;
            /* adjust based on your icon */
            height: 12px;

            background: url('images/vector-list-items.png') no-repeat center;
            background-size: contain;
        }

        .popup-content {
            margin: 80px 40px;
        }

    }


    @media (min-width: 1600px) {

        .patterns-content {
            right: 25%;
        }

        .patterns-image {
            left: 25%;
        }

        .container {
            max-width: 1500px;
        }

        .hero-wrapper {
            max-width: 1500px;
        }

        .perf-title {
            font-size: 50px;
        }

        .perf-sub {
            font-size: 25px;
        }

        .card {
            width: 450px;
        }

        .card h3 {
            font-size: 35px;
        }

        .card p {
            font-size: 26px;
        }

        .dotted-top img,
        .dotted-bottom img {
            max-width: 700px;
        }

        .call-us h2 {
            font-size: 50px;
        }

        .call-sub {
            font-size: 18px;
        }

        .call-us-container {
            max-width: 1500px;
        }

        .call-card {
            max-width: 250px;
        }

        .take2-container {
            max-width: 1500px;
        }

        .support h2 {
            font-size: 50px;
        }

        .support-sub {
            font-size: 20px;
        }

        .support-container {
            max-width: 1500px;
        }

        .support-card {
            width: 400px;
        }

        .support-cards {
            gap: 40px;
        }

        .call-card img {
            width: 60px;
        }

        .call-card p {
            font-size: 16px;
        }

        .take2-left h2 {
            font-size: 50px;
        }

        .take2-sub {
            font-size: 25px;
            line-height: 32px;
        }

        .take2-list .item img {
            width: 40px;
        }

        .take2-list .item p {
            font-size: 26px;
        }

        .card-content h3 {
            font-size: 20px;
        }

        .card-content p {
            font-size: 18px;
        }

        .card-content li {
            font-size: 18px;
            line-height: 26px;
        }

        .card-content a {
            font-size: 20px;
        }

        .outcomes-container {
            max-width: 1500px;
        }

        .outcomes h3 {
            font-size: 25px;
        }

        .outcome-card p {
            font-size: 20px;
        }

        .leaders h2 {
            font-size: 50px;
        }

        .leaders-container {
            max-width: 1500px;
        }

        .leader-content h3 {
            font-size: 30px;
        }

        .role {
            font-size: 20px;
        }

        .leader-content li {
            font-size: 20px;
        }

        .email {
            font-size: 20px;
        }

        .contact h2 {
            font-size: 70px;
        }

        .person h4 {
            font-size: 20px;
        }

        .person p {
            font-size: 18px;
        }

        .person p:nth-child(2)::before {
            width: 20px;
            height: 20px;
        }

        .person p:nth-child(3)::before {
            width: 20px;
            height: 20px;
        }

        .copyright {
            font-size: 18px;
        }

        .why-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 80px;
            padding: 0 20px;
        }

        .why-left {
            width: 50%;
        }

        .why-right {
            width: 50%;
        }

        .why-right h2 {
            font-size: 50px;
        }

        .why-item h4 {
            font-size: 24px;
        }

        .why-item p {
            font-size: 18px;
        }

        .outcomes h2 {
            font-size: 50px;
        }
    }
    