/* Navbar container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar brand/logo */
.navbar-brand {
    flex: 1;
}

/* Navbar links */
.navbar-nav {
    display: flex;
    flex: 2;
    justify-content: space-around; 
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.navbar-nav .nav-item {
    flex: 1;
 
}

.navbar-nav .nav-link {
    color: #000; /* Set text color to black */
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold; /* Make the text bold */
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
    color: rgba(2, 117, 90, 0.733); /* Change color on hover */
}

/* Dropdown menu styling */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dropdown-menu .dropdown-item {
    color: #000; /* Set dropdown items text color to black */
    font-weight: bold; /* Make dropdown items bold */
}

.dropdown-menu .dropdown-item:hover {
    color: #02583f; /* Change dropdown item color on hover */
}

/* Responsive design */
@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
    }

    .navbar-nav .nav-item {
        display: block;
        margin: 10px 0;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .btn-donate {
        display: block;
        margin: 20px auto;
    }

    .dropdown-menu {
        width: 100%;
        position: static;
    }

    .dropdown-menu .dropdown-item {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        max-height: 30px;
    }

    .navbar-toggler {
        padding: 6px 10px;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }

    .btn-donate {
        padding: 8px 16px;
        font-size: 14px;
    }
}



/*slider section*/

.carousel-item img {
    max-height: 500px; /* Adjust the max height as needed */
    object-fit: cover; /* Ensure the image covers the container */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black; /* Custom color for the arrows */
    border-radius: 50%;
    padding: 10px;
}


/*      card body    */

.card-body { margin-top: 1rem; }
.pt-card_padding { padding-top: 1rem; }

