.social-pulse-section {
    padding: 60px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pulse-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-circle-container {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.main-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(83, 166, 248, 0.1);
    opacity: 0;
    z-index: 1;
    animation: pulse-animation 3s infinite ease-out;
}

.pulse-ring:nth-child(1) {
    animation-delay: 0s;
}

.ring-2 {
    animation-delay: 0.5s;
}

@keyframes pulse-animation {
    0% {
        width: 160px;
        height: 160px;
        opacity: 0.6;
    }
    100% {
        width: 450px;
        height: 450px;
        opacity: 0;
    }
}

.floating-badge {
    position: absolute;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.badge-stars {
    top: 40px;
    right: -10px;
    background-color: #4a90e2;
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.badge-count {
    top: 85px;
    right: -25px;
    background-color: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 16px;
    border: 2px solid #fff;
}

.badge-avatars-wrap {
    bottom: 30px;
    left: -10px;
    height: 50px;
    background-color: rgb(226, 172, 86);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.avatars-img {
    height: 100%;
    width: auto;
    display: block;
}

@media (max-width: 380px) {
    .pulse-wrapper {
        transform: scale(0.85);
    }
}

@media (max-width: 800px) {
    .social-pulse-section{
        padding: 20px 0 60px 0;
    }
}