:root {
  --primary: #ff6b6b;
  --secondary: #4ecdc4;
  --accent: #45b7d1;
  --dark: #2c3e50;
  --light: #ecf0f1;
  --plainclr:#fff;
  --success: #00d4aa;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.thank-you-sec-5 {
  font-family: "Poppins", sans-serif;
  background: #0f0f23;
  color: var(--plainclr);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  /* Animated Background */
  /* Main Container */
  /* Responsive Design */
}
.thank-you-sec-5 .bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1333333333) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1333333333) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.1333333333) 0%, transparent 50%);
}
.thank-you-sec-5 .floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.thank-you-sec-5 .shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}
.thank-you-sec-5 .shape:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  animation-delay: 0s;
}
.thank-you-sec-5 .shape:nth-child(2) {
  top: 70%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: var(--gradient-2);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  animation-delay: -5s;
}
.thank-you-sec-5 .shape:nth-child(3) {
  top: 20%;
  right: 30%;
  width: 60px;
  height: 60px;
  background: var(--gradient-3);
  transform: rotate(45deg);
  animation-delay: -10s;
}
.thank-you-sec-5 .shape:nth-child(4) {
  bottom: 20%;
  left: 20%;
  width: 100px;
  height: 100px;
  background: var(--gradient-1);
  border-radius: 50% 0;
  animation-delay: -15s;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(15px) rotate(240deg);
  }
}
.thank-you-sec-5 .main-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.thank-you-sec-5 .thank-you-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.thank-you-sec-5 .thank-you-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-3);
  border-radius: 32px 32px 0 0;
}
.thank-you-sec-5 .success-animation {
  position: relative;
  margin: 0 auto 2rem;
  width: 140px;
  height: 140px;
}
.thank-you-sec-5 .success-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: successPulse 2s ease-in-out infinite;
}
.thank-you-sec-5 .success-circle::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 3px solid transparent;
  border-top-color: rgba(79, 172, 254, 0.3);
  border-radius: 50%;
  animation: rotate 3s linear infinite;
}
.thank-you-sec-5 .success-circle::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid transparent;
  border-bottom-color: rgba(0, 242, 254, 0.4);
  border-radius: 50%;
  animation: rotate 2s linear infinite reverse;
}
@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(79, 172, 254, 0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.thank-you-sec-5 .checkmark {
  font-size: 3.5rem;
  color: var(--plainclr);
  z-index: 2;
  position: relative;
  animation: checkmarkBounce 1.2s ease-out 0.8s both;
}
@keyframes checkmarkBounce {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.3) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.thank-you-sec-5 .page-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlide 1s ease-out 0.3s both;
}
.thank-you-sec-5 .subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: titleSlide 1s ease-out 0.5s both;
}
@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.thank-you-sec-5 .action-section {
  animation: titleSlide 1s ease-out 0.7s both;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.thank-you-sec-5 .btn-modern {
  background: var(--gradient-3);
  border: none;
  padding: 1rem;
  text-wrap: nowrap;
  border-radius: 50px;
  color: var(--plainclr);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin: 0.5rem;
}
.thank-you-sec-5 .btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}
.thank-you-sec-5 .btn-modern:hover::before {
  left: 100%;
}
.thank-you-sec-5 .btn-modern:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
  color: var(--plainclr);
}
.thank-you-sec-5 .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--plainclr);
}
.thank-you-sec-5 .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--plainclr);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}
.thank-you-sec-5 .stats-row {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.thank-you-sec-5 .stat-item {
  text-align: center;
}
.thank-you-sec-5 .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.thank-you-sec-5 .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .thank-you-sec-5 .thank-you-card {
    padding: 2rem;
  }
  .thank-you-sec-5 .page-title {
    font-size: 2.5rem;
  }
  .thank-you-sec-5 .subtitle {
    margin-bottom: 1.5rem;
  }
  .thank-you-sec-5 .success-circle {
    width: 120px;
    height: 120px;
  }
  .thank-you-sec-5 .success-circle::before {
    width: 140px;
    height: 140px;
  }
  .thank-you-sec-5 .success-circle::after {
    width: 100px;
    height: 100px;
  }
  .thank-you-sec-5 .checkmark {
    font-size: 3rem;
  }
  .thank-you-sec-5 .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
  }
}
@media (max-width: 576px) {
  .thank-you-sec-5 .page-title {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  .thank-you-sec-5 .subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .thank-you-sec-5 .stat-item {
    padding: 0;
  }
  .thank-you-sec-5 .btn-modern {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    font-size: 0.88rem;
    margin: 0;
    gap: 0.4rem;
  }
  .thank-you-sec-5 .stats-row {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .thank-you-sec-5 .thank-you-card {
    padding: 1.2rem;
  }
  .thank-you-sec-5 .success-circle {
    width: 90px;
    height: 90px;
  }
  .thank-you-sec-5 .success-animation {
    display: flex;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    width: unset;
    height: unset;
  }
  .thank-you-sec-5 .success-circle::after {
    width: 90px;
    height: 90px;
  }
  .thank-you-sec-5 .success-circle::before {
    width: 90px;
    height: 90px;
  }
  .thank-you-sec-5 .stat-number {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=thank-youDesign5.css.map */