.skills {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Title */
.skills-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

/* Section */
.skills-section {
  margin-bottom: 3.5rem;
}

/* Section title */
.skills-section-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #4da3ff;
}

/* Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}

/* Skill Box */
.skill-box {
  background: #0f1621;
  border-radius: 18px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon */
.skill-box i {
  font-size: 2.2rem;
  color: #00e5ff;
}

/* Text */
.skill-box span {
  font-size: 0.95rem;
  text-align: center;
}

/* Hover */
.skill-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.15);
}
