/* css/loadding.css */
.loading-section {
  padding: 80px 0;
  text-align: center;
}
.progress-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.progress-ring-circle {
  stroke: #3498db;
  transition: stroke-dashoffset 0.3s;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
  color: #3498db;
}
.loading-title {
  color: #2c3e50;
  margin-bottom: 10px;
}
.loading-subtitle {
  color: #7f8c8d;
}