/* Floating Container */
.floating-icons{
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    z-index: 9999;
}

/* Common Button */
.float-btn{
    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    text-decoration: none;

    color: white;
    font-size: 24px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}

/* Hover Effect */
.float-btn:hover{
    transform: scale(1.1);
}

/* Call */
.call-btn{
    background: #ff8c2b;
}

/* WhatsApp */
.whatsapp-btn{
    background: #ff8c2b;
}

/* Mobile */
@media(max-width:768px){

    .floating-icons{
        right: 15px;
        bottom: 15px;
    }

    .float-btn{
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

}