.footerSection {
    margin-top: -4rem;
}

.footerBg {
    width: 100%;
}
.footerContainer {
    margin-top: 8rem;
    margin-bottom: 4rem;
    position: absolute;
}

.footerBox {
    width: 100%;
    display: flex;
}
.fLeftBox {
    width: 40%;
}
.footer-logo {
    height: 100px;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.socialIcon {
    height: 80px;
}
.fRightBox {
    width: 60%;
    display: flex;
}
.linkListF {
    width: 50%;
}
.footer-list {
    padding: 0;
    list-style: none;
}
.footer-list li {
    margin-bottom: 1rem;
    font-size: 24px;
}
.footer-list li a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}
.footer-list li a:hover {
    color: #ff9000; /* Hover effect */
}
/* ----------------------- */
.copyrightSection {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #c8c8c8;
    background-color: #ffffff;
}
.copyrightContainer {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyrightContainer .linkBox {
    display: flex;
    align-items: center;
    gap: 26px;
}
.copyrightContainer .linkBox a:hover {
    color: #003d7f;
}
.socialIconsMob {
    display: none;
}
@media screen and (max-width: 1660px) {
    .footerBg {
        height: 600px;
    }
    .footer-logo {
        height: 80px;
    }
    .footer-list li {
        margin-bottom: 0.7rem;
        font-size: 20px;
    }
    .socialIcon {
        height: 60px;
    }
}
@media screen and (max-width: 1440px) {
    .fLeftBox {
        width: 35%;
    }
    .fRightBox {
        width: 65%;
    }
    .fLeftBox .footer-logo {
        height: 70px;
    }
    .footer-list li {
        margin-bottom: 0.7rem;
        font-size: 20px;
    }
    .socialIcon {
        height: 50px;
    }
}
@media screen and (max-width: 1280px) {
    .footerBg {
        height: 500px;
    }
    .fLeftBox .footer-logo {
        height: 60px;
    }
    .footer-list li {
        margin-bottom: 0.5rem;
        font-size: 18px;
    }
    .socialIcon {
        height: 40px;
    }
    .copyrightSection {
        height: 80px;
    }
    .copyrightContainer .titel24 {
        font-size: 20px;
    }
    .capIcon {
        height: 40px;
    }
}

@media screen and (max-width: 990px) {
    .footerBg {
        height: 480px;
    }
    .fLeftBox .footer-logo {
        height: 50px;
    }
    .fLeftBox {
        width: 30%;
    }
    .fRightBox {
        width: 70%;
    }
    .fLeftBox .btnCustom {
        font-size: 16px;
    }
    .fLeftBox .mt-5 {
        margin-top: 1.5rem !important;
    }
    .social-icons {
        flex-wrap: wrap;
    }
    .footer-list li {
        margin-bottom: 0.5rem;
        font-size: 18px;
    }
    .socialIcon {
        height: 40px;
    }
    .copyrightSection {
        height: auto;
        padding: 2rem 0;
    }
    .copyrightContainer {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 1rem;
    }
    .copyrightContainer .titel24 {
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .footerBg {
        height: 700px;
    }
    .footerBox {
        flex-direction: column;
        gap: 1.5rem;
    }
    .fLeftBox,
    .fRightBox {
        width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .footerBg {
        height: 1200px;
        object-fit: fill;
    }
    .fRightBox {
        flex-direction: column;
        gap: 2rem;
    }
    .linkListF {
        width: 100%;
    }
    .linkListF .justify-content-between{
        flex-direction: column;
    }
    .footer-list{
        margin-bottom: 0;
    }
    .linkListF .justify-content-between .footer-list.mt-2{
        margin-top: 0 !important;
    }
}
@media screen and (max-width: 500px) {
    .copyrightSection {
        padding: 1.5rem 0;
    }
    .copyrightContainer .titel24 {
        font-size: 16px;
    }
}
