@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* Circular Progress Styles */
.circular-progress {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: conic-gradient(#5D4037 0deg, #FFDBB8 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: background 0.5s ease;
}

.circular-progress::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: #F5E6D3;
  
}

.progress-value {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: #5D4037;
}

.tech-name {
  position: absolute;
  bottom: -25px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  color: #F5E6D3;
  font-size: 1.2rem;
  
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .circular-progress {
    width: 100px;
    height: 100px;
  }
  
  .circular-progress::before {
    width: 75px;
    height: 75px;
  }
  
  .progress-value {
    font-size: 1.2rem;
  }
  
  .tech-name {
    font-size: 0.8rem;
    bottom: -20px;
  }
}