    #bearCharges,
    #taxExemption,
    #anonymousDonation {
        border-color: #888888;
    }
    .message {
        background-color: #ffffff;
        padding: 10px 20px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        color: #000;
        text-align: center;
        white-space: nowrap; 
        width: fit-content;
        max-width: 90%;        
        position: absolute; /* Positioning inside #donation-messages */
        top: 150px;
        left: 50%;
        transform: translate(-50%, -50%); /* Centers it horizontally & vertically */
        
        z-index: 10; 
    }
    .promo-section {
        background: #fff;
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .btn-check:checked+.btn, .btn.active, .btn.show,
    .btn:first-child:active, :not(.btn-check)+.btn:active {
        background-color: #003c7a;
        border-color: #003c7a;
    }
    .btn-outline-primary {
        border-color: #000;
        color: #000;
    }
    .progress-container {
        position: relative;
        height: 6px;
        background: #ddd;
        border-radius: 3px;
        width: 98%;
    }
    .progress-bar {
        height: 8px;
        width:0%;
        background: #28a745;
        border-radius: 3px;
    }
    .progress-marker {
        left: 0%;
        position: absolute;
        top: -12px;
        transform: translateX(-50%);
        background: #28a745;
        color: white;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: bold;
    }
    .card {
        height: 100%; 
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
        transform: translateY(-5px); /* Moves the card slightly up */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Increases shadow */
    }
    .icon {
        font-size: 3rem; /* Adjust icon size */
    }
    #pgCharges,
    #cvCharges,
    #taxExemption,
    #anonymousDonation {
        border-color: #888888;
    }
    #donor-container {
        min-height: 150px; /* Ensures space even when no donors */
        padding: 10px;
    }
    .donor-list {
        max-height: 200px; /* Adjust height as needed */
        overflow-y: auto;
        padding-right: 5px;
    }
    /* Custom scrollbar */
    .donor-list::-webkit-scrollbar {
        width: 6px;
    }
    .donor-list::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 10px;
    }
    .donor-list::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }
    .donor-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #007bff;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }
    .list-group-item{
        border: none;
    }
    .list-group-item strong{
        font-weight: 600
    }
    .no-donations {
        padding: 20px;
        color: #666;
        font-size: 15px;
    }

    .donate-link {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 15px;
        background-color: #007bff;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
    }

    .donate-link:hover {
        background-color: #0056b3;
    }
    @media (max-width: 768px) {
        .buttons-container {
            display: flex;
            flex-direction: column;
        }
        .promo-section {
            padding: 10px;
        }
        .sdg-images{
            height: 80px;
        }
    }
    .donation-status {
        text-align: center;
        font-weight: bold;
    }
    .impact-item {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease-in-out;
    }
    .impact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    }
    .impact-icon {
        font-size: 2rem;
        color: #00b1e3;
        margin-bottom: 10px;
    }
    .donation-section {
        background: #f8f9fa;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
   

/* Social Media Links */
.social-links a {
    text-decoration: none;
    color: #4f46e5;
    font-size: 1.8rem;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
}

.social-links a:hover {
    color: #312e81;
    transform: scale(1.2);
}
 .share-popup {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        bottom: 50px;
        right: 0px;
        background: white;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        flex-direction: row;
        gap: 10px;
        transition: visibility 0.3s, opacity 0.3s ease-in-out;
    }
    .share-popup.show {
        visibility: visible;
        opacity: 1;
    }
    .share-popup a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
    .facebook-link { background-color: #3b5998; }
    .twitter-link { background-color: #1da1f2; }
    .whatsapp-link { background-color: #25d366; }
    .linkedin-link { background-color: #0077b5; }
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.testimonial-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial-content {
    flex: 1;
}

.carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
/* Testimonial Section */
.testimonial-section {
    text-align: center;
    position: relative;
}

/* Testimonial Card */
.testimonial-card {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

/* Custom Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-image: none;
}

.carousel-control-prev-icon::before {
    content: '\f104'; /* FontAwesome left arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #fff;
}

.carousel-control-next-icon::before {
    content: '\f105'; /* FontAwesome right arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #fff;
}
 @media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column; /* Stack image and text on mobile */
        text-align: center;
    }

    .testimonial-card img {
        width: 100px; /* Reduce image size on smaller screens */
        height: 100px;
    }

    .testimonial-content {
        text-align: center;
    }

    /* Adjust carousel controls for better touch experience */
    .carousel-control-prev, .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon::before,
    .carousel-control-next-icon::before {
        font-size: 16px;
    }
}

/* Social Media Links */
.social-links a {
    text-decoration: none;
    color: #4f46e5;
    font-size: 1.8rem;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
}

.social-links a:hover {
    color: #312e81;
    transform: scale(1.2);
}