.innovative-features-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.feature-circle-card {
    text-align: center;
    transition: all 0.5s ease;
}

.circle-progress-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #f3f3f3;
    stroke-width: 3;
}

.circle-active {
    fill: none;
    stroke: #00A389; /* Turkuaz Renk */
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 70; /* Dairenin açıklık oranı */
    transition: stroke-dashoffset 1s ease;
}

.circle-icon-inner {
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 2;
    transition: transform 0.3s ease;
}

.circle-icon-inner img {
    width: 60px;
    height: 60px;
}

.feature-info .feature-number {
    font-size: 20px;
    font-weight: 800;
    color: #0E3F68; /* Lacivert */
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 5px 20px;
    border-radius: 30px;
}

.feature-info .feature-number span {
    color: #00A389;
}

.feature-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding: 0 15px;
}

/* Hover Efektleri */
.feature-circle-card:hover .circle-active {
    stroke-dashoffset: 0;
    stroke: #0E3F68;
}

.feature-circle-card:hover .circle-icon-inner {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(14, 63, 104, 0.15);
}