body {
  background: #e5f9e7;
}

.profile-card {
  background: rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  padding: 2rem;
  width: 320px;
  text-align: center;
  cursor: pointer;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.profile-img {
  width: 112px;
  height: 112px;
  border-radius: 9999px;
  border: 2px solid #10b981;
  margin: 0 auto 1rem;
  transition: transform 0.5s ease;
}

.profile-card:hover .profile-img {
  transform: scale(1.1) rotate(-3deg);
}

.profile-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #10b981;
  margin-bottom: 0.25rem;
}

.profile-title {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.profile-bio,
.profile-exp {
  font-size: 0.75rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.skills {
  margin-bottom: 1rem;
}

.skill-tag {
  background: #d1fae5;
  color: #065f46;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0.2rem;
  display: inline-block;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-social {
  padding: 0.75rem;
  border-radius: 9999px;
  border: 1px solid #10b981;
  color: #10b981;
  transition: all 0.3s ease;
}

.btn-social:hover {
  background: #10b981;
  color: white;
  transform: scale(1.2);
}
