.outerbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.skill_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.skill_circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--color) calc(var(--percent) * 1%), #e0e0e0 0);
  position: relative;
  transition: transform 0.3s ease;
}

.skill_circle:hover {
  transform: scale(1.1);
}

.skill_circle_inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.skill_percent {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  font-family: "Quicksand", sans-serif;
}

.skill_name {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .skill_circle {
    width: 120px;
    height: 120px;
  }

  .skill_circle_inner {
    width: 95px;
    height: 95px;
  }

  .skill_percent {
    font-size: 20px;
  }

  .outerbox {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
  }
}
