﻿body {
    font-family: "Poppins", sans-serif !important;
}
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

h1 {
    font-size: 3rem;
    color: #004aad;
    font-weight: 600 !important;
}

h2 {
    font-size: 2.5rem !important;
    color: #004aad;
    font-weight: 500 !important;
}
/* =======================
   HEADER & NAVBAR STYLES
======================= */

/* Header Background */
header {
    background-color: #e8f3d2;
    color: #000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

/* Navbar Structure */
.navbar {
    display: flex;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
}

/* Logo */
.logo img {
    width: 80px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

    .logo img:hover {
        transform: scale(1.05);
    }

/* Nav Links (Desktop) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    transition: all 0.4s ease-in-out;
}

    .nav-links a {
        color: #016701;
        text-decoration: none;
        font-weight: 500;
        font-size: 17px;
        transition: 0.3s color;
    }

        .nav-links a:hover {
            color: #77b302;
        }

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #016701;
    min-width: 180px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 10;
    padding: 0;
}

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

        .dropdown-menu li:last-child {
            border-bottom: none;
        }

    .dropdown-menu a {
        display: block;
        padding: 10px 14px;
        color: #fff;
    }

/* Show dropdown on hover (Desktop Only) */
.dropdown:hover .dropdown-menu {
    display: block;
    background: #026702;
}

/* Donate Button */
.butn {
    background: #f85454;
    padding: 8px 20px;
    border-radius: 8px;
    transition: background 0.3s;
}

    .butn a {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
    }

    .butn:hover {
        background: #d84343;
    }

/* ========== MOBILE & TABLET VIEW ========== */
.menu-toggle, .menu-close {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #016701;
}

/* ========= TABLET & MOBILE VIEW ========= */
@media (max-width: 992px) {

    .navbar {
        position: relative;
    }

    .logo img {
        width: 70px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #016701;
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 20;
        padding: 50px 0 30px;
        border-radius: 0 0 10px 10px;
        text-align: left;
        gap: 10px;
        transition: all 0.5s ease-in-out;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            width: 100%;
            padding: 8px 25px;
        }

            .nav-links li a {
                color: #fff !important;
                font-size: 17px;
                display: block;
            }

    /* Dropdown for Mobile + Tablet */
    .dropdown-menu {
        display: none;
        position: static;
        background: #77b302;
        border-radius: 0;
        box-shadow: none;
        padding-left: 20px;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
        background: #75b200;
        margin-left: 25px;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        color: #fff;
    }


    .navbar .butn {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #016701;
        font-size: 1.8rem;
        margin-right: 10px;
    }

    .menu-close {
        display: none;
        position: absolute;
        top: 18px;
        right: 25px;
        font-size: 2rem;
        z-index: 25;
    }

    .navbar.menu-open .menu-toggle {
        display: none;
    }

    .navbar.menu-open .menu-close {
        display: block;
    }
}


/* Extra Small Screens */
@media (max-width: 576px) {
    .logo img {
        width: 65px;
    }

    .nav-links li a {
        font-size: 16px;
    }
}

/*hero section*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

    .hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        background: linear-gradient( to bottom,#000, #000);
    }

    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

    .hero-text h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

.btnn {
    background: #f85454;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .btnn:hover {
        background: transparent;
        border: 1px solid white !important;
    }

.butn {
    background-color: #f85454 !important;
}

    .butn a {
        color: white !important;
    }

    .butn:hover {
        background-color: #eb6e60 !important;
    }

@media(max-width:768px) {
    .hero {
        width: 100%;
        height: 30vh;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-text {
        position: absolute;
        top: 30%;
        left: 5%;
        transform: none;
        color: #fff;
        text-align: center;
        z-index: 2;
    }

    .btnn {
        padding: 5px 15px;
        border-radius: 8px;
    }
}


/*About section*/
.read {
    color: darkcyan;
}

.abt-section {
    color: #333;
    line-height: 1.7;
    max-width: 1200px;
    text-align: center;
    margin: 15px auto;
    font-size: 16px;
}


/*Impact section*/
.impact-section {
    background-color: lightcyan;
    margin: 40px 0;
    padding: 50px;
}

    .impact-section h2 {
        font-weight: 500 !important;
        text-align: center;
        padding-bottom: 50px;
    }

.impact {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 290px;
    line-height: 1;
}

.impact-content {
    display: flex;
    justify-content: space-between;
    flex-basis: 0 0 290px;
}

.impact p:first-child {
    font-size: 5rem;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: darkcyan;
}

.impact span {
    font-size: 2.5rem;
    font-weight: 600;
    color: darkcyan;
}

.impact p {
    font-size: 1.1rem;
    font-weight: 600;
    color: darkcyan;
}

/*Organize info*/
.organize-section h2 {
    text-align: center;
}

.organize-content {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.org .organize:nth-child(1) h3 {
    color: #5B7182;
}

.org .organize:nth-child(2) h3 {
    color: #1DAE27;
}

.org .organize:nth-child(3) h3 {
    color: #CE4343;
}

.org2 .organize:nth-child(1) h3 {
    color: #E19656;
}

.org2 .organize:nth-child(2) h3 {
    color: #C692DA;
}

.org2 .organize:nth-child(3) h3 {
    color: #6BC9A9;
}

.organize img {
    width: 100px;
}

.organize {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.points p {
    margin-bottom: 0;
}

.points h3 {
    font-weight: 600;
}

/*Have look Section*/
.look {
    padding: 50px 0;
}

.leftside {
    position: relative;
}

    .leftside img {
        width: 100%;
    }

    .leftside .back {
        filter: brightness(75%);
    }

    .leftside .topimg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30%;
        padding: 0 calc(1.5rem * 0.5);
        mask-image: radial-gradient(circle, black 50%, transparent 100%);
        filter: brightness(80%);
    }

mark {
    background-color: #f85454 !important;
    border-radius: 5px;
    padding: 0px !important;
}

.rightside h3 {
    color: #f85454;
}

@media(max-width:768px) {
}

/*Service section*/
.service-sec {
    background: linear-gradient(rgba(16, 94, 94, 0.8),rgba(16, 94, 94, 0.8)), url('../img/chng2.jpeg') no-repeat center/cover;
    background-attachment: fixed;
}

    .service-sec h2 {
        text-align: center;
        color: white;
        padding: 30px 0;
    }

.service-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 50px;
}

.ser-card {
    background-color: white;
    color: black;
    padding: 15px;
    border-radius: 25px;
}

    .ser-card img {
        width: 100%;
        height: 220px;
        object-fit: cover; /* Very important */
        display: block;
        border-radius: 20px;
    }

    .ser-card p {
        padding: 5px 5px 0;
    }

.arrow {
    color: #f85454;
}
/*donate ssection*/
.donate-content {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    border-radius: 40px;
    overflow: hidden;
    margin: 50px 0;
    place-items: center;
}

    .donate-content img {
        width: 100%;
        height: 10vw;
        object-fit: cover;
        filter: brightness(50%);
    }

    .donate-content h2 {
        color: white;
        font-weight: 600 !important;
        font-size: 3rem !important;
    }

.donate-content {
    position: relative;
}

    .donate-content div {
        position: absolute;
        z-index: 2;
    }

/* ================= Light Footer Styling ================= */
.hvc-footer-light {
    background: #e8f3d2;
    color: #000;
    padding: 30px 20px 1px;
    font-family: "Poppins", sans-serif;
    border-top: 3px solid #77b302;
}

/* Grid Layout */
.footer-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Column Width Adjustments */
.footer-col.wide {
    flex: 1.6;
}

.footer-col.narrow {
    flex: 1;
}

/* Logo Section */
.footer-logo {
    text-align: left;
}

.footer-logo-img {
    width: 90px;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid #77b302;
}

.footer-logo p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    max-width: 320px;
}

/* Headings */
.footer-col h4 {
    color: #016701;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            color: #000;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer-col ul li a:hover {
                color: #77b302;
                text-decoration: underline;
            }

/* Contact Info */
.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    color: #000;
}

.footer-contact i {
    color: #77b302;
    margin-right: 8px;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

    .social-icons a {
        color: #fff;
        background: #016701;
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 14px;
        margin-right: 8px;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background: #f85454;
            transform: scale(1.1);
        }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 45px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    color: #555;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 15px;
    }

    .footer-logo p,
    .footer-contact p {
        max-width: none;
    }

    .social-icons {
        justify-content: center;
    }
}
/* 📱 Mobile View - Center align logo and text */
@media (max-width: 768px) {
    .footer-logo {
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 15px auto;
    }

    .footer-logo p {
        max-width: none;
        text-align: center;
    }
}
/* ================= Modern Social Links ================= */
.social-links-modern {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 14px;
    margin-top: 15px;
}

    /* Icon Button Base */
    .social-links-modern .icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #016701;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f5f9f2;
        font-size: 18px;
        transition: all 0.35s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(1, 103, 1, 0.2);
    }

        /* Subtle Glow (on hover) */
        .social-links-modern .icon::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 60%);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s ease;
        }

        /* Hover Animations */
        .social-links-modern .icon:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .social-links-modern .icon:hover {
            transform: translateY(-4px) scale(1.05);
            color: #fff;
            box-shadow: 0 8px 15px rgba(1, 103, 1, 0.25);
        }

    /* Brand Color Backgrounds */
    .social-links-modern .fb:hover {
        background: #1877f2; /* Facebook Blue */
    }

    .social-links-modern .ig:hover {
        background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    }

    .social-links-modern .yt:hover {
        background: #ff0000; /* YouTube Red */
    }

    /* Smooth Icon Color */
    .social-links-modern .icon i {
        position: relative;
        z-index: 2;
        transition: color 0.3s ease;
        margin-right: 0;
    }

    .social-links-modern .icon:hover i {
        color: #fff;
    }

/* Responsive Centering */
@media (max-width: 768px) {
    .social-links-modern {
        justify-content: center;
    }
}

.know-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffcc00;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .know-more:hover {
        color: #fff;
        transform: translateX(3px);
    }

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

    .social-icons a:hover {
        color: #ffcc00;
    }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #016701;
    margin-top: 30px;
    font-size: 14px;
    color: #016701;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 25px;
    }
}

.midtext {
    font-weight: 500 !important;
}

.but:hover {
    border: 1px solid black !important;
    color: black;
}


/* ======= Adjusted Slider Styles ======= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh; /* Reduced height (was 100vh) */
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
}

    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Arrows on both ends */
    align-items: center;
    transform: translateY(-50%);
    z-index: 5;
    padding: 0 20px;
}

    .slider-nav span {
        cursor: pointer;
        color: #fff;
        font-size: 2.5rem;
        font-weight: bold;
        transition: 0.3s;
        user-select: none;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .slider-nav span:hover {
            background: #73b303;
            color: #000;
        }

/* ======= Responsive Fix for Mobile View ======= */

/* Tablet View */
@media (max-width: 992px) {
    .hero-slider {
        height: 44vh; /* Let image define height */
    }

    .slide img {
        width: 100%;
        height: auto; /* Show full image */
        object-fit: contain; /* Prevent cropping */
    }

    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        width: 90%;
        padding: 0 15px;
        z-index: 3;
    }

        .hero-text h1 {
            font-size: 1.8rem;
        }

        .hero-text p {
            font-size: 1rem;
        }

    .slider-nav span {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 250px; /* Match original image height */
        position: relative;
        overflow: hidden;
    }

    .slide {
        position: relative;
    }

        .slide img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

    .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 2;
    }

    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        width: 90%;
        z-index: 3;
    }

        .hero-text h1 {
            font-size: 1.5rem;
            line-height: 1.3;
        }

        .hero-text p {
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

    .btnn {
        font-size: 0.9rem;
        padding: 8px 18px;
    }

    .slider-nav {
        top: 50%;
        transform: translateY(-50%);
        padding: 0 10px;
    }

        .slider-nav span {
            font-size: 1.8rem;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
        }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .hero-slider {
        min-height: 200px; /* Maintain visibility */
    }

    .hero-text h1 {
        font-size: 1.3rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .btnn {
        padding: 7px 15px;
        font-size: 0.85rem;
    }

    .slider-nav span {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
    }
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
        z-index: 2;
    }

/* Overlay for slider or hero sections */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    opacity: 0.8;
    z-index: 1;
    transition: opacity 0.5s ease;
    border-radius: 0; /* keep full width; optional: adjust for rounded banners */
}


/* General Section Titles */
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #016701;
}

    .section-title .accent {
        color: #77b302;
    }

.midtext {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
}

/* Founder Section */
.founder-message .lead {
    color: #016701;
    font-weight: 500;
    font-style: italic;
}

.founder-img img {
    border-radius: 20px;
    transition: transform 0.4s ease;
}

    .founder-img img:hover {
        transform: scale(1.03);
    }

.founder-signature {
    border-left: 4px solid #f85454;
    padding-left: 15px;
}

    .founder-signature h4 {
        color: #77b302;
        font-weight: 600;
    }

/* About Section */
.about-hvc {
    background: #f9fcf7;
}

.abt-icon {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    width: 120px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .abt-icon:hover {
        background: #016701;
        color: #fff;
        transform: translateY(-6px);
    }

    .abt-icon i {
        font-size: 28px;
        color: #016701;
        margin-bottom: 8px;
    }

    .abt-icon h5 {
        color: #000;
        font-weight: 600;
    }

/* Vision & Mission */
.vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
}

    .vm-card:hover {
        transform: translateY(-6px);
    }

.vm-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
}

.vision .vm-icon {
    background: linear-gradient(135deg, #016701, #77b302);
}

.mission .vm-icon {
    background: linear-gradient(135deg, #f85454, #ff8f8f);
}

/* Impact */
.impact-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .impact-card .number {
        font-size: 2.2rem;
        color: #016701;
        font-weight: 700;
    }

    .impact-card p {
        color: #000;
        font-weight: 500;
    }

/* Donate Section */
.donate-section {
    background: linear-gradient(rgba(1,103,1,0.9), rgba(1,103,1,0.9)), url('../HTML/assets/img/helping-hands.jpg') no-repeat center/cover;
    color: #fff;
}

.btnn {
    background: #77b302;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: 600;
}

    .btnn:hover {
        background: #0066005e;
    }

/* Responsive */
@media (max-width:768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .abt-icon {
        width: 100px;
        padding: 15px;
    }

    .impact-card {
        width: 150px;
    }
}


/* ===== About Section Base ===== */
.about-hvc-section {
    position: relative;
    background: linear-gradient(180deg, #f9fcf7 0%, #eaf6e0 100%);
    padding: 120px 0;
    color: #000;
    overflow: hidden;
    z-index: 1;
}

/* ===== Soft Blurred Background Shapes ===== */
.about-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

    /* Blob 1 (light green) */
    .shape.blob1 {
        width: 420px;
        height: 420px;
        background: #77b302;
        top: -120px;
        left: -120px;
        animation-delay: 0s;
    }

    /* Blob 2 (dark green) */
    .shape.blob2 {
        width: 520px;
        height: 520px;
        background: #016701;
        bottom: -180px;
        right: -180px;
        animation-delay: 8s;
    }

/* More noticeable soft floating & rotation movement */
@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(60px, -40px) scale(1.08) rotate(5deg);
        opacity: 0.38;
    }

    50% {
        transform: translate(-50px, 50px) scale(0.92) rotate(-8deg);
        opacity: 0.28;
    }

    75% {
        transform: translate(70px, 20px) scale(1.1) rotate(3deg);
        opacity: 0.36;
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.33;
    }
}


/* ===== Section Title ===== */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #016701;
    position: relative;
    z-index: 2;
}

    .section-title span {
        color: #77b302;
    }

/* ===== About Text ===== */
.about-text {
    font-size: 17px;
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto;
    color: #333;
    position: relative;
    z-index: 2;
}

/* ===== Icon Cards ===== */
.floating-icons1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.icon-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 20px;
    width: 170px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #77b302;
    transition: all 0.3s ease;
}

    .icon-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(1, 103, 1, 0.25);
        border-top-color: #016701;
    }

    .icon-card i {
        font-size: 32px;
        color: #f85454;
        margin-bottom: 10px;
    }

    .icon-card h6 {
        font-size: 15px;
        font-weight: 600;
        color: #016701;
    }

/* ===== Button ===== */
.btn-main {
    display: inline-block;
    background: #77b302;
    color: #fff !important;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(119, 179, 2, 0.4);
    position: relative;
    z-index: 2;
}

    .btn-main:hover {
        background: #016701;
        transform: translateY(-3px);
    }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }

    .icon-card {
        width: 140px;
        padding: 20px 10px;
    }

    .about-hvc-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .about-hvc-section {
        padding: 60px 0;
    }
}


/* ================= Unique Vision & Mission Layout ================= */
.purpose-zone {
    position: relative;
    background: linear-gradient(180deg, #f9fcf7 0%, #eef8e9 100%);
    padding: 120px 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.purpose-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Vision & Mission Blocks */
.purpose-block {
    background: #fff;
    padding: 40px 25px;
    border-radius: 16px;
    width: 45%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

    .purpose-block:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(1, 103, 1, 0.25);
    }

/* Icons */
.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

    .icon-wrap.green {
        background: linear-gradient(135deg, #016701, #77b302);
    }

    .icon-wrap.red {
        background: linear-gradient(135deg, #f85454, #c22c2c);
    }

/* Titles & Text */
.purpose-block h3 {
    color: #016701;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.purpose-block p {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 350px;
}

/* Center Connector */
.purpose-connector {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.pulse-circle {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #77b302 0%, #016701 70%);
    border-radius: 50%;
    animation: pulseEffect 3s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(1, 103, 1, 0.4);
}

.connector-text {
    margin-top: 15px;
    color: #016701;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Pulse animation */
@keyframes pulseEffect {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= Animated Geometric Shapes ================= */

/* Common Styles for All Shapes */
.floating-shape {
    position: absolute;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

/* Circles */
.shape-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #016701 20%, #77b302 80%);
    top: 15%;
    left: 10%;
    animation: floatCircle 10s ease-in-out infinite alternate;
}

.shape-circle2 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #f85454 20%, #c22c2c 80%);
    bottom: 20%;
    right: 8%;
    animation: floatCircle 14s ease-in-out infinite alternate-reverse;
}

/* Triangles */
.shape-triangle {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid #77b302;
    top: 65%;
    left: 5%;
    transform: rotate(20deg);
    animation: floatTriangle 16s ease-in-out infinite alternate;
}

.shape-triangle2 {
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 75px solid #016701;
    top: 25%;
    right: 15%;
    transform: rotate(-30deg);
    animation: floatTriangle 18s ease-in-out infinite alternate-reverse;
}

/* Dots */
.shape-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f85454;
    top: 80%;
    left: 45%;
    animation: floatDot 8s ease-in-out infinite alternate;
}

.shape-dot2 {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #016701;
    top: 30%;
    left: 55%;
    animation: floatDot 12s ease-in-out infinite alternate-reverse;
}

/* Shape Animations */
@keyframes floatCircle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }

    50% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.35;
    }

    100% {
        transform: translate(-20px, 40px) scale(1);
        opacity: 0.25;
    }
}

@keyframes floatTriangle {
    0% {
        transform: translate(0, 0) rotate(15deg) scale(1);
    }

    50% {
        transform: translate(30px, -40px) rotate(25deg) scale(1.1);
    }

    100% {
        transform: translate(-30px, 40px) rotate(15deg) scale(1);
    }
}

@keyframes floatDot {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-25px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .purpose-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .purpose-block {
        width: 100%;
    }

    .pulse-circle {
        width: 80px;
        height: 80px;
    }
}

/* ================= Our Impact & Initiatives ================= */
.impact-zone {
    position: relative;
    background: #fff;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

.impact-heading {
    font-size: 2.5rem;
    color: #016701;
    font-weight: 700;
    margin-bottom: 15px;
}

    .impact-heading span {
        color: #77b302;
    }

.impact-subtext {
    max-width: 750px;
    margin: 0 auto 60px;
    color: #000;
    font-size: 1rem;
    line-height: 1.8;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
    z-index: 2;
    position: relative;
}

/* Impact Cards */
.impact-item {
    background: #fff;
    border-radius: 18px;
    padding: 40px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 220px;
    transition: all 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

    .impact-item::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        padding: 2px;
        background: linear-gradient(135deg, #77b302, #016701, #f85454);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .impact-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(1, 103, 1, 0.25);
    }

/* Numbers & Text */
.impact-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #016701;
    margin-bottom: 10px;
}

.impact-item h5 {
    color: #000;
    font-size: 1rem;
    font-weight: 500;
}

/* Button */
.impact-btn {
    background: linear-gradient(135deg, #016701, #77b302);
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

    .impact-btn:hover {
        background: #f85454;
        box-shadow: 0 0 15px rgba(248, 84, 84, 0.4);
    }

/* Floating Gradient Waves */
.wave {
    position: absolute;
    width: 150%;
    height: 300px;
    left: -25%;
    opacity: 0.2;
    filter: blur(120px);
    z-index: 0;
}

.wave1 {
    bottom: -120px;
    background: radial-gradient(circle at 20% 20%, #016701, transparent 60%);
    animation: waveMove 18s ease-in-out infinite alternate;
}


/* Animation for floating waves */
@keyframes waveMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.05);
    }

    100% {
        transform: translate(-40px, 40px) scale(1);
    }
}

/* Fade Up Animation on Scroll */
[data-animate] {
    transition: all 0.8s ease;
}

    [data-animate].visible {
        transform: translateY(0);
        opacity: 1;
    }

/* Responsive */
@media (max-width: 768px) {
    .impact-item {
        width: 90%;
    }
}

/* ================= Get Involved / Donate Section ================= */
.involve-zone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    overflow: hidden;
    min-height: 450px;
}

.involve-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Background Overlay */
.involve-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(1,103,1,0.8), rgba(119,179,2,0.7), rgba(248,84,84,0.6));
    mix-blend-mode: overlay;
    z-index: 1;
    animation: bgFlow 15s ease-in-out infinite alternate;
}

/* Left Image */
.involve-image {
    flex: 1;
    background: url('../img/i2.png') no-repeat center/cover;
    min-height: 450px;
    border-radius: 0;
    position: relative;
    z-index: 2;
}

/* Right Content */
.involve-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: #fff;
}

    .involve-content h2 {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
    }

        .involve-content h2 span {
            color: #77b302;
        }

    .involve-content p {
        font-size: 1rem;
        color: #eee;
        line-height: 1.8;
        margin-bottom: 35px;
    }

/* Buttons */
.involve-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.involve-btn {
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

    .involve-btn.donate {
        background: linear-gradient(135deg, #016701, #77b302);
    }

    .involve-btn.volunteer {
        background: linear-gradient(135deg, #f85454, #c03030);
    }

    .involve-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255,255,255,0.4);
    }

/* Floating Light Animations */
.floating-light {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

.light1 {
    background: #77b302;
    top: -100px;
    left: 10%;
    animation: floatLight 18s ease-in-out infinite alternate;
}

.light2 {
    background: #f85454;
    bottom: -120px;
    right: 10%;
    animation: floatLight 22s ease-in-out infinite alternate;
}

/* Animations */
@keyframes bgFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes floatLight {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -30px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 40px) scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .involve-container {
        flex-direction: column;
    }

    .involve-image {
        height: 300px;
    }

    .involve-content {
        text-align: center;
        padding: 50px 25px;
    }

    .involve-buttons {
        justify-content: center;
    }
}


/* ================= CONTACT PAGE BANNER ================= */
.contact-banner {
    position: relative;
    width: 100%;
    height: 55vh;
    background: url("../img/c1.png") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

/* Overlay for better text contrast */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content container */
.contact-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Title */
.banner-title {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 10px;
}

/* Subtext */
.banner-subtext {
    font-size: 1.1rem;
    margin-top: 8px;
    color: #e8f3d2;
    font-weight: 400;
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 5px;
}

.breadcrumb-item a {
    color: #77b302;
    transition: color 0.3s ease;
}

    .breadcrumb-item a:hover {
        color: #f85454;
    }

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgb(165, 172, 151) !important;
}
/* Responsive */
@media (max-width: 768px) {
    .contact-banner {
        height: 40vh;
        background-position: center;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtext {
        font-size: 1rem;
    }
}


/* ================= CONTACT SECTION ================= */
.hvc-contact-section {
    position: relative;
    background: url("../Html/assets/img/contact-bg.jpg") no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgb(247, 249, 246);
    z-index: 1;
}

.hvc-contact-section .container {
    position: relative;
    z-index: 2;
}

/* Section Heading */
.hvc-contact-section h2 {
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(1, 103, 1, 0.8);
    border-radius: 12px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
    }

    .contact-info-card h4 {
        font-weight: 600;
        margin-bottom: 10px;
        color: #fff;
    }

    .contact-info-card p i {
        color: #77b302;
        margin-right: 8px;
    }

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #77b302;
        color: #fff;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: #f85454;
            color: #fff;
            transform: scale(1.1);
        }

/* Background Image Styling */
.form-bg {
    position: relative;
    background: url("../img/c2.png") no-repeat center center/cover;
    border-radius: 12px;
    padding: 35px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}



    /* Ensure the form content stays above overlay */
    .form-bg form {
        position: relative;
        z-index: 2;
    }

    /* Labels and input styling */
    .form-bg .form-label {
        color: #e8f3d2;
        font-weight: 500;
    }

    .form-bg .form-control {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff !important;
        border-radius: 8px;
        padding: 10px;
        transition: 0.3s;
    }

        .form-bg .form-control::placeholder {
            color: #ccc;
        }

        .form-bg .form-control:focus {
            border-color: #77b302;
            background: rgba(0,0,0,0.5);
            box-shadow: 0 0 5px rgba(119,179,2,0.5);
        }

/* Submit Button */
.btn-submit {
    background: #77b302;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background: #016701;
        transform: translateY(-2px);
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-bg {
        padding: 25px;
        background-position: center;
    }
}


/* Submit Button */
.btn-submit {
    background: #77b302;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background: #016701;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 768px) {
    .hvc-contact-section {
        padding: 60px 0;
        background-position: center;
    }

    .contact-info-card, .contact-form-card {
        padding: 25px;
    }

    .hvc-contact-section h2 {
        font-size: 2rem;
    }
}
/* ==================== Modern Contact Info ==================== */
.contact-info-modern {
    background: rgba(26, 77, 11, 0.52);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 40px 30px;
    color: #fff;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

    .contact-info-modern:hover {
        transform: translateY(-5px);
    }

/* Header Section */
.contact-head {
    text-align: center;
    margin-bottom: 25px;
}

.contact-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #77b302;
    background: #fff;
}

.contact-head h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e8f3d2;
    margin-bottom: 5px;
}

.contact-head .tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: #d1e7b0;
}

/* Body */
.contact-body {
    text-align: left;
}

    .contact-body p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 14px;
        display: flex;
        align-items: flex-start;
        color: #f0f0f0;
    }

    .contact-body i {
        color: #bee17d;
        margin-right: 12px;
        font-size: 1.1rem;
        margin-top: 5px;
    }

/* Social Icons */
.contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

    .contact-social a {
        background: #77b302;
        color: #fff;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

        .contact-social a:hover {
            background: #f85454;
            color: #fff;
            transform: scale(1.1);
        }

/* Decorative Shapes */
.contact-info-modern::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: rgba(1,103,1,0.2);
    border-radius: 50%;
    z-index: 1;
    animation: floatBlobA 12s ease-in-out infinite alternate;
}

.contact-info-modern::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(119,179,2,0.2);
    border-radius: 50%;
    z-index: 1;
    animation: floatBlobB 14s ease-in-out infinite alternate;
}

/* Blob Animations */
@keyframes floatBlobA {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 20px) scale(1.1);
    }

    100% {
        transform: translate(-20px, -10px) scale(1);
    }
}

@keyframes floatBlobB {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -25px) scale(1.1);
    }

    100% {
        transform: translate(20px, 10px) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-modern {
        text-align: center;
        padding: 30px 20px;
    }

    .contact-body p {
        align-items: flex-start;
    }

    .contact-body i {
        margin-top: 5px;
    }
}


/* =================== About Page Banner =================== */
.about-banner {
    position: relative;
    background: url("../img/a7.png") no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

    /* Overlay for better text visibility */
    .about-banner .banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(1, 103, 1, 0.51));
        z-index: 1;
    }

    /* Content positioning */
    .about-banner .container {
        position: relative;
        z-index: 2;
        max-width: 850px;
    }

    /* Breadcrumb styling */
    .about-banner .breadcrumb {
        background: transparent;
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

        .about-banner .breadcrumb a {
            color: #e8f3d2;
            transition: 0.3s;
        }

            .about-banner .breadcrumb a:hover {
                color: #77b302;
            }

    /* Title and subtext */
    .about-banner .banner-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
        margin-bottom: 15px;
    }

    .about-banner .banner-subtext {
        font-size: 1.1rem;
        color: #f1f1f1;
        max-width: 750px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Floating gradient shapes for subtle motion */
    .about-banner::before,
    .about-banner::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.3;
        animation: floatBlob 16s ease-in-out infinite alternate;
    }

    .about-banner::before {
        width: 400px;
        height: 400px;
        background: #77b302;
        top: -100px;
        left: -100px;
        animation-delay: 0s;
    }

    .about-banner::after {
        width: 450px;
        height: 450px;
        background: #016701;
        bottom: -150px;
        right: -150px;
        animation-delay: 6s;
    }

/* Animation Keyframes */
@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
        opacity: 0.35;
    }

    100% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.28;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-banner {
        height: auto;
        padding: 100px 20px;
    }

        .about-banner .banner-title {
            font-size: 1.9rem;
        }

        .about-banner .banner-subtext {
            font-size: 1rem;
        }
}


.our-story-section {
    position: relative;
    background: #f9fff4;
    overflow: hidden;
}

.story-img img {
    border-radius: 16px;
}

.story-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(80px);
    animation: floatBlob 12s ease-in-out infinite alternate;
}

    .story-shape.shape1 {
        width: 200px;
        height: 200px;
        background: #77b302;
        top: -30px;
        left: -50px;
    }

    .story-shape.shape2 {
        width: 250px;
        height: 250px;
        background: #016701;
        bottom: -60px;
        right: -40px;
    }

/* ================= Redesigned Founder Inspiration Section ================= */
.founder-inspire-alt {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: #000;
    padding: 100px 20px;
}

/* Background image (replace with your theme image) */
.founder-bg {
    position: absolute;
    inset: 0;
    background: url('../img/a4.png') no-repeat center/cover;
    filter: brightness(0.6);
    z-index: 1;
}

/* Gradient overlay */
.founder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.61), rgba(119,179,2,0.6));
    z-index: 2;
}

/* Content */
.founder-inspire-alt .container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

/* Title */
.founder-inspire-alt .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

    .founder-inspire-alt .section-title span {
        color: #ffea80;
    }

/* Quote Text */
.founder-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    font-weight: 400;
    color: #fdfdfd;
    margin-top: 15px;
    position: relative;
}

    .founder-quote::before,
    .founder-quote::after {
        content: "❝";
        font-size: 3rem;
        color: #ffea80;
        position: absolute;
        opacity: 0.3;
    }

    .founder-quote::before {
        top: -20px;
        left: -10px;
    }

    .founder-quote::after {
        content: "❞";
        bottom: -25px;
        right: -10px;
    }

/* Founder Info */
.founder-details h4 {
    font-weight: 600;
    color: #ffea80;
    margin-top: 20px;
    font-size: 1.3rem;
}

.founder-details p {
    color: #e6e6e6;
    font-size: 1rem;
}

/* Floating light effect */
.founder-inspire-alt::before,
.founder-inspire-alt::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    animation: floatLight 12s ease-in-out infinite alternate;
}

.founder-inspire-alt::before {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -80px;
}

.founder-inspire-alt::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -80px;
}

@keyframes floatLight {
    0% {
        transform: translate(0,0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(20px, -10px) scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-10px, 15px) scale(1);
        opacity: 0.4;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .founder-inspire-alt {
        padding: 70px 20px;
    }

    .founder-quote {
        font-size: 1.05rem;
    }

    .founder-inspire-alt .section-title {
        font-size: 1.8rem;
    }
}

.core-values {
    background: #f7fff2;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .value-card i {
        font-size: 2rem;
        color: #016701;
        margin-bottom: 15px;
    }

    .value-card h5 {
        font-size: 1rem;
        color: #000;
        font-weight: 600;
    }

    .value-card:hover {
        background: #77b302;
        color: #fff;
        transform: translateY(-8px);
    }

        .value-card:hover i {
            color: #fff;
        }
/* ================= Flow Layout - Our Core Values ================= */
.core-values-flow {
    background: linear-gradient(180deg, #fafff2 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.2rem;
    color: #016701;
    font-weight: 700;
}

    .section-title span {
        color: #77b302;
    }

.section-subtext {
    color: #444;
    max-width: 700px;
    margin: 0 auto 60px auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===== Flow Layout ===== */
.values-flow-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Center Connecting Line */
.flow-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #77b302, #016701);
    opacity: 0.2;
    z-index: 0;
}

/* ===== Each Value Capsule ===== */
.flow-item {
    position: relative;
    width: 200px;
    background: #fff;
    border-radius: 14px;
    padding: 70px 20px 25px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    z-index: 1;
    transition: all 0.4s ease;
}

    .flow-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(1, 103, 1, 0.25);
    }

/* ===== Animated Icon (floating + glow) ===== */
.flow-icon {
    position: absolute;
    top: -35px;
    left: 35%;
    transform: translateX(-50%);
    background: #fff;
    border: 3px solid #77b302;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #016701;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(119, 179, 2, 0.4);
    animation: floatIcon 4s ease-in-out infinite alternate;
}

.flow-item:hover .flow-icon {
    background: linear-gradient(145deg, #016701, #77b302);
    color: #fff;
    transform: translateX(-50%) scale(1.1);
    transition: 0.4s ease;
}

/* ===== Text ===== */
.flow-item h4 {
    font-size: 1.15rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.flow-item p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

/* ===== Icon Animation ===== */
@keyframes floatIcon {
    0% {
        transform: translate(-50%, 0);
        box-shadow: 0 0 15px rgba(119, 179, 2, 0.4);
    }

    100% {
        transform: translate(-50%, -8px);
        box-shadow: 0 0 25px rgba(119, 179, 2, 0.6);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .values-flow-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .flow-line {
        width: 3px;
        height: 100%;
        top: 0;
        left: 50%;
        background: linear-gradient(180deg, #77b302, #016701);
    }

    .flow-item {
        width: 80%;
        max-width: 320px;
    }

    .flow-icon {
        top: -40px;
    }
}


/* ================= Unified Breadcrumb Banner ================= */
.work-banner {
    position: relative;
    height: 200px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.work-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 32, 9, 0.66), rgba(41, 55, 13, 0.55));
    z-index: 1;
}

/* Text Content */
.work-banner .container {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.work-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.work-banner .breadcrumb-item a {
    color: #fff;
    transition: color 0.3s;
}

    .work-banner .breadcrumb-item a:hover {
        color: #ffea80;
    }

.banner-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-subtext {
    font-size: 1.05rem;
    color: #f3f3f3;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Floating glow animation */
.work-banner::before,
.work-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    filter: blur(50px);
    z-index: 0;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.work-banner::before {
    width: 250px;
    height: 250px;
    top: -60px;
    left: -80px;
}

.work-banner::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -70px;
}

@keyframes floatGlow {
    0% {
        transform: translate(0,0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-15px, 10px) scale(1);
        opacity: 0.4;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .work-banner {
        height: 280px;
        text-align: center;
        background-position: center;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtext {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

.objectives-hexa {
    background: #f6ffed;
    overflow: hidden;
}

.hexa-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.hexa-card {
    width: 200px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #016701, #77b302);
    color: #fff;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    animation: fadeUp 1s ease var(--delay) both;
    transition: transform 0.4s, box-shadow 0.4s;
}

    .hexa-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hexa-card:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.programs-motion {
    overflow: hidden;
}

.program {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    background: #f8fff3;
    transition: all 0.5s ease;
}

.prog-text {
    flex: 1;
    padding: 50px;
    z-index: 2;
    animation: slideIn 1s ease both;
}

.prog-img {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    animation: fadeIn 1.5s ease both;
}

.reverse {
    flex-direction: row-reverse;
}

.program:nth-child(even) .prog-text {
    background: #016701;
    color: #fff;
    border-radius: 0 50px 50px 0;
}

.program:nth-child(odd) .prog-text {
    background: #77b302;
    color: #fff;
    border-radius: 50px 0 0 50px;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== TABLET VIEW (769px – 1024px) ==================== */
@media (max-width: 1024px) and (min-width: 769px) {

    .program {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .prog-text {
        padding: 40px 50px;
        text-align: center;
        max-width: 90%;
        z-index: 2;
        position: relative;
    }

    .prog-img {
        width: 100%;
        height: 350px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        display: block;
        border-radius: 0;
        z-index: 1;
    }

    .program:nth-child(even) .prog-text,
    .program:nth-child(odd) .prog-text {
        border-radius: 25px;
    }
}

/* ==================== MOBILE VIEW (≤768px) ==================== */
@media (max-width: 768px) {

    .program {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 0;
        overflow: hidden;
    }

    /* Ensure image always visible */
    .prog-img {
        order: 1;
        width: 100%;
        height: 260px;
        min-height: 260px;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat;
        display: block;
        z-index: 1;
    }

    .prog-text {
        order: 2;
        width: 100%;
        padding: 30px 20px;
        z-index: 2;
        background: rgba(119,179,2, 0.95);
        color: #fff;
        text-align: center;
        border-radius: 0;
    }

        .prog-text h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .prog-text p {
            font-size: 0.95rem;
            line-height: 1.5;
        }

    /* Add spacing between stacked sections */
    .program + .program {
        margin-top: 15px;
    }

    /* Ensure animations still visible */
    .prog-img,
    .prog-text {
        animation: fadeIn 1s ease both;
    }
}

/* ==================== TABLET VIEW (769px – 1024px) ==================== */
@media (max-width: 1024px) and (min-width: 769px) {

    .program {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: auto;
        padding: 40px 0;
        position: relative;
        overflow: visible; /* ✅ allow image to display properly */
    }

    .prog-img {
        width: 100%;
        height: 380px; /* ✅ set visible fixed height */
        min-height: 380px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        display: block;
        z-index: 1;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
    }

    .prog-text {
        padding: 40px 50px;
        text-align: center;
        width: 100%;
        z-index: 2;
        position: relative;
    }

        .prog-text h3 {
            font-size: 1.8rem;
            margin-bottom: 12px;
        }

        .prog-text p {
            font-size: 1rem;
            line-height: 1.6;
        }

    /* Keep section contrast neat */
    .program:nth-child(even) .prog-text,
    .program:nth-child(odd) .prog-text {
        border-radius: 25px;
    }

    /* Ensure all background images load correctly on tablet */
    .prog-img[style*="background-image"] {
        background-attachment: scroll !important;
        background-blend-mode: normal;
    }
}

.projects-tiles {
    background: #f6fff1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.tile {
    background: var(--clr);
    color: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: fadeTile 1.2s ease both;
}

    .tile i {
        font-size: 2rem;
        margin-bottom: 15px;
        animation: pulse 3s infinite ease-in-out;
    }

    .tile:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .tile h5 {
        font-weight: 600;
        margin-bottom: 8px;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes fadeTile {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ================= FOCUS BANNER STYLE ================= */
/* ================= FOCUS BANNER WITH WAVE AT BOTTOM ================= */
.focus-banner {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    z-index: 3;
}

    .wave-bottom svg {
        display: block;
        width: 100%;
        height: 100px;
    }



/* Overlay Gradient */
.focus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(100, 147, 109), rgba(0,0,0,0.7));
    mix-blend-mode: multiply;
}

/* Floating Icons Container */
.floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

    /* Base Icon Styling */
    .floating-icons i {
        position: absolute;
        color: rgba(232, 243, 210, 0.52);
        font-size: 2.8rem;
        animation: floatIcon 12s ease-in-out infinite;
        transition: all 0.5s ease;
    }

        /* Icon Positions (random placement for dynamic effect) */
        .floating-icons i:nth-child(1) {
            top: 25%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-icons i:nth-child(2) {
            top: 50%;
            right: 15%;
            animation-delay: 3s;
        }

        .floating-icons i:nth-child(3) {
            bottom: 20%;
            left: 35%;
            animation-delay: 6s;
        }

/* Floating Animation */
@keyframes floatIcon {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-20px) rotate(10deg) scale(1.05);
        opacity: 0.45;
    }

    50% {
        transform: translateY(10px) rotate(-10deg) scale(0.95);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-15px) rotate(8deg) scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
}

/* Optional glow pulse for a gentle light shimmer */
.floating-icons i::after {
    content: "";
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-icons i {
        font-size: 1.8rem;
        opacity: 0.15;
    }

        .floating-icons i:nth-child(1) {
            left: 5%;
        }

        .floating-icons i:nth-child(2) {
            right: 5%;
        }

        .floating-icons i:nth-child(3) {
            left: 20%;
        }
}


/* Banner Text Content */
.focus-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    animation: fadeInUp 1.2s ease both;
}

.focus-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.focus-subtext {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #e6ffe6;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb */
.breadcrumb-nav {
    z-index: 3;
    position: relative;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* Decorative Bottom Wave */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .wave-divider svg {
        display: block;
        width: 100%;
        height: 100px;
    }


/* ========== Women Empowerment Section 1 ========== */
.we-overview {
    position: relative;
    padding: 60px 0;
    background: #f9fff2;
    overflow: hidden;
}

.we-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.we-intro {
    flex: 1 1 320px;
}

    .we-intro h2 {
        font-size: 2.2rem;
        color: #000;
        margin-bottom: 10px;
    }

        .we-intro h2 span {
            color: #016701;
        }

.we-tagline {
    font-weight: 500;
    color: #016701;
    margin-bottom: 10px;
}

.we-intro p {
    line-height: 1.7;
    color: #333;
}

/* Steps */
.we-steps {
    flex: 1 1 320px;
    border-left: 3px solid #77b302;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.we-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    animation: weSlideUp 0.9s ease forwards;
    opacity: 0;
}

    .we-step:nth-child(1) {
        animation-delay: 0.1s;
    }

    .we-step:nth-child(2) {
        animation-delay: 0.25s;
    }

    .we-step:nth-child(3) {
        animation-delay: 0.4s;
    }

    .we-step:nth-child(4) {
        animation-delay: 0.55s;
    }

.we-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #016701;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.we-step h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #000;
}

.we-step p {
    margin: 0;
    font-size: 0.92rem;
    color: #444;
}

/* Floating badges */
.we-badge {
    position: absolute;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: #f85454;
    opacity: 0.7;
    animation: weFloat 10s ease-in-out infinite alternate;
}

.we-badge-1 {
    top: 15%;
    right: 8%;
}

.we-badge-2 {
    bottom: 10%;
    left: 10%;
    background: #016701;
}

/* Animations */
@keyframes weSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes weFloat {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }

    100% {
        transform: translateY(5px) translateX(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .we-layout {
        flex-direction: column;
    }

    .we-steps {
        border-left: none;
        border-top: 3px solid #77b302;
        padding-left: 0;
        padding-top: 20px;
    }
}
/* ========== Women Empowerment Section 2 ========== */
.we-journey {
    padding: 50px 0 60px;
    background: #ffffff;
}

.we-journey-title {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 30px;
    color: #000;
}

.we-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 25px;
    position: relative;
}

    .we-timeline::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: linear-gradient(90deg,#77b302,#016701);
        z-index: 0;
    }

.we-node {
    position: relative;
    padding-top: 35px;
    text-align: center;
    animation: nodePop 0.8s ease forwards;
    opacity: 0;
}

    .we-node:nth-child(1) {
        animation-delay: 0.1s;
    }

    .we-node:nth-child(2) {
        animation-delay: 0.25s;
    }

    .we-node:nth-child(3) {
        animation-delay: 0.4s;
    }

    .we-node .dot {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #f85454;
        box-shadow: 0 0 0 0 rgba(248,84,84,0.5);
        animation: pulseDot 1.6s infinite;
    }

    .we-node h5 {
        font-size: 1.05rem;
        margin-bottom: 8px;
        color: #016701;
    }

    .we-node p {
        font-size: 0.9rem;
        color: #444;
    }

/* Animations */
@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(248,84,84,0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(248,84,84,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(248,84,84,0);
    }
}

@keyframes nodePop {
    from {
        transform: translateY(15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .we-timeline {
        grid-template-columns: 1fr;
    }

        .we-timeline::before {
            display: none;
        }
}


/* ========== Education & Child Welfare Section 1 ========== */
.edu-child {
    padding: 60px 0;
    background: #f7fbff;
    position: relative;
    overflow: hidden;
}

.ec-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

    .ec-header h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: #000;
    }

        .ec-header h2 span {
            color: #016701;
        }

    .ec-header p {
        color: #444;
    }

/* Cards in a diamond-ish grid */
.ec-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
    position: relative;
}

.ec-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .ec-card:nth-child(2),
    .ec-card:nth-child(3) {
        transform: translateY(25px);
    }

    .ec-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .ec-card::before {
        content: "";
        position: absolute;
        width: 120%;
        height: 4px;
        left: -10%;
        top: 0;
        background: linear-gradient(90deg,#77b302,#016701);
        transform: translateX(-100%);
        animation: ecBar 5s linear infinite;
        opacity: 0.6;
    }

.ec-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    margin: 0 auto 10px;
    background: rgba(1,103,1,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #016701;
    font-size: 1.4rem;
    animation: ecPulse 3s ease-in-out infinite;
}

.ec-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #000;
}

.ec-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Animations */
@keyframes ecBar {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes ecPulse {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .ec-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 576px) {
    .ec-grid {
        grid-template-columns: 1fr;
    }

    .ec-card:nth-child(2),
    .ec-card:nth-child(3) {
        transform: translateY(0);
    }
}
/* ========== Education & Child Welfare Section 2 ========== */
.child-pillars {
    padding: 45px 0 55px;
    background: #ffffff;
}

.cp-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.cp-text {
    flex: 1 1 300px;
}

    .cp-text h3 {
        font-size: 1.6rem;
        margin-bottom: 10px;
        color: #000;
    }

    .cp-text p {
        color: #444;
    }

.cp-list {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f7fff1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transform: translateX(0);
    animation: cpSlide 0.8s ease forwards;
    opacity: 0;
}

    .cp-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .cp-item:nth-child(2) {
        animation-delay: 0.25s;
    }

    .cp-item:nth-child(3) {
        animation-delay: 0.4s;
    }

.cp-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #77b302;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 0 0 0 rgba(119,179,2,0.6);
    animation: cpPulseBadge 1.8s infinite;
}

.cp-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

/* Animations */
@keyframes cpSlide {
    from {
        transform: translateX(15px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes cpPulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(119,179,2,0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(119,179,2,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(119,179,2,0);
    }
}
/* Responsive */
@media (max-width: 768px) {
    .cp-layout {
        flex-direction: column;
    }
}
/* ================= Tablet View (769px–1024px) ================= */
@media (max-width: 1024px) and (min-width: 769px) {

    .cp-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .cp-text {
        text-align: left;
    }

        .cp-text h3 {
            font-size: 1.7rem;
        }

        .cp-text p {
            font-size: 1rem;
            max-width: 90%;
        }

    .cp-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .cp-item {
        padding: 14px 18px;
        gap: 16px;
        border-radius: 45px;
        align-items: center;
    }

    .cp-badge {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .cp-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ================= Mobile View (≤768px) ================= */
@media (max-width: 768px) {

    /* Stack layout vertically */
    .cp-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Center text block */
    .cp-text {
        text-align: center;
    }

        .cp-text h3 {
            font-size: 1.5rem;
        }

        .cp-text p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

    /* Adjust list container */
    .cp-list {
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    /* Make each pill larger & relaxed */
    .cp-item {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 14px 20px;
        border-radius: 40px;
    }

    /* Bigger check circle for visibility */
    .cp-badge {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    /* Readable text */
    .cp-item p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {

    /* Stack layout vertically */
    .cp-layout {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    /* Adjust list padding & spacing */
    .cp-list {
        width: 100%;
        align-items: stretch;
        gap: 18px;
    }

    /* Make each pill slightly taller and more relaxed */
    .cp-item {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 14px 18px;
        border-radius: 40px;
    }

    /* Enlarge badge for better visibility */
    .cp-badge {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    /* Adjust text size and spacing */
    .cp-item p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* ========== Health & Relief Section 1 ========== */
.health-relief {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: #000;
    color: #fff;
}

/* Background image strip */
.hr-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.8)), url('../Html/assets/img/health-bg.jpg') center/cover no-repeat;
    opacity: 0.85;
    z-index: 0;
}

.hr-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1.5fr);
    gap: 35px;
    align-items: center;
}

.hr-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

    .hr-text h2 span {
        color: #77b302;
    }

.hr-text p {
    color: #e8f3d2;
    max-width: 420px;
}

/* Cards */
.hr-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 15px;
}

.hr-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 16px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    transform: translateY(20px);
    opacity: 0;
    animation: hrRise 0.9s ease forwards;
}

    .hr-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hr-card:nth-child(2) {
        animation-delay: 0.3s;
    }

    .hr-card:nth-child(3) {
        animation-delay: 0.5s;
    }

    .hr-card h4 {
        font-size: 1.05rem;
        margin-bottom: 6px;
        color: #ffffff;
    }

    .hr-card p {
        font-size: 0.9rem;
        color: #f0f5e0;
    }

/* Animation */
@keyframes hrRise {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hr-layout {
        grid-template-columns: 1fr;
    }

    .hr-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hr-cards {
        grid-template-columns: 1fr;
    }
}

/* ========== Compassion in Motion Section ========== */
.compassion-motion {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f2fff2 100%);
    overflow: hidden;
}

/* Wave shape at bottom */
.cm-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: url('assets/img/wave-green.svg') no-repeat bottom center / cover;
    animation: waveMove 8s linear infinite;
}

/* Layout */
.cm-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.cm-image {
    position: relative;
    flex: 1 1 400px;
    text-align: center;
}

    .cm-image img {
        max-width: 90%;
        border-radius: 5px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

/* Floating animated icons */
.floating-icon {
    position: absolute;
    font-size: 1.8rem;
    color: #77b302;
    opacity: 0.85;
    animation: floatIcon 5s ease-in-out infinite;
}

.ic1 {
    top: 10%;
    left: 12%;
    animation-delay: 0s;
}

.ic2 {
    bottom: 15%;
    right: 18%;
    animation-delay: 1s;
}

.ic3 {
    top: 25%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Text Content */
.cm-text {
    flex: 1 1 450px;
}

    .cm-text h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

        .cm-text h2 span {
            color: #77b302;
        }

    .cm-text p {
        color: #333;
        line-height: 1.8;
        margin-bottom: 25px;
    }

.cm-points {
    list-style: none;
    padding: 0;
}

    .cm-points li {
        margin-bottom: 12px;
        color: #000;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
    }

        .cm-points li:nth-child(1) {
            animation-delay: 0.2s;
        }

        .cm-points li:nth-child(2) {
            animation-delay: 0.4s;
        }

        .cm-points li:nth-child(3) {
            animation-delay: 0.6s;
        }

        .cm-points li:nth-child(4) {
            animation-delay: 0.8s;
        }

    .cm-points i {
        color: #77b302;
        font-size: 1.1rem;
    }

/* Animations */
@keyframes waveMove {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .cm-layout {
        flex-direction: column-reverse;
        text-align: center;
    }

    .cm-text h2 {
        font-size: 1.8rem;
    }
}

/* 🌿 Full Section Floating Shapes */
.compassion-motion {
    position: relative;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    opacity: 0.25;
    z-index: 0; /* Keeps them behind text and image */
    filter: blur(0.5px) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
    animation: driftShape 18s ease-in-out infinite alternate;
}

/* 🌕 Circle Shape */
.shape-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, #9ee77a 0%, #76b302 90%);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

/* 🟩 Square Shape */
.shape-square {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a3f27d, #6faa07);
    bottom: 5%;
    right: -5%;
    animation-delay: 2s;
}

/* 🔺 Triangle Shape */
.shape-triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 130px solid #8ee75d;
    top: 65%;
    left: 15%;
    transform: rotate(20deg);
    animation-delay: 4s;
}

/* ⚪ Dot Shape */
.shape-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #baf89a;
    top: 30%;
    right: 35%;
    animation-delay: 6s;
}

/* 🟨 Rounded Rectangle */
.shape-rounded {
    width: 200px;
    height: 110px;
    border-radius: 40px;
    background: linear-gradient(135deg, #b7f38c, #6fb60d);
    bottom: 25%;
    left: 55%;
    animation-delay: 8s;
}

/* 🌊 Floating / Drifting Animation */
@keyframes driftShape {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.25;
    }

    25% {
        transform: translate(40px, -20px) rotate(8deg) scale(1.05);
        opacity: 0.35;
    }

    50% {
        transform: translate(-30px, 20px) rotate(-6deg) scale(0.95);
        opacity: 0.3;
    }

    75% {
        transform: translate(50px, 10px) rotate(10deg) scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-20px, -20px) rotate(0deg) scale(1);
        opacity: 0.25;
    }
}

/* 🌟 Subtle Glow Animation */
.float-shape::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    animation: softPulse 6s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* 🧩 Responsive Balance */
@media (max-width: 992px) {
    .shape-circle {
        width: 100px;
        height: 100px;
        top: 5%;
        left: -10%;
    }

    .shape-square {
        width: 120px;
        height: 120px;
        right: -10%;
        bottom: 5%;
    }

    .shape-triangle {
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-bottom: 80px solid #8ee75d;
        top: 70%;
        left: 5%;
    }

    .shape-rounded {
        width: 140px;
        height: 80px;
        bottom: 25%;
        left: 60%;
    }

    .shape-dot {
        width: 25px;
        height: 25px;
        right: 20%;
        top: 25%;
    }
}

/* ================= Reports & Compliance Ribbon Banner ================= */
.ribbon-banner {
    position: relative;
    background: linear-gradient(120deg, #016701 0%, #77b302 100%);
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
}

/* Textured Overlay Background */
.ribbon-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../Html/assets/img/texture-light.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

/* Layout */
.ribbon-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Left Section */
.ribbon-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.breadcrumb-line {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 85px; /* fixed height to prevent layout shift */
    overflow: hidden;
}

    .breadcrumb-line .dot {
        width: 14px;
        height: 14px;
        background: #fff;
        border-radius: 50%;
        margin-bottom: 6px;
        box-shadow: 0 0 8px rgba(255,255,255,0.6);
        z-index: 2;
    }

    .breadcrumb-line .line {
        position: absolute;
        top: 20px; /* keeps it below the dot */
        width: 3px;
        height: 60px; /* initial height */
        background: rgba(255,255,255,0.7);
        border-radius: 10px;
        animation: growLine 2s ease-in-out infinite alternate;
        z-index: 1;
    }

/* Animation keeps the stretching feel but doesn't affect container height */
@keyframes growLine {
    0% {
        height: 60px;
        opacity: 0.7;
    }

    100% {
        height: 85px;
        opacity: 1;
    }
}

.breadcrumb-text nav {
    margin: 0;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #e6ffe6;
}

.breadcrumb-sub {
    margin-top: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Right Section */
.ribbon-right {
    text-align: right;
    position: relative;
}

.ribbon-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.icon-strip {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

    .icon-strip i {
        font-size: 1.8rem;
        opacity: 0.8;
        transform: scale(1);
        transition: transform 0.4s ease, opacity 0.4s ease;
        animation: floatIcons 6s ease-in-out infinite;
    }

        .icon-strip i:nth-child(1) {
            animation-delay: 0s;
        }

        .icon-strip i:nth-child(2) {
            animation-delay: 1s;
        }

        .icon-strip i:nth-child(3) {
            animation-delay: 2s;
        }

        .icon-strip i:hover {
            transform: scale(1.2);
            opacity: 1;
            color: #fff;
        }

@keyframes floatIcons {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Decorative Bottom Wave */
.ribbon-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

    .ribbon-wave svg {
        width: 100%;
        height: 100px;
        display: block;
    }

/* ========== Responsive Styles ========== */

/* 🖥️ Medium Screens (Tablets / Small Laptops) */
@media (max-width: 1024px) {
    .ribbon-banner {
        padding: 70px 0 90px;
    }

    .ribbon-layout {
        gap: 25px;
    }

    .ribbon-title {
        font-size: 2.2rem;
    }

    .breadcrumb-sub {
        font-size: 0.85rem;
    }

    .icon-strip i {
        font-size: 1.6rem;
    }

    .breadcrumb-line .line {
        height: 60px;
    }
}

/* 📱 Tablets (Landscape / Portrait) */
@media (max-width: 900px) {
    .ribbon-layout {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .ribbon-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .breadcrumb-line {
        display: none; /* hide the vertical breadcrumb line for tablet and smaller */
    }

    .breadcrumb-text {
        margin-top: 10px;
    }

    .breadcrumb {
        justify-content: center;
        font-size: 0.9rem;
    }

    .ribbon-right {
        text-align: center;
    }

    .ribbon-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .icon-strip {
        justify-content: center;
        gap: 15px;
    }

        .icon-strip i {
            font-size: 1.5rem;
        }
}

/* 📱 Mobile Devices (Portrait) */
@media (max-width: 600px) {
    .ribbon-banner {
        padding: 60px 0 80px;
    }

    .ribbon-title {
        font-size: 1.7rem;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        font-size: 0.85rem;
    }

    .breadcrumb-item a {
        font-size: 0.85rem;
    }

    .breadcrumb-sub {
        font-size: 0.8rem;
    }

    .icon-strip {
        gap: 10px;
    }

        .icon-strip i {
            font-size: 1.3rem;
        }

    .ribbon-wave svg {
        height: 70px;
    }
}

/* 📱 Very Small Devices (under 400px width) */
@media (max-width: 400px) {
    .ribbon-title {
        font-size: 1.5rem;
    }

    .breadcrumb-sub {
        font-size: 0.75rem;
    }

    .ribbon-banner {
        padding: 50px 0 70px;
    }

    .icon-strip i {
        font-size: 1.2rem;
    }
}

/* ========== Compliance Credentials Section ========== */
.compliance-credentials {
    background: linear-gradient(180deg, #f7fff2 0%, #ffffff 100%);
    padding: 80px 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.credential-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

    .credential-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

    .credential-card i {
        font-size: 2.4rem;
        color: #77b302;
        margin-bottom: 15px;
    }

    .credential-card h4 {
        color: #000;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .credential-card p {
        color: #444;
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* ========== Reports Timeline ========== */
.reports-timeline {
    background: #f8fff3;
    padding: 90px 0;
    position: relative;
}

.timeline {
    position: relative;
    margin: auto;
    width: 80%;
    border-left: 3px solid #77b302;
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -75px;
    top: -5px;
    background: #77b302;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .timeline-content:hover {
        transform: translateY(-5px);
    }

    .timeline-content h5 {
        color: #016701;
        font-weight: 600;
    }

    .timeline-content p {
        font-size: 0.95rem;
        color: #444;
        margin-bottom: 15px;
    }

.timeline-btn {
    display: inline-block;
    background: #77b302;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .timeline-btn:hover {
        background: #016701;
    }

/* ========== Animations ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .reports-content {
        padding: 20px;
        width: 90%;
    }

    .reports-title {
        font-size: 2rem;
    }

    .timeline {
        width: 100%;
        padding-left: 20px;
    }

    .timeline-year {
        left: -50px;
        font-size: 10px;
    }
}
/* Responsive: Stack Buttons on Mobile */
@media (max-width: 768px) {
    .doc-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* ================= Donate Hero Banner ================= */
.donate-hero {
    position: relative;
    background: linear-gradient(120deg, #a5dfa5 0%, #7f935a 100%);
    color: #fff;
    padding: 100px 0 60px;
    overflow: hidden;
}

.donate-overlay {
    position: absolute;
    inset: 0;
    background: url('../Html/assets/img/texture-light.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

/* Breadcrumb */
.donate-breadcrumb .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.donate-breadcrumb .breadcrumb-item a {
    color: #e8ffe8;
    text-decoration: none;
}

.donate-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* Banner Text */
.donate-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

    .donate-title span {
        color: #e0ffb3;
    }

.donate-tagline {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #f1fff1;
    max-width: 520px;
}

.donate-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 30px;
    background: #fff;
    color: #016701;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .donate-btn:hover {
        background: #77b302;
        color: #fff;
        transform: translateY(-3px);
    }

/* Image Section */
.donate-img-wrap {
    position: relative;
    z-index: 1;
}

    .donate-img-wrap img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
        animation: floatUp 5s ease-in-out infinite;
    }

/* Floating Shapes */
.donate-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    background: #fff;
    animation: floatShape 6s ease-in-out infinite;
}

.shape1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -20px;
    animation-delay: 1s;
}

.shape2 {
    width: 70px;
    height: 70px;
    bottom: -25px;
    left: -20px;
    animation-delay: 2s;
}

/* Smooth Floating Animations */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.3;
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Bottom Wave */
.donate-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

    .donate-wave-bottom svg {
        width: 100%;
        height: 120px;
        display: block;
    }

/* Responsive */
@media (max-width: 992px) {
    .donate-hero {
        text-align: center;
        padding: 80px 0;
    }

    .donate-title {
        font-size: 2.2rem;
    }

    .donate-tagline {
        margin: 0 auto;
    }

    .donate-img-wrap img {
        width: 80%;
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .donate-title {
        font-size: 1.8rem;
    }

    .donate-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
    }

    .shape1, .shape2 {
        display: none;
    }
}
/* ================= Why Support Section ================= */
.why-support {
    position: relative;
    background: #ffffff;
    padding: 90px 0 100px;
}

.why-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #016701;
}

    .why-content h2 span {
        color: #77b302;
    }

.why-content p {
    margin-top: 10px;
    color: #444;
    line-height: 1.8;
}

.why-points {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .point i {
        font-size: 1.4rem;
        color: #77b302;
        background: #eaffea;
        border-radius: 50%;
        padding: 10px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    }

    .point p {
        margin: 0;
        color: #333;
        font-weight: 500;
    }

/* Curve Divider */
.curve-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

    .curve-separator svg {
        width: 100%;
        height: 100px;
        display: block;
    }

/* ================= Ways to Donate ================= */
.ways-donate {
    background: #f8fff3;
    padding: 100px 0;
}

    .ways-donate h2 {
        color: #016701;
        font-weight: 700;
    }

        .ways-donate h2 span {
            color: #77b302;
        }

    .ways-donate p.lead {
        color: #444;
        margin-bottom: 40px;
    }

/* Donation Cards */
.donate-option {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
}

    .donate-option:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.icon-box {
    width: 70px;
    height: 70px;
    background: #eaffea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .icon-box i {
        color: #016701;
        font-size: 1.8rem;
    }

.donate-option h5 {
    font-weight: 700;
    color: #016701;
    margin-bottom: 10px;
}

.donate-option p {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.donate-btn2 {
    display: inline-block;
    background: #016701;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .donate-btn2:hover {
        background: #77b302;
        transform: translateY(-3px);
    }

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .why-support {
        text-align: center;
    }

    .why-content h2 {
        font-size: 1.8rem;
    }

    .why-points {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .ways-donate {
        padding: 70px 0;
    }

    .donate-option {
        padding: 25px 20px;
    }
}


/* ================= Gallery Immersive Banner ================= */
.gallery-immersive-banner {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #222;
    color: #fff;
    perspective: 1000px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.19), rgba(6, 57, 6, 0.5));
    z-index: 1;
}

/* Floating Gallery Frames */
.floating-gallery {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.photo-frame {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: floatPhoto 10s ease-in-out infinite alternate;
    cursor: pointer;
    transform-style: preserve-3d;
}

    .photo-frame:hover {
        transform: translateZ(-40px) scale(0.95);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    /* Image Style */
    .photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Floating Animation */
@keyframes floatPhoto {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(10px) rotate(-2deg);
    }
}

/* Positions Around Banner */
.pf1 {
    top: 8%;
    left: 10%;
    width: 180px;
    height: 120px;
    animation-delay: 0s;
}

.pf2 {
    top: 20%;
    right: 12%;
    width: 200px;
    height: 140px;
    animation-delay: 1s;
}

.pf3 {
    bottom: 12%;
    left: 8%;
    width: 150px;
    height: 100px;
    animation-delay: 2s;
}

.pf4 {
    bottom: 18%;
    right: 20%;
    width: 190px;
    height: 130px;
    animation-delay: 3s;
}

.pf5 {
    top: 35%;
    left: 25%;
    width: 210px;
    height: 140px;
    animation-delay: 4s;
}

.pf6 {
    bottom: 25%;
    left: 35%;
    width: 160px;
    height: 110px;
    animation-delay: 5s;
}

.pf7 {
    top: 15%;
    right: 30%;
    width: 170px;
    height: 115px;
    animation-delay: 6s;
}

.pf8 {
    bottom: 8%;
    right: 8%;
    width: 200px;
    height: 130px;
    animation-delay: 7s;
}

/* Text Section */
.gallery-heading {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
}

    .gallery-heading span {
        color: #eaffb3;
    }

.gallery-subtext {
    font-size: 1.1rem;
    color: #f4fff4;
    max-width: 700px;
    margin: 15px auto 0;
}

/* Breadcrumb */
.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-nav .breadcrumb-item a {
    color: #e6ffe6;
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* Bottom Wave */
.gallery-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

    .gallery-wave svg {
        display: block;
        width: 100%;
        height: 100px;
    }

/* Responsive */
@media (max-width: 992px) {
    .gallery-heading {
        font-size: 2.2rem;
    }

    .gallery-subtext {
        font-size: 1rem;
    }

    .photo-frame {
        opacity: 0.75;
    }

        .photo-frame:hover {
            transform: translateZ(-30px) scale(0.93);
        }
}

@media (max-width: 768px) {
    .gallery-immersive-banner {
        height: 75vh;
    }

    .gallery-heading {
        font-size: 1.8rem;
    }

    .gallery-subtext {
        font-size: 0.95rem;
    }

    .floating-gallery {
        display: none;
    }
    /* Hide floating photos for mobile clarity */
}
/* ========== RESPONSIVE STYLES ========== */

/* Tablet View (768px–991px) */
@media (max-width: 992px) {
    .gallery-immersive-banner {
        height: 75vh;
    }

    .gallery-heading {
        font-size: 2.2rem;
    }

    .gallery-subtext {
        font-size: 1rem;
    }

    /* Adjust frame sizes */
    .photo-frame {
        opacity: 0.8;
    }

    .pf1 {
        top: 10%;
        left: 8%;
        width: 130px;
        height: 90px;
    }

    .pf2 {
        top: 18%;
        right: 10%;
        width: 150px;
        height: 100px;
    }

    .pf3 {
        bottom: 10%;
        left: 10%;
        width: 120px;
        height: 80px;
    }

    .pf4 {
        bottom: 15%;
        right: 15%;
        width: 130px;
        height: 85px;
    }

    .pf5 {
        top: 40%;
        left: 20%;
        width: 140px;
        height: 90px;
    }

    .pf6 {
        bottom: 25%;
        left: 30%;
        width: 120px;
        height: 80px;
    }

    .pf7, .pf8 {
        display: none;
    }
    /* hide 2 frames for clarity */
}

/* Mobile View (max 767px) */
@media (max-width: 767px) {
    .gallery-immersive-banner {
        height: 70vh;
        text-align: center;
    }

    .gallery-heading {
        font-size: 1.7rem;
        line-height: 1.3;
        z-index: 2;
        position: relative;
    }

    .gallery-subtext {
        font-size: 0.95rem;
        max-width: 90%;
        margin: 10px auto 0;
        z-index: 2;
        position: relative;
    }

    /* Keep floating gallery visible */
    .floating-gallery {
        display: block;
        z-index: 1;
    }

    /* Adjust floating image visibility and scale */
    .photo-frame {
        opacity: 0.6;
        filter: brightness(0.9);
        transition: transform 0.5s ease;
    }

        .photo-frame:hover {
            transform: scale(0.95);
            opacity: 0.9;
        }

    /* 4 key images positioned around text */
    .pf1 {
        top: 8%;
        left: 5%;
        width: 90px;
        height: 60px;
        animation-delay: 0s;
    }

    .pf2 {
        top: 10%;
        right: 6%;
        width: 100px;
        height: 70px;
        animation-delay: 1s;
    }

    .pf3 {
        bottom: 15%;
        left: 10%;
        width: 90px;
        height: 65px;
        animation-delay: 2s;
    }

    .pf4 {
        bottom: 12%;
        right: 8%;
        width: 95px;
        height: 65px;
        animation-delay: 3s;
    }

    /* Hide the middle and overlapping ones */
    .pf5, .pf6, .pf7, .pf8 {
        display: none;
    }

    /* Subtle motion and safe layering */
    .photo-frame img {
        border-radius: 8px;
    }
}


/* Small Mobile View (max 480px) */
@media (max-width: 480px) {
    .gallery-heading {
        font-size: 1.5rem;
    }

    .gallery-subtext {
        font-size: 0.9rem;
    }

    .pf1, .pf2, .pf3, .pf4 {
        width: 85px;
        height: 60px;
    }
}

/* ================= Masonry Gallery ================= */
.masonry-gallery {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

    .masonry-gallery h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #016701;
    }

        .masonry-gallery h2 span {
            color: #77b302;
        }

/* Masonry Grid */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

    .gallery-item img {
        width: 100%;
        border-radius: 12px;
        display: block;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
        opacity: 0.9;
    }

/* Lightbox Overlay */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: fadeIn 0.3s ease forwards;
}

    .lightbox.active {
        display: flex;
    }

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    animation: zoomIn 0.4s ease;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .close-btn:hover {
        color: #77b302;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }

    .gallery-item img {
        border-radius: 8px;
    }
}

/* ================= Floating Leaf Go To Top ================= */
.leaf-top-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) rotate(0deg);
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Leaf SVG */
.leaf-icon {
    width: 70px;
    height: 70px;
    transform-origin: center;
    animation: leafFloat 5s ease-in-out infinite;
    transition: transform 0.4s ease;
}

/* Up Arrow Overlay */
.leaf-arrow {
    position: absolute;
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.9;
    transform: translateY(3px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover Interaction */
.leaf-top-btn:hover .leaf-icon {
    transform: scale(1.08) rotate(-5deg);
    filter: drop-shadow(0 8px 18px rgba(119, 179, 2, 0.6));
}

.leaf-top-btn:hover .leaf-arrow {
    transform: translateY(-4px);
    opacity: 1;
}

/* Floating Animation */
@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(2deg);
    }
}

/* Ripple Effect on Click */
.leaf-top-btn::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(119, 179, 2, 0.4) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.leaf-top-btn:active::after {
    opacity: 1;
    transform: scale(1.5);
}

/* Show Button */
.leaf-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .leaf-top-btn {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }

    .leaf-icon {
        width: 55px;
        height: 55px;
    }

    .leaf-arrow {
        font-size: 1.1rem;
    }
}
