.elementor-3565 .elementor-element.elementor-element-cf99532{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-c3c62d7 */:root{

  --primary:#4CAF50;
  --primary-dark:#2E7D32;

  --bg:#F6FAF7;

  --glass:rgba(255,255,255,0.75);
  --border:rgba(76,175,80,0.15);

  --text:#1F2937;
  --text-muted:#6B7280;

  --glow:rgba(76,175,80,0.25);

}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* WRAPPER */

.thankyou-wrapper{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:50px 20px;
  background:
  radial-gradient(circle at top left, rgba(76,175,80,.12), transparent 40%),
  radial-gradient(circle at bottom right, rgba(46,125,50,.12), transparent 40%),
  var(--bg);
  overflow:hidden;
  position:relative;
  font-family:'Manrope',sans-serif;
}

/* BACKGROUND GLOW */

.thankyou-wrapper:before{
  content:'';
  position:absolute;
  width:450px;
  height:450px;
  background:#4CAF50;
  border-radius:50%;
  filter:blur(180px);
  opacity:.12;
  top:-150px;
  left:-100px;
}

.thankyou-wrapper:after{
  content:'';
  position:absolute;
  width:350px;
  height:350px;
  background:#2E7D32;
  border-radius:50%;
  filter:blur(180px);
  opacity:.10;
  bottom:-100px;
  right:-80px;
}

/* CARD */

.thankyou-card{
  position:relative;
  z-index:2;
  width:100%;
  max-width:760px;
  background:var(--glass);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid var(--border);
  border-radius:32px;
  padding:70px 50px;
  text-align:center;
  box-shadow:
  0 20px 60px rgba(0,0,0,.08);
}

/* SUCCESS ICON */

.success-animation{
  display:flex;
  justify-content:center;
  margin-bottom:30px;
}

.checkmark-circle{
  width:120px;
  height:120px;
  position:relative;
}

.background{
  width:120px;
  height:120px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  box-shadow:0 15px 35px var(--glow);
}

.checkmark{
  width:30px;
  height:60px;
  border-right:6px solid #fff;
  border-bottom:6px solid #fff;
  position:absolute;
  top:24px;
  left:43px;
  transform:rotate(45deg);
  animation:tick .6s ease forwards;
}

@keyframes tick{
  from{
    opacity:0;
    transform:rotate(45deg) scale(.5);
  }
  to{
    opacity:1;
    transform:rotate(45deg) scale(1);
  }
}

/* TAG */

.tagline{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:rgba(76,175,80,.08);
  border:1px solid rgba(76,175,80,.18);
  color:#2E7D32;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:25px;
}

/* HEADING */

.thankyou-card h1{
  font-size:48px;
  line-height:1.2;
  color:var(--text);
  margin-bottom:20px;
  font-weight:800;
}

/* DESCRIPTION */

.description{
  font-size:17px;
  line-height:1.8;
  color:var(--text-muted);
  max-width:600px;
  margin:auto;
}

/* DETAILS */

.details-box{
  margin-top:40px;
  display:grid;
  gap:16px;
}

.detail-item{
  display:flex;
  align-items:center;
  gap:15px;
  padding:18px 22px;
  background:#ffffff;
  border:1px solid rgba(76,175,80,.12);
  border-radius:18px;
  transition:.35s ease;
}

.detail-item:hover{
  transform:translateY(-4px);
  border-color:var(--primary);
  box-shadow:0 10px 30px rgba(76,175,80,.12);
}

.detail-item span{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  box-shadow:0 10px 25px var(--glow);
}

.detail-item p{
  color:var(--text);
  font-size:16px;
  margin:0;
}

/* BUTTONS */

.button-group{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:16px 34px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  transition:.35s;
}

.primary-btn{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff !important;
  box-shadow:0 12px 30px var(--glow);
}

.primary-btn:hover{
  transform:translateY(-3px);
}

.secondary-btn{
  background:#fff;
  border:1px solid rgba(76,175,80,.15);
  color:var(--primary) !important;
}

.secondary-btn:hover{
  border-color:var(--primary);
  background:#f8fff8;
}

/* MOBILE */

@media(max-width:768px){

  .thankyou-card{
    padding:45px 25px;
  }

  .thankyou-card h1{
    font-size:34px;
  }

  .description{
    font-size:15px;
  }

  .button-group{
    flex-direction:column;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    text-align:center;
  }

}/* End custom CSS */