/* SKILLS SECTION – 3D ICON CARDS */

.skills-section {
  padding: 120px 0;
  text-align: center;
}

.skills-title {
  font-size: clamp(32px, 6vw, 48px);
  margin-bottom: 60px;
  background: linear-gradient(to bottom, #ffffff, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.skill-card {
  background: rgb(133 35 242 / 12%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  /* transition:
    transform 0.4s ease,
    box-shadow 0.4s ease; */
  transform-style: preserve-3d;
}

.skill-card:hover {
  box-shadow: 0 30px 60px rgba(114, 9, 183, 0.6);
  transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
}

.skill-icon {
  font-size: 42px;
  margin-bottom: 20px;
  transform: translateZ(30px);
}

.skill-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.skill-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
