/* ==========================
   SIMPLE GRADIENT BANNER
========================== */

.simple-banner {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 100px;
    padding: 150px 0px 70px;
    background: url('../images/home-page/green.png') center center no-repeat;
    background-size: cover;
}

/* Dark Overlay */
.simple-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.banner-content p {
    font-size: clamp(16px, 2vw, 24px);
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .simple-banner {
        min-height: 320px;
        background-position: 65% center;
    }

    .banner-content {
        padding: 0 15px;
    }

    .banner-content h1 {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {

    .simple-banner {
        min-height: 280px;
        background-position: 70% center;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 15px;
    }
}

/* ===================================
   TAGLINE & VISION SECTION
=================================== */

.vision-section {
    padding: 70px 0;
    background: #fff;
}

.vision-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.vision-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #fce4ec;
    color: #2e7d32;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vision-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.tagline {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.vision-box {
    background: #fff5f8;
    border-left: 5px solid #2e7d32;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.vision-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.vision-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

/* Responsive */

@media(max-width:768px) {

    .vision-section {
        padding: 50px 15px;
    }

    .vision-content h2 {
        font-size: 26px;
    }

    .tagline {
        font-size: 15px;
    }

    .vision-box {
        padding: 20px;
    }

    .vision-box h3 {
        font-size: 20px;
    }

    .vision-box p {
        font-size: 15px;
    }

}

/* ===================================
   PROJECT DETAILS SECTION
=================================== */

.project-details-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.detail-card:hover {
    transform: translateY(-8px);
}

.detail-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon i {
    font-size: 28px;
    color: #2e7d32;
}

.detail-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.detail-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Responsive */

@media(max-width:991px) {

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:767px) {

    .project-details-section {
        padding: 60px 15px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

}

/* ===================================
   IMPACT SECTION
=================================== */

.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2e7d32, #43a047);
}

.impact-section .section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.impact-section .section-heading h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.impact-section .section-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
}

.impact-card h3 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.impact-card p {
    color: #fff;
    font-size: 15px;
    margin: 0;
}

/* Responsive */

@media(max-width:991px) {

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:767px) {

    .impact-section {
        padding: 60px 15px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card h3 {
        font-size: 32px;
    }

}

/* ===================================
   DONOR REGISTRATION SECTION
=================================== */

.donor-registration-section {
    padding: 80px 0;
    background: #ffffff;
}

.donor-form-wrapper {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 14px 15px;
    outline: none;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2e7d32;
}

.full-width {
    grid-column: span 2;
}

.donate-btn {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.donate-btn:hover {
    background: #2e7d32;
}

/* Responsive */

@media(max-width:768px) {

    .donor-registration-section {
        padding: 60px 15px;
    }

    .donor-form-wrapper {
        padding: 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

}

/* ===================================
   DONORS SECTION
=================================== */

.donors-section {
    padding: 80px 0;
    background: #f8fafc;
}

.donors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.donor-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: .3s;
}

.donor-card:hover {
    transform: translateY(-5px);
}

.donor-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donor-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.donor-card span {
    font-size: 14px;
    color: #777;
}

/* Responsive */

@media(max-width:991px) {
    .donors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:767px) {
    .donors-section {
        padding: 60px 15px;
    }

    .donors-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   OUR PARTNERS SECTION
=================================== */

.partners-section {
    padding: 80px 0;
    background: #ffffff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.partner-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Responsive */

@media(max-width:991px) {

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:767px) {

    .partners-section {
        padding: 60px 15px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-card {
        min-height: 100px;
        padding: 15px;
    }

}

/* ===================================
   DONATE CTA SECTION
=================================== */

.donate-cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #2e7d32, #43a047);
}

.donate-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 60px 40px;
}

.donate-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.donate-box h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.donate-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 35px;
}

.donate-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 35px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: #fff;
    font-size: 18px;
}

.donate-btn {
    display: inline-block;
    background: #fff;
    color: #2e7d32;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
}

.donate-btn:hover {
    transform: translateY(-3px);
    color: #2e7d32;
}

.donate-note {
    margin-top: 25px;
    color: #fff;
    font-size: 15px;
    opacity: 0.95;
}

/* Responsive */

@media(max-width:768px) {

    .donate-cta-section {
        padding: 60px 15px;
    }

    .donate-box {
        padding: 40px 25px;
    }

    .donate-box h2 {
        font-size: 28px;
    }

    .donate-box p {
        font-size: 15px;
    }

    .donate-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        text-align: left;
    }

}

/* ==========================
   GLOBAL STYLES
========================== */

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    overflow-x: hidden;
}

section {
    position: relative;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 15px;
    color: #666;
    max-width: 700px;
    margin: auto;
}

/* ==========================
   HERO BANNER
========================== */



/* ==========================
   VISION SECTION
========================== */

.vision-section {
    padding: 70px 0;
    background: #fff;
}

.vision-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.vision-badge {
    background: #fff0f5;
    color: #2e7d32;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.vision-content h2 {
    font-size: 30px;
    margin: 18px 0;
    font-weight: 700;
}

.tagline {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.vision-box {
    margin-top: 30px;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    border-top: 4px solid #2e7d32;
}

.vision-box h3 {
    font-size: 22px;
}

/* ==========================
   DETAIL CARDS
========================== */

.detail-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    transition: .3s;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, .15);
}

.detail-icon {
    width: 65px;
    height: 65px;
    background: #fff0f5;
    border-radius: 50%;
    margin: auto auto 20px;
}

.detail-card h3 {
    font-size: 20px;
}

.detail-card p {
    font-size: 14px;
}

/* ==========================
   IMPACT SECTION
========================== */

.impact-section {
    background: linear-gradient(135deg, #2e7d32, #43a047);
}

.impact-card {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px 20px;
}

.impact-card h3 {
    font-size: 34px;
    font-weight: 800;
}

.impact-card p {
    font-size: 14px;
}

/* ==========================
   DONOR FORM
========================== */

.donor-form-wrapper {
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.form-group label {
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    border: 1px solid #e5e7eb;
    background: #fafafa;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, .1);
}

.donate-btn {
    background: #2e7d32;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.donate-btn:hover {
    background: #2e7d32;
    transform: translateY(-2px);
}

/* ==========================
   DONORS
========================== */

.donor-card {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.donor-avatar {
    width: 75px;
    height: 75px;
    font-size: 24px;
}

.donor-card h4 {
    font-size: 17px;
}

.donor-card span {
    font-size: 13px;
}

/* ==========================
   PARTNERS
========================== */

.partner-card {
    border-radius: 15px;
    transition: .3s;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    max-height: 55px;
    filter: grayscale(100%);
    transition: .3s;
}

.partner-card:hover img {
    filter: grayscale(0);
}

/* ==========================
   CTA SECTION
========================== */

.donate-box {
    border-radius: 25px;
    padding: 50px 35px;
}

.donate-box h2 {
    font-size: 34px;
}

.donate-box p {
    font-size: 15px;
}

.feature-item {
    font-size: 14px;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .vision-content h2 {
        font-size: 24px;
    }

    .donate-box h2 {
        font-size: 26px;
    }

    .donor-form-wrapper {
        padding: 25px;
    }

}