/* Right Side Floating Social Icons */
.floating-social-icons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.floating-social-icons a.social-icon {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin-bottom: 1px;
    color: #fff;
    position: relative;
    text-decoration: none;
    transition: none;
}

.floating-social-icons a.social-icon i {
    font-size: 20px;
    line-height: 45px;
}

.floating-social-icons a.social-icon .social-text {
    position: absolute;
    right: 45px;
    top: 0;
    white-space: nowrap;
    background: inherit;
    color: #fff;
    line-height: 45px;
    padding: 0 15px;
    font-weight: normal;
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.floating-social-icons a.social-icon:hover .social-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* Icon-specific styles */
.floating-social-icons .whatsapp-icon {
    background-color: #25D366;
}

.floating-social-icons .instagram-icon {
    background-color: #C13584;
}

.floating-social-icons .download-icon {
    background-color: #555555;
}
