.stats-circle {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    position: relative;
    background: none;
    box-shadow: none;
}

.stats-circle:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 12px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}
.stats-circle > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}
.stats-circle .progress-left { left: 0; }
.stats-circle .progress-right { right: 0; }
.stats-circle .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 12px;
    border-style: solid;
    position: absolute;
    top: 0;
}
.stats-circle .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-left: 0;
    transform-origin: center left;
}
.stats-circle .progress-right .progress-bar {
    right: 100%;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    border-right: 0;
    transform-origin: center right;
}
.stats-circle.blue .progress-bar { border-color: #0d6efd; }
.stats-circle.yellow .progress-bar { border-color: #ffc107; }
.stats-circle.green .progress-bar { border-color: #198754; }

.stats-circle .progress-value {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 1.2rem;
}

/* Animasyonlar (sayfa yüklendiğinde ve görünür olduğunda başlar) */
.stats-circle.blue .progress-left .progress-bar { animation: rotateLeftBlue 3s linear forwards; }
.stats-circle.yellow .progress-left .progress-bar { animation: rotateLeftYellow 3s linear forwards; }
.stats-circle.green .progress-left .progress-bar { animation: rotateLeftGreen 3s linear forwards; }

@keyframes rotateLeftBlue { 100% { transform: rotate(180deg); } }
@keyframes rotateLeftYellow { 100% { transform: rotate(126deg); } } /* ~70% için */
@keyframes rotateLeftGreen { 100% { transform: rotate(180deg); } }
