/* === Skills Section === */
#skills {
  padding: 60px 20px;
  background-color: #fdfdfd;
}

#skills h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #222;
  margin-bottom: 2.5rem;
}

/* === Skills Grid === */
.skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Skill Card === */
.skill-item {
  background: linear-gradient(135deg, #e3f2fd, #f0f0f0);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.skill-item i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

/* === Text Content === */
.skill-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.skill-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* === Responsive === */
@media (max-width: 600px) {
  .skill-title {
    font-size: 1.2rem;
  }

  .skill-description {
    font-size: 0.95rem;
  }
}
