footer {
    position: relative;
    background-color: #1B1B1B;
    background-image: url(../img/backgrounds/footer-main-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;

}

.fixed-chat-btn svg{
    position: fixed;
    bottom: 30px;
    right: 10px;
    padding: 20px;
    width: 32px;
    height: 32px;
    background-color: green;
    color: #fff;
    border-radius: 50%;
    animation: bounce 2s infinite;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s;
    cursor: pointer;
}

@media (max-width:568px){
    .fixed-chat-btn a svg{
        width: 28px;
        height: 28px;
        padding: 16px;
        bottom: 10px;
    } 
}

footer .footer-content-wrapper {
    padding: 60px 0;
    position: relative;
}
footer .footer-content-wrapper::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/backgrounds/footer_shape.png) no-repeat;
}
footer .footer-content-wrapper .logo {
    width: 260px;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}

footer .footer-content-wrapper .footer-abt p {
    color: #fff;
    margin-bottom: 20px;
}

footer .footer-content-wrapper .footer-social svg {
    color: #fff;
    padding: 16px;
    margin-right: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

.footer-social svg:hover {
    transform: scale(1.2);
}

.footer-social svg.instagram:hover {
    background-color: #E4405F;
    /* Instagram color */
}

.footer-social svg.facebook:hover {
    background-color: #1877F2;
    /* Facebook color */
}

.footer-social svg.twitter:hover {
    background-color: #1DA1F2;
    /* Twitter color */
}

.footer-social svg.linkedin:hover {
    background-color: #0077B5;
    /* LinkedIn color */
}

.footer-social svg.youtube:hover {
    background-color: #FF0000;
    /* YouTube color */
}



footer .footer-links h6 {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    border: none;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    border-bottom: 0;
    padding: 0 0 15px 0;
    margin: 0 0 35px 0;
    max-width: 275px;
}

footer .footer-links h6::before,
footer .footer-links h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 61px;
    height: 2px;
    background-color: #FFC000;
}

footer .footer-links h6::after {
    width: 16px;
    border: 3px solid #000;
    height: 10px;
    background-color: transparent;
    bottom: -3px;
    left: 40px;
    -webkit-animation: footerLine 7s linear infinite;
    animation: footerLine 7s linear infinite;

}

@keyframes footerLine {
    0% {
        left: 40px;
    }

    50% {
        left: 0;
    }

    100% {
        left: 40px;
    }
}
footer .footer-links ul li{
    display: block;
    position: relative;
}

footer .footer-links ul li a{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 22px;
    display: block;
    position: relative;
    color: #fff;
}

footer .footer-links ul li a svg{
    margin-right: 20px;
}


footer .footer-links h4.sub-title{
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}
footer .footer-links .footer-info{
    display: flex;
    align-items: center;
    gap: 6px;
}
footer .footer-links .footer-info svg{
    padding: 5px;
    color: #000;
    background-color: #FFC000;
    width: 16px;
    height: 16px;
}

footer .footer-links .footer-info a{
    color: #fff;
}


footer .copyright{
    padding: 20px 0;
    background-color: #000;
}

footer .copyright p{
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

footer .copyright p a{
    color:#fff;
    text-align: end;
    display: block;
}

footer .copyright p a span{
    color: #FFC000;
    font-weight: 700;
}

@media (max-width:992px) {
    footer .footer-links {
       margin-top: 30px;
    }
    footer .copyright p a{
        text-align: start;
        margin-top: 8px;
    }
}