/* Container */
#sticky-social {
    position: fixed;
    right: 5px;
    bottom: 120px;
    z-index: 999;
}

/* List reset */
#sticky-social ul {
    padding: 0;
    margin: 0;
}

/* Social Item */
#sticky-social li {
    list-style: none;
    margin: 5px 0;
}

/* Links */
#sticky-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hover Expand */
#sticky-social a span {
    position: absolute;
    right: 60px;
    background: #111;
    padding: 8px 12px;
    border-radius: 5px;
    opacity: 0;
    white-space: nowrap;
    transform: translateX(20px);
    transition: 0.3s;
}

#sticky-social a:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* Hover Effects */
#sticky-social a:hover {
    transform: scale(1.1) rotate(5deg);
}
/* Colors with gradient */
.facebook {
    background: linear-gradient(45deg, #3b5998, #5b7bd5);
}
.instagram {
    background: linear-gradient(45deg, #f09433, #bc1888);
}
.phone {
    background: linear-gradient(45deg, #28a745, #5cd65c);
}
.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}
/* Icon size */
#sticky-social i {
    font-size: 15px;
}
