.overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.contact-form-wrap {
    background-image: url('assets/img/bg/contact_bg_1.png');
    background-size: cover;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999999999999999;
}

/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for popup */
.overlay-container.show {
    display: flex;
    opacity: 1;
    width: 100vw;
    height: 100vh;
    z-index: 9999999999999999999999;
}

.round-btn {
    width: 50px;
    height: 50px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999999999999999999999999999999;
    border: none;
}

.round-btn::before,
.round-btn::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 4px;
    background-color: white;
}

.round-btn::before {
    transform: rotate(45deg);
}

.round-btn::after {
    transform: rotate(-45deg);
}
.appointment-button {
    position: fixed;
    right: 0%;
    top: 50%;
    transform: rotate(-90deg);
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    z-index: 1000000000;
    margin-right: -70px;
}