:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --accent-color: #6366f1;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --success-color: #10b981;
}

.thank-you-sec-4 {
  font-family: "Inter", sans-serif;
  background: var(--primary-gradient);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.thank-you-sec-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.08)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="300" cy="700" r="80" fill="rgba(255,255,255,0.06)"/><circle cx="700" cy="800" r="120" fill="rgba(255,255,255,0.04)"/></svg>') no-repeat;
  background-size: cover;
  animation: float 25s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}
.thank-you-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.success-icon {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}
.success-icon i {
  font-size: 3rem;
  color: white;
  animation: checkmark 1s ease-in-out 0.5s both;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}
@keyframes checkmark {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.thank-you-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: slideUp 1s ease-out;
}

.thank-you-message {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: slideUp 1s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: slideUp 1s ease-out 0.4s both;
}
.action-buttons .btn-primary-custom {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.action-buttons .btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.action-buttons .btn-primary-custom:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: white;
}
.action-buttons .btn-primary-custom:hover::before {
  left: 100%;
}
.action-buttons .btn-secondary-custom {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.action-buttons .btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .thank-you-container {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }
  .thank-you-title {
    font-size: 2.5rem;
  }
  .thank-you-message {
    font-size: 1.1rem;
  }
  .success-icon {
    width: 100px;
    height: 100px;
  }
  .success-icon i {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .thank-you-title {
    font-size: 2rem;
  }
  .action-buttons {
    flex-direction: column;
  }
  .action-buttons .btn-primary-custom,
  .action-buttons .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=thank-youDesign4.css.map */