/* Skills Section */
.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.technical-skills h3,
.soft-skills h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--dark);
  position: relative;
}

.technical-skills h3::after,
.soft-skills h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.skill-item {
  margin-bottom: 25px;
}

.skill-item span {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.skill-bar {
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.skill-level {
  height: 100%;
  background-color: var(--primary);
  border-radius: 4px;
  width: 0;
  opacity: 0;
  transition: width 1.5s cubic-bezier(0.1, 0.45, 0.1, 0.85), opacity 0.3s ease;
}

.soft-skills ul {
  list-style: none;
}

.soft-skills li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.soft-skills li:hover {
  transform: translateX(5px);
}

.soft-skills i {
  color: var(--primary);
  margin-right: 10px;
}

.languages {
  margin-top: 30px;
}

.languages h4 {
  margin-bottom: 10px;
  color: var(--dark);
}

/* Responsive Skills */
@media (max-width: 768px) {
  .skills-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
