 
        .serve-card {
            height: 100%;
            background: #ffffff;
            padding: 32px 28px;
            border-radius: 16px;
            border: 1px solid #eee9df;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.35s ease;
        }


        /* Hover */

        .serve-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border-color: #e5d3a8;
        }


        /* Icon */

        .serve-icon {
            min-width: 65px;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: #fff5df;

            display: flex;
            align-items: center;
            justify-content: center;

            transition: all 0.35s ease;
        }

        .serve-icon i {
            color: #600202;
            font-size: 27px;
            transition: all 0.35s ease;
        }


        /* Icon Hover */

        .serve-card:hover .serve-icon {
            background: #600202;
        }

        .serve-card:hover .serve-icon i {
            color: #ffffff;
        }


        /* Content */

        .serve-content h3 {
            color: #222;
            font-size: 21px;
            font-weight: 700;
            margin: 5px 0 10px;
        }

       
   
   


/* Facility Card */

.facility-card {
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee9df;
    transition: all 0.35s ease;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}


/* Image */

.facility-image {
    height: 230px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.08);
}


/* Content */

.facility-content {
    padding: 25px 24px 28px;
}

.facility-content h3 {
    color: #222;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}






    /* =========================================
   OUR SOCIAL WORK
========================================= */



.social-work-subtitle {
    display: inline-block;
    color: #600202;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.social-work-title {
    color: #222;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

.social-work-description {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    max-width: 650px;
}


/* Image */

.social-work-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.social-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-work-image:hover img {
    transform: scale(1.04);
}


/* Badge */

.social-work-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    background: #fff;
    padding: 18px 25px;
    border-radius: 12px;

    display: flex;
    flex-direction: column;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.social-work-badge strong {
    color: #600202;
    font-size: 30px;
    line-height: 1;
}

.social-work-badge span {
    color: #555;
    font-size: 13px;
    margin-top: 5px;
}


/* Cards */

.social-work-card {
    height: 100%;
    background: #fff;

    padding: 20px;
    border-radius: 12px;

    border: 1px solid #eee9df;

    display: flex;
    gap: 15px;
    align-items: flex-start;

    transition: all 0.3s ease;
}

.social-work-card:hover {
    transform: translateY(-5px);
    border-color: #d9c18b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}


/* Number */

.social-work-number {
    min-width: 42px;
    height: 42px;

    border-radius: 8px;

    background: #fff5df;
    color:#600202;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;
}


/* Card Content */

.social-work-card h3 {
    color: #222;
    font-size: 17px;
    font-weight: 700;
    margin: 2px 0 6px;
}




/* Button */

.social-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    padding: 13px 24px;

    background:#600202;
    color: #fff;

    border-radius: 6px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.social-work-btn:hover {
    background: #222;
    color: #fff;
}

.social-work-btn i {
    font-size: 12px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .social-work-image {
        height: 500px;
    }

    .social-work-title {
        font-size: 32px;
    }

}



    /* =========================================
   SUPPORT / DONATE
========================================= */

.support-section {
    background: #fff;
}

.support-box {
    position: relative;
    overflow: hidden;

    background: #faf8f3;

    border-radius: 24px;
    padding: 55px;

    border: 1px solid #eee9df;
}


/* Content */

.support-subtitle {
    display: inline-block;

    color: #600202;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.support-title {
    color: #222;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.25;

    max-width: 650px;

    margin-bottom: 18px;
}

.support-text {
    color: #777;

    font-size: 15px;
    line-height: 1.8;

    max-width: 680px;

    margin-bottom: 20px;
}


/* Points */

.support-points {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 28px;
}

.support-points span {
    color: #444;

    font-size: 14px;
    font-weight: 600;
}

.support-points i {
    color: #600202;

    margin-right: 6px;
}


/* Buttons */

.support-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 25px;

    background: #600202;
    color: #fff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.support-btn:hover {
    background: #222;
    color: #fff;
}

.support-btn i {
    font-size: 12px;
}


/* Phone */

.support-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #333;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.support-call i {
    color: #600202;
}


/* Image */

.support-image {
    height: 300px;

    overflow: hidden;

    border-radius: 18px;
}

.support-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.support-image:hover img {
    transform: scale(1.05);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .support-box {
        padding: 40px;
    }

    .support-title {
        font-size: 32px;
    }

    .support-image {
        height: 280px;
    }

}

@media (max-width: 767px) {

    .support-box {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .support-title {
        font-size: 28px;
    }

    .support-text {
        font-size: 14px;
    }

    .support-image {
        height: 250px;
    }

}

@media (max-width: 575px) {

    .support-points {
        display: block;
    }

    .support-points span {
        display: block;
        margin-bottom: 10px;
    }

    .support-buttons {
        display: block;
    }

    .support-btn {
        margin-bottom: 15px;
    }

}



.vision-mission-card {
    background: #fff;
    padding: 35px 30px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.vm-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #faf8f3;
    color: #600202;
    font-size: 34px;
}

.vision-mission-card h3 {
    color: #222;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vision-mission-card p {
    /* color: #666; */
    /* font-size: 15px; */
    line-height: 1.8;
    margin-bottom: 0;
}

  
        /* =========================
   OUR WORK
========================= */

        .work-card {
            position: relative;
            height: 100%;
            background: #fff;
            padding: 32px 30px;
            border: 1px solid #eee;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.35s ease;
        }

        .work-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
        }


        /* Top */

        .work-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
        }


        /* Number */

        .work-number {
            font-size: 13px;
            font-weight: 700;
            color: #600202;
            letter-spacing: 1px;
        }


        /* Icon */

        .work-icon {
            width: 62px;
            height: 62px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #faf8f3;
            color: #600202;

            border-radius: 50%;
            font-size: 25px;

            transition: all 0.3s ease;
        }

        .work-card:hover .work-icon {
            background: #600202;
            color: #fff;
            transform: rotate(5deg);
        }


        /* Heading */

        .work-card h3 {
            color: #222;
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 12px;
        }


        /* Description */

        .work-card p {
            color: #777;
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 22px;
        }


        /* Bottom Line */

        .work-line {
            width: 45px;
            height: 3px;
            background: #600202;
            transition: all 0.3s ease;
        }

        .work-card:hover .work-line {
            width: 75px;
        }
    /* =========================================
   FACILITIES SECTION
========================================= */

.facilities-section {
    background: #faf8f3;
}


/* Facility Box */

.facility-box {
    height: 100%;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 28px 22px 25px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.facility-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}


/* Icon */

.facility-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #faf1dc;
    color: #600202;

    border-radius: 50%;

    font-size: 34px;

    transition: all 0.3s ease;
}

.facility-box:hover .facility-icon {
    background: #600202;
    color: #ffffff;
    transform: scale(1.05);
}


/* Heading */

.facility-box h3 {
    margin: 0 0 10px;

    color: #222222;
    font-size: 20px;
    font-weight: 700;
}


/* Paragraph */

.facility-box p {
    margin: 0 auto;

    max-width: 250px;

    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}


/* Tablet */

@media (max-width: 991px) {

    .facility-box {
        padding: 25px 20px;
    }

    .facility-icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .facility-box {
        padding: 28px 20px;
    }

    .facility-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .facility-box h3 {
        font-size: 18px;
    }

    .dncls{
        font-size: 9px!important;
    }

}



    /* =========================================
   DONATE SECTION
========================================= */

.donate-section {
    background: #faf8f3;
}


/* Donation Card */

.donation-card {
    background: #ffffff;
    border: 1px solid #eadfca;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


/* Header */

.donation-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #eee;
}

.donation-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #faf1dc;
    color: #600202;

    border-radius: 50%;
    font-size: 25px;
}

.donation-card-header span {
    display: block;
    color: #600202;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.donation-card-header h3 {
    margin: 0;
    color: #222;
    font-size: 25px;
    font-weight: 700;
}


/* Details */

.donation-detail {
    margin-bottom: 17px;
}

.donation-detail span {
    display: block;
    color: #888;
    font-size: 12px;
    margin-bottom: 5px;
}

.donation-detail strong {
    display: block;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}


/* Two Column Details */

.donation-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}


/* Note */

.donation-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-top: 22px;
    padding: 15px;

    background: #faf8f3;
    border-radius: 8px;
}

.donation-note i {
    color:#600202;
    margin-top: 3px;
}

.donation-note p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}


/* Mobile */

@media (max-width: 575px) {

    .donation-card {
        padding: 22px;
    }

    .donation-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .donation-card-header h3 {
        font-size: 22px;
    }

}

