@media (min-width: 1198px) {
    .mobile-manu {
        display: none;
    }

    .mobile-logo {
        display: none;
    }

}


/* Large screens (desktops) */
@media (max-width: 1200px) {

    header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: fit-content;
        padding-top: 10px;
        position: relative;
    }


    .header-manu {
        display: none !important;
    }

    .top-bar {
        display: none;
    }


    .mobile-manu-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        width: 35px;
        height: 35px;
        /* background-color: green; */
        cursor: pointer;
        z-index: 100;
    }

    .mobile-logo {
        display: inline-block;
        margin-left: 30px !important;
    }

    .mobile-logo img {
        width: 70px;
    }


    .mobile-manu {
        width: 550px;
        height: fit-content;
        padding: 10px;
        position: absolute;
        top: 0%;
        right: 0px;
        background-color: #FFFFFF;
        /* border: 1px solid black; */
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        z-index: 2;
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .mobile-manu ul {
        list-style-type: none;
    }

    .mobile-manu ul li {
        margin: 10px 0px;
    }

    .mobile-manu ul li a {
        text-decoration: none;
        font-size: 1.2rem;
        color: #000000;
        transition: all 0.3s ease;
        position: relative;
    }

    .mobile-manu ul li a:hover {
        color: #479A26;
        font-weight: 700;
    }
    .mobile-manu ul li a.active {
        color: #479A26;
        font-weight: 700;
    }


    .mobile-manu ul li a::before {
        content: "";
        position: absolute;
        width: 0%;
        height: 3px;
        background-color: #479A26;
        border-radius: 20px;
        bottom: 0px;
        transition: all 0.4s ease;
    }

    .mobile-manu ul li a:hover::before {
        width: 100%;
    }



    .swiper {
        height: fit-content;
    }


    .swiper .swiper-slide .c-btn-hero {
        margin-bottom: 70px;
    }

    .swiper .swiper-slide {
        padding-top: 50px !important;
    }

    .swiper-slide p {
        margin-top: 8px !important;
        text-align: start !important;
    }

    .swiper-pagination {
        transform: translateY(-20px) !important;
    }




    .make-donation {
        width: 100%;
        height: fit-content !important;
        transform: translateY(0px);
        color: white;
        margin-top: 30px;
        margin-bottom: 30px;
        padding-top: 20px !important;
        padding-bottom: 10px !important;
    }


    .submit-donation .custom-rate-input {
        margin-top: 20px !important;
    }

    .submit-donation .submit-donate-btn {
        margin-top: 20px !important;
    }


}




/* Styles for screens smaller than lg (below 992px) */
@media (max-width: 991.98px) {
    .mobile-manu {
        width: 96%;
    }

    .mobile-manu ul li a {
        font-size: 1rem;
    }

    .mobile-manu-icon img {
        width: 25px;
    }

    .mobile-logo {
        margin-left: 30px !important;
    }





    .commitment-social-welfare .h1 {
        width: 100%;
    }

    .our-mission-improve .our-mission-improve-1 .our-mission-improve-1-content .para {
        width: 100%;
    }



    footer .footer-content {
        transform: translateY(-10%);
    }

    footer .footer-content .logo-content {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    footer .signup-container .subscribe-now input {
        margin-bottom: 10px;
    }



    footer .footer-content .useful_links,
    .services,
    .our-gallery {
        margin-top: 40px;
    }

}




@media (max-width: 768px) {

    /* For md and smaller screens */
    .our-mission-improve h1 {
        width: 100% !important;
    }

    .mobile-logo {
        margin-left: 20px !important;
    }

    .c-m-w-100{
        width: 100% !important;
    }


}



/* Custom Design for Small Screens (sm and below) */
@media (max-width: 575.98px) {
    .tab-content-wrapper .tab-content .title {
        width: 50%;
    }

}