/* Active Walkers Section Styles */

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

.active-walkers-section {
    background-color: transparent;
    padding: 0 0;
    position: relative;
    overflow: hidden;
}

.active-walkers-content {
    display: flex;
    align-items: center;
    /*gap: 0rem;*/
    padding : 4px 0px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    /*justify-content: center;*/
}

.active-walkers-content .profile-image1{
    width: 335px;
    object-fit: cover;
    border-radius: 0;
    border: none;
}

/* Profile Stack - Overlapping Circles */
.profile-stack {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 1rem;
}

.profile-circle {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    overflow: hidden;
    position: relative;
    background-color: #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-circle:not(:first-child) {
    margin-left: -20px;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.profile-bg-1 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff8c42 100%);
}

.profile-bg-2 {
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 50%, #ffd3a5 100%);
}

.profile-bg-3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.profile-bg-4 {
    background: #f5f5dc;
}

/* Green Count Circle */
.profile-count {
    width: 47px;
    height: 47px;
    background-color: #4EA949;
    border: 2px solid #ffffff;
    margin-left: -20px;
    z-index: 10;
}

.count-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
}

/* Active Walkers Text */
.active-walkers-text {
    flex: 0 0 auto;
}

.walkers-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

/* Background Blur Element */
.background-blur {
    /*position: absolute;*/
    /*right: -50px;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    /*width: 250px;*/
    /*height: 300px;*/
    /*background: rgba(210, 180, 140, 0.25);*/
    /*border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;*/
    /*filter: blur(50px);*/
    /*z-index: 1;*/
    /*opacity: 0.5;*/
}

/* Responsive Design */
/*@media (max-width: 992px) {*/
/*    .active-walkers-section {*/
/*        padding: 2.5rem 0;*/
/*    }*/
    
/*    .active-walkers-content {*/
/*        gap: 1.5rem;*/
/*    }*/
    
/*    .walkers-label {*/
/*        font-size: 28px;*/
/*    }*/
    
/*    .profile-circle {*/
/*        width: 55px;*/
/*        height: 55px;*/
/*    }*/
    
/*    .profile-count {*/
/*        width: 65px;*/
/*        height: 65px;*/
/*    }*/
    
/*    .count-text {*/
/*        font-size: 16px;*/
/*    }*/
/*}*/

@media (max-width: 768px) {
   .active-walkers-content {
  
    padding: 10px 0px;
  
}
}

/*@media (max-width: 576px) {*/
/*    .active-walkers-section {*/
/*        padding: 1.5rem 0;*/
/*    }*/
    
/*    .active-walkers-content {*/
/*        gap: 0.75rem;*/
/*    }*/
    
/*    .walkers-label {*/
/*        font-size: 20px;*/
/*    }*/
    
/*    .profile-circle {*/
/*        width: 45px;*/
/*        height: 45px;*/
/*        border-width: 1.5px;*/
/*    }*/
    
/*    .profile-circle:not(:first-child) {*/
/*        margin-left: -15px;*/
/*    }*/
    
/*    .profile-count {*/
/*        width: 55px;*/
/*        height: 55px;*/
/*        margin-left: -15px;*/
/*        border-width: 1.5px;*/
/*    }*/
    
/*    .count-text {*/
/*        font-size: 12px;*/
/*    }*/
    
/*    .background-blur {*/
/*        width: 120px;*/
/*        height: 120px;*/
/*        right: -40px;*/
/*    }*/
/*}*/

