.thankyou-bg{
  height: 85vh;
}
/*animation body confetti*/
#confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  animation: fall 3s linear infinite;
  opacity: 0.5;
  border-radius: 50%;
}

@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}


.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}
.success-checkmark .check-icon {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #39A353;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 60px;
    left: 20px;
    width: 35px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #39A353;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 48px;
    right: 12px;
    width: 70px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    top: 60px;
    left: 20px;
    opacity: 0;
  }
  50% {
    width: 35px;
    opacity: 1;
  }
  100% {
    width: 35px;
    top: 60px;
    left: 20px;
    opacity: 1;
  }
}

@keyframes icon-line-long {
  0% {
    width: 10px;
    opacity: 0;
  }
  50% {
    width: 20px;
    opacity: 0.4;
  }
  100% {
    width: 70px;
    opacity: 1;
  }
}

/*next step section css strt*/
.next-step-section {
  padding: 80px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #e2e8f0;
}
.timeline-line::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #39A353;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #39A353;
}

.timeline-box {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  margin-right: 20px;
  margin-left: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.timeline-box:hover{
    transform: translateY(-3px);
    box-shadow: 0 5px 25px #39aa5342 !important;
}

.pulse{
    animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 170, 83, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(57, 170, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 170, 83, 0);
  }
}

/* Mobile view adjustment */
@media (max-width: 767.98px) {
  .timeline::before {
    left: 15px;
  }

  .timeline-line::after {
    left: 15px;
    transform: translateX(-50%);
 
}

  .timeline-dot {
    left: 30px;
    transform: translateY(-50%);
  }

  .timeline-box {
    margin-left: 45px !important;
    margin-right: 0 !important;
  }

  .offset-md-6 {
    margin-left: 0 !important;
  }
}


