/* Floating Icons Container */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.float-icon svg {
    width: 30px;
    height: 30px;
}

/* WhatsApp Color */
.whatsapp-icon {
    background-color: #25D366;
}

/* Call Color */
.call-icon {
    background-color: #007bff;
    /* Primary Blue */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .float-icon {
        width: 50px;
        height: 50px;
    }

    .float-icon svg {
        width: 24px;
        height: 24px;
    }
}