.floating-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-call-button:hover {
    background-color: #218838;
    transform: scale(1.1);
}

.floating-call-button i {
    font-size: 24px;
}

.floating-call-button .cta-text {
    display: none;
    margin-left: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.floating-call-button:hover .cta-text {
    display: inline-block;
}



@media (min-width: 768px) {
    .floating-call-button {
        border-radius: 30px;
        padding: 0 20px;
        width: auto;
        height: 50px;
    }

    .floating-call-button .cta-text {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .floating-call-button {
        width: 50px;
        height: 50px;
    }

    .floating-call-button i {
        font-size: 20px;
    }
}

/* Pulsating Animation */
.floating-call-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(40, 167, 69, 0.5);
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}