/* Additional styling for skill icons */

/* Add transitions for smooth hover effects */
.skill-icon {
  transition: transform 0.3s ease;
}

.skill-icon:hover {
  transform: translateY(-5px);
}

/* Make text more readable with proper spacing */
.skill-icon span {
  margin-top: 10px;
  font-weight: var(--fw-500);
  letter-spacing: 0.5px;
}

/* Software Concepts specific styling to match screenshot */
.skill-category-header div {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Better container spacing */
.skill-icons-container {
  padding: 5px 0;
}

/* Dark theme specific shadow effects */
.icon-circle {
  position: relative;
  overflow: hidden;
}

.icon-circle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* Enhanced containers for specific sections */
.skill-category:nth-child(odd) {
  background-color: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .skill-icons-container {
    gap: 15px;
  }
  
  .icon-circle {
    width: 50px;
    height: 50px;
  }
}
