/* Add this code to style.css */
/* Footer CSS with sticky footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.container {
    flex: 1;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    max-width: 100%;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 5px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .link-divider {
    color: #fff;
    margin: 10px;
}

.footer .row {
    justify-content: space-between;
}

.btn-hover-animation {
    transition: transform 0.2s ease-in-out;
}

.btn-hover-animation:hover {
    transform: translateY(-2px);
    transition: transform 0.4s ease-out;
    /* Adjust the duration and easing here */
}

.text-bold {
    font-weight: 300;
    /* Adjust the duration and easing here */
}

.text-bold-copyrights {
    font-weight: 500;
    /* Adjust the duration and easing here */
}

.column{
    flex-direction: column;
}

.test-justify {
    justify-content: unset;
    justify-items: unset;
}

hr {
    margin-top: 30px;
}

.smaller-icon {
    max-width: 40px;
    max-height: 40px;
    transition: transform 0.2s ease-in-out;
}

.radius-icon {
    border-radius: 7px;
}

.text-reduce{
    font-size: 14px;
}

.footer .contact {
    color: rgb(13 110 253);
    margin-left: 0px;
}

.footer .support-click-here {
    font-weight: 500;
    margin-left:0px;
    font-size: 15px;
}

.footer .link-anim {
    transition: transform 0.3s;
    width: 195px;
}

.footer .links-en {
    width: 130px;
}

.footer .link-anim:hover {
    text-decoration: none;
    transform: translateX(3px);
}