
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    background: #fff;
}

 

.main-content {
    flex: 1;
    width: 100%;
    position: relative;
    z-index: 1;
}

.top-bar {
    background: #0d1f16;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
    }

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    max-height: 58px;
    width: auto;
    object-fit: contain;
}

/* MOBILE */

@media(max-width:768px) {

    .navbar-logo {
        max-height: 42px;
    }
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-left: 20px;
}

.donate-btn {
    background: linear-gradient(45deg, #2e7d32, #43a047);
    color: #fff;
    border-radius: 50px;
    padding: 12px 28px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .donate-btn:hover {
        transform: translateY(-3px);
        color: white;
    }

.hero-slider .item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 85%;
    z-index: 10;
}

    .hero-content h1 {
        font-size: 70px;
        font-weight: 700;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 35px;
        opacity: 0.95;
    }

.hero-btn {
    background: #43a047;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    display: inline-block;
    transition: 0.3s;
}

    .hero-btn:hover {
        transform: translateY(-5px);
        color: white;
    }

.hero-btn-outline {
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        color: #43a047;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .section-title h2 {
        font-size: 45px;
        font-weight: 700;
        margin-top: 10px;
    }

.footer {
    background: #0b1510;
    color: white;
    padding: 90px 0 20px;
    width: 100%;
    clear: both;
    position: relative;
    margin-top: auto;
    flex-shrink: 0;
}

    .footer a {
        color: #ccc;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
    }

    .footer h5 {
        margin-bottom: 25px;
        font-weight: 600;
    }

.about-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

    .about-image img {
        width: 100%;
    }

.focus-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .focus-card:hover {
        transform: translateY(-12px);
    }

    .focus-card i {
        font-size: 50px;
        color: #43a047;
        margin-bottom: 25px;
    }

.impact-section {
    background: linear-gradient(rgba(15, 60, 32, 0.92), rgba(15, 60, 32, 0.92)), url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?q=80&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

.counter-box h2 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 10px;
}

.program-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

    .program-card:hover {
        transform: translateY(-10px);
    }

    .program-card img {
        height: 250px;
        object-fit: cover;
    }

.gallery-section img {
    border-radius: 20px;
    transition: 0.4s;
}

    .gallery-section img:hover {
        transform: scale(1.05);
    }

.news-card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}



@media(max-width:768px) {

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero-slider .item {
        height: 85vh;
    }
}



/* =========================
   FUNDING PARTNER SECTION
========================= */
.partner-section {
    background: linear-gradient(to bottom, #ffffff, #f4faf5);
    position: relative;
    overflow: hidden;
}

/* SECTION SPACING */

.section-padding {
    padding: 110px 0;
}

/* PREMIUM BADGE */

.premium-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* SECTION TITLE */

.section-subtitle {
    color: #43a047;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 20px;
    color: #111;
}

.section-description {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* STATS */

.partner-stat-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 35px 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: 0.4s;
}

    .partner-stat-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .partner-stat-box h2 {
        color: #2e7d32;
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .partner-stat-box p {
        margin: 0;
        color: #666;
        font-weight: 500;
    }

/* SLIDER */

.funding-partner-slider {
    margin-top: 20px;
}

    .funding-partner-slider .owl-stage {
        display: flex;
        align-items: center;
    }

/* PARTNER CARD */

.partner-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    height: 170px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: 0.45s ease;
}

    /* GREEN GLOW */

    .partner-box::before {
        content: '';
        position: absolute;
        width: 130px;
        height: 130px;
        background: rgba(67, 160, 71, 0.08);
        border-radius: 50%;
        top: -40px;
        right: -40px;
    }

    /* LIGHT SWEEP EFFECT */

    .partner-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
        transition: 0.8s;
    }

    .partner-box:hover::after {
        left: 120%;
    }

    /* HOVER */

    .partner-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.10);
    }

    /* LOGOS */

    .partner-box img {
        max-width: 100%;
        max-height: 85px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: 0.4s;
    }

    .partner-box:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.06);
    }

/* MOBILE */

@media(max-width:768px) {

    .section-heading {
        font-size: 34px;
    }

    .section-description {
        font-size: 15px;
    }

    .partner-box {
        height: 140px;
        padding: 25px;
    }

    .partner-stat-box h2 {
        font-size: 36px;
    }
}



/* =========================
   REPORTS SECTION
========================= */
.reports-section {
    background: linear-gradient(to bottom, #ffffff, #f5f9f6);
    position: relative;
    overflow: hidden;
}

/* TABS */

.report-tabs {
    gap: 15px;
    border: none;
}

    .report-tabs .nav-link {
        border: none;
        background: white;
        color: #333;
        padding: 16px 28px;
        border-radius: 50px;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        transition: 0.4s;
    }

        .report-tabs .nav-link.active {
            background: linear-gradient(45deg, #2e7d32, #43a047);
            color: white;
        }

        .report-tabs .nav-link:hover {
            transform: translateY(-4px);
        }

/* PDF CARD */

.pdf-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

    .pdf-card::before {
        content: '';
        position: absolute;
        width: 130px;
        height: 130px;
        background: rgba(67, 160, 71, 0.06);
        border-radius: 50%;
        top: -40px;
        right: -40px;
    }

    .pdf-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
    }

/* ICON */

.pdf-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2e7d32, #43a047);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
}

/* TITLE */

.pdf-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

/* TEXT */

.pdf-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

/* DOWNLOAD BUTTON */

.download-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(45deg, #2e7d32, #43a047);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

    .download-btn:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(46, 125, 50, 0.25);
    }

/* MOBILE */

@media(max-width:768px) {

    .report-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
    }

        .report-tabs .nav-link {
            white-space: nowrap;
        }
}



/* =========================
   SECRETARY SECTION
========================= */
.secretary-section {
    background: linear-gradient(to bottom, #ffffff, #f5faf6);
    position: relative;
    overflow: hidden;
}

/* IMAGE WRAPPER */

.secretary-image-wrapper {
    position: relative;
    padding-right: 40px;
}

/* GREEN SHAPE */

.secretary-image-shape {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(45deg, #2e7d32, #43a047);
    border-radius: 30px;
    top: -20px;
    left: -20px;
    z-index: 1;
    opacity: 0.08;
}

/* MAIN IMAGE */

.secretary-image {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    width: 100%;
}

/* EXPERIENCE CARD */

.experience-card {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: white;
    padding: 25px;
    border-radius: 24px;
    z-index: 5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
    max-width: 240px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

    .experience-card h3 {
        font-size: 42px;
        font-weight: 700;
        color: #2e7d32;
        margin-bottom: 8px;
    }

    .experience-card p {
        margin: 0;
        color: #666;
        line-height: 1.6;
        font-size: 14px;
    }

/* CONTENT BOX */

.secretary-content-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* QUOTE ICON */

.quote-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2e7d32, #43a047);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
}

/* PARAGRAPHS */

.secretary-content-box p {
    color: #555;
    line-height: 2;
    margin-bottom: 22px;
    font-size: 16px;
}

/* SIGNATURE */

.secretary-signature {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

    .secretary-signature h5 {
        margin-bottom: 5px;
        font-weight: 700;
        color: #111;
    }

    .secretary-signature span {
        color: #2e7d32;
        font-weight: 600;
    }

/* MOBILE */

@media(max-width:991px) {

    .secretary-image-wrapper {
        padding-right: 0;
    }

    .experience-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media(max-width:768px) {

    .secretary-content-box {
        padding: 35px 25px;
    }

    .section-heading {
        font-size: 34px;
    }

    .secretary-content-box p {
        font-size: 15px;
    }
}



/* =========================
   VIDEO GALLERY SECTION
========================= */
.video-gallery-section {
    background: linear-gradient(to bottom, #ffffff, #f5faf6);
    position: relative;
    overflow: hidden;
}

/* VIDEO SLIDER */

.video-slider {
    margin-top: 20px;
}

/* VIDEO CARD */

.video-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: 0.4s;
    position: relative;
}

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    }

/* VIDEO FRAME */

.video-frame {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

    .video-frame iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* CONTENT */

.video-content {
    padding: 30px;
}

    .video-content span {
        display: inline-block;
        background: #e8f5e9;
        color: #2e7d32;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .video-content h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #111;
        line-height: 1.4;
    }

    .video-content p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 0;
    }

/* OWL NAVIGATION */

.video-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.video-slider .owl-item {
    display: flex;
    height: auto;
}

    .video-slider .owl-item .video-card {
        width: 100%;
    }

/* DOTS */

.video-slider .owl-dots {
    margin-top: 35px;
    text-align: center;
}

.video-slider .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px;
    background: #c8e6c9 !important;
    border-radius: 50%;
    display: block;
    transition: 0.3s;
}

.video-slider .owl-dot.active span {
    background: #2e7d32 !important;
    transform: scale(1.2);
}

/* MOBILE */

@media(max-width:768px) {

    .video-frame {
        height: 220px;
    }

    .video-content {
        padding: 24px;
    }

        .video-content h4 {
            font-size: 20px;
        }
}



/* =========================
   GALLERY SECTION
========================= */
.gallery-section {
    background: linear-gradient(to bottom, #f5faf6, #ffffff);
    position: relative;
    overflow: hidden;
}

/* GALLERY SLIDER */

.gallery-slider {
    margin-top: 20px;
}

/* GALLERY ITEM */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 420px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

    .gallery-item:hover {
        transform: translateY(-10px);
    }

    /* IMAGE */

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

/* OVERLAY */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15), transparent);
    display: flex;
    align-items: flex-end;
    padding: 35px;
    opacity: 1;
}

/* CONTENT */

.gallery-content span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-content h4 {
    color: white;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}

/* OWL STAGE */

.gallery-slider .owl-stage {
    display: flex;
}

.gallery-slider .owl-item {
    display: flex;
}

/* DOTS */

.gallery-slider .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.gallery-slider .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px;
    background: #c8e6c9 !important;
    border-radius: 50%;
    display: block;
    transition: 0.3s;
}

.gallery-slider .owl-dot.active span {
    background: #2e7d32 !important;
    transform: scale(1.2);
}

/* MOBILE */

@media(max-width:768px) {

    .gallery-item {
        height: 320px;
    }

    .gallery-overlay {
        padding: 25px;
    }

    .gallery-content h4 {
        font-size: 22px;
    }
}

/* =========================
   OUTREACH SECTION
========================= */

.outreach-section {
    background: linear-gradient(to bottom, #ffffff, #f5faf6);
    position: relative;
    overflow: hidden;
}

/* CARD */

.outreach-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transition: 0.45s;
}

    .outreach-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    }

/* MAP AREA */

.outreach-map {
    padding: 50px;
    background: linear-gradient(45deg, #edf7ee, #ffffff);
    text-align: center;
}

    .outreach-map img {
        width: 100%;
        max-width: 320px;
        height: auto;
        object-fit: contain;
        transition: 0.5s;
    }

.outreach-card:hover .outreach-map img {
    transform: scale(1.05);
}

/* CONTENT */

.outreach-content {
    padding: 40px;
}

    .outreach-content span {
        display: inline-block;
        background: #e8f5e9;
        color: #2e7d32;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .outreach-content h3 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 18px;
        color: #111;
    }

    .outreach-content p {
        color: #666;
        line-height: 1.9;
        margin-bottom: 30px;
    }

/* STATS */

.outreach-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 100px;
    background: #f8fbf8;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

    .stat-box h4 {
        color: #2e7d32;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stat-box p {
        margin: 0;
        font-size: 14px;
        color: #666;
    }

/* MOBILE */

@media(max-width:768px) {

    .outreach-map {
        padding: 35px;
    }

    .outreach-content {
        padding: 30px 25px;
    }

        .outreach-content h3 {
            font-size: 28px;
        }
}

/* =========================
   NGO ACTION SECTION
========================= */
.ngo-action-section {
    background: linear-gradient(to bottom, #ffffff, #f5faf6);
    position: relative;
    overflow: hidden;
}

/* CARD */

.ngo-action-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 45px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: 0.45s;
}

    /* GREEN GLOW */

    .ngo-action-card::before {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        background: rgba(67, 160, 71, 0.06);
        border-radius: 50%;
        top: -60px;
        right: -60px;
    }

    /* HOVER */

    .ngo-action-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.10);
    }

/* ICON BOX */

.ngo-action-icon {
    width: 110px;
    height: 110px;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2e7d32, #43a047);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.25);
}

    /* ICON IMAGE */

    .ngo-action-icon img {
        width: 55px;
        height: 55px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

/* TITLE */

.ngo-action-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* TEXT */

.ngo-action-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 15px;
}

/* BUTTON */

.action-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(45deg, #2e7d32, #43a047);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

    .action-btn:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(46, 125, 50, 0.25);
    }

/* MOBILE */

@media(max-width:768px) {

    .ngo-action-card {
        padding: 35px 25px;
    }

        .ngo-action-card h4 {
            font-size: 20px;
        }
}


/* ========================================
   POWERFUL TENDER BANNER
======================================== */

.tender-banner {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 30, 18, 0.92), rgba(22, 78, 45, 0.90)), url('/images/tender-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

    /* OVERLAY */

    .tender-banner .banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.45), rgba(0,0,0,0.25));
        z-index: 1;
    }

/* CONTENT */

.banner-content {
    position: relative;
    z-index: 5;
    color: white;
}

    .banner-content h1 {
        font-size: 72px;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 25px;
        text-shadow: 0 8px 25px rgba(0,0,0,0.35);
    }

    .banner-content p {
        font-size: 20px;
        line-height: 1.9;
        max-width: 850px;
        margin: auto;
        color: rgba(255,255,255,0.92);
    }

/* BADGE */

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .banner-badge i {
        color: #7CFF8A;
    }

/* BUTTONS */

.banner-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.banner-btn {
    background: linear-gradient(45deg, #2e7d32, #43a047);
    color: white;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(46,125,50,0.35);
}

    .banner-btn:hover {
        transform: translateY(-5px);
        color: white;
        box-shadow: 0 22px 45px rgba(46,125,50,0.45);
    }

.banner-btn-outline {
    border: 2px solid rgba(255,255,255,0.75);
    color: white;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}

    .banner-btn-outline:hover {
        background: white;
        color: #111;
        transform: translateY(-5px);
    }

/* SHAPES */

.banner-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
}

/* SHAPE 1 */

.shape-1 {
    width: 320px;
    height: 320px;
    background: rgba(67, 160, 71, 0.20);
    top: -100px;
    left: -80px;
    animation: float1 8s infinite ease-in-out;
}

/* SHAPE 2 */

.shape-2 {
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.08);
    bottom: -50px;
    right: 120px;
    animation: float2 10s infinite ease-in-out;
}

/* SHAPE 3 */

.shape-3 {
    width: 140px;
    height: 140px;
    background: rgba(124,255,138,0.18);
    top: 120px;
    right: 8%;
    animation: float3 6s infinite ease-in-out;
}

/* ANIMATION */

@keyframes float1 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float3 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(18px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* MOBILE */

@media(max-width:768px) {

    .tender-banner {
        min-height: 520px;
        padding: 120px 0 80px;
    }

    .banner-content h1 {
        font-size: 42px;
    }

    .banner-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .banner-badge {
        font-size: 13px;
        padding: 12px 20px;
    }

    .banner-btn,
    .banner-btn-outline {
        width: 100%;
        text-align: center;
    }

    .shape-1 {
        width: 180px;
        height: 180px;
    }

    .shape-2 {
        width: 140px;
        height: 140px;
    }
}
