.skills-section {
  padding: 80px 20px;
  position: relative;
  font-family: "Inter", sans-serif;
}

.skills-container {
  max-width: 1200px;
  margin: 0 auto;
}

.skills-header {
  text-align: center;
  margin-bottom: 60px;
}

.skills-header-title {
  font-style: italic;
  opacity: 0.7;
  margin-top: 10px;
}
.skills-header h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: -1px;
}

.skills-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

@media (min-width: 993px) {
  .skills-card:nth-child(2) {
    margin-top: 60px;
  }
}

.skills-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 30px;
  flex-direction: column;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.skills-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.6);
}

.skills-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: white;
  line-height: 1.2;
}

.card-subtitle {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  flex-grow: 1;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-item {
  color: #ffffff;
  padding: 8px 16px 8px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill-icon-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.skill-icon-pill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.skill-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .skills-header h2 {
    font-size: 2.8rem;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .skills-header h2 {
    font-size: 2.2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .skills-card {
    min-height: auto;
  }
}
