/* Basic styles for social icons */
.netpear-social-follow {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.netpear-social-follow a {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    color: #fff;
    border-radius: 0; /* Square icons */
}

/* Individual background colors for each social icon */
.netpear-social-follow a.facebook {
    background-color: #3b5998; /* Facebook blue */
}

.netpear-social-follow a.youtube {
    background-color: #b91c08; /* Twitter blue */
}

.netpear-social-follow a.instagram {
    background-color: #c13584; /* Instagram gradient pink */
}

.netpear-social-follow a.linkedin {
    background-color: #0077b5; /* LinkedIn blue */
}

.netpear-social-follow a.whatsapp {
    background-color: #25d366; /* WhatsApp green */
}

/* Hover effect: Slightly darken the background color */
.netpear-social-follow a.facebook:hover {
    background-color: #2e4373; /* Darker Facebook blue */
     color: #fff;
}

.netpear-social-follow a.youtube:hover {
    background-color: #9b1807; /* Darker Twitter blue */
    color: #fff;
}
 
.netpear-social-follow a.instagram:hover {
    background-color: #a82b6e; /* Darker Instagram pink */
     color: #fff;
}

.netpear-social-follow a.linkedin:hover {
    background-color: #005d8a; /* Darker LinkedIn blue */
     color: #fff;
}

.netpear-social-follow a.whatsapp:hover {
    background-color: #20b158; /* Darker WhatsApp green */
    color: #fff;
}

@media (max-width: 767px) {
    .netpear-social-follow a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
}
/* Hide social icons on mobile devices */
@media (max-width: 767px) {
    .netpear-social-follow {
        display: none;
    }
}