﻿@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: inter;
}

.sec-pad {
    padding: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0px;
}

/* color theme */

/* text Color */

.text-gradient {
    background: linear-gradient(75deg, #8c0f0b, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-black {
    color: #000;
}

.text-gray {
    color: #292929;
}

.text-red {
    color: #8c0f0b;
}

/* Background Colors */

.bg-red {
    background-color: #8c0f0b;
}

.bg-brown {
    background-color: #260403;
}

.bg-footer {
    background-color: #240d0d;
}

.bg-light-red {
    background-color: #ffd4d24b;
}

.bg-light-gray {
    background-color: #b4b4b421;
}

.bg-light-gray-gradient {
    background: linear-gradient(180deg, #c0c0c042, #fff);
}

.bg-light-red-gradient {
    background: linear-gradient(180deg, #fff, #ffd2d0c2);
}

.bg-red-gradient {
    background: linear-gradient(90deg, #fff, #ffd2d0c2,#fff);
}

/* components  */
/* buttons */
/* Base Button Styles */
.btn-custom {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}

/* Responsive Sizes */
.btn-sm-custom {
    padding: 0.3rem 0.75rem;
    font-size: 0.875rem;
}

.btn-md-custom {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.btn-lg-custom {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}
/* 1. Gradient Donation Button */
.btn-gradient {
    background: linear-gradient(45deg, #8c0f0b, #260317);
    color: #fff;
}

    .btn-gradient span img {
        height: 1.8rem;
        width: 1.8rem;
    }

    .btn-gradient:hover {
        background: linear-gradient(45deg, #260317, #8c0f0b);
        color: #fff;
    }

        .btn-gradient:hover span img {
            transform: scale(1.03);
        }

/* 2. White Button with Outline */
.btn-white-outline {
    background-color: #fff;
    border: 2px solid #333;
    color: #333;
}

    .btn-white-outline:hover {
        background-color: #f1f1f1;
    }

/* 3. Light Red Button */
.btn-light-red {
    background-color: #ffc4bf;
    border: 2px solid #fcfcfc00;
    color: #000000;
    transition: all 0.4s ease-in-out;
}

    .btn-light-red:hover {
        border: 2px solid #ffdfdf;
        background-color: #ffffff;
        color: #8c0f0b;
    }

/* download btn  */
.download-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    padding: 0.55rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    color: #8c0f0b;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .download-btn:hover {
        background-color: #ffe4e4;
    }

.icon-circle {
    width: 30px;
    height: 30px;
    background-color: #ffd7d47c; /* Light red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* 4. Black Button */
.btn-black {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
}

    .btn-black span {
        height: 3rem;
        width: 3rem;
        padding: 0.4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff41;
        border-radius: 50px;
        margin-right: 10px;
    }

        .btn-black span img {
            height: 2rem;
            width: 2rem;
        }

    .btn-black:hover {
        background-color: #ffffff;
        color: black;
    }

        .btn-black:hover span {
            background-color: #000000dc;
        }
/* 5. Grey Button */
.btn-grey {
    background-color: #6c757d;
    color: #fff;
}

/* 6. Red Button */
.btn-red {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background-color: #dc3545;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0);
    transition: all 0.3s ease-in-out;
}

    .btn-red span {
        height: 3rem;
        width: 3rem;
        padding: 0.4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff41;
        border-radius: 50px;
        margin-right: 10px;
    }

        .btn-red span img {
            height: 2rem;
            width: 2rem;
        }

    .btn-red:hover {
        background-color: #260403;
        border: 2px solid white;
    }

        .btn-red:hover span img {
            scale: 1.2;
        }

/* Navbar */
.top-con {
    /* background-color: #997a7a; */
    display: flex;
    align-items: center;
    justify-content: start;
}

    .top-con a {
        margin: 5px;
    }

    .top-con .top-contact {
        display: flex;
        align-items: center;
    }

.top-contact i {
    font-size: 20px;
}

.top-contact img:hover {
    scale: 0.9;
}

/* .top-contact p {
  color: #004f9d;
  margin-bottom: 0rem !important;
} */

.top-contact p:hover {
    color: rgb(68, 68, 68);
}

.top-social-media {
    display: flex;
    /* background-color: #d48b8b; */
    justify-content: end;
    align-items: center;
}

    .top-social-media a {
        margin: 5px;
    }

        .top-social-media a img {
            width: 25px;
            height: 25px;
            transition: 0.3s ease-in-out;
        }

            .top-social-media a img:hover {
                scale: 0.9;
            }

.navbar {
    --bs-navbar-padding-y: 0rem !important;
}

.navbar-nav .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 600;
    position: relative;
}

    .navbar-nav .nav-link::before {
        content: "";
        display: block;
        width: 0;
        height: 2px;
        background: #8c0f0b;
        transition: width 0.3s;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .navbar-nav .nav-link:hover::before {
        width: 100%;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .show > .nav-link {
        color: #8c0f0b;
    }

.navbar-toggler {
    color: #8c0f0b !important;
    /* border:1px solid#DA251C!important; */
}

.nav-img {
    /* width: 84px; */
    height: 60px;
}

.dropdown-item:hover {
    color: #8c0f0b;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: bolder;
    margin: 0vw 0.1vw;
    color: black !important;
}

.nav-top {
    padding: 0vw 1.2vw;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 0 !important;
    align-items: center;
}
/* Show dropdown on hover */
.nav-item .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0px;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

/* for submenu */
.dropdown-submenu {
    list-style: none;
    /* background-color: #6c757d; */
}

.dropdown-archievemenu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: -0.1rem;
    margin-top: -0.2rem;
    display: none;
    list-style: none;
    background: white;
    border-radius: 5px;
    padding-left: 0rem;
}

.dropdown-submenu:hover .dropdown-archievemenu {
    display: block;
}

.dropdown-archievemenu li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* for small device */
.accordion-item {
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #fce5e5;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    padding: 16px 4px;
    font-weight: 500;
    color: black;
}

.offcanvas .nav-item {
    display: flex;
    justify-content: start;
    align-items: center;
}

/* Optional smooth appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* home Page */

/* banner */
/* Banner wrapper */
/* banner */
.banner {
    position: relative;
    width: 100%;
    /* height: 100%; */
    background-size: cover;
    overflow: hidden;
}


    .banner img {
        width: 100%;
        /* min-height: 665px; */
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

.banner-text {
    position: relative;
    z-index: 2;
    /* Ensures text appears on top of the image */
    padding: 20px;
    text-align: right;
}

.btn-white-outline,
.btn-white {
    z-index: 2;
}

.banner-text {
    /* background-color: aqua; */
    width: 55%;
    padding: 9vw 3vw;
    display: flex;
    justify-content: start;
    /* align-items: center; */
    flex-direction: column;
}

    .banner-text h1 {
        font-size: 3.5vw;
        /* width: 85%; */
    }

.banner-btn-grp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* flex-wrap: wrap; */
    gap: 10px;
}

    .banner-btn-grp span img {
        top: 0px;
        left: -10px;
        height: 25px !important;
        width: 25px !important;
    }

.btn-white-outline,
.btn-white {
    padding: 0.5rem 1rem;
    border: 2px solid white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    margin: 10px 0;
    transition: 0.3s ease-in-out;
    text-align: center;
    min-width: 100px;
}

.btn-white-outline {
    color: white;
    background-color: transparent;
}

    .btn-white-outline:hover {
        color: #8c0f0b;
        background-color: white;
    }

.btn-white {
    border: 1px solid #8c0f0b;
    background-color: white;
    color: #8c0f0b;
}

    .btn-white:hover {
        color: white;
        background-color: #8c0f0b;
    }
/* section2 */
.sec-2-card {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
}

    .sec-2-card img {
        height: 3rem;
        width: 3rem;
    }

    .sec-2-card:hover img {
        scale: 1.2;
    }

.about-img {
    width: 23rem;
}

/* sec-4 */
.four {
    background: linear-gradient(180deg, #ffc9c247, #fff);
}

.aproach-card {
    /* width: 300px; */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    margin: 1rem;
}

    .aproach-card img {
        width: 100%;
        border-radius: 1rem;
        display: block;
        transition: all 0.3s ease-in-out;
    }

    .aproach-card:hover img {
        scale: 1.06;
    }

.overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
}

    .overlay .para {
        height: 170px;
        overflow-y: scroll;
        display: none;
        transition: all 0.5s ease-in-out;
    }

.aproach-card:hover .para {
    display: block;
}

.overlay-heading {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.overlay .para::-webkit-scrollbar {
    width: 5px;
}

.overlay .para::-webkit-scrollbar-thumb {
    background-color: #cecece;
    border-radius: 10px;
}

/* sec-6 */
.report-card {
    position: relative;
    display: flex;
    background: white;
    padding: 1rem;
    border: 1px solid #8c0f0b;
    border-radius: 10px;
    margin: 1rem;
}

.progress-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    padding: 15px;
}

.center-line {
    position: absolute;
    top: 50%;
    height: 10px;
    width: 100%;
    z-index: -2;
    border-radius: 20px;
    background-color: #d5978f7a;
}

/* sec-7 */
.gallary {
    /* height: 13rem;
  width: 17rem; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    margin-bottom: 25px;
    /* margin: 15px; */
}
    /* .gallary .overlay {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 0.7rem;
  background: #fff;
} */
    .gallary img {
        height: 100%;
        width: 100%;
    }

    .gallary:hover img {
        scale: 1.05;
    }

    .gallary:hover .overlay {
        display: Block;
    }

/* sec-8 */
.donate-bg {
    position: relative;
    background: url(./images/donate-bg.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

    .donate-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Apply a white gradient overlay */
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.986) );
        z-index: 1;
        pointer-events: none; /* Allows clicks to pass through */
    }

    .donate-bg > * {
        position: relative;
        z-index: 2; /* Ensures content appears above the overlay */
    }

.donate-img {
    height: 401px;
}

.donate-text-con {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .donate-text-con h2 {
        font-size: 4vw;
    }
/* sec-9 */
.form-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 30px;
    border-radius: 32px;
}

.form-control {
    border-color: grey;
}

.form-label {
    font-weight: bolder;
}

/* sec-11 */
.team-card {
    /* height: 100%; */
    width: 18rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.4s ease-in-out;
}

    .team-card:hover img {
        scale: 1.04;
    }

    .team-card img {
        width: 170px !important;
        height: 173px !important;
        border-radius: 10px;
        /* border: 1px solid #8c0f0b; */
        margin: 1vw;
    }

    .team-card p {
        max-height: 40px;
        overflow-y: auto;
        text-align: center;
        font-weight: 500;
        font-size: 0.85rem;
        scrollbar-width: thin; /* Firefox के लिए पतली स्क्रॉलबार */
        scrollbar-color: #ccc transparent; /* Firefox के लिए स्क्रॉलबार रंग */
    }

        /* WebKit ब्राउज़रों (Chrome, Safari) के लिए */
        .team-card p::-webkit-scrollbar {
            width: 6px;
        }

        .team-card p::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 3px;
        }

        .team-card p::-webkit-scrollbar-track {
            background: transparent;
        }

/* sec-13  */

/* Modifier for larger testimonial */
.test-card-lg {
    padding: 2rem;
    border-radius: 30px;
}

    .test-card-lg .info-box p {
        font-size: 1.1rem;
        height: 220px; /* optional to adjust height */
    }

    .test-card-lg .user-profile img {
        width: 100px !important;
        height: auto;
        border-radius: 12px;
        margin: 1rem;
    }

    .test-card-lg .user-profile p {
        font-size: 1.1rem;
    }


.test-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #dad8d82f;
    /* border: 2px solid #043B71; */
    border-radius: 20px;
    padding: 1.2rem;
}

    .test-card:hover {
        background-color: white;
    }

.info-box p {
    height: 180px;
    width: 380px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding: 1rem;
    font-size: 1rem;
    color: #020202;
    scrollbar-width: thin; /* Firefox के लिए पतली स्क्रॉलबार */
    scrollbar-color: #ccc transparent;
}

    /* Quote icon on the left side */
    .info-box p::before {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        left: 11px;
        top: 11px;
        transform: translateY(-50%);
        background: url("/images/quote-icon.svg") no-repeat center center;
        background-size: contain;
    }


    /* Quote icon on the right side */
    .info-box p::after {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        right: 8px;
        bottom: 5px;
        transform: translateY(50%) rotate(180deg);
        background: url("/images/quote-icon.svg") no-repeat center center;
        background-size: contain;
    }


.user-profile {
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
}

    .user-profile h6 {
        color: #8c0f0b;
        font-weight: 700;
        margin-bottom: 0rem;
    }

    .user-profile p {
        color: #666666;
        font-weight: 500;
        font-size: 1rem;
    }

    .user-profile img {
        height: auto;
        width: 60px !important;
        margin: 0.9rem;
        border-radius: 10px;
    }


/* testimoanil page */
.testi-card {
    display: flex;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0b6);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.user-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    /* background-color: #ffe8e4; */
}

    .user-sec img {
        height: 320px !important;
        width: 280px !important;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .user-sec h3 {
        color: #8c0f0b;
        font-weight: 700;
        margin: 0.5rem 0;
    }

    .user-sec p {
        font-size: 1.1rem;
        text-align: center;
        color: #2c2c2c;
    }

.testi-card .para {
    width: 100%;
    height: 350px;
    padding: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .testi-card .para p {
        height: 100%;
        width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 2rem;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
        position: relative;
    }

    /* Adding before and after quotes inside p */
    .testi-card .para ::before {
        content: "“";
        position: absolute;
        top: -17px;
        left: 4px;
        font-size: 4rem;
        color: #440000;
        font-family: serif;
    }

    .testi-card .para ::after {
        content: "”";
        position: absolute;
        bottom: -20px;
        right: 4px;
        font-size: 4rem;
        color: #440000;
        font-family: serif;
    }

    /* Custom scrollbar for p */
    .testi-card .para ::-webkit-scrollbar {
        width: 5px;
    }

    .testi-card .para ::-webkit-scrollbar-thumb {
        background-color: #cecece;
        border-radius: 10px;
    }

/* Responsive */
@media (max-width: 768px) {
    .testi-card {
        flex-direction: column;
    }

    .user-sec img {
        height: 250px !important;
        width: 250px !important;
    }

    .para {
        height: 300px;
        padding: 1rem;
    }

        .para p {
            padding: 1.5rem;
        }
}


/* news and media page */

.news-card {
    height: 100%;
    width: 100%
}

/* footer */
footer ul {
    padding-left: 0rem;
}

.footer-heading {
    font-size: 2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px white; /* For WebKit-based browsers */
    text-stroke: 1px white; /* Standard property (less supported) */
}

footer ul li {
    list-style: none;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    padding-left: 20px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.footer-link li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("/images/right-arrow-icon.svg");
    background-size: contain;
    transition: transform 0.3s ease-in-out;
}

.footer-contat li::before {
    position: absolute;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 15px;
    content: "";
}

.footer-contat li:first-child::before {
    content: "\f0e0";
}

.footer-contat li:nth-child(2)::before {
    content: "\f879";
}

.footer-contat li:nth-child(3)::before {
    content: "\f3c5";
}

.footer-contat li:last-child::before {
    content: "\f3c5";
}
/* Hover effect on list item */
footer ul li:hover {
    transform: translateX(10px);
    /* Move entire list item 10px to the right */
}

    /* Optional: Hover effect on the text color */
    footer ul li:hover span {
        color: #d3d3d3;
        /* Change text color on hover */
    }

.footer-bottom p {
    margin-bottom: 0rem !important;
    font-weight: 600;
}

/* social media  */
.top-social-media {
    display: flex;
    /* background-color: #d48b8b; */
    justify-content: start;
    align-items: center;
}

    .top-social-media a {
        margin: 5px;
    }

        .top-social-media a img {
            width: 25px;
            height: 25px;
            transition: 0.3s ease-in-out;
        }

            .top-social-media a img:hover {
                scale: 0.9;
            }


/* About Page */

.birsa-img img {
    border: 2px solid #181818;
    border-radius: 10px;
}

.choose-card {
    height: 170px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #D5978F;
    margin: 0.5rem;
}

    .choose-card:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

.circle-icon {
    background-color: #fce5e5;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .circle-icon img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

/* what we Do  */
.scrollable-content {
    /* max-height: 350px; */
    overflow-y: auto;
    margin-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

    .scrollable-content::-webkit-scrollbar {
        width: 4px;
    }

    .scrollable-content::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 5px;
    }

    .scrollable-content::-webkit-scrollbar-track {
        background: transparent;
    }

.sticky-image {
    position: sticky;
    top: 100px; /* adjust based on your header height */
    height: 100%;
    z-index: 1;
}


.card {
    min-height: 250px;
    border: 1px solid #eee;
    border-radius: 10px;
}

/* join us */
.list ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

    .list ul li {
        position: relative;
        padding-left: 1.8rem; /* Space for the icon */
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
    }

        .list ul li::before {
            content: url("/images/check-icon.svg"); /* Replace with your preferred icon/emoji */
            height: 16px;
            width: 16px;
            position: absolute;
            left: -0.4rem;
            top: 0rem;
        }

/* contact us page */
.mail-div, .con-div {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-direction: column;
    background: #ffe2e6a1;
    padding: 0rem 1.5rem;
    margin: 10px;
    /* height: 200px; */
    border-radius: 10px;
}

.m-detail, .cont-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .m-detail span img, .cont-detail span img {
        height: 30px;
        width: 30px;
        margin-right: 10px;
    }

    .m-detail p a, .cont-detail p a {
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        color: black;
    }

        .m-detail p a:hover {
            color: #a3032b;
        }
/* .bg-gradient-con{
  background: linear-gradient(180deg, #fff,#dac9ff);
} */
.map iframe {
    border-radius: 10px;
}

.paymethod {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.social-media-grp {
    background: linear-gradient(45deg,#ffffff42,#ffffff1a);
    padding: 1rem;
    width: 300px;
    border-radius: 20px;
}

    .social-media-grp ul {
        list-style: none;
        display: flex;
        /* justify-content: space-around; */
        align-items: center;
        flex-wrap: wrap;
    }

        .social-media-grp ul li img {
            height: 3.5rem;
            width: 3.5rem;
            margin: 0.5rem;
        }

            .social-media-grp ul li img:hover {
                scale: 1.05;
            }
/* donate page */
.donate-img {
    width: 20rem;
}
/* .scan{
  background: linear-gradient(60deg,#8c0f0b,#fff);
} */
.scan ul {
    list-style: none;
    padding: 1rem;
}

    .scan ul li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .scan ul li span img {
            height: 3rem;
            width: 3rem;
        }

.scanner {
    border: 1px solid #8c0f0b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
}

.qr-code {
    height: 372px;
    width: 339px;
}

.sbi {
    background: rgba(150, 231, 255, 0.26);
    padding: 1rem;
    border-radius: 10px;
}

.bank-details {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}
/* .bank-details h5{
font-size: 2vw;
} */

/* newpaer */

.assig-card {
    background: rgba(75, 1, 1, 0.144);
    border: 1px solid rgb(255, 188, 188);
    border-radius: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

    .assig-card ul {
        list-style: none;
        margin-bottom: 0;
    }

        .assig-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 2rem;
            transition: all 0.3s ease-in-out;
        }

            .assig-card ul li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0.4rem;
                width: 1.2rem;
                height: 1.2rem;
                background-image: url("./images/check-icon.svg"); /* Update path as needed */
                background-size: contain;
                background-repeat: no-repeat;
            }

    .assig-card p {
        font-size: 1rem;
        font-weight: 500;
    }

        .assig-card p:hover {
            color: #8c0f0b;
        }

    .assig-card ul li:hover {
        transform: translateX(10px);
    }

/* new and media */
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    border: 1px solid #8c0f0b;
    border-radius: 10px;
}

.masonry {
    column-count: 3;
    column-gap: 1rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry {
        column-count: 1;
    }
}
/* Responsive */
@media (max-width: 576px) {
    .testimonial-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-info {
        text-align: center;
    }

    .paymethod {
        flex-direction: column;
    }

    .overlay .para {
        height: 130px;
        overflow-y: scroll;
        display: none;
        transition: all 0.5s ease-in-out;
    }

    .sec-pad {
        padding: 1.2rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image img {
        width: 100%;
        max-height: 250px;
    }

    .testimonial-content {
        padding: 1rem 1.5rem;
    }

    .quote-end {
        text-align: center;
    }
}



/* media Queries */

/* ===== Extra Small Devices (phones <576px) ===== */
@media (max-width: 575.98px) {
    /* Your styles here */
    .banner img {
        height: 100%;
    }

    .banner-text {
        background: #fff8f849;
        width: 100%;
    }

        .banner-text h1 {
            font-size: 1.2rem;
            /* width: 85%; */
        }

        .banner-text p {
            font-size: 0.8rem;
        }
    /* map */
    .map {
        width: 80vw;
        height: auto;
    }

        .map iframe {
            width: 100%;
            height: auto;
        }
}

/* ===== Small Devices (landscape phones ≥576px) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Your styles here */
    .banner-text {
        padding: 3vw 3vw;
    }

    .banner-text {
        background: #ffdfdf48;
        width: 100%;
    }

        .banner-text h1 {
            font-size: 2rem;
            /* width: 85%; */
        }
    /* map */
    .map {
        width: 80vw;
        height: auto;
    }

        .map iframe {
            width: 100%;
            height: auto;
        }
}

/* ===== Medium Devices (tablets ≥768px) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Your styles here */
    /* map */
    .map {
        width: 80vw;
        height: auto;
    }

        .map iframe {
            width: 100%;
            height: auto;
        }
}

/* ===== Large Devices (desktops ≥992px) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Your styles here */
}

/* ===== Extra Large Devices (large desktops ≥1200px) ===== */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    /* Your styles here */
}

/* ===== XXL Devices (≥1400px) ===== */
@media (min-width: 1400px) {
    /* Your styles here */
}

.offcanvas {
    z-index:9999;
    visibility:visible;

}