.qr-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.qr-scan {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #3bcee3;
  box-shadow: 
    0 0 6px #3bcee3,
    0 0 12px rgba(40, 221, 247, 0.6);
  top: 0;
  left: 0;
  animation: scanMove 2s infinite;
}

@keyframes scanMove {
  0% { top: 0; }
  100% { top: 100%; }
}
.qr-wrapper {
  position: relative;
  border-radius: 12px;
  transition: all 0.35s ease;
}

/* Soft glow animation */
.qr-wrapper::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3A53A4, #5f7cff);
  opacity: 0.15;
  filter: blur(12px);
  z-index: -1;
  animation: glowPulse 3s infinite ease-in-out;
}

/* Hover effect */
.qr-wrapper:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Optional: stop animation on hover (feels smoother) */
.qr-wrapper:hover::before {
  animation: none;
  opacity: 0.25;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.25; }
}
.donation-status {
  max-width: 620px;
  margin: 0 auto;
  padding: 10px 16px;
  border-radius: 50px;
  background: #f4f7ff;
  border: 1px solid rgba(58, 83, 164, 0.18);
  color: #1f2d5a;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(58, 83, 164, 0.08);
}

.donation-status .status-dot {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #3A53A4;
  color: #fff;
  font-size: 13px;
  margin-right: 8px;
}

.donation-status small {
  color: #6c757d;
  margin-left: 6px;
}

@media (max-width: 575px) {
  .donation-status {
    border-radius: 14px;
    line-height: 1.5;
  }

  .donation-status small {
    display: block;
    margin-left: 0;
  }
}
.month_one_tab li button {
    width: 200px;
}
.trust-item {
  position: relative;
  padding: 22px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(58, 83, 164, 0.12);
  box-shadow: 0 8px 22px rgba(58, 83, 164, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #3A53A4, #6f86df);
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(58, 83, 164, 0.18);
  border-color: rgba(58, 83, 164, 0.25);
}

.trust-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3A53A4, #6f86df);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 10px 24px rgba(58, 83, 164, 0.28);
  transition: all 0.35s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.08) rotate(4deg);
}

.trust-item p {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: #1f2d5a;
  line-height: 1.35;
}

@media (max-width: 575px) {
  .trust-item {
    padding: 18px 8px;
  }

  .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .trust-item p {
    font-size: 13px;
  }
}