.thank-you-sec-8 {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  /* Responsive adjustments */
}
.thank-you-sec-8 .thank-you-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  position: relative;
  overflow: hidden;
}
.thank-you-sec-8 .thank-you-content {
  position: relative;
  z-index: 2;
}
.thank-you-sec-8 .checkmark-circle {
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.thank-you-sec-8 .checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 5;
  stroke: #4ade80;
  stroke-miterlimit: 10;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.thank-you-sec-8 .checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
  }
}
.thank-you-sec-8 .thank-you-title {
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  font-size: 2.5rem;
}
.thank-you-sec-8 .thank-you-message {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.thank-you-sec-8 .action-buttons .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin: 5px 10px;
  transition: all 0.3s ease;
}
.thank-you-sec-8 .btn-primary {
  background: #4361ee;
  border: none;
}
.thank-you-sec-8 .btn-primary:hover {
  background: #3a56d4;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}
.thank-you-sec-8 .btn-outline-secondary {
  border: 2px solid #718096;
  color: #718096;
}
.thank-you-sec-8 .btn-outline-secondary:hover {
  background: #718096;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(113, 128, 150, 0.3);
}
.thank-you-sec-8 .decoration {
  position: absolute;
  z-index: 1;
}
.thank-you-sec-8 .decoration-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(74, 222, 128, 0.1) 100%);
}
.thank-you-sec-8 .circle-1 {
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
}
.thank-you-sec-8 .circle-2 {
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
}
@media (max-width: 768px) {
  .thank-you-sec-8 .thank-you-section {
    padding: 60px 0;
    margin: 15px;
  }
  .thank-you-sec-8 .thank-you-title {
    font-size: 2rem;
  }
  .thank-you-sec-8 .thank-you-message {
    font-size: 1.1rem;
    padding: 0 15px;
  }
  .thank-you-sec-8 .action-buttons .btn {
    display: block;
    width: 80%;
    margin: 15px auto;
  }
  .thank-you-sec-8 .checkmark-circle {
    width: 80px;
    height: 80px;
  }
}/*# sourceMappingURL=thank-youDesign8.css.map */