#skills h2 {
  margin-bottom: 2rem;
}

.skill-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 213, 0.2);
  padding: 1rem;
  min-height: 240px; /* Ensures all cards look balanced */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 213, 0.3);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.skill-pill {
  background-color: rgba(0, 255, 213, 0.08);
  border: 1px solid rgba(0, 255, 213, 0.4);
  border-radius: 50px;
  padding: 0.4rem 0.8rem;
  color: #00ffd5;
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
}

.skill-pill:hover {
  background-color: #00ffd5;
  color: #000;
  box-shadow: 0 0 8px #00ffd5aa;
}
