/* Skills Section Styles */
.skills {
  color: #f8f9fa;
  padding-top: 100px;
}

.skills h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ff6f61;
}

/* Skills Grid Layout */
.skills-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.skill-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tool-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  max-height: 100%;
}

/* Skill Category Cards */
.skill-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.skill-icon {
  font-size: 1.5rem;
  color: #ff6f61;
}

.skill-card h3 {
  font-size: 1.25rem;
  color: #f8f9fa;
}

.skill-card ul {
  list-style: none;
  padding: 0;
}

.skill-card ul li {
  font-size: 1rem;
  color: #f8f9fa;
  margin: 5px 0;
}

/* Tool Proficiency List */
.tool-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
}

.tool-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tool-name {
  font-size: 1rem;
  color: #f8f9fa;
}

.tool-percentage {
  font-size: 1rem;
  color: #ff6f61;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #6c5ce7;
  border-radius: 5px;
  transition: width 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .skills-grid {
    flex-direction: column;
  }

  .tool-list {
    width: 100%;
  }
}