/* Styles for Skills Page */
.skills-section {
  width: 100%;
  min-height: calc(100vh - 85px);
  padding: 40px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.skills-heading {
  font-size: clamp(32px, 5vw, 48px);
  color: #fff;
  margin-bottom: 3rem;
  text-align: center;
  opacity: 0;
  animation: slideTop 1s ease forwards;
}

.skills-heading span {
  color: #0ef;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
}

.skill-box {
  background: rgba(31, 36, 45, 0.6);
  border: 1px solid rgba(0, 238, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: .3s ease;
  opacity: 0;
  animation: slideBottom 1s ease forwards;
}

.skill-box:hover {
  border-color: #0ef;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 238, 255, 0.4);
}

.skill-category-title {
  font-size: 24px;
  color: #0ef;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Roboto Serif', serif;
}

.skill {
  margin-bottom: 1.2rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.skill-info span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.skill-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: #0ef;
  border-radius: 4px;
  box-shadow: 0 0 10px #0ef;
  position: relative;
}

/* Animations */
.skill-box:nth-child(1) { animation-delay: 0.2s; }
.skill-box:nth-child(2) { animation-delay: 0.4s; }
.skill-box:nth-child(3) { animation-delay: 0.6s; }

@media (max-width: 768px) {
  .skills-section {
    padding: 80px 5%;
  }
}
