.call-us-button {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Changed from right to left */
    width: 60px;
    height: 60px;
    background-color: white; 
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.call-us-button:hover {
    transform: scale(1.1);
}

.phone-icon {
    width: 60px;
    height: 60px;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}
