.elementor-skill-chart {
    background-color: #1A1A1A !important;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
  }
  .chart-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .bar-row {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .label {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
  }
  .bar-wrapper {
    flex: 2;
    background-color: #333333;
    height: 12px;
    border-radius: 20px;
    overflow: hidden;
  }
  .bar {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #ffffff, #3E64B5);
    border-radius: 20px;
    animation: fillBar 10s ease forwards;
  }
  .percent {
    width: 50px;
    text-align: right;
    font-weight: bold;
    color: #ffffff;
  }
  @keyframes fillBar {
    to {
      width: var(--target-width);
    }
  }
  