/* Footer Fade-In on Scroll */
#footer-sections {
opacity: 0;
transition: opacity 1s ease-in-out;
}
#footer-sections.in-view {
opacity: 1;
}
/* Footer Link Underline Animation */
#footer-sections a {
position: relative;
text-decoration: none;
color: inherit;
}
#footer-sections a::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: currentColor;
transform: scaleX(0);
transform-origin: bottom right;
transition: transform 0.3s ease-out;
}
#footer-sections a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
/* Footer Social Icons Color Transition */
#footer-sections .sqs-block-social a {
transition: color 0.3s ease-in-out;
}
#footer-sections .sqs-block-social a:hover {
color: #ff6600; /* Change to your preferred hover color */
}