/* ====== PROFİL ====== */
.about-profile {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.about-profile:hover {
    transform: scale(1.05);
}

/* ====== BAŞLIK ====== */
.about-title {
    font-size: 2rem;
    font-weight: bold;
    color: #4f46e5; /* indigo */
    margin-bottom: 10px;
}

/* ====== ALT AÇIKLAMA ====== */
.about-subtitle {
    color: #6b7280; /* gri */
    margin-bottom: 25px;
    font-size: 1rem;
}

/* ====== YAZI BLOKLARI ====== */
.about-content {
    font-size: 1rem;
    color: #374151; /* koyu gri */
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ====== YETENEKLER ====== */
.skill-bar {
    background: #e5e7eb; /* açık gri */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}
.skill-bar-fill {
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-weight: 500; /* biraz daha ince */
    font-size: 0.9rem;
    transition: width 0.6s ease;
    border-radius: 6px;
}

/* Renkler */
.skill-laravel { background: #4f46e5; }   /* indigo */
.skill-php     { background: #16a34a; }   /* yeşil */
.skill-js      { background: #facc15; color:#000; } /* sarı */

/* ====== KATEGORİ BAŞLIKLARI ====== */
.about-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4f46e5; /* Indigo */
    margin: 25px 0 15px;
    text-align: left;
    border-left: 4px solid #4f46e5;
    padding-left: 10px;
}

/* ====== ALT LİSTELER ====== */
.about-list {
    margin-left: 20px; /* 1 cm kadar içerden */
    font-size: 0.95rem;
    color: #374151; /* koyu gri */
    line-height: 1.6;
}
/* ====== ALT BAŞLIK (Progress isimleri) ====== */
.skill-label {
    margin-left: 20px; /* 1 cm içerden */
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

