/* icons-style.css */
.fixed-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column; /* Stack icons vertically */
    gap: 10px;
    z-index: 1000;
}

.fixed-icons .icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #25D366; /* WhatsApp green color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white; /* FontAwesome icon color */
    font-size: 24px; /* FontAwesome icon size */
    text-decoration: none;
}

.fixed-icons .icon.call {
    background-color: #34b7f1; /* Light blue for Call */
}

.fixed-icons .icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.fixed-icons .icon i {
    line-height: 1; /* Adjust line height to remove any space below the icon */
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fixed-icons {
    animation: slideInUp 0.5s ease-in-out;
}

/* Remove unnecessary bar */
body {
    margin: 0;
    padding: 0;
}
