.dashboard-card {
  background: white;
  width: 228px;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "poppins";
}

.header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.trusted-count {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.trusted-text {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.2;
}

.star-icon {
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.trusted-container {
  display: flex;
  gap: 9px;
}
.progress-container {
  position: relative;
  width: 111px;
  height: 111px;
  margin-bottom: 10px;
}

.progress-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-bg {
  fill: none;
  stroke: #f0f0f0;
  stroke-width: 12;
}

.progress-bar {
  fill: none;
  stroke: #ff7b47;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 424;
  stroke-dashoffset: 106;
  transition: stroke-dashoffset 0.5s ease;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 29px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.label {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

@keyframes bounce-side {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

.bounce-side {
  animation: bounce-side 3s ease-in-out infinite;
}

/* why choose us sticky */
.selector {
  position: sticky;
  top: 100px; /* Adjust based on your header */
  align-self: start;
}


