.completed-projects-section {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #ff5722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #333;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  animation: rotateIn 1.2s ease;
  cursor: pointer;
}

.project-circle:hover {
  transform: rotate(360deg) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: #ff5722;
  color: #fff;
}

@keyframes rotateIn {
  0% {
    transform: scale(0.5) rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.project-circle div {
  text-align: center;
}

.project-count {
  font-size: 1.2rem;
  color: #ff5722;
  margin-top: 5px;
  font-weight: bold;
}
.project-circle {
  width: 150px;
  height: 150px;
  border-radius: 100%;