.skills-section {
  min-height: 100vh;
  padding: 100px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  position: relative;
  text-align: center;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--purple-light);
  margin-bottom: 50px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.skill-card {
  background: rgba(20, 15, 35, 0.45);
  border: 1px solid rgba(122, 92, 255, 0.4);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 25px 30px;
  width: 250px;
  box-shadow: 0 0 25px rgba(122, 92, 255, 0.3);
  transition: transform 0.4s ease;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.skill-bar {
  width: 100%;
  height: 12px;
  background: rgba(122, 92, 255, 0.15);
  border-radius: 6px;
  margin-top: 10px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #7a5cff, #9d76ff);
  border-radius: 6px;
  transition: width 1.5s ease-out;
}
