/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(120deg, #e0e7ff 0%, #f3f6fd 100%);
    color: #222;
    min-height: 100vh;
    line-height: 1.6;
  }
  
  /* Layout */
  .layout {
    display: flex;
    min-height: 100vh;
  }
  
  /* Sidebar */
  .sidebar {
    width: 340px;
    background: rgba(255, 255, 255, 0.96);
    padding: 40px 22px 32px 22px;
    box-shadow: 0 8px 32px 0 rgba(56, 142, 60, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin: 18px 12px 18px 18px;
    min-width: 270px;
    position: relative;
    z-index: 2;
  }
  
  /* Profil Bölümü */
  .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .profile-img-wrapper {
    background: linear-gradient(135deg, #e8f5e9 0%, #c5cbf8 100%);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 24px rgba(56, 142, 60, 0.13);
    margin-bottom: 16px;
    border: 2.5px solid #fff;
  }
  
  .profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6375c4;
    box-shadow: 0 2px 12px rgba(56, 142, 60, 0.10);
  }
  
  .profile-info {
    text-align: center;
    margin-bottom: 16px;
  }
  
  .profile-info h1 {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    color: #222;
  }
  
  .profile-info .title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #6872c6;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
  }
  
  .profile-info .availability {
    font-size: 1.01rem;
    color: #6872c6;
    font-weight: 500;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
  }
  
  .profile-info .subtitle {
    font-size: 1.01rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
  }
  
  /* İkonlar */
  .icon-profile, .icon-job, .icon-available, .icon-location, 
  .icon-briefcase, .icon-building, .icon-message, .icon-cv {
    display: inline-flex;
    vertical-align: middle;
  }
  
  /* Sosyal Medya Linkleri */
  .social-links {
    margin-bottom: 16px;
    display: flex;
    gap: 14px;
    justify-content: center;
  }
  
  .social-links a svg {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(56, 142, 60, 0.10);
  }
  
  .social-links a:hover svg {
    transform: scale(1.18) rotate(-6deg);
    box-shadow: 0 4px 16px rgba(56, 142, 60, 0.18);
  }
  
  /* Bio */
  .bio {
    color: #444;
    font-size: 1.08rem;
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.6;
  }
  
  /* Sidebar İletişim Butonu */
  .sidebar-contact-btn, .blue-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
  }
  .sidebar-contact-btn:hover, .blue-btn:hover {
    background: #1d4ed8;
  }
  
  /* Sidebar Deneyim Bölümü */
  .sidebar-experience {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(56, 142, 60, 0.07);
    padding: 22px 18px 14px 18px;
    width: 100%;
    text-align: left;
  }
  
  .sidebar-experience h2 {
    color: #6872c6;
    font-size: 1.13rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  
  .experience-item {
    margin-bottom: 12px;
  }
  
  .experience-item h3 {
    margin: 0 0 2px 0;
    font-size: 1.01rem;
    color: #388e3c;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .experience-item p {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 0.98rem;
    padding-left: 20px;
  }
  
  .cv-btn {
    background: linear-gradient(90deg, #388e3c 0%, #66bb6a 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(56, 142, 60, 0.10);
    transition: background 0.2s, transform 0.18s;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }
  
  .cv-btn:hover {
    background: linear-gradient(90deg, #66bb6a 0%, #388e3c 100%);
    transform: translateY(-1px);
  }
  
  /* Ana İçerik */
  .main-content {
    flex: 1;
    padding: 56px 48px;
    background: rgba(241, 248, 233, 0.92);
    backdrop-filter: blur(2px);
  }
  
  /* Projeler */
  .projects h2 {
    font-size: 2.1rem;
    margin-bottom: 36px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #222;
  }
  
  .project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
  }
  
  .project-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  
  .project-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(56, 142, 60, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.04);
    padding: 0 0 24px 0;
    transition: box-shadow 0.25s, transform 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .project-card:hover {
    box-shadow: 0 8px 32px rgba(56, 142, 60, 0.13);
    transform: translateY(-6px) scale(1.025);
  }
  
  .project-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 2px 8px rgba(0, 119, 255, 0.06);
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .project-img:hover {
    transform: scale(1.05);
  }
  
  .project-tags {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
    z-index: 1;
  }
  
  .project-tags span {
    background: #388e3c;
    color: #fff;
    font-size: 0.92rem;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 4px rgba(56, 142, 60, 0.10);
  }
  
  .project-card h3 {
    margin: 22px 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #222;
  }
  
  .project-card p {
    color: #555;
    font-size: 1.04rem;
    margin: 0 18px 12px 18px;
    text-align: center;
    line-height: 1.5;
  }
  
  /* Modal Stiller */
  .image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }
  
  .image-modal .modal-content {
    display: block;
    margin: 5% auto;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  }
  
  .close-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s;
  }
  
  .close-modal:hover {
    color: #388e3c;
  }
  
  /* CV Modal */
  .cv-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
  }
  
  .cv-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    max-width: 450px;
    width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(56, 142, 60, 0.18);
    position: relative;
    color: #222;
    font-size: 1.05rem;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .cv-modal-content h2 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #388e3c;
    font-size: 1.5rem;
  }
  
  .cv-modal-content h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    color: #388e3c;
    font-size: 1.2rem;
  }
  
  .cv-modal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
  }
  
  .cv-modal-content li {
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  .cv-modal-content strong {
    color: #6872c6;
  }
  
  .cv-modal-content a {
    color: #6872c6;
    text-decoration: none;
  }
  
  .cv-modal-content a:hover {
    text-decoration: underline;
  }
  
  .close-cv-modal {
    position: absolute;
    top: 18px;
    right: 24px;
    color: #388e3c;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.2s;
  }
  
  .close-cv-modal:hover {
    color: #222;
  }
  
  /* İletişim Modal */
  .contact-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
  }
  
  .contact-modal-content {
    background: #f3f6fd;
    border-radius: 12px;
    padding: 32px 28px 24px 28px;
    box-shadow: 0 4px 32px rgba(37,99,235,0.10);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .contact-modal-content h2.blue-text {
    color: #2563eb;
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
  }
  .close-contact-modal.blue-text {
    color: #2563eb;
    font-size: 1.3em;
    position: absolute;
    right: 18px;
    top: 18px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .close-contact-modal.blue-text:hover {
    color: #1d4ed8;
  }
  .contact-form button.blue-btn {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
  }
  .contact-form button.blue-btn:hover {
    background: #1d4ed8;
  }
  
  /* İletişim Formu */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-form input,
  .contact-form textarea {
    border: 1px solid #2572e7;
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #2572e7;
  }
  
  .contact-form textarea {
    min-height: 100px;
  }
  
  .contact-form button {
    background: linear-gradient(90deg, #2572e7 0%, #2572e7 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(56, 142, 60, 0.10);
    transition: background 0.2s, transform 0.18s;
  }
  
  .contact-form button:hover {
    background: linear-gradient(90deg, #2572e7 0%, #2572e7 100%);
    transform: translateY(-1px);
  }
  
  /* Footer */
  footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    padding: 24px 0 16px 0;
    color: #888;
    font-size: 1rem;
  }
  
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
  }
  
  .footer-social a svg {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(56, 142, 60, 0.07);
  }
  
  .footer-social a:hover svg {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 4px 16px rgba(56, 142, 60, 0.18);
  }
  
  /* Animasyonlar */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Responsive Tasarım */
  @media (max-width: 1200px) {
    .project-grid-4 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .main-content {
      padding: 40px 32px;
    }
  }
  
  @media (max-width: 1100px) {
    .layout {
      flex-direction: column;
    }
    
    .sidebar {
      width: 100%;
      margin: 8px;
      border-radius: 16px;
      padding: 20px;
    }
    
    .profile {
      flex-direction: row;
      align-items: flex-start;
      gap: 20px;
    }
    
    .profile-info {
      text-align: left;
      flex: 1;
    }
    
    .profile-info h1,
    .profile-info .title,
    .profile-info .availability,
    .profile-info .subtitle {
      justify-content: flex-start;
    }
    
    .bio {
      text-align: left;
    }
    
    .sidebar-experience {
      margin-top: 16px;
    }
    
    .main-content {
      padding: 32px 16px;
    }
  }
  
  @media (max-width: 768px) {
    .sidebar {
      padding: 16px;
      margin: 4px;
    }
    
    .profile {
      flex-direction: column;
      align-items: center;
    }
    
    .profile-info {
      text-align: center;
    }
    
    .profile-info h1,
    .profile-info .title,
    .profile-info .availability,
    .profile-info .subtitle {
      justify-content: center;
    }
    
    .bio {
      text-align: center;
    }
    
    .main-content {
      padding: 24px 12px;
    }
    
    .projects h2 {
      font-size: 1.8rem;
      margin-bottom: 24px;
    }
    
    .project-list,
    .project-grid-4 {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .cv-modal-content,
    .contact-modal-content {
      padding: 24px 16px;
      max-width: 95vw;
    }
    
    .close-modal {
      top: 20px;
      right: 30px;
      font-size: 32px;
    }
  }
  
  @media (max-width: 480px) {
    .profile-img {
      width: 80px;
      height: 80px;
    }
    
    .profile-info h1 {
      font-size: 1.25rem;
    }
    
    .profile-info .title,
    .profile-info .availability,
    .profile-info .subtitle {
      font-size: 0.95rem;
    }
    
    .bio {
      font-size: 1rem;
    }
    
    .projects h2 {
      font-size: 1.6rem;
    }
    
    .project-card {
      padding: 0 0 16px 0;
    }
    
    .project-card h3 {
      font-size: 1.1rem;
    }
    
    .project-card p {
      font-size: 0.95rem;
    }
    
    .sidebar-contact-btn {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }

.blue-text {
  color: #2563eb !important;
}
.blue-bg {
  background: #2563eb !important;
}
.blue-tag {
  background: #e0e7ff !important;
  color: #2563eb !important;
  border-radius: 4px;
  padding: 4px 12px;
  font-weight: 500;
  font-size: 0.95em;
  display: inline-block;
  margin-right: 6px;
}

/* Modern Skills Grid */
.modern-skills .skill-tags.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  margin-top: 10px;
}
.modern-skills .skill-tag {
  background: #e0e7ff;
  color: #2563eb;
  border-radius: 6px;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
  font-size: 1em;
  box-shadow: 0 1px 4px rgba(37,99,235,0.06);
  transition: background 0.2s, color 0.2s;
}
.modern-skills .skill-tag:hover {
  background: #2563eb;
  color: #fff;
}

/* Experience List Modern */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.experience-card {
  background: #f3f6fd;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  padding: 12px 18px;
  box-shadow: 0 1px 4px rgba(37,99,235,0.06);
}
.exp-title {
  font-weight: 700;
  color: #2563eb;
  font-size: 1.08em;
}
.exp-company {
  color: #222;
  font-size: 1em;
  margin-top: 2px;
}
.exp-location {
  color: #2563eb;
  font-size: 0.95em;
  font-weight: 500;
}

/* Stats under experience */
.new-stats {
  display: flex;
  gap: 18px;
  margin: 12px 0 0 0;
}
.new-stats .stat-item {
  background: #e0e7ff;
  color: #2563eb;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1em;
  box-shadow: 0 1px 4px rgba(37,99,235,0.06);
}

/* Profil fotoğrafı arkasındaki yuvarlak için mavi */
.status-indicator.blue-bg {
  background: #2563eb !important;
}

/* Proje etiketleri için mavi badge */
.project-tag.blue-tag {
  background: #e0e7ff !important;
  color: #2563eb !important;
  border-radius: 4px;
  padding: 4px 12px;
  font-weight: 500;
  font-size: 0.95em;
  display: inline-block;
  margin-right: 6px;
}

/* CV butonu mavi */
.cv-btn.blue-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s;
}
.cv-btn.blue-btn:hover {
  background: #1d4ed8;
}

.sidebar-experience {
  text-align: left;
}
.experience-list {
  align-items: flex-start;
}
.experience-card {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.exp-title, .exp-company {
  justify-content: flex-start;
  text-align: left;
  display: flex;
  width: 100%;
}