:root {
    --dark: #030d19;
    --dark-2: #0F2A23;
    --green: #238548;
    --green-dark: #3B6E2E;
    --teal: #1F6F78;
    --gold: #F0B429;
    --gold-dark: #D89B0F;
    --cream: #FDFBF6;
    --text: #201F1D;
    --muted: #797f78;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

.script {
    font-family: 'Caveat', cursive;
    font-weight: 700;
}

a {
    text-decoration: none;
}

::selection {
    background: var(--gold);
    color: #1a1a1a;
}

img {
    max-width: 100%;
}

/* ============ TOPBAR ============ */
.topbar {
    background: #0f5a3b;
    color: #dbe6e0;
    font-size: .82rem;
    padding: 9px 0;
}

.topbar a {
    color: #dbe6e0;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    margin-left: 6px;
    transition: .3s;
}

.topbar .social-icons a:hover {
    background: var(--gold);
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ============ NAVBAR ============ */
.navbar-sewa {
    background: #fff;
    padding: 0 0;
    transition: .35s;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .04);
}

.navbar-sewa.scrolled {
    padding: 0px 0;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .09);
}

.brand-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark);
}

.navbar-brand:hover {
    color: var(--dark);
}

.navbar-brand:hover .brand-logo {
    animation: wiggle .6s ease;
}

.logoimg {
    width: 60%;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-8deg);
    }

    75% {
        transform: rotate(8deg);
    }
}

.navbar-sewa .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    margin: 0 3px;
    padding: 8px 13px !important;
    position: relative;
}

.navbar-sewa .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s;
}

.navbar-sewa .nav-link:hover::after,
.navbar-sewa .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-sewa .nav-link.active {
    color: var(--dark) !important;
    font-weight: 600;
}

.btn-donate {
    background: var(--gold);
    color: #1a1a1a;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-donate:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 180, 41, .4);
    color: #1a1a1a;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============ Buttons ============ */
.btn-pill-green {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: .93rem;
    transition: .35s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pill-green:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(76, 140, 60, .35);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    background: #f1f2ed;
    /* padding: 50px 0 40px; */
    overflow: hidden;
}

.hero-decor-circle {
    position: absolute;
    top: 8%;
    left: 1%;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: .55;
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 55%);
    animation: spin 18s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.left_content {
    padding-left: 11%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.18;
    color: #171717;
}

.hero h1 .script-accent {
    font-family: 'Caveat', cursive;
    font-weight: 900;
    color: #0b8f1e;
    font-size: 1.5em;
    line-height: .6;
    /* border: 1px solid #fff; */
    text-shadow: 2px 2px 2px #e7f162;
    display: inline;
}

.hero p.lead-txt {
    color: #1b1b1b;
    font-size: 1.02rem;
    max-width: 480px;
    margin: 20px 0 28px;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-weight: 600;
    color: var(--text);
}

.play-btn .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    flex: 0 0 auto;
}

.play-btn .circle i {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.play-btn:hover .circle {
    background: var(--gold);
    transform: scale(1.08);
}

.hero-img-wrap {
    position: relative;
    /* border-radius: 170px 24px 170px 24px; */
    overflow: hidden;
    /* box-shadow: 0 25px 50px rgba(18, 51, 43, .18); */
    min-height: 518px;

}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-brush {
    position: absolute;
    left: -6%;
    bottom: -8%;
    width: 60%;
    height: 45%;
    background: var(--green);
    opacity: .85;
    clip-path: polygon(0% 40%, 30% 10%, 60% 35%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-quote {
    position: absolute;
    right: -16px;
    bottom: -18px;
    z-index: 4;
    background: var(--dark);
    color: #fff;
    padding: 20px 24px;
    border-radius: 26px 26px 26px 4px;
    max-width: 230px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .25);
    font-size: .95rem;
    line-height: 1.35;
}

.hero-quote i {
    color: var(--gold);
    font-size: 1.4rem;
    display: block;
    margin-bottom: 4px;
}

@media (max-width:991px) {
    .hero-quote {
        right: 8px;
        bottom: 8px;
        max-width: 190px;
        padding: 14px 16px;
        font-size: .82rem;
    }
}

.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 4;
    display: flex;
    gap: 6px;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: .3s;
}

.hero-dots span.active {
    background: var(--gold);
    width: 22px;
    border-radius: 5px;
}

/* ============ Section basics ============ */
.section-pad {
    padding: 50px 0;
}

@media (max-width:767px) {
    .section-pad {
        padding: 52px 0;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 700;
    font-size: 2.2rem;
}

.eyebrow .dot-line {
    width: 34px;
    height: 2px;
    background: var(--gold);
    position: relative;
}

.eyebrow .dot-line::after {
    content: "";
    position: absolute;
    right: -6px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.section-sub {
    color: #262725;
    max-width: 560px;
    margin: 10px auto 0;
    font-size: 1.1rem;
}


/* ============ WHAT WE DO ============ */
.wwd-col {
    text-align: center;
    padding: 10px 12px;
    position: relative;
}

.wwd-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 0;
    bottom: 14px;
    width: 1px;
    background: #e4e2da;
}

@media (max-width:767px) {
    .wwd-col::after {
        display: none;
    }
}

.wwd-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.9rem;
    color: #fff;
    transition: .4s;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.wwd-col:hover .wwd-icon {
    transform: scale(1.1) rotate(-8deg);
}

.wwd-col h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.wwd-col p {
    /* color: var(--muted); */
    font-size: 16px;
    margin-bottom: 10px;
}

.wwd-col .learn-more {
    color: var(--green-dark);
    font-weight: 600;
    font-size: 1.0rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.wwd-col .learn-more i {
    transition: .3s;
    font-size: .75rem;
}

.wwd-col:hover .learn-more i {
    transform: translateX(5px);
}

.bg-c1 {
    background: #4F9036;
    background: radial-gradient(circle, rgba(79, 144, 54, 1) 0%, rgba(101, 191, 71, 1) 80%);
}

.bg-c2 {
    background: #2D8682;
    background: radial-gradient(circle, rgba(45, 134, 130, 1) 0%, rgba(77, 196, 194, 1) 80%);
}

.bg-c3 {
    background: #4F9036;
    background: radial-gradient(circle, rgba(79, 144, 54, 1) 0%, rgba(101, 191, 71, 1) 80%);
}

.bg-c4 {
    background: linear-gradient(135deg, #F3C24C, #D89B0F);
}

.bg-c5 {
    background: #2D8682;
    background: radial-gradient(circle, rgba(45, 134, 130, 1) 0%, rgba(77, 196, 194, 1) 80%);
}

.bg-c6 {
    background: #4F9036;
    background: radial-gradient(circle, rgba(79, 144, 54, 1) 0%, rgba(101, 191, 71, 1) 80%);
}



.wwd-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 34px;
    position: relative;
    transition: .35s ease;
    z-index: 1;
}

/* Paint border */
.wwd-icon::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    z-index: -1;

    background:
        radial-gradient(circle at 10% 20%, rgba(96, 160, 170, .7) 2px, transparent 3px),
        radial-gradient(circle at 25% 80%, rgba(96, 160, 170, .6) 2px, transparent 3px),
        radial-gradient(circle at 55% 8%, rgba(96, 160, 170, .6) 2px, transparent 3px),
        radial-gradient(circle at 88% 18%, rgba(96, 160, 170, .6) 2px, transparent 3px),
        radial-gradient(circle at 96% 50%, rgba(96, 160, 170, .7) 2px, transparent 3px),
        radial-gradient(circle at 82% 82%, rgba(96, 160, 170, .6) 2px, transparent 3px),
        radial-gradient(circle at 45% 98%, rgba(96, 160, 170, .6) 2px, transparent 3px),
        radial-gradient(circle at 5% 60%, rgba(96, 160, 170, .6) 2px, transparent 3px);

    filter: blur(.2px);
}

.wwd-icon i {
    font-size: 34px;
}

.wwd-col:hover .wwd-icon {
    transform: translateY(-8px) scale(1.06);
}

.cta-imgcol {
    background: url(../img/leftimg.webp) center top no-repeat;
}


/* ============ CTA BANNER (full bleed) ============ */
.cta-section {
    background: #112631;
    position: relative;
    overflow: hidden;
}

.cta-imgcol {
    position: relative;
    min-height: 340px;
    background-size: cover;
    background-position: center;
}

.cta-arrow-badge {
    position: absolute;
    top: 22px;
    /* right: 22px; */
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px dashed var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    animation: spin 10s linear infinite;
    font-size: 1.2rem;
    z-index: 9999999;
}

.cta-section h2 {
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
}

.cta-section h2 .script-accent {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.25em;
}

.cta-section p.lead-txt2 {
    color: #c3d0c9;
    font-size: .95rem;
}

.cta-box {
    border: 1.5px solid rgba(240, 180, 41, .45);
    border-radius: 12px;
    padding: 18px 8px;
    text-align: center;
    color: #fff;
    transition: .3s;
}

.cta-box:hover {
    background: rgba(240, 180, 41, .12);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.cta-box i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.cta-box span {
    font-size: .82rem;
    font-weight: 500;
    display: block;
}

.btn-pill-gold {
    background: var(--gold);
    color: #1a1a1a;
    border: none;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: .92rem;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pill-gold:hover {
    background: var(--gold-dark);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(240, 180, 41, .4);
}

.donate-spin {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: spin 6s linear infinite;
}

/* ============ STATS ============ */
.stats-bar {
    background: #0d4c26;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(18, 51, 43, .18);
}

.stat-item {
    text-align: center;
    padding: 19px 8px;
    color: #fff;
    position: relative;
    border-right: 1px solid;
    border-image: linear-gradient(to bottom,
            transparent,
            rgba(201, 177, 72, 0.9),
            transparent) 1;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    right: 0;
    width: 1px;
    background: rgba(255, 255, 255, .14);
}

@media (max-width:767px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
}

.stat-item i {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 0;
    display: block;
}

.stat-item h3 {
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #cddad3;
    margin: 0;
}

/* ============ REAL STORIES ============ */
.stories-imgs {
    position: relative;
    height: 360px;
}

.stories-imgs img {
    position: absolute;
    border-radius: 14px;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .16);
    transition: transform .5s ease;
}

.stories-imgs img.img-a {
    width: 47%;
    height: 70%;
    left: 0;
    top: 14%;
    z-index: 2;
    transform: rotate(-7deg);
}

.stories-imgs img.img-b {
    width: 42%;
    height: 68%;
    left: 32%;
    top: 0;
    z-index: 3;
    transform: rotate(2deg);
}

.stories-imgs img.img-c {
    width: 47%;
    height: 70%;
    right: 0;
    bottom: 2%;
    z-index: 1;
    transform: rotate(6deg);
}

.stories-imgs:hover img {
    transform: rotate(0) scale(1.02);
}

.stories-scribble {
    position: absolute;
    width: 38px;
    height: 38px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    top: -10px;
    right: 6%;
    opacity: .7;
}

/* ============ EVENTS ============ */
.event-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .07);
    transition: .4s;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(18, 51, 43, .14);
}

.event-thumb {
    position: relative;
    height: 230px;
    overflow: hidden;
    width: 367px;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.event-card:hover .event-thumb img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 7px 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
}

.event-date .d {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.event-date .m {
    font-size: .65rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

.event-body {
    padding: 18px 10px;
}

.event-body h5 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.event-body .loc {
    color: var(--muted);
    font-size: .82rem;
    margin-bottom: 10px;
}

.event-body p {
    color: var(--muted);
    font-size: .85rem;
}

.btn-event {
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: .82rem;
    font-weight: 600;
    transition: .3s;
}

.btn-event:hover {
    background: var(--gold);
    color: #1a1a1a;
}

.event-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.event-img {
    width: 42%;
    flex-shrink: 0;
}

.event-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.event-content {
    width: 58%;
    padding: 22px;
    position: relative;
}

.event-date {
    position: absolute;
    top: 18px;
    right: 18px;
    text-align: center;
}

.event-date h2 {
    margin: 0;
    color: #1c7a38;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.event-date span {
    display: block;
    color: #f2b21b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.event-content h5 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.location {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.location i {
    color: #f2b21b;
    margin-right: 5px;
}

.desc {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #132c43;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.event-btn:hover {
    background: #1c7a38;
    color: #fff;
}

.title-line {
    width: 75px;
    height: 4px;
    background: #1c7a38;
    border-radius: 10px;
    position: relative;
}

.title-line::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 4px;
    background: #f2b21b;
    left: 50%;
    transform: translateX(-50%);
}

/* ============ FOOTER ============ */
.footer-sewa {
    background: #122231;
    color: #c3d0c9;
    padding-top: 42px;
}

.footerlogo {
    width: 30%;
}

.footer-sewa h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1rem;
}

.footer-sewa h6::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.footer-sewa a {
    color: #c3d0c9;
    display: block;
    margin-bottom: 9px;
    font-size: .88rem;
    transition: .25s;
}

.footer-sewa a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-sewa .footer-social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-bottom: 0;
}

.footer-sewa .footer-social a:hover {
    background: var(--gold);
    color: #1a1a1a;
    padding-left: 0;
}

.newsletter-box {
    background: var(--green);
    border-radius: 14px;
    padding: 22px;
}

.newsletter-box h6::after {
    display: none;
}

.newsletter-box .form-control {
    border-radius: 8px;
    border: none;
    padding: 11px 14px;
    font-size: .85rem;
}

.newsletter-box .btn-send {
    background: var(--gold);
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 19px;
    padding: 7px 0;
    font-size: .82rem;
    text-align: center;
    color: #8fa298;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: .35s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: #1a1a1a;
}

.section-title {
    font-weight: 800;
    color: var(--dark);
}

/**************bout us************/
.about-hero {
    background: #f8fbf7;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #eaf5e8;
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #157347;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-img {
    position: relative;
}

.hero-img img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.floating-box {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #fff;
    padding: 18px 28px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.floating-box h3 {
    margin: 0;
    color: #157347;
    font-weight: 700;
}

.intro-strip {
    background: #157347;
    color: #fff;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #f4b400;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.about-image img {
    border-radius: 25px;
}

.mini-box {
    background: #fff;
    border-radius: 18px;
    padding: 9px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.mini-box:hover {
    transform: translateY(-6px);
}

.mini-box h4 {
    color: #157347;
    font-weight: 700;
    margin-bottom: 3px;
}

.mission-bg {
    background: #f8fbf7;
}

.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .3s;
}

.mission-card:hover {
    transform: translateY(-8px);
}

.icon-box {
    width: 75px;
    height: 75px;
    background: #157347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 25px;
}

.icon-box.yellow {
    background: #f4b400;
    color: #222;
}

.program-hero {
    background: #f7fbf6;
    padding: 90px 0;
}

.hero-badge {
    display: inline-block;
    background: #157347;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.hero-image {
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.section-title-small {
    display: inline-block;
    background: #f4b400;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.program-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.program-list li {
    margin-bottom: 14px;
    font-weight: 500;
}

.text-orange {
    color: #ecab12;
}

.program-list i {
    color: #157347;
    margin-right: 8px;
}

.program-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
}

.program-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.program-body {
    padding: 30px;
    position: relative;
}

.program-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-top: -60px;
    margin-bottom: 20px;
    border: 5px solid #fff;
}

.program-body h4 {
    font-weight: 700;
    margin-bottom: 15px;
}


.program-body a {
    color: #157347;
    font-weight: 600;
    text-decoration: none;
}

.program-body a:hover {
    color: #f4b400;
}

/**************Reports************/
.report-hero {
    background: #f7fbf8;
    padding: 90px 0;
}

.report-badge {
    display: inline-block;
    background: #157347;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.report-img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.section-tag {
    display: inline-block;
    background: #f4b400;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.mini-info {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    height: 100%;
}

.mini-info h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.report-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.report-card:hover {
    transform: translateY(-8px);
}

.report-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin: 0 auto 20px;
}

.report-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.report-table {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.report-table thead {
    background: #157347;
    color: #fff;
}

.report-table th,
.report-table td {
    padding: 18px;
    vertical-align: middle;
}

.report-table tbody tr:hover {
    background: #f7fbf8;
}

.report-intro {
    background: #f8fbf7;
}

.report-box {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.report-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.report-box .col-lg-6:last-child {
    padding: 50px;
}

.report-counter {
    background: #157347;
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

.report-counter h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

/*****************Contact****/
.contact-section {
    background: #f8fbf7;
}

.contact-info,
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    height: 100%;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-list .icon {
    width: 55px;
    height: 55px;
    background: #e89c0a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-list h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-list p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.form-control {
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.form-control:focus {
    border-color: #157347;
    box-shadow: none;
}

textarea.form-control {
    resize: none;
}

.map-box {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.map-box iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

/**************Events*************/
.sectionevent {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/eventbg.webp) center/cover;
}

/***************Gallery*************/
.navbtn {
    border: 1px solid #38b846;
    padding: 4px 13px;
    color: #3fb34d;
    font-weight: 600;
}

.navbtn.active {
    background: #38b846 !important;
    color: #fff !important;
}

/***************************Donation*****************/
.donation-section {

    background: #f8fafc;

}

.sub-title {

    color: #3aaa35;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.section-title {

    font-size: 42px;

    font-weight: 700;

    margin: 10px 0;

}

.section-text {

    max-width: 700px;

    margin: auto;

    color: #666;

}

.donation-card {

    background: #fff;

    padding: 40px;

    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    height: 100%;

}

.card-title {

    font-size: 28px;

    font-weight: 700;

    color: #2c3e50;

    padding-bottom: 15px;

    border-bottom: 2px solid #eee;

}

.card-title i {

    color: #4CAF0A;

    margin-right: 10px;

}

.copy-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: #f5f5f5;

    padding: 10px 15px;

    border-radius: 8px;

}

.copy-box button {

    background: #4CAF0A;

    color: #fff;

    border: none;

    padding: 7px 18px;

    border-radius: 6px;

    font-size: 14px;

}

.copy-box button:hover {

    background: #2d8d02;

}

.secure-box {

    margin-top: 35px;

    background: #edf8e9;

    padding: 18px;

    border-left: 5px solid #4CAF0A;

    font-weight: 600;

    border-radius: 8px;

}

.secure-box i {

    color: #4CAF0A;

    margin-right: 8px;

}

.donate-btn {

    display: inline-block;

    margin-top: 30px;

    background: #ff6b00;

    color: #fff;

    padding: 15px 35px;

    font-size: 18px;

    font-weight: 600;

    text-decoration: none;

    border-radius: 50px;

    transition: .3s;

}

.donate-btn:hover {

    background: #e45e00;

    color: #fff;

}

.qr-card {

    background: #fff;

    padding: 35px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    height: 100%;

}

.qr-card img {

    width: 220px;

    margin: 25px auto;

    display: block;

}

.qr-card h4 {

    font-weight: 700;

}

.qr-card p {

    color: #666;

    line-height: 28px;
}

@media (max-width:991px) {


    .floating-box {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width:767px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}