#social-floating-btn {
    position: fixed;
    bottom: 35px;
    right: 60px;
    z-index: 9999;
}
#social-floating-btn .social-links {
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 10px;
    margin-bottom: 10px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
#social-floating-btn .social-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#social-floating-btn .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

#social-floating-btn .main-btn {
    width: 60px;
    border: none;
    border-radius: 50%;
    padding: 7px;
    box-shadow: 0 2px 4px rgba(36, 24, 24, 0.2);
    background-color: #f7ebeb;
}
#social-floating-btn .main-btn img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}
@media (max-width: 576px) {
  #social-floating-btn {
    right: 30px;
    bottom: 30px;
  }
}