:root {
    --brand: #FFD840;
    --brand-dark: #e5bf26;
    --ink: #0b0e12;
    --paper: #f5f3ef;
    --dark: #0b0e12;
    --dark-soft: #141820;
    --muted: #6b7280;
    --line: rgba(255, 255, 255, .12);
    --card-shadow: 0 20px 45px rgba(11, 14, 18, .12)
}

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth
}

body {
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink)
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 1
}

.logo img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 210px;
    object-fit: contain
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: .95
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 12px 18px;
    transition: .25s;
    text-transform: uppercase
}

.btn:focus-visible,
.nav-trigger:focus-visible,
#siteHeader nav>a:focus-visible,
.footer-links a:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 4px
}

.btn-red {
    background: var(--brand);
    color: #fff;
    border: 1px solid var(--brand);
    box-shadow: 0 12px 26px rgba(255, 216, 64, .18)
}

.btn-red:hover {
    background: var(--brand-dark);
    transform: translateY(-2px)
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .02)
}

.btn-outline:hover {
    background: #fff;
    color: var(--ink)
}

.btn-dark {
    background: var(--dark);
    color: #fff
}

.btn-dark:hover {
    background: var(--brand)
}

.nav-trigger {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em
}

#siteHeader nav>a,
.nav-trigger {
    transition: color .2s ease, opacity .2s ease
}

#siteHeader nav>a:hover,
#siteHeader nav>a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible {
    color: var(--brand);
}

.dropdown-panel {
    position: absolute;
    top: 170%;
    left: -20px;
    min-width: 190px;
    background: #fff;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18)
}

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    color: #111;
    font-size: 11px
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.mobile-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0
}

.mobile-dropdown-panel {
    display: none;
    margin: 0 0 8px 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 216, 64, .35);
    background: rgba(255, 255, 255, .035)
}

.mobile-dropdown-head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-dropdown-head>.mobile-link {
    flex: 1;
    border-bottom: 0
}

.mobile-dropdown-panel a,
.mobile-dropdown-panel .mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, .68);
    text-transform: none;
    letter-spacing: 0
}

.mobile-dropdown-panel a:hover,
.mobile-dropdown-panel a:focus-visible,
.mobile-dropdown-panel .mobile-link:hover,
.mobile-dropdown-panel .mobile-link:focus-visible {
    color: var(--brand)
}

.mobile-dropdown.is-open .mobile-dropdown-panel {
    display: block !important
}

.mobile-dropdown-toggle {
    width: 42px;
    height: 42px;
    align-self: stretch;
    position: relative;
    display: grid;
    place-items: center;
    background: none;
    color: inherit;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer
}

.mobile-dropdown-toggle .dropdown-arrow {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0;
    transform: rotate(45deg);
    transition: transform .2s
}

.mobile-dropdown-toggle::before {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    transform: translate(-50%, -50%)
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle:focus-visible {
    background: rgba(255, 216, 64, .08)
}

.mobile-dropdown.is-open .mobile-dropdown-toggle .dropdown-arrow {
    transform: rotate(225deg)
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .35), rgba(0, 0, 0, .7)), linear-gradient(0deg, rgba(0, 0, 0, .5), transparent 45%)
}

.about-hero {
    position: relative;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .35), rgba(0, 0, 0, .7)), linear-gradient(0deg, rgba(0, 0, 0, .5), transparent 45%), #20252b;
}

.latest-news-marquee-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    background: #0c0f14;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
}
.latest-news-label {
    flex: 0 0 auto;
    background: #FFD840;
    color: #111827;
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 700;
    line-height: 1;
    padding: 16px 18px;
    text-transform: uppercase
}

.latest-news-track {
    position: relative;
    overflow: hidden;
    flex: 1 1 auto;
    white-space: nowrap
}

.latest-news-track-inner {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    animation: marquee-scroll 22s linear infinite
}

.latest-news-track-inner span {
    display: inline-block;
    padding: 0 26px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .95
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.scroll-indicator {
    position: absolute;
    z-index: 20;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 10px;
    letter-spacing: .18em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.scroll-indicator span {
    font-size: 12px;
    animation: bob 1.5s infinite
}

@keyframes bob {
    50% {
        transform: translateY(5px)
    }
}

.play-btn {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 999px;
    background: #FFD840;
    color: #fff;
    font-size: 22px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35)
}

.slider-viewport {
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab
}

.slider-viewport.is-dragging {
    cursor: grabbing
}

.slider-track {
    display: flex;
    gap: 18px;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
    will-change: transform
}

.slider-viewport.is-dragging .slider-track {
    transition: none
}

.subscribe-form input {
    min-width: 0
}

@media(max-width:639px) {
    .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: 16px !important
    }

    .subscribe-form input,
    .subscribe-form button {
        box-sizing: border-box;
        display: block;
        width: 100%;
        height: 52px;
        margin: 0;
        border-radius: 2px
    }

    .subscribe-form input {
        padding: 0 16px;
        border: 0;
        line-height: 52px
    }

    .subscribe-form button {
        flex: none;
        padding: 0 18px
    }
}

.programme-card {
    flex: 0 0 calc((100% - 54px)/4);
    height: 360px;
    position: relative;
    overflow: hidden;
    background: #222
}

.programme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.programme-card:hover img {
    transform: scale(1.08)
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .05) 65%)
}

.card-copy {
    position: absolute;
    inset: auto 0 0;
    padding: 22px
}

.card-copy span {
    font-size: 10px;
    letter-spacing: .16em;
    color: #FFD840
}

.card-copy h3 {
    font-size: 23px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    margin-top: 8px
}

.card-copy p {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    margin-top: 5px;
    line-height: 1.5
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .25);
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: .2s
}

.slider-btn:hover {
    background: #FFD840;
    border-color: #FFD840
}

.slider-btn.dark {
    border-color: #d7d7d7;
    color: #111
}

.slider-btn.dark:hover {
    color: #fff;
    border-color: #FFD840
}

.featured-news img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.featured-news:hover img {
    transform: scale(1.04)
}

.news-item {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 20px;
    padding: 20px 0;
    align-items: center;
    transition: color .2s ease
}

.news-item span {
    font-size: 9px;
    letter-spacing: .2em;
    font-weight: 800
}

.news-item h3 {
    font-family: 'Barlow Condensed';
    font-size: 24px;
    font-weight: 600;
    line-height: 1.05;
    margin-top: 8px
}

.news-item h3,
.news-item a,
.featured-news a,
#news>div>div:first-child a {
    transition: color .2s ease
}

.news-item:hover h3,
.news-item:hover a,
.news-item a:hover,
.featured-news a:hover,
#news>div>div:first-child a:hover {
    color: var(--brand-dark)
}

.news-item img {
    width: 140px;
    height: 82px;
    object-fit: cover;
    transition: transform .35s ease
}

.news-item:hover img {
    transform: scale(1.06)
}

.partner-track {
    gap: 18px;
    padding: 2px;
}

.partner-card {
    flex: 0 0 calc((100% - 90px)/6);
    min-height: 150px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    transition: .25s
}

.partner-card span {
    display: block;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6b7280;
    max-width: 150px;
    margin-top: 9px
}

.partner-card:hover {
    border-color: #FFD840;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08)
}

.partner-card.green {
    color: #5a8237
}

.partner-card.serif {
    font-family: Georgia, serif;
    font-weight: 500
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #171a20;
    display: grid;
    place-items: center;
    font-weight: 700
}

.social:hover,
.social:focus-visible {
    background: var(--brand);
    color: #0b0e12;
    transform: translateY(-2px)
}

.footer-title {
    font-size: 11px;
    letter-spacing: .18em;
    font-weight: 800;
    text-transform: uppercase
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1.3fr 1.05fr;
    gap: 20px 26px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.footer-column {
    min-width: 0
}

.footer-column:last-child {
    max-width: 280px;
    width: 100%;
    justify-self: end
}

.footer-links {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    font-size: 13px;
    line-height: 1.7
}

.quick-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    align-items: start
}

.quick-links-col {
    display: grid;
    gap: 10px
}

.footer-social-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.footer-links a {
    transition: color .2s ease, transform .2s ease
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--brand);
    transform: translateX(4px)
}

.footer-brand p {
    max-width: 380px
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px
}

.modal.hidden {
    display: none
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(3px)
}

.modal-content {
    position: relative;
    z-index: 2;
    width: min(960px, 100%);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .5)
}

.modal-close {
    position: absolute;
    right: -10px;
    top: -46px;
    color: #fff;
    font-size: 38px;
    line-height: 1
}

.section-light {
    background: #f5f3ef
}

@media(max-width:1279px) {
    .programme-card {
        flex-basis: calc((100% - 18px)/2)
    }

    .partner-card {
        flex-basis: calc((100% - 36px)/3)
    }
}

@media(min-width:1025px) and (max-width:1279px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 22px
    }
}

@media(min-width:768px) and (max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 28px;
        padding-bottom: 24px
    }
    
    .footer-column {
        width: 100%
    }
    
    .footer-column:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 100%
    }
    
    .footer-links {
        font-size: 12px;
        gap: 8px
    }
    
    .quick-links-grid {
        gap: 8px 16px
    }
    
    .footer-title {
        font-size: 10px
    }
    
    .social {
        width: 36px;
        height: 36px;
        font-size: 14px
    }
}

@media(max-width:767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 20px
    }

    .footer-brand {
        order: 1
    }

    .footer-column {
        width: 100%
    }

    .footer-column:nth-child(2) {
        order: 2
    }

    .footer-column:nth-child(3) {
        order: 3;
        max-width: 100%
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 16px
    }

    .footer-social-wrap {
        justify-content: flex-start
    }

    .footer-links {
        margin-top: 12px;
        gap: 6px;
        font-size: 12px
    }

    .footer-title {
        margin-bottom: 8px;
        font-size: 9px;
        letter-spacing: .15em
    }

    .social {
        width: 32px;
        height: 32px;
        font-size: 13px
    }
    
    .footer-links a {
        display: block;
        padding: 2px 0
    }
    
    .footer-links p {
        font-size: 12px;
        margin: 4px 0
    }
    
    .footer-brand p {
        max-width: 100%
    }
    
    footer .pt-7 {
        padding-top: 16px
    }

    .programme-card {
        flex-basis: 86%;
        height: 400px
    }

    .partner-card {
        flex-basis: 62%;
        min-height: 130px
    }

    .news-item {
        grid-template-columns: 1fr 100px;
        gap: 12px
    }

    .news-item img {
        width: 100px;
        height: 70px
    }

    .news-item h3 {
        font-size: 20px
    }

    .hero {
        min-height: 700px
    }

    .hero-video {
        object-position: center
    }

    .scroll-indicator {
        bottom: 18px
    }

    .about-hero {
        min-height: 500px
    }

    .about-video img {
        height: 320px
    }
}

:root {
    --brand: #FFD840;
    --brand-dark: #e5bf26;
    --ink: #0b0e12;
    --paper: #f5f3ef;
}

.text-brand {
    color: var(--brand) !important
}

.btn-red {
    background: var(--brand);
    border-color: var(--brand);
    color: #0b0e12
}

.btn-red:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #0b0e12
}

.play-btn {
    background: var(--brand);
    color: #0b0e12
}

.slider-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #0b0e12
}

.partner-card:hover {
    border-color: var(--brand)
}

.btn-dark:hover {
    background: var(--brand);
    color: #0b0e12
}

.card-copy span {
    color: var(--brand)
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.dropdown-arrow {
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
    opacity: .75
}

.scroll-indicator {
    gap: 8px;
    cursor: pointer
}

.mouse-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 34px;
    border: 2px solid currentColor;
    border-radius: 12px;
    font-size: initial;
    animation: none
}

.mouse-icon span {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 3px;
    background: currentColor;
    transform: translateX(-50%);
    animation: mouse-wheel 1.8s ease-in-out infinite
}

.scroll-label {
    font-size: 7px;
    letter-spacing: .18em;
    animation: none
}

@keyframes mouse-wheel {

    0%,
    100% {
        opacity: .35;
        transform: translate(-50%, 0)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 5px)
    }
}


/* Inner Page Hero Banners */
.about-hero,
.hero-banner-about {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/about-hero.jpg") center/cover no-repeat;
}

.hero-banner-programmes {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/programmes/docedge-kolkata.jpg") center/cover no-repeat;
}

.hero-banner-rd {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/about/why-we-are.jpg") center/cover no-repeat;
}

.hero-banner-alumni {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/alumni-hero.jpg") center/cover no-repeat;
}

.hero-banner-team {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/team-hero.jpg") center/cover no-repeat;
}

.hero-banner-news {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/news-hero.jpg") center/cover no-repeat;
}

.hero-banner-resources {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/hero-poster.jpg") center/cover no-repeat;
}

.hero-banner-partners {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/partners-hero.jpg") center/cover no-repeat;
}

.hero-banner-reports {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/reports-hero.jpg") center/cover no-repeat;
}

.hero-banner-contact {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/contact-hero.jpg") center/cover no-repeat;
}

.hero-banner-donate {
    background:
        linear-gradient(90deg, rgba(11, 14, 18, .92) 0%, rgba(11, 14, 18, .75) 45%, rgba(11, 14, 18, .35) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(11, 14, 18, .65)),
        url("../assets/images/hero/donate-hero.jpg") center/cover no-repeat;
}

.video-card {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .05) 15%, rgba(0, 0, 0, .68) 100%),
        url("../assets/images/about/about-video.jpg") center/cover no-repeat;
}

.story-card {
    background:
        linear-gradient(90deg, rgba(104, 64, 184, .18), rgba(104, 64, 184, .05)),
        url("../assets/images/about/why-we-are.jpg") center/cover no-repeat;
}

.progress-fill {
    transform-origin: left;
    animation: grow 1.2s ease-out both;
}

@keyframes grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.impact-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    padding-top: 0;
}

.impact-timeline::before {
    display: none;
}

.impact-event {
    position: relative;
    text-align: left;
    padding: 20px;
    border: 2px solid rgba(255, 216, 64, .3);
    border-radius: 4px;
    background: rgba(255, 216, 64, .05);
    transition: all .3s ease;
}

.impact-event:hover {
    border-color: #ffd840;
    background: rgba(255, 216, 64, .12);
    transform: translateY(-4px);
}

.impact-event.is-current {
    border-color: #ffd840;
    background: rgba(255, 216, 64, .15);
}

.impact-icon {
    display: none;
}

.impact-event h3 {
    color: #ffd840;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.impact-event p {
    max-width: 100%;
    margin: 0;
    color: rgba(226, 232, 240, .75);
    font-size: 12px;
    line-height: 1.6;
}

@media(max-width:767px) {
    .impact-timeline {
        display: flex;
        gap: 12px;
        padding-bottom: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .impact-event {
        flex: 0 0 140px;
        scroll-snap-align: start;
    }

    .impact-timeline::before {
        display: none;
    }
}

@media(min-width:768px) and (max-width:1023px) {
    .impact-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding-bottom: 0;
    }

    .impact-event {
        flex: none;
    }

    .impact-timeline::before {
        display: none;
    }
}

/* team-page */

.team-slider {
    scrollbar-width: none;
}

.team-slider::-webkit-scrollbar {
    display: none;
}

.team-slider>.team-member-card {
    /* Five cards plus four 16px gaps fill the same width as the heading controls. */
    flex: 0 0 calc((100% - 64px) / 5);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.team-slider>.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(11, 14, 18, .14);
}

.team-member-card>div:last-child {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.team-member-card>div:last-child>div:last-child {
    margin-top: auto;
}

@media(min-width:640px) and (max-width:1023px) {
    .team-slider>.team-member-card {
        flex-basis: calc((100% - 32px) / 3);
    }
}

@media(max-width:639px) {
    .team-slider>.team-member-card {
        flex-basis: 100%;
    }
}

/* news-page */

.legacy-news-partners { display: none; }
.news-section .news-shell { width: 100%; }
.news-search { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-bottom: 22px; }
.news-search__icon { font-size: 28px; line-height: 1; color: #0b0e12; transform: rotate(-20deg); }.news-search input { width: 100%; height: 54px; padding: 0 12px; border: 1px solid #dedbea; color: #172033; outline: none; }.news-search input:focus { border-color: #FFD840; box-shadow: 0 0 0 3px #ffd84033; }.news-search button { min-width: 140px; height: 54px; border: 1px solid #FFD840; background: #FFD840; color: #0b0e12; font-weight: 800; cursor: pointer; transition: .25s; }.news-search button:hover { border-color: #0b0e12; background: #0b0e12; color: #fff; }
.news-list { border: 1px solid #ebe8f2; overflow: hidden; }.news-listing { display: grid; grid-template-columns: 255px minmax(0, 1fr) 120px 112px; align-items: center; gap: 28px; min-height: 158px; padding: 7px; border-bottom: 1px solid #ebe8f2; }.news-listing:last-child { border-bottom: 0; }.news-listing img { width: 255px; height: 142px; object-fit: cover; }.news-listing__content h3 { max-width: 470px; margin: 0; color: #11101a; font-size: 18px; line-height: 1.25; font-weight: 800; }.news-listing__content p { margin: 12px 0 0; max-width: 500px; color: #46404e; font-size: 14px; line-height: 1.55; }.news-listing time { align-self: start; padding-top: 28px; color: #5c5867; font-size: 12px; white-space: nowrap; }.news-listing time::before { content: '◫'; margin-right: 8px; color: #0b0e12; }.news-read-more { align-self: end; margin-bottom: 22px; color: #0b0e12; font-size: 13px; font-weight: 800; white-space: nowrap; }.news-read-more:hover { color: #c79800; }.news-read-more span { margin-left: 10px; font-size: 20px; vertical-align: -1px; }
.news-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 26px; }.news-pagination a { display: grid; min-width: 36px; height: 36px; padding: 0 10px; place-items: center; border: 1px solid #dedbea; color: #0b0e12; font-size: 13px; transition: .25s; }.news-pagination a:hover { border-color: #FFD840; background: #FFD840; }.news-pagination .is-active { border-color: #0b0e12; background: #0b0e12; color: #fff; }.news-pagination span { color: #746e80; }
@media (max-width: 850px) { .news-listing { grid-template-columns: 190px minmax(0, 1fr) 100px; gap: 18px; }.news-listing img { width: 190px; height: 132px; }.news-read-more { grid-column: 3; grid-row: 1; align-self: end; margin-bottom: 14px; }.news-listing time { grid-column: 3; grid-row: 1; }.news-listing__content h3 { font-size: 16px; } }
@media (max-width: 620px) { .news-search { grid-template-columns: auto 1fr; gap: 8px; }.news-search input { height: 50px; }.news-search button { grid-column: 1 / -1; width: 100%; height: 50px; }.news-listing { display: flex; min-height: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; }.news-listing img { width: 100%; height: 195px; margin-bottom: 17px; }.news-listing__content h3 { font-size: 17px; }.news-listing__content p { margin-top: 8px; }.news-listing time { align-self: auto; padding-top: 14px; }.news-read-more { align-self: flex-start; margin: 11px 0 2px; }.news-pagination { gap: 5px; }.news-pagination a { min-width: 32px; padding: 0 7px; }.news-pagination a:first-child span, .news-pagination a:last-child span { display: none; } }

.news-scroll::-webkit-scrollbar {
    display: none
}

.news-scroll {
    scrollbar-width: none
}

.news-card {
    transition: .25s
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px #140f1e12
}

/* News listing: reference layout — image, copy, then right-aligned actions. */
.news-listing { grid-template-columns: 315px minmax(0, 1fr) 140px; gap: 36px; min-height: 160px; }
.news-listing img { width: 315px; height: 146px; }
.news-listing__content h3 { font-size: 20px; line-height: 1.24; }
.news-listing__content p { font-size: 15px; }
.news-listing__meta { align-self: stretch; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; padding: 29px 0 20px; }
.news-listing time { align-self: auto; padding: 0; }
.news-read-more { align-self: auto; margin: 0; }
.news-pagination .news-page-control { min-width: 92px; display: flex; align-items: center; justify-content: center; gap: 8px; border-color: #dedbea; background: #fff; font-weight: 700; }
.news-pagination .news-page-control:hover { border-color: #FFD840; background: #FFD840; }
.news-pagination .news-page-control:hover span { color: #0b0e12; }

@media (max-width: 850px) {
    .news-listing { grid-template-columns: 190px minmax(0, 1fr); }
    .news-listing img { width: 190px; height: 132px; }
    .news-listing__meta { grid-column: 1 / -1; flex-direction: row; align-items: center; padding: 0 4px 7px; }
    .news-listing time, .news-read-more { grid-column: auto; grid-row: auto; }
}

@media (max-width: 620px) {
    .news-listing__meta { padding: 14px 0 2px; }
    .news-pagination .news-page-control { min-width: 38px; padding: 0; }
}

/* News listing breakpoints: desktop, laptop/tablet, then mobile. */
@media (max-width: 1279px) {
    .news-listing { grid-template-columns: 220px minmax(0, 1fr) 125px; gap: 24px; }
    .news-listing img { width: 220px; height: 140px; }
    .news-listing__content h3 { font-size: 18px; }
    .news-listing__content p { font-size: 14px; }
}

@media (max-width: 1023px) {
    .news-listing { grid-template-columns: 200px minmax(0, 1fr); gap: 20px; min-height: 0; }
    .news-listing img { width: 200px; height: 138px; }
    .news-listing__meta { grid-column: 1 / -1; flex-direction: row; align-items: center; padding: 0 4px 4px; }
    .news-listing time, .news-read-more { padding: 0; margin: 0; }
}

@media (max-width: 639px) {
    .news-search { grid-template-columns: auto minmax(0, 1fr); }
    .news-search button { grid-column: 1 / -1; width: 100%; }
    .news-listing { display: flex; flex-direction: column; gap: 0; padding: 12px; }
    .news-listing img { width: 100%; height: 190px; margin-bottom: 16px; }
    .news-listing__content h3 { font-size: 17px; }
    .news-listing__meta { width: 100%; padding: 14px 0 2px; }
    .news-pagination { gap: 6px; }
    .news-pagination a:nth-of-type(4), .news-pagination a:nth-of-type(5), .news-pagination a:nth-of-type(6), .news-pagination > span, .news-pagination a:nth-of-type(7) { display: none; }
    .news-pagination .news-page-control { min-width: 38px; padding: 0; }
    .news-pagination .news-page-control span { display: none; }
}


/* Alumni Page Slider Cards */
.alumni-card {
    flex: 0 0 calc((100% - 54px) / 4);
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.alumni-card:hover {
    border-color: #0b0e12;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 14, 18, .08);
}

.alumni-project-card {
    flex: 0 0 calc((100% - 54px) / 4);
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.alumni-project-card:hover {
    border-color: #0b0e12;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 14, 18, .08);
}

.alumni-voice-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.alumni-voice-card:hover {
    border-color: #0b0e12;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 14, 18, .08);
}

@media(max-width: 1279px) {
    .alumni-card,
    .alumni-project-card {
        flex-basis: calc((100% - 18px) / 2);
    }
    .alumni-voice-card {
        flex-basis: calc((100% - 18px) / 2);
    }
}

@media(max-width: 767px) {
    .alumni-card,
    .alumni-project-card,
    .alumni-voice-card {
        flex-basis: 85%;
    }
}


/* Smooth Scroll Fix */
.team-slider {
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch; /* Mobile Smooth Touch Scroll */
}

/* Scrollbar Hide CSS */
.hide-scroll::-webkit-scrollbar {
  display: none;
}
.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Current-page navigation state */
.is-active-nav-link {
  color: #ffd840 !important;
}
