.elementor-26 .elementor-element.elementor-element-d89ec9c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7acdb0e *//* Profile Container & Perfect Round Animation Fix */
.avatar-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 20px auto 20px;
    border-radius: 50%; /* कंटेनर को गोल रखने के लिए */
    overflow: hidden; /* बाहर निकलने वाले चौकोर कोनों को छुपाने के लिए */
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* इमेज को गोल करने के लिए */
    object-fit: cover;
    border: 3px solid var(--border-glow);
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%; /* एनीमेशन रिंग को गोल करने के लिए */
    border: 3px solid var(--border-glow);
    animation: pulse-effect 2s infinite ease-out;
    z-index: 1;
}/* End custom CSS */