

    /* COMMON FLOAT STYLE */
.float-icon{
    position: fixed;
    right: 15px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.float-icon img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* HOVER EFFECT */
.float-icon:hover{
    transform: scale(1.1);
}

/* INDIVIDUAL POSITIONS */
.instagram-float{
    bottom: 190px;
}

.whatsapp-float{
    bottom: 125px;
}

.phone-float{
    bottom: 60px;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .float-icon{
        width: 45px;
        height: 45px;
        right: 10px;
    }

    .instagram-float{
        bottom: 160px;
    }

    .whatsapp-float{
        bottom: 105px;
    }

    .phone-float{
        bottom: 50px;
    }
}

   
