body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sol Taraftaki Sabit Profil Kartı */
.profile-sidebar {
    position: sticky;
    top: 2rem;
    z-index: 1000;
}

.profile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    border: none;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Sağ Taraftaki Proje Kartları */
.project-card {
    background: white;
    border-radius: 15px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-img-top {
    height: 200px;
    object-fit: cover;
}

/* Yetenek Barları */
.skill-item {
    margin-bottom: 10px;
}
.progress {
    height: 8px;
    border-radius: 4px;
}
