:root {
--brand-blue: #3179AF;
--brand-navy: #072136;
}
body { font-family: 'Lato', sans-serif; color: var(--brand-navy); margin: 0; padding: 0; overflow-x: clip; }
html { overflow-x: clip; }
.font-heading { font-family: 'Raleway', sans-serif; }
.nav-dropdown-item {
display: block; padding: 0.75rem 1rem; color: black; background-color: var(--brand-blue);
transition: all 0.2s ease; text-decoration: none;
}
.nav-dropdown-item:hover { background-color: white; color: var(--brand-blue); }
#mobile-drawer { transition: transform 0.3s ease-in-out; }
.hero-slide {
position: absolute; inset: 0; opacity: 0; z-index: 0;
transition: opacity 0.8s ease-in-out; pointer-events: none;
}
.hero-slide.active { opacity: 1; z-index: 10; pointer-events: auto; }
.dot {
width: 12px; height: 12px; background: rgba(255, 255, 255, 0.5);
border-radius: 50%; cursor: pointer; transition: background 0.3s;
}
.dot.active { background: white; }
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.didot-heading {
    font-family: "Libre Bodoni", serif;
}
/* ==========================================
   Awareness / Grow / Lead Flow Section
========================================== */

.awareness-flow {
    --flow-arrow: 28;
    --flow-gap: 14;
    --flow-overlap: calc((var(--flow-arrow) - var(--flow-gap)) * 1px);
    display: flex;
    align-items: stretch;
    width: 100%;
    isolation: isolate;
}

.flow-card {
    position: relative;
    flex: 1 1 0;
    min-height: 228px;
    color: #fff;
}

.flow-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.flow-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    box-sizing: border-box;
    padding: 34px 50px 34px 28px;
}

.flow-card--grow .flow-inner,
.flow-card--lead .flow-inner {
    padding-left: 48px;
}

.flow-inner h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 16px;
}

.flow-inner p {
    font-size: 14px;
    line-height: 1.8em;
    margin: 0;
}

.flow-card--awareness {
    z-index: 1;
}

.flow-card--grow,
.flow-card--lead {
    margin-left: calc(-1 * var(--flow-overlap));
    z-index: 2;
}

.flow-card--lead {
    z-index: 3;
}

@media (max-width: 768px) {
    .awareness-flow {
        flex-direction: column;
        gap: 16px;
    }

    .flow-card,
    .flow-card--grow,
    .flow-card--lead {
        margin-left: 0;
        min-height: auto;
    }

    .flow-shape {
        display: none;
    }

    .flow-card--awareness {
        background: #4EA0D4;
    }

    .flow-card--grow {
        background: #3179AF;
    }

    .flow-card--lead {
        background: #0C3C60;
    }

    .flow-inner {
        padding: 28px 24px;
    }
}

/* ==========================================
   Our Impact (Who We Are)
========================================== */

.impact-section {
    background: #fff;
    padding: 28px 32px 48px;
}

.impact-section__inner {
    max-width: 980px;
    margin: 0 auto;
}

.impact-section__header {
    text-align: center;
    margin-bottom: 0;
}

.impact-section__header h2 {
    margin: 0 0 2px;
}

.impact-section__rule {
    width: 170px;
    height: 5px;
    border: 0;
    background: #C7C7C7;
    margin: 0 auto 14px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
}

.impact-stat {
    text-align: center;
    width: 100%;
}

.impact-stat__value {
    display: block;
    font-size: 70px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    color: #09133D;
}

.impact-stat__label {
    display: block;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

.impact-stat:nth-child(1) .impact-stat__label {
    max-width: 268px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stat:nth-child(3) .impact-stat__label,
.impact-stat:nth-child(4) .impact-stat__label {
    max-width: 258px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }

    .impact-stat__label {
        max-width: none !important;
    }
}

/* ==========================================
   Areas of intervention (Who We Are)
========================================== */

.intervention-section__header {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 32px 32px;
    text-align: center;
}

.intervention-section__cards {
    background: #F7F7F7;
}

.intervention-section__cards-inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    min-height: 367px;
}

.intervention-card {
    position: absolute;
    top: 47px;
    display: flex;
    height: 273px;
    background: #fff;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.intervention-card:hover {
    opacity: 0.95;
}

.intervention-card--leadership {
    left: -119px;
    width: 530px;
}

.intervention-card--empowerment {
    left: 480px;
    width: 611px;
}

.intervention-card__media {
    flex-shrink: 0;
    height: 273px;
    overflow: hidden;
}

.intervention-card--leadership .intervention-card__media {
    width: 234px;
}

.intervention-card--empowerment .intervention-card__media {
    width: 297px;
}

.intervention-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intervention-card__content {
    flex: 1;
    min-width: 0;
    padding: 29px 23px 22px;
    box-sizing: border-box;
}

.intervention-card__content h3 {
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #09133D;
}

.intervention-card__content p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.intervention-card--leadership .intervention-card__content p {
    max-width: 261px;
}

.intervention-card--empowerment .intervention-card__content p {
    max-width: 283px;
}

@media (max-width: 1024px) {
    .intervention-section__cards-inner {
        display: flex;
        flex-direction: column;
        gap: 32px;
        min-height: 0;
        padding: 40px 32px;
    }

    .intervention-card,
    .intervention-card--leadership,
    .intervention-card--empowerment {
        position: static;
        width: 100%;
        max-width: 530px;
        margin: 0 auto;
        height: auto;
        flex-direction: column;
    }

    .intervention-card--empowerment {
        max-width: 611px;
    }

    .intervention-card__media,
    .intervention-card--leadership .intervention-card__media,
    .intervention-card--empowerment .intervention-card__media {
        width: 100%;
        height: 220px;
    }

    .intervention-card__content p {
        max-width: none;
    }
}

/* ==========================================
   What We Do — feature rows
========================================== */

.wwd-intro {
    background: #fff;
    padding: 0 clamp(24px, 5vw, 96px);
}

.wwd-intro__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 16px 0 17px;
}

.wwd-intro p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: 2;
    color: #000;
}

.wwd-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background: #fff;
}

.wwd-feature__media {
    position: relative;
    background: #F7F7F7;
    min-height: 660px;
}

.wwd-feature--media-right .wwd-feature__media {
    min-height: 671px;
}

.wwd-feature__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wwd-feature__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 48px clamp(32px, 6vw, 96px);
    box-sizing: border-box;
}

.wwd-feature__content-inner {
    width: 100%;
    max-width: 490px;
}

.wwd-feature__content h2 {
    margin: 0 0 31px;
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    color: #09133D;
}

.wwd-feature--media-right .wwd-feature__content h2 {
    margin: 0 0 48px;
}

.wwd-feature__content p {
    margin: 0 0 46px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.wwd-feature--media-right .wwd-feature__content p {
    margin-bottom: 48px;
}

.wwd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 201px;
    height: 50px;
    border-radius: 8px;
    background: #09133D;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.wwd-btn:hover {
    background: #072136;
}

/* ==========================================
   Leadership Development — hero + features
========================================== */

.ld-hero {
    position: relative;
    width: 100%;
    min-height: 807px;
    background: #000;
    overflow: hidden;
}

.ld-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.ld-hero__content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 361px 32px 48px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

.ld-hero__content h1 {
    margin: 0 0 25px;
    font-family: 'Raleway', sans-serif;
    font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
}

.ld-hero__quote {
    max-width: 569px;
    margin: 0 auto 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
}

.ld-hero__quote strong {
    font-weight: 700;
}

.ld-feature h2 {
    font-size: 45px;
    line-height: 1.2;
}

.ld-feature--beyond h2 {
    margin: 0 0 45px;
}

.ld-feature--beyond .wwd-feature__content {
    padding-top: 67px;
}

.ld-feature--beyond .wwd-feature__content p {
    margin-bottom: 0;
}

.ld-feature--beyond .wwd-feature__body {
    margin-bottom: 34px;
}

.wwd-feature__body p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.ld-feature--beyond .wwd-btn {
    margin-bottom: 53px;
}

.ld-feature--standout h2 {
    margin: 0 0 17px;
}

.ld-feature--standout .wwd-feature__content {
    padding-top: 45px;
}

.ld-feature--standout .wwd-feature__content p {
    margin-bottom: 37px;
}

.ld-feature--standout .wwd-btn {
    margin-bottom: 10px;
}

.ld-feature--standout .wwd-feature__media {
    min-height: 729px;
}

.ld-feature--wegrow h2 {
    max-width: 360px;
    margin: 0 0 54px;
}

.ld-feature--wegrow .wwd-feature__content {
    padding-top: 25px;
}

.ld-feature--wegrow .wwd-feature__content p {
    margin-bottom: 59px;
}

.ld-feature--wegrow .wwd-btn {
    width: 196px;
    margin-bottom: 70px;
}

.ld-feature--wegrow .wwd-feature__media {
    min-height: 692px;
}

.wwd-feature--cream {
    background: #F7F7F7;
}

.wwd-feature--cream .wwd-feature__content {
    background: #F7F7F7;
}

.wwd-feature--cream .wwd-feature__media {
    background: #000;
}

.ld-feature--beyond .wwd-feature__media {
    min-height: 673px;
}

@media (max-width: 900px) {
    .ld-hero__content {
        padding: 200px 32px 48px;
    }

    .ld-hero__content h1 {
        font-size: 48px;
    }

    .ld-hero__quote {
        font-size: 22px;
    }

    .ld-feature--beyond .wwd-feature__content,
    .ld-feature--standout .wwd-feature__content,
    .ld-feature--wegrow .wwd-feature__content {
        padding-top: 40px;
    }

    .ld-feature--standout .wwd-feature__media,
    .ld-feature--wegrow .wwd-feature__media,
    .ld-feature--beyond .wwd-feature__media {
        min-height: 320px;
    }
}

@media (max-width: 900px) {
    .wwd-feature {
        grid-template-columns: 1fr;
    }

    .wwd-feature--media-right .wwd-feature__media {
        order: 2;
    }

    .wwd-feature--media-right .wwd-feature__content {
        order: 1;
    }

    .wwd-feature__media {
        min-height: 320px;
    }

    .wwd-feature--media-right .wwd-feature__media {
        min-height: 320px;
    }

    .wwd-feature__content {
        padding: 40px 32px 48px;
    }

    .wwd-feature__content-inner {
        max-width: none;
        margin: 0;
    }
}

/* ==========================================
   Economic Empowerment
========================================== */

.ee-hero {
    position: relative;
    width: 100%;
    min-height: 519px;
    background: #000;
    overflow: hidden;
}

.ee-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.44;
}

.ee-hero__content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 200px 0 10px;
    box-sizing: border-box;
}

.ee-hero__content h1 {
    max-width: 630px;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 75px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: left;
}

.ee-intro {
    background: #fff;
}

.ee-intro__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 16px 0 17px;
    box-sizing: border-box;
}

.ee-intro p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    line-height: 2;
    color: #000;
}

.ee-samuel {
    background: #fff;
}

.ee-samuel__strip {
    max-width: 980px;
    margin: 0 auto;
    background: #F7F7F7;
}

.ee-samuel__grid {
    display: grid;
    grid-template-columns: 490px 490px;
}

.ee-samuel__text {
    box-sizing: border-box;
}

.ee-samuel__text h2 {
    margin: 38px 0 43px;
    font-family: 'Raleway', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: #09133D;
}

.ee-samuel__body {
    max-width: 530px;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.ee-samuel__body p {
    margin: 0;
}

.ee-samuel__media {
    position: relative;
    min-height: 1232px;
    background: #F7F7F7;
}

.ee-samuel__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #09133D;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ee-btn:hover {
    background: #273468;
}

.ee-btn--sm {
    width: 150px;
    height: 40px;
    margin-bottom: 58px;
}

.ee-btn--donate {
    width: 190px;
    height: 51px;
}

.ee-ishimwe {
    background: #fff;
}

.ee-ishimwe__inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    min-height: 1290px;
    padding-bottom: 24px;
}

.ee-ishimwe__images {
    position: relative;
    left: -90px;
    width: 514px;
    padding-top: 64px;
}

.ee-ishimwe__images img {
    display: block;
    width: 514px;
    object-fit: cover;
}

.ee-ishimwe__images img:nth-child(1) {
    height: 364px;
}

.ee-ishimwe__images img:nth-child(2) {
    height: 383px;
}

.ee-ishimwe__images img:nth-child(3) {
    height: 405px;
}

.ee-ishimwe__images img + img {
    margin-top: 25px;
}

.ee-ishimwe__images img:last-child {
    margin-bottom: 24px;
}

.ee-ishimwe__panel {
    position: absolute;
    top: 64px;
    left: 490px;
    width: 650px;
    min-height: calc(364px + 25px + 383px + 25px + 405px);
    margin-bottom: -403px;
    background: rgba(7, 33, 54, 0.9);
    color: #fff;
    padding: 22px 24px 34px;
    box-sizing: border-box;
}

.ee-ishimwe__panel h2 {
    margin: 0 0 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
}

.ee-ishimwe__panel p,
.ee-ishimwe__panel li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #fff;
}

.ee-ishimwe__panel p {
    margin: 0 0 20px;
}

.ee-ishimwe__panel .ee-ishimwe__subhead {
    margin: 0 0 16px;
    font-weight: 700;
}

.ee-ishimwe__panel ul {
    margin: 0 0 20px;
    padding-left: 1.25em;
    list-style: disc;
}

.ee-ishimwe__panel .ee-ishimwe__dash-list p {
    margin: 0;
}

.ee-donate {
    background: #fff;
    padding: 21px 0 41px;
}

.ee-donate__wrap {
    width: min(980px, calc(100% - 80px));
    margin: 0 auto;
}

.ee-donate__bar {
    position: relative;
    background: #F7F7F7;
    min-height: 167px;
}

.ee-donate__bar p {
    margin: 43px 0 54px;
    max-width: 600px;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    line-height: 1.3;
    font-weight: 400;
    color: #000;
}

.ee-donate__bar .ee-btn--donate {
    position: absolute;
    top: 58px;
    right: 0;
    width: 190px;
}

.ee-language {
    background: #90ADC6;
    overflow: hidden;
}

.ee-language__inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    min-height: 700px;
}

.ee-language__card {
    position: relative;
    z-index: 2;
    left: -135px;
    width: 695px;
    margin-top: 118px;
    margin-bottom: 10px;
    padding: 49px 45px;
    background: #F7F7F7;
    box-sizing: border-box;
}

.ee-language__card h2 {
    margin: 0 0 46px;
    font-family: 'Raleway', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: #09133D;
}

.ee-language__card p {
    margin: 0 0 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #000;
}

.ee-language__card .ee-btn--sm {
    margin-bottom: 0;
}

.ee-language__media {
    position: absolute;
    z-index: 1;
    top: 61px;
    left: 500px;
    width: 570px;
    height: 580px;
}

.ee-language__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .ee-samuel__strip,
    .ee-ishimwe__inner,
    .ee-language__inner,
    .ee-intro__inner,
    .ee-hero__content {
        max-width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .ee-samuel__grid {
        display: flex;
        flex-direction: column;
    }

    .ee-samuel__media {
        min-height: 480px;
        order: 2;
    }

    .ee-samuel__text {
        order: 1;
    }

    .ee-ishimwe__images {
        left: 0;
        width: 100%;
        padding-top: 32px;
    }

    .ee-ishimwe__images img {
        width: 100%;
        height: auto;
    }

    .ee-ishimwe__panel {
        position: static;
        width: 100%;
        min-height: auto;
        margin-top: 24px;
        margin-bottom: 0;
    }

    .ee-ishimwe__inner {
        min-height: auto;
    }

    .ee-donate__bar .ee-btn--donate {
        position: static;
        margin: 0 32px 32px;
    }

    .ee-donate__bar {
        min-height: auto;
        padding-bottom: 32px;
    }

    .ee-donate__bar p {
        margin: 32px 32px 24px;
    }

    .ee-language__card {
        left: 0;
        width: auto;
        margin: 32px;
    }

    .ee-language__media {
        position: static;
        width: calc(100% - 64px);
        height: auto;
        margin: 0 32px 59px;
        aspect-ratio: 570 / 580;
    }

    .ee-language__inner {
        min-height: auto;
        padding-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .ee-hero__content {
        padding-top: 140px;
    }

    .ee-hero__content h1 {
        font-size: 48px;
    }

    .ee-donate__bar p {
        font-size: 28px;
    }
}

/* ==========================================
   Local MP4 video panels
========================================== */

.local-video-panel {
    background: #000;
}

.local-video-panel__video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.local-video-panel__video.is-ready {
    opacity: 1;
}

.local-video-panel__play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border: 2px solid #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 0.2);
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.local-video-panel__play:hover {
    opacity: 1;
}

.local-video-panel__play.hidden {
    display: none;
}

/* ==========================================
   Site-wide responsive helpers
========================================== */

.wwa-hero-video-wrap {
    height: clamp(220px, 56vw, 563px);
}

@media (max-width: 768px) {
    nav.fixed.h-32 {
        height: 5rem;
    }

    body.pt-32 {
        padding-top: 5rem;
    }

    nav.fixed.h-32 img[alt="INA Hub Logo"] {
        height: 3.5rem;
    }

    .local-video-panel__play {
        width: 3rem;
        height: 3rem;
    }
}