
/* Footer Section CSS */

.footer_section {
    padding-top: 80px !important;
    background-color: #FFFFFF;
    background-image: url("../images/footer_bg.png");
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;
}

.footer_logo p {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    opacity: 0.6;
    color: #FFFFFF;
    margin-top: 20px;
}

.footer_social {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer_social a {
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF33;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    border-radius: 100%;
    color: #FFFFFF;
    text-decoration: none;
}

.footer_social a:hover {
    background: #FFFFFF33;
}


.footer_links h5 {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #E2F0F6;
    margin-bottom: 28px;
}

.footer_links ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.footer_links ul li {
    margin-bottom: 10px;
}

.footer_links ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
}

.footer_links ul li:hover a {
    opacity: 0.8;
}

.address {
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 24px;
}

.address h4 {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
}

.copy_right {
    border-top: 1px solid #FFFFFF29;
    text-align: center;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFFCC;
    margin-top: 64px;
}



@media (max-width: 992px) {
    .footer_section {
        padding: 60px 40px !important;
        padding-bottom: 0px !important;
    }

    .copy_right {
        margin-top: 0px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .footer_section {
        padding: 60px 20px !important;
        padding-bottom: 0px !important;
    }
}