/* Ümumi stillər */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 2rem 0;
}

/* Banner */
.banner {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  text-align: center;
  padding: 4rem 2rem 3rem;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 1rem;
}

.banner h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-weight: 300;
}

/* Bölmələr */
section h2 {
  font-size: 1.5rem;
  color: #27ae60;
  margin-bottom: 1rem;
}

/* Kartlar */
.card {
  background: white;
  padding: 1.2rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
}

/* Bacarıqlar */
.skills ul {
  list-style: none;
}

.skills li {
  margin-bottom: 1rem;
}

.skills .bar {
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
  height: 10px;
  margin-top: 5px;
}

.skills .level {
  background: #2ecc71;
  height: 100%;
}

/* Əlaqə (Contact Cards) */
.contact-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  text-align: center;
  padding: 12px;
  background-color: #e6f2ea; /* yüngül yaşıl ton */
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.contact-card .logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #f1f1f1;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
}

/* Languages */
.languages ul {
  list-style: none;
  padding-left: 0;
}

.languages li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
