.floating-btn {
    position: fixed;
    bottom: 70px;
    left: 20px;
    background-color: white;
    border: 4px solid #28a745;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    animation: pulse 2s infinite;
}

/*  */

.carousel-icon i {
    color: #28a745;
    font-size: 24px;
    transition: transform 0.2s ease;
}

.options {
    position: absolute;
    bottom: 70px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.options a {
    background: white;
    color: #28a745;
    border: 2px solid #87CEEB;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Animation */

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* three buttons  */

.mobile-sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    gap: 1px;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-buttons a {
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .mobile-sticky-buttons {
        display: none;
    }
}