.elementor-1116 .elementor-element.elementor-element-3a9f9183{--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-1116 .elementor-element.elementor-element-3a9f9183:not(.elementor-motion-effects-element-type-background), .elementor-1116 .elementor-element.elementor-element-3a9f9183 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0E1527;}.elementor-1116 .elementor-element.elementor-element-d84c0cb{--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-1116 .elementor-element.elementor-element-be5e93{--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-1116 .elementor-element.elementor-element-be5e93:not(.elementor-motion-effects-element-type-background), .elementor-1116 .elementor-element.elementor-element-be5e93 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0E1527;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-312cee35 *//* ============================================
   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-6241a61 *//* ============================================
   EEZ Digital Marketing Service Page - WordPress CSS
   Add to: Appearance > Customize > Additional CSS
   ============================================ */

/* ===== SHARED ===== */
.eez-dm-hero,
.eez-dm-included,
.eez-dm-process,
.eez-dm-results,
.eez-dm-faq {
  background-color: #0E1527;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
}

.eez-dm-container {
  max-width: 1200px;
  margin: 0 auto;
}

.eez-dm-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e87c2e;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eez-dm-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-dm-hero {
  padding-top: 60px;
}

.eez-dm-hero .eez-dm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 860px) {
  .eez-dm-hero .eez-dm-container {
    grid-template-columns: 1fr;
  }
  .eez-dm-hero-right { display: none; }
}

/* Breadcrumb */
.eez-dm-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.eez-dm-breadcrumb a {
  color: #e87c2e;
  text-decoration: none;
}
.eez-dm-breadcrumb a:hover { text-decoration: underline; }

/* Icon box */
.eez-dm-icon-box {
  width: 52px;
  height: 52px;
  background: #e87c2e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Hero title */
.eez-dm-hero-title {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin: 0 0 20px 0;
  letter-spacing: -2px;
}

.eez-dm-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 32px 0;
  max-width: 460px;
}

/* Buttons */
.eez-dm-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.eez-dm-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;
  border: none;
  box-shadow: none;
}
.eez-dm-btn-primary:hover {
  background: #d46b1e;
  transform: translateY(-2px);
  text-decoration: none !important;
  color: #fff !important;
}

.eez-dm-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-dm-btn-secondary:hover {
  border-color: #e87c2e;
  color: #e87c2e !important;
  text-decoration: none !important;
}

/* Hero right card */
.eez-dm-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: 280px;
}

.eez-dm-hero-card-icon {
  font-size: 64px;
  opacity: 0.6;
}

.eez-dm-hero-card-text {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ===== WHAT'S INCLUDED GRID ===== */
.eez-dm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .eez-dm-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .eez-dm-grid { grid-template-columns: 1fr; } }

.eez-dm-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-dm-card:hover {
  border-color: rgba(232,124,46,0.3);
  transform: translateY(-4px);
}

.eez-dm-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.eez-dm-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
}

.eez-dm-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ===== PROCESS ===== */
.eez-dm-process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

@media (max-width: 900px) { .eez-dm-process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .eez-dm-process-grid { grid-template-columns: 1fr; } }

.eez-dm-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-dm-process-card:hover {
  border-color: rgba(232,124,46,0.3);
}

.eez-dm-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-dm-process-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
}

.eez-dm-process-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ===== RESULTS ===== */
.eez-dm-results-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

@media (max-width: 700px) { .eez-dm-results-grid { grid-template-columns: 1fr; } }

.eez-dm-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-dm-result-card:hover {
  border-color: rgba(232,124,46,0.3);
}

.eez-dm-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-dm-result-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.eez-dm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
}

.eez-dm-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-dm-faq-item.eez-faq-open {
  border-color: rgba(232,124,46,0.25);
}

.eez-dm-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
}

.eez-dm-faq-q span {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.eez-faq-toggle {
  background: none;
  border: none;
  color: #e87c2e;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.eez-dm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.eez-dm-faq-item.eez-faq-open .eez-dm-faq-a {
  max-height: 200px;
  padding: 0 24px 22px;
}

.eez-dm-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-5f5e2abb */.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 */