I am currently working on the homepage of and specifically within the "OUR SERVICES" section.
My goal is to have both the text and the Font Awesome icon change color when hovering over a services box. I've managed to get the text to work, but I'm struggling with getting the icon to change as well.
If anyone could provide some guidance on the CSS code needed to achieve this effect, it would be greatly appreciated.
Below is the current CSS code I have for the text, but I just can't seem to make it work for the Font Awesome icon:
.service-nav-tab li a:hover, .service-nav-tab li.active a {
background: linear-gradient(132deg, #e31372, #12a9c1, #5086bb, #6a10b4, #d49c10);
background-size: 400% 400%;
animation: BackgroundGradient 40s ease infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}