
:root {
    --bg-color: #b20000;
    /* --bg-color: #162e7b; */
    --text-color: #f5f5f5;
    --accent-color: #4f46e5;
    --highlight-color: #c084fc;
    --light-blue: #dce9f5;
    --light-mild: #e8dfca;
    --main-bg: #b20000;
    /* --main-bg: #162e7b; */
    --text-light: #f8f9fa;
    --heading: #162e7b;
}




/*  management section cutom css start here  */
.management-section {
    background-color: var(--light-blue);
}

.team-card {
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 10px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(25, 24, 59, 0.15);
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--main-bg);
    margin: 20px auto;
}

.heading-color {
    color: var(--main-bg);
}


.footer {
    background: linear-gradient(180deg, var(--bg-color), #1c1c1c);
    color: #fff;
    padding: 60px 10%;
    font-family: "Poppins", sans-serif;
    position: relative;
}

@media(max-width:992px){
    .footer {
    padding: 60px 4%;
}
}
@media(max-width:640px){
 .team-card img {
    width: 150px;
    height: 250px;
}

}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer h3,
.footer h4 {
    color: #ffd36b;
    margin-bottom: 15px;
}

.footer p {
    color: #d3d3d3;
    line-height: 1.6;
    font-size: 14px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ffd36b;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 10px;
}

.footer-socials a {
    color: #fff;
    background: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #ffd36b;
    color: #000;
}

.footer-buttons .btn {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-buttons .brochure {
    background: #fff;
    color: #000;
}

.footer-buttons .donate {
    background: #ffd36b;
    color: #000;
}

.footer-buttons .btn:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    color: #aaa;
}




.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #077fcb, #d39c0e);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    z-index: 9999;
}

.scroll-top-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d39c0e, #077fcb);
}

.hover-shadow:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.hover-shadow:hover img {
    filter: brightness(0.9);
}



.breadcrumb-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.breadcrumb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right center;
    z-index: 1;
    transform: scale(1.05);
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgb(178, 0, 0, 0.95) 55%,
        rgb(178, 0, 0, 0.4) 80%,
        transparent 100%
    );
    z-index: 2;
}

.breadcrumb-banner h1,
.breadcrumb-banner .breadcrumb {
    position: relative;
    z-index: 3;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff !important;
}


@media (max-width: 767px) {
    .breadcrumb-banner {
        height: 180px;
        text-align: center;
    }

    .breadcrumb-overlay {
        background:  rgb(178, 0, 0, 0.75) 55%;
    }
}
