/* animation */
.call-now-btn {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    animation: glow 1.5s infinite alternate, bounce 1s infinite;
    transition: transform 0.3s;
    z-index: 999; /* Ensures button stays on top */
}


@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-5px);
    }
}

.call-now-btn:hover {
    transform: translateY(-50%) scale(1.1);
}
/* animation */


@media (max-width: 768px) { 
    .social__links {
        display: none;
    }
}
