.donation-progress-component .progress-wrap {
  width: 100%;
  background-color: #eee;
  border-radius: 20px;
  overflow: hidden;
  height: 20px;
}
.donation-progress-component .progress-bar-bg {
  width: 100%;
  height: 100%;
  background-color: #ddd;
  position: relative;
}
.donation-progress-component .progress-bar-fill {
  background: linear-gradient(90deg, #f5c542, #f59e0b);
  height: 100%;
  width: 0;
  transition: width 0.8s ease;
}
.donation-progress-component .projects-funded {
  font-weight: bold;
  margin-bottom: 5px;
}
.donation-progress-component .recent-donations ul li {
  padding: 2px 0;
}
.donation-progress-component .donate-cta {
  text-align: center;
}
.donation-progress-component .donate-cta .btn {
  border-radius: 25px;
}
.donation-progress-container {
  background-color: #333;
  border-radius: 1rem;
  padding: 0 2rem;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}


.donation-progress-component .milestone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ffffff;
  opacity: 0.8;
  z-index: 2;
}

.donation-progress-component .milestone-label {
  display: none;
  position: absolute;
  top: -35px;
  left: -60px;
  width: 120px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  padding: 4px 6px;
  border-radius: 6px;
  animation: floatUp 1s ease-out;
  z-index: 10;
}

@keyframes floatUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}


.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-bar-container {
  height: 1.5rem;
  background-color: #666;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(to right, #f4c20d, #e2b203);
  transition: width 0.8s ease-in-out;
  border-radius: 100px;
  font-weight: bold;
}
.progress-bar.gradient {
  background: linear-gradient(to right, #f4c20d, #bf360c);
}
.raised-amount, .remaining-amount {
  font-size: 1.5rem;
  font-weight: bold;
}
.amount-label {
  font-size: 0.8rem;
  color: #aaa;
}
.latest-donations {
  margin-top: 1rem;
}