footer {
    background-color: #F1F4F7;
}

/* Footer Top Area */
footer.footer-three .footer-top {
    padding: 40px 0 20px;
}

footer.footer-three .footer-about img {
    max-height: 50px;
}

/* Footer Widgets */
.footer-widget {
    margin-bottom: 20px;
}

footer.footer-three .footer-widget h5 {
    color: #000000;
    margin-bottom: 24px;
    position: relative;
    font-size: 18px;
}

footer.footer-three .footer-widget h5::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 1px;
    width: 100%;
    background: #e0e0e0;
    border-radius: 30px;
}

footer.footer-three .footer-about {
    max-width: 416px;
    width: 100%;
}

.footer-about p {
    margin-bottom: 16px;
}

.footer-about h5::before {
    display: none;
}

/* Newsletter Form */
.footer-input .input-group {
    width: 100%;
    border: 1px solid #7D828C;
    padding: 8px 16px;
    border-radius: 54px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-input .input-group-text {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #4E5561;
    font-size: 16px;
}

.footer-input .form-control {
    flex: 1;
    border: none;
    box-shadow: none;
    padding: 0 10px;
    height: 38px;
    background-color: transparent;
}

.footer-input .btn {
    background-color: var(--tts-buttton-bg);
    border: 1px solid var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    border-radius: 54px !important;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
}

/* Footer Menu Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: inherit;
}

.footer-menu a:hover {
    color: var(--tts-buttton-bg);
}

/* Social Icons */
.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    list-style: none;
    margin-bottom: 0px;
}

.social-icon li a {
    width: 42px;
    height: 42px;
    background: #FFF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-icon a.facebook {
    background-color: #3b5998;
}

.social-icon a.instagram {
    background-color: #bc2a8d;
}

.social-icon a.twitter {
    background-color: #00aced;
}

.social-icon a.linkedin {
    background-color: #007bb6;
}

.social-icon a.youtube {
    background-color: rgb(255, 0, 51);
}


.avatar {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 500;
    position: relative;
}


footer.footer-three .footer-bottom {
    background: var(--tts-buttton-bg);
    padding: 20px 0 20px;
}

footer.footer-three .footer-bottom p {
    color: #ffffff;
    margin-bottom: 0px;
}

footer .footer-bottom p strong {
    color: #ffffff;
}

footer .footer-bottom .card-links {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

footer .footer-bottom .card-links li a {
    position: relative;
    margin-right: 8px;
    color: #393F4D;
}

footer .footer-bottom .card-links li a img {
    width: 35px;
    height: 25px;
}



.floating-buttons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateX(50%) rotate(-90deg);
    z-index: 1020;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.1rem

}

.floating-buttons .btn-scroll-top {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.floating-buttons .btn-scroll-top {
    animation: slide-in 0.5s ease-out;
}
