
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
}

.main-content[b-0h9cb5uog7] {
    padding: 0;
    max-width: none;
    margin: 0 auto;
    width: 100%;
    flex: 1 1 auto;
}

.home-page {
    background: #fff;
}

    .home-page .container,
    .about-page .container {
        max-width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

.hero-section {
    background: #f3f4f5;
    padding: 90px 0;
    margin: 0;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #333;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

    .hero-title span {
        display: block;
        color: #D4A017;
    }

.hero-text {
    color: #6c757d;
    max-width: 520px;
    margin: 25px 0;
}

.hero-image {
    max-height: 420px;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 56px 0;
    }

    .hero-image {
        max-height: 320px;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-text {
        max-width: 100%;
    }
}

.members-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-weight: 700;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 35px;
}


/* Members marquee — seamless auto-scroll of all member institutions. */
.members-marquee {
    position: relative;
    overflow: hidden;
    padding: 12px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.members-track {
    display: flex;
    width: max-content;
    animation: members-scroll 70s linear infinite;
}

.members-marquee:hover .members-track {
    animation-play-state: paused;
}

@keyframes members-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

    .members-track .member-tile {
        flex: 0 0 auto;
        width: 200px;
        min-height: 108px;
        margin-right: 20px;
    }

.member-placeholder {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #6c757d;
    transition: color 0.25s ease;
}

.member-tile:hover .member-placeholder {
    color: #D4A017;
}

.member-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    min-height: 130px;
    padding: 20px 15px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .member-tile:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
        border-color: #D4A017;
    }


.member-logo {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.62;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

    /* SVGs that ship with only a viewBox (no width/height) collapse to 0 inside
       the flex tile — pin a definite height so they always render. */
    .member-logo[src$=".svg"] {
        height: 58px;
        width: auto;
    }

    .member-tile:hover .member-logo {
        filter: none;
        opacity: 1;
    }


.member-abbr {
    font-size: 1.6rem;
    font-weight: 800;
    color: #9aa0a6;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
}

    .member-tile:hover .member-abbr {
        color: #D4A017;
    }

.member-name {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.25;
}

/* Respect reduced-motion: stop scrolling and wrap into a centered grid. */
@media (prefers-reduced-motion: reduce) {
    .members-track {
        animation: none;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

        .members-track .member-tile {
            margin-right: 0;
        }

        .members-track .is-duplicate {
            display: none;
        }
}

.services-section {
    background: #f4f4f4;
    padding: 70px 0;
}

.service-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.service-icon {
    font-size: 40px;
    color: #D4A017;
    margin-bottom: 20px;
}

/* Strategic Pillars — two richer cards, each with a heading + list of goals. */
.pillar-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 34px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    border-top: 4px solid #D4A017;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .pillar-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,.1);
    }

.pillar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

    .pillar-header .service-icon {
        margin-bottom: 0;
        font-size: 30px;
        width: 62px;
        height: 62px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: rgba(212, 160, 23, 0.12);
    }

    .pillar-header h4 {
        margin: 0;
        font-weight: 700;
        color: #1a2744;
    }

.pillar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .pillar-list li {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
        color: #55606f;
        line-height: 1.6;
    }

        .pillar-list li:last-child {
            margin-bottom: 0;
        }

        .pillar-list li i {
            color: #D4A017;
            font-size: 1.05rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

.conference-section {
    padding: 90px 0;
}

    .conference-section h2 {
        font-weight: 700;
    }

.section-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(15, 47, 150, 0.15);
}

.stats-section {
    background: #f3f4f5;
    padding: 70px 0;
}

    .stats-section h2 {
        font-weight: 700;
    }

        .stats-section h2 span {
            display: block;
            color: #D4A017;
        }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.stat-item h3 {
    color: #D4A017;
    font-weight: 700;
    margin-bottom: 5px;
}

.join-section {
    background: #D4A017;
    color: #2f2e41;
    padding: 70px 0;
}

    .join-section h2 {
        font-weight: 700;
    }

.join-image {
    max-height: 250px;
}

.news-section {
    padding: 80px 0;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

    .news-card img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

.news-content {
    padding: 25px;
}

    .news-content h5 {
        min-height: 70px;
    }

    .news-content a {
        color: #D4A017;
        font-weight: 600;
        text-decoration: none;
    }

footer {
    background: #0f2f96;
    color: white;
    padding: 50px 0;
}


.about-hero {
    background: #f7fafc;
    padding: 48px 0;
}

    .about-hero .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

.about-title {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 800;
    color: #D4A017;
    overflow-wrap: break-word;
}

.about-hero-img {
    width: 200px;
    max-width: 35%;
    height: auto;
    border-radius: 6px;
}

/* Contact hero shows the phone icon, recolored from green to the brand gold.
   The handset is white (zero saturation), so hue-rotate leaves it white and
   only shifts the green square. Tune the angle if the shade drifts. */
.contact-page .about-hero-img {
    width: 180px;
    max-width: 35%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    filter: hue-rotate(-70deg) saturate(1.15) brightness(1.05);
}

@media (max-width: 575.98px) {
    .about-hero {
        padding: 36px 0;
    }

    .about-hero .container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .about-hero-img {
        width: 140px;
        max-width: 45%;
    }
}

.about-section {
    padding: 48px 0;
}

.about-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.about-heading {
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0b2d5f;
}

.about-section--alt {
    background: #ffffff;
}

.contact-info {
    list-style: none;
    padding: 0;
}

    .contact-info li {
        margin-bottom: 0.5rem;
    }


@media (min-width: 1200px) {
    .home-page .container,
    .about-page .container {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}


.home-page .btn-success,
.contact-page .btn-success {
    background-color: #D4A017;
    border-color: #D4A017;
    color: #2f2e41;
    font-weight: 600;
}

    .home-page .btn-success:hover,
    .home-page .btn-success:focus,
    .contact-page .btn-success:hover,
    .contact-page .btn-success:focus {
        background-color: #B8860B;
        border-color: #B8860B;
        color: #2f2e41;
    }

