
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;;
    z-index: 1000;
}

.floating-icons a {
    width: 60px;
    height: 60px;
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    color: #fff;
    font-size: var(--text-md);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    overflow: hidden;
    /* border: 1px solid #02152F; */
}

.floating-icons .fa-whatsapp {
    font-size: 25px;
}

.floating-icons .fa-phone {
    font-size: 25px;
}

.floating-icons .phone-icon {
    background-color: var(--lightHelper);
}

.floating-icons .whatsapp-icon {
    background-color: var(--whatsappColor);
}





@media (max-width: 768px) {
    .floating-icons {
        right: 10px;
        bottom: 10px;
    }
}