.floating-toggle-container {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 1001;
}

.floating-buttons {
    position: fixed;
    display: none;
    gap: 10px;
    z-index: 1000;
    bottom: 170px;
    left: 20px;
    flex-direction: column-reverse;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.floating-button:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white !important;
}

.call-btn {
    background-color: #007bff;
    color: white !important;
}

.floating-button i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#toggleFloatingButtons {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background-color: #FF6B6B;
    border: none;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

#toggleFloatingButtons:hover {
    background-color: #FF4F4F;
    transform: scale(1.1);
}

#toggleFloatingButtons i {
    color: white;
    font-size: 24px;
}

.pulse {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 1);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}
        .floating-toggle-container {
            position: fixed;
            left: 20px;
            bottom: 100px;
            z-index: 1001;
        }

        .floating-buttons {
            position: fixed;
            display: none;
            gap: 10px;
            z-index: 1000;
            bottom: 170px;
            left: 20px;
            flex-direction: column-reverse;
        }

        .floating-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .floating-button:hover {
            transform: scale(1.1);
        }

        .whatsapp-btn {
            background-color: #25D366;
            color: white !important;
        }

        .call-btn {
            background-color: #007bff;
            color: white !important;
        }

        .floating-button i {
            font-size: 24px;
        }

        /* Add these new styles */
        @keyframes bounce {
            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        #toggleFloatingButtons {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            background-color: #FF6B6B;
            /* Change to a more noticeable color */
            border: none;
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
        }

        #toggleFloatingButtons:hover {
            background-color: #FF4F4F;
            transform: scale(1.1);
        }

        #toggleFloatingButtons i {
            color: white;
            font-size: 24px;
        }

        .pulse {
            box-shadow: 0 0 0 0 rgba(255, 107, 107, 1);
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
            }
        }