.contact-list {
    position: fixed;
    bottom: 50px;
    right: 0;
    display: flex;
    border-radius: 25px 0 0 25px;
    flex-direction: column;
    z-index: 98;
}

.contact-list a i {
    color: #fff;
}

.contact-list a {
    background: #ffffff0a;
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
    border-radius: 25px 0 0 25px;
    width: 80px;
    height: 35px;
    text-align: center;
    line-height: 30;
    margin-top: 0;
    transition: transform 0.3s ease-in-out;
    line-height: 40px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-around;
    border: 1px solid #ffffff99;
    border-right: none;
    text-decoration: none;
}

.contact-list a:hover {
    transform: translateX(10px); /* Moves element 10px to the left */
}

.whatsapp-custom-icon {
    font-size: 21px;
}
.video-call-dropdown {
    position: relative;
    display: inline-block;
}

.video-call-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px 0 0 25px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease;
}

.video-call-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-call-options {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 999;
    flex-direction: column;
    min-width: 160px;
}

.video-call-options a {
    padding: 12px 16px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    display: block;
    transition: background 0.2s ease-in-out;
}

.video-call-options a:hover {
    background-color: #f0f0f0;
}
