/* styles.css */

.skills-section {
    margin-top: 20px;
}

.skills-item {
    margin-bottom: 20px;
}

.skills-bar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.skills-progress {
    width: 0; /* İlk başta dolu değil */
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(to right, rgb(1, 4, 179), #0300a0,  #000872);
    transition: width 0.5s ease;
}

.skills-bar span {
    margin-left: 10px;
    color: #555;
}

/* Renk tonunu belirleyen fonksiyon */
:root {
    --color-high: 30;
    --color-medium: 45;
    --color-low: 60;
}

