.skills {
  text-align: center;
  padding: 40px;
  background: #050e2b;
  color: #fff;
}

.skills h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

.skill-card {
  background: #1e293b;
  border-radius: 12px;
  padding: 20px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(0 0 0.4em rgba(0, 173, 254));
}

.skill-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.skill-card span {
  font-size: 0.9rem;
  font-weight: 500;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.4);
  background: #334155;
}
