.call-button-container {
    position: fixed;
    bottom: 35px;
    color: white;
    border-radius: 10%;
    font-size: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s, background-color 0.3s;
    flex-direction: row-reverse;
}
.call-button-container.right {
    right: 35px;
}

.call-button-container.left {
    left: 35px;
}
.call-button {
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.call-button-title {
    position: fixed;
    bottom: 58px;
    font-size: 16px;
    color: #000;
    z-index: 1001;
    background: #dbdbdb;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
}
.call-button-title.hidden {
    opacity: 0;
    transform: translateY(-100%);
}
.call-button-container.right + .call-button-title {
    right: 120px;
}

.call-button-container.left + .call-button-title {
    left: 120px;
}
.call-button:hover {
    background-color: #218838;
    transform: scale(1.1);
}

.popup.right {
    right: 35px;
}

.popup.left {
    left: 35px;
}

.popup {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 130px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 10px;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}


.popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-content {
    text-align: center;
    position: relative;
    width: 350px;
}
.popup-content a {
    padding: 10px 20px;
    background: #f5f7f9;
    margin: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.popup-content a:hover {
    background: #e7f1fb;
}
.popup-content h3 {
    margin-top: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    text-decoration: none;
    color: #232623;
    flex-direction: row;
}

.social-link img {
    margin-right: 20px;
}

.social-link span {
    font-size: 14px;
}

.social-link:hover span {
    color: #271ae5;
}

.close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 25px;
    cursor: pointer;
    background: #f71127;
    color: white;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    padding-top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1010;
}
.popup-content .chat-jamil {
    padding: 10px;
    color: #ffffff;
    border-radius: 10px 10px 0 0;
}
.chat-start-text , .chat-invite-text {
    background-color: transparent !important;
}
.chat-start-text {
    font-size: 18px;
    margin-bottom: 10px;
}
.chat-invite-text {
    font-size: 13px;
    line-height: 25px;
}
div#call-popup img {
    padding: 0;
}
.call-button-container a i {
    animation: shaking 3s infinite ease-in-out forwards;
}
a.call-button img {
    max-width: 60% !important;
}


@keyframes shaking {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}
