/* whats app button start*/
/* Floating Button Container */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Spacing between buttons */
    z-index: 1020;
}

/* General Floating Button Style */
.floating-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .floating-btn i {
        color: white;
        font-size: 22px;
    }

    /* Hover Effect */
    .floating-btn:hover {
        transform: scale(1.1);
    }

/* WhatsApp Button */
.whatsapp-icon img {
    width: 95%;
    height: 95%;
    border-radius: 25px;
}

/* Book Now Button */
.book-now {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
}

/* Call Button */
.call-btn {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .floating-buttons {
        /*        right: 10px;*/
    }
}
