#skills h2 {
  margin-bottom: 50px;
}

/* Container for skill meters */
.skill-meters {
  margin: 20px 0;
}

/* Individual skill styling */
.skill {
  margin: 20px 0;
}

.skill label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.meter {
  width: 60%;
  height: 30px;
  background-color: #eee;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  margin-inline: 20%;
}

.fill {
  height: 100%;
  background-color: #4caf50; /* Green fill color */
  width: 0; /* Start at 0 width */
  transition: width 2s ease-in-out; /* Animation duration and easing */
}

.skill p {
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 767px) {
  .skill p {
    font-size: 12px; /* Smaller text for mobile */
  }
}
