/* Fix for footer button gradient containment */
.footer-bottom .contact-btn {
    position: relative;
    overflow: hidden; /* Ensure pseudo-element doesn't leak out */
}

.footer-bottom .contact-btn.btn-animate::before {
    /* Ensure the animation stays within the button boundaries */
    transform: translateX(-101%); /* Move it fully out of view in default state */
    left: 0;
    width: 100%;
}

/* Fix specific to the grid layout */
.footer-bottom .col-md-4 {
    overflow: visible; /* Ensure the column doesn't clip its content */
}
