/* ====== MODERN SKILLS SECTION CSS (Grouped) ====== */
.skillsSection {
  padding: 5rem 2rem;
  background: #0b1e2a;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.sectionTitle {
  text-align: center;
  font-size: 2.8rem;
  color: #fcb71d;
  margin-bottom: 0.5rem;
}

.sectionSubtitle {
  text-align: center;
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.skillsGroup {
  margin-bottom: 4rem;
}

.groupTitle {
  font-size: 1.8rem;
  color: #fcb71d;
  margin-bottom: 2rem;
  border-bottom: 1px solid #fcb71d3f;
  padding-bottom: 0.5rem;
  text-align: center;
}

.skillsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.skillCategory {
  background-color: #121e2e;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.skillCategory:hover {
  transform: translateY(-5px);
}

.skillCategory h3 {
  font-size: 1.3rem;
  color: #fcb71d;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fcb71d2f;
  padding-bottom: 0.5rem;
}

.skillItem {
  margin: 1rem 0;
}

.skillItem span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.barSkills {
  width: 100%;
  height: 10px;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
}

.barSkills div {
  height: 100%;
  background: linear-gradient(90deg, #fcb71d, #ffcc70);
  border-radius: 20px;
  transition: width 1s ease-in-out;
  animation: fillProgress 1.5s ease-in-out forwards;
}

.toolList, .softList {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.toolList li, .softList li {
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.toolList li strong, .softList li strong {
  color: #fcb71d;
  font-weight: 600;
}

.softList li strong {
  float: right;
}

/* ===== Responsive ===== */
@media only screen and (max-width : 600px) {
  .sectionTitle {
    font-size: 2rem;
  }
  .sectionSubtitle {
    font-size: 0.85rem;
  }
  .skillCategory {
    padding: 1.2rem;
  }
  .groupTitle {
    font-size: 1.5rem;
  }
}

/* ===== Animation ===== */
@keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: var(--value);
  }
}