/* Custom Skills Section Styling */
.skills-section {
  padding: 20px 0;
}

.skills-section .progress-wrap {
  margin-bottom: 35px;
}

.skills-section .progress-wrap h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #6EC5B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skills-section .progress {
  height: 12px;
  background: rgba(230, 230, 230, 0.2);
  border-radius: 6px;
  overflow: visible;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.skills-section .progress-bar {
  background: linear-gradient(90deg, #FFAC00 0%, #FFD700 50%, #32CD32 100%);
  border-radius: 6px;
  position: relative;
  overflow: visible;
  transition: all 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 172, 0, 0.3);
}

/* Circular Percentage Indicator */
.skills-section .progress-bar::after {
  content: attr(data-percentage) '%';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FFAC00, #FFD700);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(255, 172, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #222f3e;
  text-shadow: none;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.skills-section .progress-wrap:hover .progress-bar::after {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(255, 172, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

.skills-section .progress-percent {
  font-size: 16px;
  font-weight: 700;
  color: #FFAC00;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .skills-section .progress-wrap h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .skills-section .progress {
    height: 10px;
  }
  
  .skills-section .progress-bar::after {
    width: 0;
    height: 32px;
    top: -8px;
    right: -8px;
    font-size: 12px;
  }
  
  .skills-section .progress-percent {
    font-size: 14px;
  }
  
  .skills-section .progress-wrap {
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .skills-section .progress-wrap h3 {
    font-size: 14px;
  }
  
  .skills-section .progress {
    height: 8px;
  }
  
  .skills-section .progress-bar::after {
    width: 28px;
    height: 28px;
    top: -6px;
    right: -6px;
    font-size: 11px;
  }
  
  .skills-section .progress-percent {
    font-size: 13px;
  }
}
