.share-container {
    position: fixed;
    bottom: 50px;
    right: 60px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: orange;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.share-icon {
    color: #fff;
    font-size: 24px;
}
.share-options {
    position: absolute;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.share-options a {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
}
.share-options a i {
    font-size: 18px;
}
.share-container:hover .share-options {
    opacity: 1;
    pointer-events: auto;
}
.share-container:hover .whatsapp {
    transform: translate(-50px, -50px);
}
.share-container:hover .instagram {
    transform: translate(50px, -50px);
}
.share-container:hover .telegram {
    transform: translate(-50px, 50px);
}
.share-container:hover .facebook {
    transform: translate(50px, 50px);
}
.share-container:hover .linkedin {
    transform: translate(-80px, 0);
}
.share-container:hover .twitter {
    transform: translate(70px, 0);
}
