.elementor-8 .elementor-element.elementor-element-96fd5ef{--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-8 .elementor-element.elementor-element-74921be{margin:-35px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-8 .elementor-element.elementor-element-1d31d09{margin:-21px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-8 .elementor-element.elementor-element-9982303{margin:-19px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-8 .elementor-element.elementor-element-584354b{--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-8 .elementor-element.elementor-element-c820865{--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-8 .elementor-element.elementor-element-1b1548040 > .elementor-container{max-width:1600px;}.elementor-8 .elementor-element.elementor-element-1b1548040 > .elementor-background-overlay{opacity:1;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-8 .elementor-element.elementor-element-1b1548040{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:50px;margin-bottom:50px;}.elementor-8 .elementor-element.elementor-element-5ce240a4:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9F9F9;}.elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-element-populated >  .elementor-background-overlay{opacity:1;}.elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-element-populated, .elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-element-populated > .elementor-background-overlay, .elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-background-slideshow{border-radius:20px 20px 20px 20px;}.elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:100px 100px 100px 100px;}.elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-8 .elementor-element.elementor-element-e99bc91{--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-8 .elementor-element.elementor-element-00666ac{margin:12px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}body.elementor-page-8:not(.elementor-motion-effects-element-type-background), body.elementor-page-8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}@media(max-width:1366px){.elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-element-populated{padding:40px 40px 40px 40px;}}@media(max-width:767px){.elementor-8 .elementor-element.elementor-element-5ce240a4 > .elementor-element-populated{padding:10px 10px 10px 10px;}}/* Start custom CSS for html, class: .elementor-element-74921be */.premium-hero {
  position: relative;
  min-height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  color: #fff;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.2)
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* TRUST BADGE */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.trust-badge span {
  font-size: 14px;
  opacity: 0.9;
}

/* PULSE ANIMATION */
.pulse {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { opacity: 0.85; }
  50% { opacity: 1; }
  100% { opacity: 0.85; }
}

/* HEADLINE */
.hero-content h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
}

/* SUBTEXT */
.hero-content p {
  font-size: 18px;
  max-width: 620px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 18px;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #0ea5e9;
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(14,165,233,0.4);
}

/* SECONDARY */
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .premium-hero {
    padding: 0 24px;
  }

  .hero-cta {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  /* HERO HEIGHT CONTROL */
  .premium-hero {
    min-height: 88vh;
    padding-top: 120px;
  }

  /* STRONGER OVERLAY */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.4)
    );
  }

  /* HEADLINE SIMPLIFY */
  .hero-content h1 {
    font-size: 36px;
    line-height: 1.15;
    max-width: 90%;
  }

  /* SUBTEXT TIGHTEN */
  .hero-content p {
    font-size: 16px;
    max-width: 92%;
    margin-bottom: 28px;
  }

  /* TRUST BADGE SHRINK */
  .trust-badge {
    transform: scale(0.9);
    margin-bottom: 18px;
  }

  /* CTA STACK FIX */
  .hero-cta {
    gap: 12px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }

  /* SECONDARY CTA AS LINK */
  .btn-secondary {
    border: none;
    padding: 0;
    opacity: 0.85;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1d31d09 */.omni-services {
  background: #ffffff;
  padding: 120px 6vw;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.services-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.services-header h2 {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

.services-header p {
  font-size: 16px;
  opacity: 0.8;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.service-card {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.service-content {
  padding: 22px 22px 26px;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 14px;
}

.service-content a {
  font-size: 14px;
  text-decoration: none;
  color: #0ea5e9;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .omni-services {
    padding: 90px 24px;
  }

  .service-image img {
    height: 200px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9982303 *//* SECTION */
.exec-section {
  padding: 120px 6vw;
  background: #0b1220;
  color: #ffffff;
}

/* CONTAINER */
.exec-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADLINE */
.exec-content h2 {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* SUBTEXT */
.exec-sub {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 36px;
}

/* METRICS */
.exec-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}

/* METRIC CARD */
.metric-card {
  background: rgba(255,255,255,0.08);
  padding: 18px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.metric-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.metric-card span {
  font-size: 14px;
  opacity: 0.75;
}

/* CTA */
.exec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #0ea5e9;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exec-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(14,165,233,0.4);
}

/* ========================= */
/* MOBILE OPTIMIZATION */
/* ========================= */

@media (max-width: 768px) {

  .exec-section {
    padding: 80px 24px;
  }

  .exec-content h2 {
    font-size: 32px;
    line-height: 1.25;
    max-width: 100%;
  }

  .exec-sub {
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .exec-metrics {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .metric-card {
    padding: 16px 18px;
  }

  .metric-card strong {
    font-size: 20px;
  }

  .exec-btn {
    width: 100%;
    padding: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0947a92 *//* SECTION */
.omni-process {
  background: #ffffff;
  padding: 120px 6vw;
  color: #0f172a;
  position: relative;
}

/* CONTAINER */
.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.process-header {
  max-width: 720px;
  margin-bottom: 80px;
}

.process-header h2 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.process-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* FLOW */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* CONNECTOR LINE */
.process-flow::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #e5e7eb,
    transparent
  );
}

/* CARD */
.process-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15,23,42,0.08);
}

/* STEP NUMBER */
.process-step {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #0f766e;
  margin-bottom: 18px;
}

/* TITLE */
.process-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* TEXT */
.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* PRIMARY STEP */
.process-card.highlight {
  background: linear-gradient(
    135deg,
    #ecfeff,
    #f8fafc
  );
  border: 1px solid #ccfbf1;
}

/* MOBILE */
@media (max-width: 900px) {
  .omni-process {
    padding: 90px 24px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-flow::before {
    display: none;
  }

  .process-card {
    padding: 32px 26px;
  }

  .process-header {
    margin-bottom: 56px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ecc2c57 *//* SECTION */
.omni-testimonials {
  background: radial-gradient(
    circle at top right,
    #1e293b,
    #020617 60%
  );
  padding: 120px 6vw;
  color: #ffffff;
}

/* CONTAINER */
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.testimonials-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.testimonials-header h2 {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 600;
  margin-bottom: 16px;
}

.testimonials-header p {
  font-size: 16px;
  opacity: 0.85;
}

/* SLIDER */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* CARD */
.testimonial-card {
  min-width: 100%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* QUOTE */
.quote {
  font-size: 48px;
  color: #38bdf8;
  display: block;
  margin-bottom: 16px;
}

/* TEXT */
.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* META */
.testimonial-meta strong {
  display: block;
  font-size: 16px;
}

.testimonial-meta span {
  font-size: 14px;
  opacity: 0.7;
}

/* PROOF CARDS */
.testimonial-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
}

.proof-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.proof-card p {
  font-size: 15px;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 900px) {
  .omni-testimonials {
    padding: 90px 24px;
  }

  .testimonial-card {
    padding: 32px 26px;
  }

  .testimonial-proof {
    grid-template-columns: 1fr;
  }

  .testimonial-text {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8c44ae6 *//* SECTION */
.omni-faq {
  background: #ffffff;
  padding: 120px 6vw;
  color: #0f172a;
}

/* CONTAINER */
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 72px;
}

.faq-eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq-header h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
}

/* GRID */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ITEM */
.faq-item {
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 28px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.faq-icon {
  width: 32px;
  height: 32px;
  background: #e2e8f0;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

/* ANSWER (GRID METHOD — NO CUTTING) */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  padding: 0 28px;
}

.faq-answer > div {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* ACTIVE STATE */
.faq-item.active {
  background: #f1f5f9;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 28px 26px;
}

.faq-item.active .faq-icon {
  background: #0ea5e9;
  color: #ffffff;
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 900px) {
  .omni-faq {
    padding: 90px 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 20px;
    font-size: 15.5px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 22px;
  }
}


@media (max-width: 900px) {

  /* FAQ item container */
  .faq-item {
    padding: 0;
  }

  /* Question button */
  .faq-question {
    align-items: flex-start; /* 🔑 allow multi-line text */
    gap: 12px;
    line-height: 1.5;
    white-space: normal;     /* 🔑 allow wrapping */
  }

  /* Question text */
  .faq-question span:not(.faq-icon),
  .faq-question {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Icon stays top-right */
  .faq-icon {
    flex-shrink: 0;
    margin-top: 2px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-00666ac *//* CTA SECTION */
.omni-cta {
  position: relative;
  min-height: 420px;
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
  padding: 80px 24px;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(2,6,23,0.72),
    rgba(2,6,23,0.88)
  );
}

/* CONTENT */
.cta-content {
  position: relative;
  max-width: 720px;
  text-align: center;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

/* EYEBROW */
.cta-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 22px;
  color: #e5e7eb;
}

/* HEADING */
.cta-content h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 22px;
}

/* TEXT */
.cta-content p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTON */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0ea5e9;
  color: #ffffff;
  padding: 15px 38px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(14,165,233,0.45);
}

/* SUBTLE ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE OPTIMISATION */
@media (max-width: 768px) {

  .omni-cta {
    min-height: auto;
    padding: 90px 22px;
  }

  .cta-content h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 34px;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
    padding: 15px 0;
  }
}/* End custom CSS */