.social-floating{
    position:fixed !important;
    right:25px;
    bottom:110px;
    z-index:999999;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.social-btn{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:all .3s ease;
    overflow:hidden;
}

.social-btn:hover{
    transform:translateY(-4px) scale(1.08);
}

.social-btn{
    background:#fff;
}

.social-btn img{
    width:28px;
    height:28px;
    object-fit:contain;
    display:block;
}

@media(max-width:768px){

    .social-floating{
        right:15px;
        bottom:95px;
    }

    .social-btn{
        width:50px;
        height:50px;
    }

    .social-btn img{
        width:24px;
        height:24px;
    }

}