#skills {
    padding: 50px 20px;
    background: #f5f5f5;
    font-family: Arial, sans-serif;
    text-align: center;
  }

  #skills h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
  }

  .category-title {
    font-size: 24px;
    color: #4caf50;
    margin: 30px 0 20px;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
  }

  .skill-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .skill-card:hover {
    transform: translateY(-5px);
  }

  .skill-icon {
    font-size: 40px;
    color: #4caf50;
    margin-bottom: 10px;
  }

  .skill-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #444;
  }

  .progress-bar {
    width: 100%;
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
  }

  .progress {
    height: 100%;
    background: #4caf50;
    width: 0;
    border-radius: 5px;
    transition: width 1s ease-in-out;
  }

  /* Animate progress bars when page loads */
  .progress {
    width: inherit; /* Set width from inline style */
  }