/* ===================== SKILLS SECTION ===================== */
.skills-section {
  position: relative;
  padding: 100px 8%;
  background: #ffeff1;
  border-radius: 120px 120px 100px 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Title */
.skills-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

/* ===================== TABS ===================== */
.skills-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.skills-tabs .tab {
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  background: #ffffff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.skills-tabs .tab:hover {
  transform: translateY(-2px);
}

.skills-tabs .tab.active {
  background: linear-gradient(90deg, #e10c5d, #f9681c);
  color: #fff;
}

/* ===================== CONTENT BOX ===================== */
.skills-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 4;
}

/* Hide inactive tabs */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===================== SKILL ROW ===================== */
.skill-row {
  display: grid;
  grid-template-columns: 1.4fr 3fr 60px;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.skill-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.skill-row i {
  color: #f74670;
  font-size: 1.05rem;
}

/* ===================== PROGRESS BAR ===================== */
.bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  background: linear-gradient(90deg, #e10c5d, #f9681c);
  border-radius: 10px;
  transition: width 0.6s ease;
}

.skill-row small {
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  text-align: right;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .skills-section {
    padding: 80px 6%;
    border-radius: 90px;
  }

  .skills-section h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .skills-section {
    padding: 70px 5%;
    border-radius: 70px;
  }

  .skills-section h1 {
    font-size: 2.1rem;
  }

  .skills-content {
    padding: 28px 22px;
  }

  .skill-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .skill-row small {
    text-align: left;
  }
}
