.elementor-29342 .elementor-element.elementor-element-f99a3b1{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}body.elementor-page-29342{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-c18a43e *//* Modern Thank You Page */
.modern-thank-you {
  position: relative;
  min-height: 100vh;
  padding: 60px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #F2F4F7 100%);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background Shapes */
.ty-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.1;
  z-index: 1;
  animation: floatShape 15s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: #2D6CF6;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 180px;
  height: 180px;
  background: #22C6B5;
  bottom: 15%;
  right: 8%;
  animation-delay: 5s;
}

.shape-3 {
  width: 160px;
  height: 160px;
  background: #FFC84A;
  top: 60%;
  left: 70%;
  animation-delay: 10s;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  font-size: 2rem;      /* Increase size for visibility */
  opacity: 0.8;         /* More visible */
  z-index: 5;           /* Make sure it's above shapes */
  pointer-events: none;
  animation: floatElement 8s infinite ease-in-out;
}

.fe-1 { top: 20%; left: 15%; animation-delay: 0s; }
.fe-2 { top: 65%; right: 20%; animation-delay: 2s; }
.fe-3 { bottom: 25%; left: 25%; animation-delay: 4s; }
.fe-4 { top: 40%; right: 10%; animation-delay: 6s; }

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

/* Thank You Box */
.thank-you-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 
    0 20px 40px rgba(11, 27, 52, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease forwards;
}

/* Success Icon */
.success-icon {
  text-align: center;
  margin-bottom: 25px;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(45, 108, 246, 0.3);
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #2D6CF6;
  fill: none;
  animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
  stroke: #2D6CF6; 
}

/* Text Styling */
.arabic, .french {
  text-align: center;
  margin-bottom: 30px;
}

.arabic:last-child, .french:last-child {
  margin-bottom: 0;
}

.arabic {
  direction: rtl;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0B1B34;
  font-weight: 700;
}

h1 span {
  background: linear-gradient(135deg, #2D6CF6, #22C6B5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2D6CF6;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 15px;
}

.highlight {
  background: linear-gradient(135deg, rgba(255, 200, 74, 0.15), rgba(255, 200, 74, 0.05));
  padding: 15px 20px;
  border-radius: 12px;
  border-left: 4px solid #FFC84A;
  font-weight: 600;
  margin-top: 20px;
}

.highlight span {
  color: #FF4757 !important;
  font-weight: 700;
}

/* Language Divider */
.language-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.divider-line {
  height: 2px;
  width: 100px;
  background: linear-gradient(90deg, #2D6CF6, #22C6B5);
  opacity: 0.5;
}

.divider-icon {
  font-size: 1.5rem;    /* Make globe visible */
  opacity: 0.9;
  line-height: 1;
}

/* Next Steps */
.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.step {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11, 27, 52, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(11, 27, 52, 0.12);
}

.step-icon {
  font-size: 2.5rem;    /* Emoji icons size */
  margin-bottom: 15px;
  line-height: 1;       /* Fix vertical alignment */
}

.step-content h4 {
  color: #0B1B34;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.step-content p {
  color: #64748B;
  margin: 0;
  font-size: 0.95rem;
}

/* Confetti Container */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* Animations */
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.1; }
  50% { transform: translateY(-20px) rotate(5deg) scale(1.05); opacity: 0.15; }
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  50% { transform: translateY(-15px) rotate(180deg); opacity: 0.4; }
}

@keyframes fill {
  100% { box-shadow: 0 0 30px rgba(45, 108, 246, 0.4); }
}

@keyframes scale {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

@keyframes fadeInUp {
  0% { 
    opacity: 0;
    transform: translateY(30px);
  }
  100% { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Modern Thank You Page */

/* Tablet: 768px */
@media (max-width: 768px) {
  .modern-thank-you {
    padding: 40px 0;
  }

  .thank-you-box {
    padding: 40px 30px;
    margin: 0 15px 30px;
  }

  h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  p {
    font-size: 1rem;
  }

  .highlight {
    padding: 12px 15px;
  }

  .language-divider {
    flex-direction: column;
    gap: 10px;
  }

  .divider-line {
    width: 60px;
  }

  .floating-element {
    font-size: 20px;
  }

  .ty-bg-shape {
    filter: blur(40px);
  }

  .next-steps {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .step {
    padding: 20px;
  }

  .checkmark {
    width: 60px;
    height: 60px;
  }
}

/* Phone: 480px */
@media (max-width: 480px) {
  .modern-thank-you {
    padding: 30px 0;
  }

  .thank-you-box {
    padding: 30px 20px;
    margin: 0 10px 20px;
  }

  h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  p {
    font-size: 0.95rem;
  }

  .highlight {
    padding: 10px 12px;
  }

  .floating-element {
    font-size: 18px;
  }

  .ty-bg-shape {
    filter: blur(30px);
  }

  .next-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 10px;
  }

  .step {
    padding: 15px;
  }

  .checkmark {
    width: 50px;
    height: 50px;
  }
}/* End custom CSS */