:root {
    --choco-dark: rgb(231, 106, 60);
    --choco-main: #6b2416;
    --maroon: rgb(232, 93, 142);
    --gold: #8f1010;
    --text-light: #f8f6f4;
    --text-muted: #e3dcdc;
}
.ngo-footer {
    background: linear-gradient(270deg, var(--choco-dark), var(--maroon));
    color: var(--text-light);
    font-family: "Segoe UI", sans-serif;
    width: 100%;
}
.ngo-logo img {
    width: 45%;
    margin-top: -10px;
}
.ngo-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: white;
    text-align: justify;
    padding-right: 20px;
    font-weight: 500;
}

.ngo-title {
    font-size: 20px;
    margin-bottom: 18px;
    color: #fff;
    position: relative;
}

.ngo-title::after {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--gold);
    display: block;
    margin-top: 8px;
    transition: width 0.3s ease;
}

.ngo-title:hover::after {
    width: 70px;
}

.ngo-links,
.ngo-contact {
    list-style: none;
    padding: 0;
}
.ngo-links li,
.ngo-contact li {
    margin-bottom: 10px;
    font-size: 15.5px;
    font-weight: 600;
}

.ngo-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.ngo-contact i {
    font-size: 19px;
}
.envelope-icon {
    color: #ffdd57;
    display: inline-block;
    margin-right: 10px !important;
}
.whatsapp-icon {
    color: #25d366;
    margin-right: 10px;
}
.phone-icon {
    color: #34b7f1;
}
.location-icon {
    color: #e11010;
    margin-right: 10px !important;
}
.ngo-contact a {
    text-decoration: none;
    color: #fff;
}

.ngo-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.ngo-bottom {
    font-size: 16px;
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.35)
    );
}
.ngo-bottom1 {
    font-size: 16px;
    color: #bbb3aa;
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.35)
    );
    height: 33px;
}
.ngo-bottom1 a {
    margin-right: 10px;
}
.social-icons a {
    color: var(--maroon);
}
.footer-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.footer-links li a {
    color: #efefef;
    text-decoration: none;
    transition: color 0.3s ease;
}
/* Desktop */
@media (min-width: 1290px) {
    .contact-footer {
        padding-left: 100px !important;
    }
    .quick-footer {
        padding-left: 40px !important;
    }
}
@media (min-width: 1100px) and (max-width: 1289px) {
    .contact-footer {
        padding-left: 20px !important;
    }
    .quick-footer {
        padding-left: 20px !important;
    }
}
/* Mobile */
@media (max-width: 767px) {
    .ngo-footer {
        text-align: center;
    }
    .ngo-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--choco-dark), var(--maroon));
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 1100;
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--maroon), var(--choco-dark));
}

/* Mobile thoda chhota */
@media (max-width: 576px) {
    #scrollTopBtn {
        width: 42px;
        height: 42px;
        bottom: 18px;
        right: 18px;
        font-size: 16px;
    }
}
