.elementor-1218 .elementor-element.elementor-element-21dcee3b{--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;}.elementor-1218 .elementor-element.elementor-element-21dcee3b:not(.elementor-motion-effects-element-type-background), .elementor-1218 .elementor-element.elementor-element-21dcee3b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0E1527;}.elementor-1218 .elementor-element.elementor-element-823bcad{--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;}.elementor-1218 .elementor-element.elementor-element-6b58e318{--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;}.elementor-1218 .elementor-element.elementor-element-6b58e318:not(.elementor-motion-effects-element-type-background), .elementor-1218 .elementor-element.elementor-element-6b58e318 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0E1527;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-415795bd *//* ============================================
   EEZ Header - WordPress CSS
   Add to: Appearance > Customize > Additional CSS
   ============================================ */

/* ---------- Header Wrapper ---------- */
.eez-header {
  background-color: #0E1527;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* ---------- Inner Container ---------- */
.eez-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ---------- Logo ---------- */
.eez-header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px 10px;
  text-decoration: none;
}

.eez-header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Desktop Nav ---------- */
.eez-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.eez-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.eez-nav-list li {
  margin: 0;
  padding: 0;
}

/* ---------- Nav Links ---------- */
.eez-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.eez-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #e87c2e;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.eez-nav-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.eez-nav-link:hover::after {
  width: 100%;
}

/* Active state */
.eez-nav-link.eez-nav-active {
  color: #ffffff;
  font-weight: 700;
}

.eez-nav-link.eez-nav-active::after {
  width: 100%;
}

/* ---------- CTA Button ---------- */
.eez-header-cta {
  display: inline-block;
  background: #e87c2e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.eez-header-cta:hover {
  background: #d46b1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 124, 46, 0.35);
  text-decoration: none;
  color: #ffffff;
}

/* ---------- Hamburger Button (Mobile) ---------- */
.eez-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.eez-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animated X when open */
.eez-ham-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.eez-ham-active span:nth-child(2) {
  opacity: 0;
}
.eez-ham-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Menu Dropdown ---------- */
.eez-mobile-menu {
  display: none;
  background: #0E1527;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.eez-mobile-menu.eez-menu-open {
  display: block;
  max-height: 400px;
  padding: 16px 0 24px;
}

.eez-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eez-mobile-nav-list li {
  margin: 0;
  padding: 0;
}

.eez-mobile-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease;
}

.eez-mobile-nav-link:hover,
.eez-mobile-nav-link.eez-nav-active {
  color: #ffffff;
  text-decoration: none;
}

.eez-mobile-cta {
  display: inline-block;
  margin-top: 16px;
  background: #e87c2e;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  transition: background 0.25s ease;
}

.eez-mobile-cta:hover {
  background: #d46b1e;
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .eez-nav {
    display: none;
  }

  .eez-header-cta {
    display: none;
  }

  .eez-hamburger {
    display: flex;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6bc4b75 *//* ============================================
   EEZ Thank You Page - WordPress CSS
   Add to: Appearance > Customize > Additional CSS
   ============================================ */

.eez-ty-section {
  background-color: #0E1527;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grid background */
.eez-ty-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.eez-ty-container {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ===== Animated SVG Icon ===== */
.eez-ty-icon svg {
  width: 90px;
  height: 90px;
  margin-bottom: 8px;
}

.eez-ty-circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: eez-ty-draw-circle 0.8s ease forwards;
}

.eez-ty-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: eez-ty-draw-check 0.5s ease 0.7s forwards;
}

@keyframes eez-ty-draw-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes eez-ty-draw-check {
  to { stroke-dashoffset: 0; }
}

/* ===== Label ===== */
.eez-ty-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e87c2e;
  text-transform: uppercase;
}

/* ===== Title ===== */
.eez-ty-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1;
  letter-spacing: -2px;
}

/* ===== Description ===== */
.eez-ty-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}

.eez-ty-desc strong {
  color: #e87c2e;
  font-weight: 700;
}

/* ===== Buttons ===== */
.eez-ty-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.eez-ty-btn-primary {
  display: inline-block;
  background: #e87c2e;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.eez-ty-btn-primary:hover {
  background: #d46b1e;
  transform: translateY(-2px);
  color: #ffffff !important;
  text-decoration: none !important;
}

.eez-ty-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 13px 30px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.eez-ty-btn-secondary:hover {
  border-color: #e87c2e;
  color: #e87c2e !important;
  text-decoration: none !important;
}

/* ===== Info Cards ===== */
.eez-ty-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}

.eez-ty-card {
  background: #161d2d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 150px;
  transition: border-color 0.3s ease;
}

.eez-ty-card:hover {
  border-color: rgba(232, 124, 46, 0.3);
}

.eez-ty-card-icon {
  font-size: 24px;
}

.eez-ty-card strong {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.eez-ty-card span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ===== Responsive ===== */
@media (max-width: 560px) {
  .eez-ty-btns { flex-direction: column; align-items: center; }
  .eez-ty-btn-primary,
  .eez-ty-btn-secondary { width: 260px; text-align: center; }
  .eez-ty-cards { flex-direction: column; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-409c52e2 */.eez-footer {
  background-color: #0E1527;
  padding: 36px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eez-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .eez-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

/* Logo */
.eez-footer-logo-text {
  font-size: 28px;
  font-weight: 900;
  color: #e87c2e;
  letter-spacing: -1px;
  font-style: italic;
}

/* Copyright */
.eez-footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Nav */
.eez-footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.eez-footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.eez-footer-nav a:hover {
  color: #ffffff;
  text-decoration: none;
}/* End custom CSS */