/* ── About Us Section (screenshot style) ─────── */
.about-us-section {
    background: #fff;
}

.about-us-media {
    padding-bottom: 2rem;
}

.about-us-image-wrap {
    position: relative;
}

.about-us-image {
    width: 100%;
    /* height: 320px; */
    object-fit: cover;
    border-radius: 1.75rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}


.about-us-img-text span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #050505;
    text-transform: uppercase;
}



.about-us-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.about-us-label-line {
    width: 2.5rem;
    height: 3px;
    background: #f57c00;
    border-radius: 999px;
}

.about-us-label span:last-child {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f57c00;
}

.about-us-title {
    font-size: clamp(1.65rem, 3.5vw, 1.45rem);
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    margin-bottom: 1rem;
}

.about-us-text {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.80rem;
    margin-bottom: 0.95rem;
}

.about-us-text strong {
    color: #1f2937;
}





.about-us-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.about-us-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.3rem;
    border-radius: 0.65rem;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.25s ease;
}

.about-us-btn-primary {
    background: #f57c00;
    color: #fff;
}

.about-us-btn-primary:hover {
    background: #ea580c;
}

.about-us-btn-outline {
    border: 2px solid #f57c00;
    color: #f57c00;
    background: transparent;
}

.about-us-btn-outline:hover {
    background: #fff7ed;
}

@media (min-width: 640px) {}

@media (min-width: 1024px) {
    .about-us-media {
        order: 1;
    }



    .about-us-image {
        border-radius: 2rem;
    }

    .about-us-badge {
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 1023px) {


    .about-us-label {
        justify-content: center;
    }

    .about-us-features li {
        text-align: left;
    }

    .about-us-actions {
        justify-content: center;
    }
}

/* ── Section Background ─────────────────────── */
.impact-section {
    position: relative;
    background-image: url("../images/forest-bg.jpg");
    /* apni image yahan daalo */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Dark overlay — image pe green tint */
.impact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 30, 15, 0.55) 0%,
            rgba(15, 45, 20, 0.45) 50%,
            rgba(10, 30, 15, 0.6) 100%);
    z-index: 0;
}

/* ── Organic Blob Card Shape ────────────────── */
.stat-card {
    background: rgba(245, 241, 228, 0.88);
    backdrop-filter: blur(6px);
    border-radius: 55% 55% 38% 38% / 60% 60% 40% 40%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    position: relative;
}

/* Slightly different shape per card for organic feel */
.stat-card:nth-child(2) {
    border-radius: 50% 50% 42% 42% / 58% 58% 42% 42%;
    transform: translateY(-18px);
}

.stat-card:nth-child(3) {
    border-radius: 58% 58% 36% 36% / 62% 62% 38% 38%;
    transform: translateY(-8px);
}

.stat-card:nth-child(4) {
    border-radius: 52% 52% 40% 40% / 56% 56% 44% 44%;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ── Icon Circle ────────────────────────────── */
.icon-circle {
    width: 72px;
    height: 72px;
    background: #1a4a25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: background 0.3s;
}

.stat-card:hover .icon-circle {
    background: #2d6a3f;
}

.icon-circle i {
    color: #fff;
    font-size: 1.6rem;
}

/* ── Stat Number ────────────────────────────── */
.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3020;
    line-height: 1;
}

/* ── Counter Animation ──────────────────────── */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card.in-view .stat-number {
    animation: countUp 0.6s ease forwards;
}

/* ── Pill Badge ─────────────────────────────── */
.impact-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: #1a3020;
    border-radius: 999px;
    padding: 0.45rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

/* ── CTA Button ─────────────────────────────── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1a3020;
    border-radius: 999px;
    padding: 0.75rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}

/* ── Responsive adjustments ─────────────────── */
@media (max-width: 768px) {

    .stat-card:nth-child(2),
    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        transform: translateY(0);
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

/* ── Fade-in on scroll ──────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(2) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.4s;
}

/* ///   */


/* Card */
.act2-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(.22, 1, .36, 1), box-shadow 0.4s ease;
    cursor: default;
}

.act2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.28);
}

/* Real photo background */
.act2-card-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.act2-card:hover .act2-card-img {
    transform: scale(1.06);
}

/* Dark gradient scrim */
.act2-card-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.15) 75%,
            rgba(0, 0, 0, 0.05) 100%);
}

/* Color tint overlay per card */
.act2-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.35;
}

/* Top badge */
.act2-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.6rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px 6px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Card content area */
.act2-content {
    position: relative;
    z-index: 2;
    padding: 2rem 2rem 2.2rem;
}

/* Icon circle */
.act2-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.act2-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0.6rem;
}

.act2-title em {
    font-style: italic;
    display: block;
    font-weight: 400;
    opacity: 0.9;
}

.act2-divider {
    width: 44px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.act2-desc {
    font-size: 0.93rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 44ch;
}

/* Feature pills */
.act2-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.6rem;
}

.act2-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
}

/* CTA */
.act2-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.02em;
}

.act2-link:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.65);
    gap: 12px;
}

.act2-link svg {
    flex-shrink: 0;
}

/* Scroll reveal */
.act2-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.act2-reveal.act2-visible {
    opacity: 1;
    transform: translateY(0);
}

.act2-reveal:nth-child(2) {
    transition-delay: 0.13s;
}

/* Section tag */
.act2-section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    background: #F0FBE8;
    color: #2E7D32;
    margin-bottom: 0.9rem;
}

/* Card end */