#skills {
  padding: 40px 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

#skills h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e4f335;
  font-weight: bold;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.skill-category {
  background-color: #222;
  border-radius: 10px;
  padding: 15px;
  max-width: 200px;
  min-height: 100px;
  color: #e4f335;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.skill-category h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #e4f335;
}

.skill-category p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
  color: #b0b0b0;
}

.skill-category:hover {
  background-color: #333;
  box-shadow: 0 6px 12px rgba(0, 255, 255, 0.5);
  transform: scale(1.03);
}
