
/* Skills item */

.per-skill h2{
   color: #00fff7;
  text-shadow: 0 0 10px #00fff7;
}
/* ================= SKILLS GRID ================= */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* ================= SKILL CARD ================= */
.skill-card {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.15);
  padding: 20px;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

/* Neon glow on hover */
.skill-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.35);
}

/* Skill title */
.skill-card h5 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #ff00ff;
  letter-spacing: 0.5px;
}

/* ================= PROGRESS BAR ================= */
.skill-bar {
  width: 100%;
  height: 8px;
  background: #111;
  border-radius: 50px;
  overflow: hidden;
}

.skill-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00ffff, #00ff99);
  border-radius: 50px;
  transition: width 1.2s ease;
}

/* ================= TOOLTIP ================= */
.skill-card::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #00ffff;
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  transition: opacity 0.3s ease;
}

.skill-card:hover::after {
  opacity: 1;
}

/* ================= SCROLL ANIMATION ================= */
.skill-card.show {
  opacity: 1;
  transform: translateY(0);
}
