/* WPBakery socials alignment fix */
.vc_icon_element,
.vc_social_links,
.wpb_content_element .vc_icon_element,
.wpb_content_element .vc_social_links {
    display: flex;
    justify-content: center; /* Change to flex-start or flex-end if needed */
    align-items: center;
    gap: 10px; /* Adjust spacing between icons */
    flex-wrap: wrap; /* Keeps icons responsive on small screens */
}

.vc_icon_element a,
.vc_social_links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}