﻿:root {
    --ngo-green: #0b7a45;
    --ngo-green-dark: #075c35;
    --ngo-green-soft: #e9f7ef;
    --ngo-orange: #f6a21a;
    --ngo-cream: #fffaf0;
    --ngo-blue: #123c69;
    --ngo-text: #243b35;
    --ngo-muted: #667085;
    --ngo-border: #e6eadf;
    --ngo-white: #ffffff;
    --ngo-shadow: 0 22px 60px rgba(11, 122, 69, .14);
}

.about-hero {
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    background: url("/assets/images/aboutbanner.png") center/cover no-repeat;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 28, 19, .94), rgba(7, 92, 53, .72), rgba(0, 0, 0, .22)), radial-gradient(circle at 25% 35%, rgba(246, 162, 26, .25), transparent 35%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: #fff;
    animation: fadeUp .9s ease both;
}

.hero-tag,
.section-tag,
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #ffd36a;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    backdrop-filter: blur(14px);
}

.about-hero h1 {
    font-size: clamp(42px, 5.8vw, 76px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.about-hero p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 34px;
}

.hero-buttons,
.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-outline,
.about-btn,
.cta-btn-primary,
.cta-btn-outline {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 950;
    transition: .35s ease;
}

.hero-btn-primary,
.about-btn,
.cta-btn-primary {
    background: linear-gradient(135deg, var(--ngo-orange), #ffd36a);
    color: #2d1c00;
    box-shadow: 0 18px 38px rgba(246, 162, 26, .25);
}

.hero-btn-outline,
.cta-btn-outline {
    border: 2px solid rgba(255, 255, 255, .42);
    color: #fff;
}

.hero-btn-primary:hover,
.about-btn:hover,
.cta-btn-primary:hover {
    color: #2d1c00;
    transform: translateY(-4px);
}

.hero-btn-outline:hover,
.cta-btn-outline:hover {
    background: #fff;
    color: var(--ngo-green-dark);
    transform: translateY(-4px);
}

.about-foundation-section,
.mission-vision-section,
.about-cta-section {
    padding: 90px 0;
    background: #fff;
}

.our-aim-section,
.work-area-section {
    padding: 90px 0;
    background: radial-gradient(circle at top left, rgba(246, 162, 26, .12), transparent 30%), var(--ngo-cream);
}

.impact-stats-section {
    padding: 90px 0;
    background: radial-gradient(circle at top right, rgba(246, 162, 26, .24), transparent 32%), linear-gradient(135deg, #041c13, #075c35 55%, #123c69);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

    .section-heading .section-tag,
    .about-foundation-section .section-tag,
    .our-aim-section .section-tag,
    .work-area-section .section-tag,
    .mission-vision-section .section-tag {
        background: var(--ngo-green-soft);
        border: 1px solid rgba(11, 122, 69, .16);
        color: var(--ngo-green-dark);
    }

    .section-heading h2,
    .about-title {
        color: var(--ngo-green-dark);
        font-size: clamp(32px, 4.4vw, 58px);
        font-weight: 950;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .section-heading p,
    .about-text {
        color: var(--ngo-muted);
        font-size: 17px;
        line-height: 1.9;
    }

.about-image-box {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--ngo-shadow);
}

.about-main-image {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
    transition: .8s ease;
}

.about-image-box:hover .about-main-image {
    transform: scale(1.07);
}

.experience-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ngo-green), var(--ngo-green-dark));
    border: 6px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(11, 122, 69, .35);
}

    .experience-badge h3 {
        margin: 0;
        color: #ffd36a;
        font-size: 38px;
        font-weight: 950;
    }

    .experience-badge span {
        text-align: center;
        font-size: 12px;
        font-weight: 850;
        line-height: 1.35;
    }

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.feature-item,
.aim-card,
.work-card,
.impact-stat-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--ngo-border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .06);
    transition: .35s ease;
    overflow: hidden;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
}

    .feature-item i {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: var(--ngo-green-soft);
        color: var(--ngo-green);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-item span {
        color: var(--ngo-green-dark);
        font-weight: 850;
    }

    .feature-item:hover,
    .aim-card:hover,
    .work-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--ngo-shadow);
    }

.aim-card,
.work-card {
    text-align: center;
}

    .aim-card::before,
    .work-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 5px;
        background: linear-gradient(90deg, var(--ngo-green), var(--ngo-orange));
    }

.aim-icon,
.work-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--ngo-green), var(--ngo-green-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: .35s ease;
}

.aim-card:hover .aim-icon,
.work-card:hover .work-icon {
    background: linear-gradient(135deg, var(--ngo-orange), #ffd36a);
    color: #2d1c00;
    transform: rotateY(180deg);
}

.aim-card h4,
.work-card h4 {
    color: var(--ngo-green-dark);
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 14px;
}

.aim-card p,
.work-card p {
    color: var(--ngo-muted);
    line-height: 1.8;
    margin: 0;
}

.mission-card,
.vision-card {
    height: 470px;
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--ngo-shadow);
    transition: .5s ease;
}

    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
    }

.card-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.mission-card:hover .card-bg-image,
.vision-card:hover .card-bg-image {
    transform: scale(1.08);
}

.mission-overlay,
.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 28, 19, .10), rgba(4, 28, 19, .92)), radial-gradient(circle at 25% 30%, rgba(246, 162, 26, .22), transparent 30%);
}

.mv-content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 3;
    color: #fff;
}

.mv-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd36a;
    font-size: 28px;
    margin-bottom: 18px;
}

.mv-label {
    color: #ffd36a;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.mv-content h3 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 14px;
}

.mv-content p {
    max-width: 92%;
    color: rgba(255, 255, 255, .88);
    line-height: 1.8;
    margin: 0;
}

.impact-stats-section .section-heading h2 {
    color: #fff;
}

.impact-stats-section .section-heading p {
    color: rgba(255, 255, 255, .8);
}

.impact-stats-section .section-tag {
    background: rgba(255, 255, 255, .12);
    color: #ffd36a;
    border-color: rgba(255, 255, 255, .22);
}

.impact-stat-card {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(16px);
    text-align: center;
    color: #fff;
}

    .impact-stat-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, .15);
    }

.impact-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(246, 162, 26, .18);
    color: #ffd36a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.impact-stat-card h3 {
    font-size: 42px;
    font-weight: 950;
    margin-bottom: 8px;
}

.impact-stat-card span {
    color: rgba(255, 255, 255, .85);
    font-weight: 750;
}

.about-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 58px;
    color: #fff;
    background: radial-gradient(circle at top right, rgba(246, 162, 26, .28), transparent 32%), linear-gradient(135deg, #041c13, #075c35 55%, #123c69);
    box-shadow: var(--ngo-shadow);
}

    .about-cta-box h2 {
        font-size: clamp(32px, 4vw, 54px);
        font-weight: 950;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .about-cta-box p {
        color: rgba(255, 255, 255, .86);
        font-size: 17px;
        line-height: 1.85;
        margin: 0;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .about-hero {
        min-height: 520px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        height: 410px;
    }

    .about-cta-box {
        padding: 42px;
    }

    .cta-buttons {
        justify-content: flex-start;
        margin-top: 22px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 540px;
        text-align: center;
    }

        .about-hero h1 {
            font-size: 36px;
            letter-spacing: -1px;
        }

        .about-hero p,
        .about-text,
        .section-heading p {
            font-size: 15px;
        }

    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }

    .hero-btn-primary,
    .hero-btn-outline,
    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
    }

    .about-foundation-section,
    .our-aim-section,
    .mission-vision-section,
    .work-area-section,
    .impact-stats-section,
    .about-cta-section {
        padding: 62px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .about-main-image {
        min-height: 330px;
    }

    .experience-badge {
        width: 112px;
        height: 112px;
        right: 16px;
        bottom: 16px;
    }

        .experience-badge h3 {
            font-size: 28px;
        }

        .experience-badge span {
            font-size: 11px;
        }

    .feature-item,
    .aim-card,
    .work-card,
    .impact-stat-card {
        padding: 24px;
    }

    .mission-card,
    .vision-card {
        height: 390px;
    }

    .mv-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .mv-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .mv-content p {
        max-width: 100%;
        font-size: 14px;
    }

    .about-cta-box {
        padding: 32px 24px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .section-heading h2,
    .about-title {
        font-size: 30px;
    }

    .mission-card,
    .vision-card {
        height: 430px;
    }
}
