.elementor-1177 .elementor-element.elementor-element-32fd618c{--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-1177 .elementor-element.elementor-element-32fd618c:not(.elementor-motion-effects-element-type-background), .elementor-1177 .elementor-element.elementor-element-32fd618c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0E1527;}.elementor-1177 .elementor-element.elementor-element-05720a0{--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-1177 .elementor-element.elementor-element-644261fc{--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-1177 .elementor-element.elementor-element-644261fc:not(.elementor-motion-effects-element-type-background), .elementor-1177 .elementor-element.elementor-element-644261fc > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0E1527;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1459febd *//* ============================================
   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-0a1d25d *//* ============================================
   EEZ Branding & Design Service Page - WordPress CSS
   Add to: Appearance > Customize > Additional CSS
   ============================================ */

.eez-bd-hero, .eez-bd-included, .eez-bd-process,
.eez-bd-results, .eez-bd-faq {
  background-color: #0E1527;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
}

.eez-bd-container { max-width: 1200px; margin: 0 auto; }

.eez-bd-label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; color: #e87c2e;
  text-transform: uppercase; margin-bottom: 14px;
}

.eez-bd-section-title {
  font-size: clamp(32px, 4vw, 56px); font-weight: 900;
  color: #ffffff; margin: 0 0 48px 0; line-height: 1.1; letter-spacing: -1px;
}

/* HERO */
.eez-bd-hero { padding-top: 60px; }
.eez-bd-hero .eez-bd-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 860px) {
  .eez-bd-hero .eez-bd-container { grid-template-columns: 1fr; }
  .eez-bd-hero-right { display: none; }
}

.eez-bd-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.eez-bd-breadcrumb a { color: #e87c2e; text-decoration: none !important; }
.eez-bd-breadcrumb a:hover { text-decoration: underline !important; }

.eez-bd-icon-box {
  width: 56px; height: 56px; background: #e87c2e; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}

.eez-bd-hero-title {
  font-size: clamp(48px, 6vw, 80px); font-weight: 900; color: #ffffff;
  line-height: 1; margin: 0 0 20px 0; letter-spacing: -2px;
}

.eez-bd-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin: 0 0 32px 0; max-width: 460px;
}

.eez-bd-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.eez-bd-btn-primary {
  display: inline-block; background: #e87c2e; color: #fff !important;
  font-size: 15px; font-weight: 700; text-decoration: none !important;
  padding: 14px 30px; border-radius: 10px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.eez-bd-btn-primary:hover {
  background: #d46b1e; transform: translateY(-2px);
  color: #fff !important; text-decoration: none !important;
}

.eez-bd-btn-secondary {
  display: inline-block; background: transparent; color: #fff !important;
  font-size: 15px; font-weight: 600; text-decoration: none !important;
  padding: 13px 28px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.eez-bd-btn-secondary:hover {
  border-color: #e87c2e; color: #e87c2e !important; text-decoration: none !important;
}

.eez-bd-hero-card {
  background: #161d2d; border: 1px solid rgba(255,255,255,0.07); border-radius: 20px;
  padding: 60px 40px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px; min-height: 260px;
}
.eez-bd-hero-card-icon { font-size: 64px; opacity: 0.55; }
.eez-bd-hero-card-text { font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.3); margin: 0; }

/* INCLUDED GRID */
.eez-bd-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px) { .eez-bd-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .eez-bd-grid { grid-template-columns: 1fr; } }

.eez-bd-card {
  background: #161d2d; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.eez-bd-card:hover { border-color: rgba(232,124,46,0.3); transform: translateY(-4px); }
.eez-bd-card-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.eez-bd-card h3 { font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 10px 0; }
.eez-bd-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }

/* PROCESS */
.eez-bd-process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) { .eez-bd-process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .eez-bd-process-grid { grid-template-columns: 1fr; } }

.eez-bd-process-card {
  background: #161d2d; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 28px 22px; transition: border-color 0.3s ease;
}
.eez-bd-process-card:hover { border-color: rgba(232,124,46,0.3); }
.eez-bd-step {
  width: 40px; height: 40px; background: #e87c2e; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #fff; margin-bottom: 16px;
}
.eez-bd-process-card h3 { font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 10px 0; }
.eez-bd-process-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }

/* RESULTS */
.eez-bd-results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 700px) { .eez-bd-results-grid { grid-template-columns: 1fr; } }

.eez-bd-result-card {
  background: #161d2d; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px 28px; transition: border-color 0.3s ease;
}
.eez-bd-result-card:hover { border-color: rgba(232,124,46,0.3); }
.eez-bd-result-value {
  display: block; font-size: clamp(40px, 5vw, 60px); font-weight: 900;
  color: #e87c2e; line-height: 1; margin-bottom: 12px; letter-spacing: -1px;
}
.eez-bd-result-card p { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.5; }

/* FAQ */
.eez-bd-faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 780px; }

.eez-bd-faq-item {
  background: #161d2d; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; overflow: hidden; transition: border-color 0.3s ease;
}
.eez-bd-faq-item.eez-bd-faq-open { border-color: rgba(232,124,46,0.25); }

.eez-bd-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; cursor: pointer; gap: 16px;
}
.eez-bd-faq-q span { font-size: 15px; font-weight: 700; color: #ffffff; }

.eez-bd-faq-toggle {
  background: none; border: none; color: #e87c2e; font-size: 20px;
  font-weight: 700; cursor: pointer; flex-shrink: 0; padding: 0;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
}

.eez-bd-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease; padding: 0 24px;
}
.eez-bd-faq-item.eez-bd-faq-open .eez-bd-faq-a { max-height: 200px; padding: 0 24px 22px; }
.eez-bd-faq-a p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-76e1bf4c */.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 */