/* =========================================
   SKILL PASSPORT
========================================= */
.skill-passport {
  background: linear-gradient(135deg, #0f2a5f, #163b8a);
  padding: 115px 20px;
  color: #fff;
}

.skill-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.skill-header {
  text-align: center;
  margin-bottom: 50px;
}

.skill-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 12px;
  font-weight: 700;
}

.skill-header p {
  max-width: 760px;
  margin: auto;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}

/* GRID */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

/* CARD */
.skill-card {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .35s ease, box-shadow .35s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* ICON */
.skill-icon {
  font-size: 38px;
  margin-bottom: 14px;
}

/* TEXT */
.skill-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 700;
}

.skill-card p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
}

/* MOBILE */
@media (max-width: 600px) {
  .skill-card {
    padding: 24px 18px;
  }
}
