/* Technical Skills Section - New Dark Theme */
/* Main category container */
.skill-category {
  background-color: #1e1e1e; /* Darker background to match screenshot */
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Header styling */
.skill-category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--jet);
}

.skill-category-header ion-icon,
.skill-category-header i,
.skill-category-header .header-icon {
  color: var(--orange-yellow-crayola);
  font-size: 24px;
  background-color: #333333; /* Darker background for header icons */
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #444;
}

.skill-category-header h4 {
  color: var(--orange-yellow-crayola);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  margin: 0;
}

/* Skills container */
.skill-icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 25px;
  justify-items: center;
}

@media (max-width: 768px) {
  .skill-icons-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .skill-icons-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Individual skill icon */
.skill-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  width: 70px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  background-color: #2a2a2a; /* Darker background for icons */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.icon-circle i, 
.icon-circle svg {
  font-size: 28px;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}

.skill-icon span {
  font-size: var(--fs-6);
  color: var(--light-gray);
  margin-top: 8px;
  text-align: center;
  transition: color 0.3s ease;
}

.skill-icon:hover span {
  color: var(--orange-yellow-crayola);
}

/* Icon colors - Native brand colors with enhanced brightness */
.icon-python { color: #ffde4c; } /* Python Yellow - Brighter */
.icon-csharp { color: #ae5cad; } /* C# Purple - Brighter */
.icon-java { color: #ff9b0e; } /* Java Orange - Brighter */
.icon-swift { color: #ff6148; } /* Swift Orange-Red - Brighter */
.icon-dart { color: #0a9dff; } /* Dart Blue - Brighter */
.icon-sql { color: #0e87c2; } /* SQL Blue - Brighter */

.icon-fastapi { color: #00c7b4; } /* FastAPI Teal - Brighter */
.icon-aspnet { color: #6b42ff; } /* ASP.NET Purple - Brighter */
.icon-spring { color: #7dea45; } /* Spring Green - Brighter */
.icon-websocket { color: #5ee2ff; } /* WebSocket Light Blue - Brighter */
.icon-rest { color: #8ede47; } /* REST API Green - Brighter */

.icon-gateways { color: #ffb342; } /* Gateways Orange - Brighter */
.icon-thirdparty { color: #96b7c7; } /* 3rd Party Blue Gray - Brighter */

.icon-oop { color: #ff8c6c; } /* OOP Orange - Brighter */
.icon-datastructures { color: #4fe9da; } /* Data Structures Teal - Brighter */
.icon-mvc { color: #91a1ff; } /* MVC Indigo - Brighter */
.icon-designpatterns { color: #ffea6a; } /* Design Patterns Amber - Brighter */

.icon-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background-color: #333333;
}

.icon-circle:hover i, 
.icon-circle:hover svg {
  transform: scale(1.15);
  filter: brightness(1.2);
}

/* Programming Languages section header icon */
.header-code {
  background-color: var(--jet);
  color: var(--orange-yellow-crayola);
}

/* Web Development section header icon */
.header-web {
  background-color: var(--jet);
  color: #6DB33F;
}

/* API Integration section header icon */
.header-api {
  background-color: var(--jet);
  color: #FFA726;
}

/* Software Concepts section header icon */
.header-concepts {
  background-color: var(--jet);
  color: #7986CB;
}

/* Databases section header icon */
.header-icon i {
  color: var(--orange-yellow-crayola);
}
