/* =========================
   SKILLS COVERED – ALT STYLE
   ========================= */

.skills-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.skills-wrap {
  width: 92%;
  max-width: 1140px;
  margin: 0 auto;
}

/* TITLE */
.skills-title {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

/* GRID */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 55px;
}

/* CARD */
.skill-item {
  background: #ffffff;
  padding: 38px 28px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
  border-top: 5px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.35s ease;
}

/* TOP GRADIENT BAR */
.skill-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #317ffe, #60a5fa);
  border-radius: 16px 16px 0 0;
}

/* HOVER EFFECT */
.skill-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(49, 127, 254, 0.28);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .skills-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .skill-item {
    padding: 30px 22px;
    font-size: 15px;
  }
}
