@media screen and (max-width: 768px){

.icon-bar{
    display: none;
}

}






.sticky-buttons {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.sticky-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 60px;
    transition: transform 0.3s ease;
    color: white;
    font-size: 40px;
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
}

.call-btn {
    background-color: #4CAF50; /* Call button color */
}

.sticky-buttons a:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .sticky-buttons {
        bottom: 10px;
        padding: 0 10px;
    }

    .sticky-buttons a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


.button {
    display: inline-block;
    background-color: gray;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s ease, outline 0.3s ease;
    outline: 2px solid transparent;
    cursor: pointer; /* Ensures the cursor is a pointer on hover */
}

.button:hover {
    background-color: darkgray;
    outline: 2px solid white; /* White outline on hover */
}

/* Specific styles for the CALL NOW button */
.call-now {
    background-color: gray; /* Custom color */
    border: 1px solid black; /* Darker border */
}

.call-now:hover {
    background-color: black; /* Darker blue on hover */
    outline: 2px solid #ffffff;
    color: white;
    font-size: 22px;
}

/* Specific styles for the MAKE AN APPOINTMENT button */
.make-appointment {
    background-color: grey; /* Custom green color */
    border: 1px solid black; /* Darker green border */
}

.make-appointment:hover {
    background-color: black; /* Darker blue on hover */
    outline: 2px solid #ffffff;
    color: white;
    font-size: 22px;
}
