/* wrapper الأبيض */
.custom-card-wrapper {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  width: 75%;
  position: absolute;
  top: 163px;
  left: 77px;
}

/* الكارد */
.custom-card {
  background: var(--second-color);
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  position: relative;
}

/* العنوان */
.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* النص */
.card-text {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
}

/* user */
.card-user {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.card-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  border: 2px solid #fff;
}

.card-user h4 {
  margin: 0;
  font-size: 16px;
}

.card-user span {
  font-size: 13px;
  color: #cbd5e1;
}

/* quote icon */
.card-quote {
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-size: 55px;
  color: rgba(255, 255, 255, 0.25);
}

.img_about {
  width: 606px;
  height: 349px;
  border-radius: 34px;
}

.about-title {
  color: var(--second-color);
}

/* top images */
.top-img {
  width: 100%;
  height: 213px;
  object-fit: cover;
  border-radius: 20px;
}

/* info box */
.info_box {
  background: #e1e7e5;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  height: 344px;
  overflow: hidden;
}

.badge-title {
  background: var(--second-color);
  color: #fff;
  padding: 9px 12px;
  border-radius: 0 0 15px 15px;
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  top: -23px;
  position: relative;
  text-align: center;
}

/* stat box */
.stat-box {
  border: 1px solid #e5e7eb;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
}

.icon-circle {
  width: 53px;
  height: 53px;
  background: #000000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.stat-box h3 {
  color: #000000;
  font-weight: 700;
  margin: 0;
  font-size: 38px;
  text-align: center;
}

.stat-box p {
  margin: 0;
  font-size: 19px;
  color: #000000;
  text-align: center;
}

.about-box {
  position: relative;
}

@media (max-width: 767px) {
  .custom-card-wrapper {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    width: 100%;
    position: relative;
    top: 14px;
    left: 0;
  }
}





.thank-you-section {
  position: relative;
  /* min-height: 4vh; */
  background: var(--main-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px;
  border-radius: 23px;
}

.thank-you-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://html.softcrafty.com/tourgo/images/home/banner/h2-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}

.thank-you-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(29 45 83 / 0%) 0%, rgb(207 143 11 / 0%) 50%, rgb(12 20 40 / 0%) 100%);
  z-index: 2;
}

.floating-decor {
  position: absolute;
  opacity: 0.15;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  animation: floatDecor 15s linear infinite;
  z-index: 2;
}

.decor-1 {
  left: 5%;
  top: 15%;
  width: 180px;
  animation-delay: 0s;
}

.decor-2 {
  right: 10%;
  top: 20%;
  width: 160px;
  animation-delay: 3s;
}

.decor-3 {
  left: 8%;
  bottom: 10%;
  width: 150px;
  animation-delay: 6s;
}

.decor-4 {
  right: 5%;
  bottom: 15%;
  width: 170px;
  animation-delay: 9s;
}

@keyframes floatDecor {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.thank-you-box {
  position: relative;
  z-index: 3;
  max-width: 700px;
  /* width: 110%; */
  /* background: rgba(255, 255, 255, 0.92); */
  backdrop-filter: blur(20px);
  padding: 9px 0;
  text-align: center;
  border-radius: 30px;
  /* box-shadow: var(--box-shadow); */
  /* border: 1px solid rgba(207, 143, 11, 0.2); */
  animation: fadeInUp 1.2s ease-out;
}

.checkmark-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color), #134d5c);
  margin: 0 auto 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(207, 143, 11, 0.4);
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from {
    box-shadow: 0 20px 40px rgba(207, 143, 11, 0.4);
  }

  to {
    box-shadow: 0 20px 60px rgba(207, 143, 11, 0.6);
  }
}

.checkmark-circle svg {
  width: 50px;
  height: 50px;
  stroke: var(--white-color);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 1s ease-in-out 0.5s forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.thank-you-box h1 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--second-color), var(--main-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-box .subtitle {
  /* font-family: var(--font-hand); */
  font-size: 21px;
  color: var(--main-color);
  /* margin-bottom: 30px; */
  letter-spacing: 1.6px;
  font-weight: 500;
}

.thank-you-box .message {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--para-color);
  max-width: 600px;
  margin: 6px auto 31px;
}

.back-home-btn {
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, var(--main-color), #b87d09);
  color: var(--white-color);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--box-shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.back-home-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(207, 143, 11, 0.4);
  color: var(--second-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}