/* Change the color of the LinkedIn icon specifically */
.fa-linkedin {
    color: #0077B5 !important;
    font-size: 20px; /* Optional: Adjust the size as needed */
    transition: color 0.3s ease; /* Optional: Smooth transition for hover */
}

/* Optional: Add a hover effect to make it interactive */
.fa-linkedin:hover {
    color: #005582 !important; /* A slightly darker shade of blue on hover */
}
