/* Skills Section Enhanced Animations */
.skills-section {
    position: relative;
    overflow: hidden;
  }
  
  .floating-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .floating-icon {
    position: absolute;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 85, 170, 0.2);
    animation: icon-orbit 10s infinite linear;
  }
  
  .floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 12s;
  }
  
  .floating-icon:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-duration: 15s;
  }
  
  .floating-icon:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-duration: 18s;
  }
  
  .floating-icon:nth-child(4) {
    top: 70%;
    left: 75%;
    animation-duration: 20s;
  }
  
  .floating-icon:nth-child(5) {
    top: 40%;
    left: 40%;
    animation-duration: 25s;
  }
  
  @keyframes icon-orbit {
    0% {
      transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
    rotate(0deg); 
  }
  100% {
  transform: rotate(360deg) translateX(50px) rotate(-360deg
  )
  ;
    }
  }
  
  /* Progress bar enhanced animations */
  .progress-bar-wrap {
    position: relative;
    overflow: hidden;
  }
  
  .progress-bar {
    position: relative;
    transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progress-shine 2s infinite;
  }
  
  @keyframes progress-shine {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .counter-animation {
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .counter-animation.active {
    transform: scale(1.5);
    color: #00c8ff;
  }
  
  