/* =============================================
   eSEO Solutions – Static Site Stylesheet
   Optimized for Core Web Vitals & Performance
   ============================================= */

/* ── CSS Custom Properties ── */
:root {
  --navy: #113b51 /*#0b1d3a*/;
  --navy-light: #112347;
  --orange: #f47c20;
  --Lime-Green: #34B71A;
  --orange-dark: #d96a10;
  --orange-light: #fff3e8;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --text: #1a2535;
  --text-muted: #5a6a80;
  --text-body: #fff;
  --border: #e2e8f0;
  --hww-bg:#edf3ea;
  --hww-line:#e3eadf;
  --hww-green:#2f9d46;
  --hww-green-2:#79ca61;
  --muted: #5b6b73;
  --shadow: 0 4px 24px rgba(11,29,58,.08);
  --shadow-lg: 0 12px 40px rgba(11,29,58,.14);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Sora', sans-serif;
  --font-display: 'Sora', sans-serif;
  --shadow-card: 0 6px 24px rgba(13, 40, 50, 0.08);
  --shadow-soft: 0 2px 10px rgba(13, 40, 50, 0.05);
}

/* ── Reset & Base ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);color:var(--text);background:var(--white);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6{font-family:var(--font-head);line-height:1.2;color:var(--navy)}
h1{font-size:clamp(2rem,4vw,3.2rem);font-weight:700}
h2{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:500}
h3{font-size:clamp(1.1rem,2vw,1.4rem);font-weight:500}
p{font-size:1rem;color:var(--text-muted);line-height:1.75}


/* ── Utility ── */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px}
.section{padding:40px 0}
.section--dark{background:var(--navy);color:var(--white)}
.section--lightblue{background: #173365;color:var(--white)}
.section--dark h2,.section--dark h3,.section--dark p{color:var(--white)}
.section--dark p{color:rgba(255,255,255,.75)}
.section--gray{background:var(--off-white)}
.section-label{display:inline-block;background:#045683;color:var(--white);font-size:.8rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:6px 14px;border-radius:40px;margin-bottom:14px}
.section-title{margin-bottom:16px}
.section-subtitle{font-size:1.05rem;max-width:640px;margin-bottom:48px}
.text-center{text-align:center}
.text-center .section-subtitle{margin-left:auto;margin-right:auto}
/*.btn{display:inline-flex;align-items:center;gap:8px;padding:13px 28px;border-radius:var(--radius);font-family:var(--font-head);font-weight:600;font-size:.95rem;transition:all var(--transition);cursor:pointer;border:2px solid transparent}
.btn-primary{background:linear-gradient(135deg,#7bc46a,#00732f);transition:opacity .18s;color:var(--white)}
.btn-primary:hover{background:var(--white);transform:translateY(-2px); color:var(--Lime-Green)}

.btn-outline{background:transparent;color:var(--white);border-color:var(--white)}
.btn-outline:hover{background:var(--white);color:var(--navy)}*/

/* New Button Style */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #7bc46a 0%, #00732f 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 115, 47, 0.25);
  padding:18px 30px;
  display: inline-flex;
  min-height: 40px;
  
}

/* HOVER EFFECT */
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 115, 47, 0.35);
  background: linear-gradient(135deg, #8fd97a 0%, #008a38 100%);
}

/* ACTIVE CLICK */
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 115, 47, 0.2);
}

/* OPTIONAL SHINE EFFECT (LIKE YOUR HERO BUTTON) */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 120%;
}


.btn-outline-dark{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-outline-dark:hover{background:var(--navy);color:var(--white)}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}

/* ── Top Bar ── */
.topbar{background:linear-gradient(135deg, #7bc46a 0%, #00732f 100%);padding:8px 0;font-size:.82rem}
.topbar__inner{display:flex;justify-content:space-between;align-items:center;color:rgb(255, 255, 255)}
.topbar a{color:rgba(255,255,255,.8);transition:color var(--transition)}
.topbar a:hover{color:var(--white)}
.topbar__left,.topbar__right{display:flex;gap:20px;align-items:center}
.topbar__right a.topbar-cta{background:linear-gradient(135deg, #7bc46a 0%, #00732f 100%);color:#fff;padding:4px 14px;border-radius:20px;font-weight:600;font-size:.8rem}

/* ── Navigation ── */
.navbar{background:var(--navy-light);position:sticky;top:0;z-index:1000;box-shadow:0 2px 12px rgba(0,0,0,.08);transition:box-shadow var(--transition)}
.navbar__inner{display:flex;align-items:center;justify-content:space-between;height:70px;gap:24px}
.navbar__logo img{height:44px;width:auto}
.navbar__logo-text{font-family:var(--font-head);font-size:1.5rem;font-weight:800;color:var(--white)}
.navbar__logo-text span{color:var(--orange)}
.navbar__nav{display:flex;align-items:center;gap:4px}
.nav-item{position:relative}
.nav-link{display:flex;align-items:center;gap:4px;padding:8px 14px;font-weight:600;font-size:.9rem;color:var(--white);border-radius:var(--radius);transition:all var(--transition);white-space:nowrap}
.nav-link:hover,.nav-link.active{color:var(--white)}
.nav-link svg{width:14px;height:14px;transition:transform var(--transition)}
.nav-item:hover .nav-link svg{transform:rotate(180deg)}
.dropdown{position:absolute;top:calc(100% + 8px);left:0;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);padding:8px;min-width:220px;opacity:0;visibility:hidden;transform:translateY(-8px);transition:all var(--transition)}
.nav-item:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown a{display:block;padding:9px 14px;font-size:.88rem;font-weight:500;color:var(--text);border-radius:var(--radius);transition:all var(--transition)}
.dropdown a:hover{color:var(--navy)}
.navbar__actions{display:flex;align-items:center;gap:12px}
.hamburger{display:none;flex-direction:column;gap:5px;padding:6px;cursor:pointer}
.hamburger span{width:22px;height:2px;background:var(--navy);border-radius:2px;transition:all var(--transition)}
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 9999; /* ABOVE everything */
  display: none;
  flex-direction: column;
  padding: 80px 20px 40px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}
.mobile-nav a{padding:12px 16px;font-weight:600;font-size:1rem;border-radius:var(--radius);display:block}
.mobile-nav a:hover{background:var(--orange-light);color:var(--orange)}
.mobile-nav-close {
  position: fixed;   /* not absolute */
  top: 20px;
  right: 20px;
  font-size: 28px;
  z-index: 10000; /* always above */
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* Navbar scroll state */
.navbar.scrolled {
  background: #045683;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled .nav-link {
  color: #ffffff;
}

.navbar.scrolled .navbar__logo-text {
  color: #ffffff;
}



/* ------- Hero 2 New --------- */

/* ================= HERO SECTION START ================= */

:root {
  --nxp-white: #ffffff;
  --nxp-green: #31e06f;
  --nxp-green-2: #17b75a;
  --nxp-text: rgba(255, 255, 255, .84);
}

/* HERO SECTION */
.nxp-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: unset;
  aspect-ratio: 1907 / 768;
  background: #020919;
}

/* HTML image as background */
.nxp-hero__bg {
   position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Dark overlay for text readability */
.nxp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(2, 9, 25, .86) 0%,
    rgba(2, 9, 25, .62) 34%,
    rgba(2, 9, 25, .18) 66%,
    rgba(2, 9, 25, .04) 100%
  );
  pointer-events: none;
}

.nxp-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  height: 100%;
  min-height: unset;
  margin: 0 auto;
  padding: 70px 72px;
  display: flex;
  align-items: center;
}

.nxp-hero__left {
  max-width: 720px;
}

.nxp-hero__title {
  margin: 0 0 24px;
  color: var(--nxp-white);
  font-size: clamp(2rem,4vw,3.2rem);
  line-height: 1.02;
  letter-spacing: -2.2px;
  font-weight: 600;
}

.nxp-hero__desc {
  margin: 0 0 36px;
  max-width: 640px;
  color: var(--nxp-text);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.nxp-hero__actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nxp-btn {
  height: 62px;
  padding: 0 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.nxp-btn:hover {
  transform: translateY(-2px);
}

.nxp-btn--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #59e26f 0%, #1ea84b 100%);
  box-shadow: 0 14px 28px rgba(33, 205, 100, .26);
}

.nxp-btn--secondary {
  color: #17334c;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .15);
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .nxp-hero {
    aspect-ratio: 1907 / 768;
    min-height: unset;
  }

  .nxp-hero__bg {
     object-fit: cover;
    object-position: center center;
  }

  .nxp-hero__container {
    height: 100%;
    min-height: unset;
    padding: 58px 42px;
  }

  .nxp-hero__left {
    max-width: 650px;
  }

  .nxp-hero__desc {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .nxp-hero {
    aspect-ratio: auto;
    min-height: 620px;
  }

  .nxp-hero__bg {
    object-fit: cover;
    object-position: 60% center;
  }

  .nxp-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(2, 9, 25, .9) 0%,
      rgba(2, 9, 25, .74) 48%,
      rgba(2, 9, 25, .38) 100%
    );
  }

   .nxp-hero__container {
    min-height: 620px;
    height: auto;
    padding: 56px 24px 52px;
  }

  .nxp-hero__left {
    max-width: 610px;
  }

  .nxp-hero__title {
    font-size: clamp(40px, 7vw, 54px);
    letter-spacing: -1.8px;
  }

  .nxp-hero__desc {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 680px) {
  .nxp-hero {
    min-height: 580px;
  }

  .nxp-hero__bg {
    object-fit: cover;
    object-position: 66% center;
  }

  .nxp-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(2, 9, 25, .94) 0%,
      rgba(2, 9, 25, .82) 58%,
      rgba(2, 9, 25, .55) 100%
    );
  }

  .nxp-hero__container {
    min-height: 580px;
    padding: 44px 16px 42px;
    
  }

  .nxp-hero__title {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1.3px;
    font-weight: 600;
  }

  .nxp-hero__desc {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
  }

  .nxp-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nxp-btn {
    width: 100%;
    height: 56px;
    font-size: 15px;
    border-radius: 12px;
  }
}

@media (max-width: 420px) {
  .nxp-hero {
    min-height: 560px;
  }

  .nxp-hero__bg {
    object-position: 68% center;
  }

  .nxp-hero__container {
    min-height: 560px;
  }

  .nxp-hero__title {
    font-size: 34px;
  }

  .nxp-hero__desc {
    font-size: 14.5px;
  }
}

/*.h2hero-section {
  position: relative;
  overflow: hidden;
  padding: 30px 0 84px;
  background: #0b3f58;
  color: #fff;
}

.h2hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02) brightness(1.02);
  z-index: 0;
}

.h2hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 61, 88, 0.82) 0%, rgba(9, 61, 88, 0.70) 42%, rgba(9, 61, 88, 0.44) 100%),
    linear-gradient(180deg, rgba(6, 42, 62, 0.22) 0%, rgba(6, 42, 62, 0.58) 100%);
}

.h2hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 72px 72px;
  mix-blend-mode: soft-light;
}

.h2hero-section .container {
  position: relative;
  z-index: 2;
}

.h2hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.h2hero-left {
  max-width: 560px;
}

.h2hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #18d0b2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.h2hero-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #18d0b2;
}

.h2hero-title {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(44px, 5vw, 42px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.h2hero-desc {
  margin: 0 0 28px;
  max-width: 460px;
  color: rgba(255,255,255,.72);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
}

.h2hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.h2hero-btn-primary {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
}

.h2hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  color: #113b51;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.h2hero-btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 14px 24px rgba(0,0,0,.15);
}*/

/* RIGHT SIDE */
/*.h2hero-right {
  display: flex;
  justify-content: flex-end;
  padding-top: 18px;
  padding-bottom: 18px;
}

.h2hero-features {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 460px;
  perspective: 1600px;
  transform-style: preserve-3d;
}*/

/* shared tile */
/*.h2hero-feature {
  position: absolute;
  width: 270px;
  min-height: 112px;
  padding: 16px 16px 16px 15px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    rgba(7, 30, 52, 0.62);

  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform 0.32s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.32s cubic-bezier(.2,.8,.2,1),
    border-color 0.32s ease,
    background 0.32s ease;
  overflow: hidden;
  z-index: 1;
}

.h2hero-feature::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(24, 208, 178, 0.95),
    rgba(52, 183, 26, 0.65),
    rgba(255, 122, 69, 0.45)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}

.h2hero-feature::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -60px;
  top: -70px;
  background: radial-gradient(circle, rgba(24,208,178,0.18), transparent 68%);
  pointer-events: none;
  transform: translateZ(-1px);
}

.h2hero-feature:hover {
  transform: translateY(-10px) scale(1.03) rotateX(2deg);
  border-color: rgba(24, 208, 178, 0.32);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(24, 208, 178, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.1);
  z-index: 10;
  animation: none;
}

.h2hero-feature:hover::before {
  opacity: 0.9;
}

.h2hero-feature__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 1px;
  color: #18d0b2;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 8px rgba(24,208,178,0.22));
}

.h2hero-feature__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.h2hero-feature h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.h2hero-feature p {
  display: none;
}*/

/* desktop staggered 3D placement */
/*.h2hero-feature:nth-child(1) {
  top: 0;
  left: 18px;
  transform: translate3d(0, 0, 28px) rotateY(-8deg) rotateX(4deg);
}

.h2hero-feature:nth-child(2) {
  top: 20px;
  right: 0;
  transform: translate3d(0, 0, 40px) rotateY(8deg) rotateX(3deg);
}

.h2hero-feature:nth-child(3) {
  top: 150px;
  left: 0;
  transform: translate3d(0, 0, 18px) rotateY(-6deg) rotateX(2deg);
}

.h2hero-feature:nth-child(4) {
  top: 162px;
  right: 22px;
  transform: translate3d(0, 0, 34px) rotateY(6deg) rotateX(2deg);
}

.h2hero-feature:nth-child(5) {
  bottom: 0;
  left: 34px;
  transform: translate3d(0, 0, 12px) rotateY(-4deg);
}

.h2hero-feature:nth-child(6) {
  bottom: 10px;
  right: 0;
  transform: translate3d(0, 0, 28px) rotateY(5deg);
}*/

/* floating micro motion */
/*.h2hero-feature:nth-child(1),
.h2hero-feature:nth-child(4) {
  animation: h2floatA 6.5s ease-in-out infinite;
}

.h2hero-feature:nth-child(2),
.h2hero-feature:nth-child(5) {
  animation: h2floatB 7.2s ease-in-out infinite;
}

.h2hero-feature:nth-child(3),
.h2hero-feature:nth-child(6) {
  animation: h2floatC 6.8s ease-in-out infinite;
}

@keyframes h2floatA {
  0%, 100% { transform: translate3d(0, 0, 28px) rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: translate3d(0, 0, 38px) rotateY(-8deg) rotateX(4deg) translateY(-6px); }
}

@keyframes h2floatB {
  0%, 100% { transform: translate3d(0, 0, 40px) rotateY(8deg) rotateX(3deg) translateY(0); }
  50% { transform: translate3d(0, 0, 50px) rotateY(8deg) rotateX(3deg) translateY(-8px); }
}

@keyframes h2floatC {
  0%, 100% { transform: translate3d(0, 0, 18px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50% { transform: translate3d(0, 0, 26px) rotateY(-6deg) rotateX(2deg) translateY(-5px); }
}

.h2hero-feature:hover {
  animation: none;
}*/

/* =========================
   RESPONSIVE
========================= */
/*@media (max-width: 1100px) {
  .h2hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .h2hero-left {
    max-width: 100%;
  }

  .h2hero-right {
    justify-content: flex-start;
  }

  .h2hero-features {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .h2hero-feature {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100%;
    min-height: 90px;
  }

  .h2hero-feature:nth-child(n) {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .h2hero-section {
    padding: 66px 0 58px;
  }

  .h2hero-title {
    font-size: clamp(38px, 10vw, 52px);
  }

  .h2hero-desc {
    max-width: 100%;
  }

  .h2hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .h2hero-actions .btn,
  .h2hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .h2hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .h2hero-feature {
    min-height: 66px;
    padding: 12px 14px;
  }
}*/

/* ── Hero ── */
.hero{background:linear-gradient(135deg,var(--navy) 0%,#163060 60%,#1a3d7a 100%);min-height:88vh;display:flex;align-items:center;position:relative;overflow:hidden;padding:30px 0}
.hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.hero__inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:1}
.hero__content{}
.hero__badge{display:inline-flex;align-items:center;gap:8px;background:rgba(244,124,32,.15);border:1px solid rgba(244,124,32,.3);color:var(--orange);font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:6px 14px;border-radius:40px;margin-bottom:20px}
.hero__badge::before{content:'';width:8px;height:8px;background:var(--orange);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero__title{color:var(--white);margin-bottom:20px}
.hero__title em{color:var(--orange);font-style:normal}
.hero__desc{color:rgba(255,255,255,.75);font-size:1.05rem;margin-bottom:36px;max-width:500px}
.hero__actions{display:flex;gap:14px;flex-wrap:wrap}
.hero__trust{margin-top:40px;display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.hero__trust-text{color:rgba(255,255,255,.5);font-size:.78rem;text-transform:uppercase;letter-spacing:.08em}
.hero__trust-logos{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.trust-badge{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);padding:8px 14px;color:rgba(255,255,255,.7);font-size:.78rem;font-weight:600}
.hero__image{display:flex;justify-content:center;align-items:center}
.hero__img-wrap{position:relative}
.hero__city-svg{width:100%;max-width:520px;filter:drop-shadow(0 20px 60px rgba(0,0,0,.4))}
.hero__stats{display:flex;flex-direction:column;gap:12px;position:absolute;right:-20px;top:50%;transform:translateY(-50%)}
.hero__stat-card{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);padding:12px 18px;text-align:center;white-space:nowrap}
.hero__stat-card strong{display:block;color:var(--orange);font-family:var(--font-head);font-size:1.3rem;font-weight:700}
.hero__stat-card span{color:rgba(255,255,255,.7);font-size:.72rem}

/* Hero V2 */

.hero-v2 {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0;
  background-size: cover;
  background-position: top center;  /* ← people show from top */
  background-repeat: no-repeat;
}
 
/* Overlay as div — not ::before */
.hero-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.92) 30%,
    rgba(255,255,255,0.70) 52%,
    rgba(255,255,255,0.10) 70%,
    rgba(255,255,255,0.00) 100%
  );
}
 
.hero-v2__inner {
  position: relative;
  z-index: 2;
  display: grid;
  /* 3 columns: text | checklist | empty (people show through) */
  grid-template-columns: 1.1fr 1fr 0.6fr;
  gap: 32px;
  align-items: center;
}
 
/* LEFT: text */
.hero-v2__rank {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--Lime-Green);
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}
 
.hero-v2__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #0b2d4e;
  line-height: 1.12;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}
 
.hero-v2__desc {
  font-size: 1rem;
  color: #3d4e5e;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}
 
.hero-v2__desc strong {
  color: #0b2d4e;
}
 
.hero-v2__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
 
/* MIDDLE: checklist */
.hero-v2__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.hero-v2__check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: 0 2px 18px rgba(11, 29, 58, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  margin: 0;
}
 
.hero-v2__check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--Lime-Green);
}
 
.hero-v2__check-item p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.4;
}
 
.hero-v2__check-item strong {
  font-weight: 700;
  color: #0b2d4e;
}
 
.hero-v2__check-item span {
  font-weight: 400;
  color: #3d4e5e;
}
 
/* RIGHT: empty col — people show through */
.hero-v2__spacer {
  /* intentionally empty */
}
 
/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-v2__inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-v2__spacer {
    display: none;
  }
  .hero-v2__overlay {
    background: linear-gradient(
      100deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.90) 40%,
      rgba(255,255,255,0.60) 70%,
      rgba(255,255,255,0.10) 100%
    );
  }
}
 
@media (max-width: 768px) {
  .hero-v2 {
    padding: 56px 0;
    background-position: top right;
    min-height: auto;
  }
  .hero-v2__inner {
    grid-template-columns: 1fr;
  }
  .hero-v2__overlay {
    background: rgba(255,255,255,0.90);
  }
  .hero-v2__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* LEADERSHIP New 3 */
.eseo-lead-section{background:#fff;padding:62px 0 42px;position:relative;overflow:hidden}
.eseo-lead-wrap{display:grid;grid-template-columns:1.02fr .98fr;gap:46px;align-items:center}
.eseo-lead-visual{position:relative;min-height:560px}
.eseo-lead-circle{position:absolute;left:-52px;top:-26px;width:338px;height:338px;border-radius:50%;background:#edf5ef}
.eseo-lead-ring{position:absolute;left:126px;top:54px;width:280px;height:280px;border-radius:50%;border:1.5px solid #15345b}
.eseo-founder-card{position:absolute;width:250px;border-radius:20px;overflow:hidden;box-shadow:0 14px 30px rgba(18,40,61,.14);background:#fff}
.eseo-founder-card img{width:100%;height:355px;object-fit:cover}
.eseo-founder-card .bio{background:#fff;padding:18px 16px 20px;text-align:center}
.eseo-founder-card .bio2{background:#fff;padding:18px 16px 20px;text-align:center; margin-top: -80px;margin-bottom: 40px;}
.eseo-founder-card .avatar{position:absolute;left:50%;top:230px;transform:translateX(-50%);width:54px;height:54px;border-radius:50%;background:var(--Lime-Green);display:flex;align-items:center;justify-content:center;color:#113b51;border:6px solid #fff}
.eseo-founder-card .avatar svg{width:22px;height:22px;fill:#0f172a;stroke:none}
.eseo-founder-card h3{margin:18px 0 8px;font-family:var(--font-head);font-size:22px;line-height:1.15;color:#133a5a;font-weight:700}
.eseo-founder-card p{margin:0;color:#607086;font-size:13px;line-height:1.5}
.eseo-founder-card--one{left:62px;top:70px;border-top:5px solid var(--Lime-Green)}
.eseo-founder-card--two{left:300px;top:168px;border-top:5px solid #0f2d4e;z-index:2}
.eseo-founder-card--two img{height:300px}
.eseo-founder-card--two .avatar{top:280px}
.eseo-lead-copy h2{font-family:var(--font-head);font-size:clamp(30px,3.1vw,44px);font-weight:300;letter-spacing:-.04em;margin:0 0 10px;color:var(--navy)}
.eseo-lead-copy h2 span{color:#2f9a4a;font-weight:700}
.eseo-lead-copy .sub{margin:0 0 20px;font-size:16px;color:#6a7b92}
.eseo-lead-copy .name{margin:18px 0 6px;font-family:var(--font-head);font-size:22px;font-weight:700;color:#133a5a}
.eseo-lead-copy p{margin:0;color:#5a6a80;font-size:16px;line-height:1.72}
.eseo-lead-copy .block{margin-bottom:18px}
.eseo-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:28px}
.eseo-stat{border:1px solid #dce7f7;border-radius:14px;padding:18px 14px 16px;text-align:center;box-shadow:0 8px 18px rgba(13,40,50,.04)}
.eseo-stat .icon{width:46px;height:46px;border-radius:50%;margin:0 auto 10px;display:flex;align-items:center;justify-content:center;background:#eef4ff;color:#2f69ff}
.eseo-stat:nth-child(2) .icon,.eseo-stat:nth-child(4) 
.icon{background:#eef9ef;color:#2ab11c}
.eseo-stat .icon svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.eseo-stat strong{display:block;font-family:var(--font-head);font-size:25px;line-height:1;color:#1d5fe0;margin-bottom:4px}
.eseo-stat:nth-child(2) strong,.eseo-stat:nth-child(4) strong{color:#20a72c}
.eseo-stat span{display:block;color:#667487;font-size:12px;line-height:1.25;font-weight:700}
.eseo-lead-cta{margin-top:10px;display:inline-flex;align-items:center;justify-content:center;padding:14px 24px;border-radius:12px;background:linear-gradient(90deg,#7bc46a 0%,#1f9a40 100%);color:#fff;font-weight:700;font-family:var(--font-head);box-shadow:0 10px 20px rgba(31,154,64,.18)}
.eseo-lead-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 115, 47, 0.35);
  background: linear-gradient(135deg, #8fd97a 0%, #008a38 100%);}
  
  /* SHINE EFFECT */
.eseo-lead-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  transform: skewX(-20deg);
  transition: 0.5s;
}

.eseo-lead-cta:hover::after {
  left: 120%;
}


/* RESPONSIVE */
@media(max-width:1100px){
    .eseo-lead-wrap{grid-template-columns:1fr;gap:24px}
    .eseo-lead-visual{min-height:610px}
    .eseo-lead-copy{text-align:center}
    .eseo-stats{max-width:760px;margin-left:auto;margin-right:auto}
    }
    
@media(max-width:720px){
    .eseo-wrap{width:min(100% - 28px,1240px)}
    .eseo-lead-section{padding:44px 0 26px}
    .eseo-lead-visual{min-height:540px;transform:scale(.9);transform-origin:top center}
    .eseo-founder-card{width:230px}
    .eseo-founder-card--one{left:10px;top:44px}
    .eseo-founder-card--two{left:188px;top:140px}
    .eseo-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
}


/* LEADERSHIP NEW2 */
.leadership { padding: 90px 0; background: #fff; }
.leadership-grid { display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 60px; align-items: center; }
.leadership-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.leader-card {
  margin: 0; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card); background: #fff;
  border: 1px solid var(--line); transition: transform .25s ease;
}
.leader-card:nth-child(2) { transform: translateY(40px); }
.leader-card:hover { transform: translateY(-4px); }
.leader-card:nth-child(2):hover { transform: translateY(36px); }
.leader-card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.leader-card figcaption { padding: 14px 16px; font-weight: 700; color: var(--navy); text-align: center; }
.leader-bio { margin-top: 22px; }
.leader-bio h3 { color: var(--green); margin: 0 0 6px; font-size: 18px; font-family: 'Work Sans', sans-serif; }
.leader-bio p { margin: 0; color: var(--muted); font-size: 15px; }
.leader-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }


/* ── Clients Marquee ── */
.clients {
  padding: 30px 0; /* reduced top-bottom space */
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  background-color: #fff;
}

.clients__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #051A41;
  margin-bottom: 20px; /* 🔥 reduced spacing */
}

.marquee-outer {
  overflow: hidden;
}

/* Track */
.marquee-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
  backface-visibility: hidden; /* important */
  transform: translateZ(0);
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Logo container */
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  height: 80px;   /* 🔥 reduced container height */
  width: auto;    /* allow natural width */

  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  opacity: 1;
}

/* 🔥 BIGGER LOGOS */
.marquee-item img {
  height: 80px;  /* 🔥 increase logo size */
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Animation */
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .clients {
    padding: 20px 0;
  }

  .marquee-track {
    gap: 15px;
    animation-duration: 18s;
  }

  .marquee-item {
    height: 55px;
  }

  .marquee-item img {
    height: 45px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* =============================
   ABOUT SECTION (FOUNDERS)
============================= */

.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT FOUNDERS */
.about-founders {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.founder-card {
  position: relative;
  width: 200px;
}

.founder-card img {
  width: 180px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

/* Background shape */
.founder-bg {
  position: absolute;
  width: 185px;
  height: 270px;
  bottom: 50px;
  left: 0;
  border-radius: 28px;
  z-index: 1;
}

.founder-bg--green {
  background: #c3f4bd;
}

.founder-bg--blue {
  background: #b2d6e9;
}

/* Info */
.founder-info {
  text-align: center;
  margin-top: 12px;
}

.founder-info .name {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

.founder-info .role {
  font-size: 12px;
  color: var(--text-muted);
}

/* Floating Tag */
.founder-tag {
  position: absolute;
  top: 16px;
  right: -30%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 3;
  margin-top: -15px;
}

.founder-tag p {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.founder-tag span {
  font-size: 10px;
  color: var(--text-muted);
}

/* Offset card */
.founder-card--offset {
  margin-top: 40px;
}

/* RIGHT CONTENT */
.about-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text h2 {
  margin-bottom: 16px;
  text-align:center;
}

.about-text .light {
  display: inline;
  font-weight: 400;
  color:#113b51;
}

.about-text .bold {
  font-weight: 600;
  background:linear-gradient(160deg,#7bc46a,#00732f);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  display: inline;
  
}

.about-text p {
  margin-bottom: 10px;
  line-height:1.75;
}

.about-content .btn {
  width: auto !important;
  align-self: flex-start;
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
}

.stat-box span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17,59,81,.5);
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 1024px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-founders {
    justify-content: center;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-founders {
    flex-direction: column;
    align-items: center;
  }

  .founder-card--offset {
    margin-top: 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-content .btn {
    width: auto;
  }
}

/* ── Why UAE Section ── */
.why-uae__content{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.why-uae__features{display:grid;gap:20px;margin-top:32px}
.feature-row{display:flex;gap:16px;align-items:flex-start}
.feature-icon{width:48px;height:48px;min-width:48px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.feature-icon svg{width:22px;height:22px;color:var(--Lime-Green)}
.feature-row h4{font-size:1rem;margin-bottom:4px}
.feature-row p{font-size:.88rem}
.why-uae__img-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.why-uae__img-wrap img,.why-uae__img-placeholder{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius-lg)}
.img-placeholder{background:linear-gradient(135deg,#e8f0fe,#c9d9f9);border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;aspect-ratio:4/3}
.img-placeholder svg{width:60px;height:60px;opacity:.3;color:var(--navy)}

/* ── Services ── */
.services__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 28px;transition:all var(--transition);position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--Lime-Green);transform:scaleX(0);transition:transform var(--transition);transform-origin:left}
.service-card:hover{border-color:transparent;box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.service-card:hover::before{transform:scaleX(1)}
.service-card__icon{width:52px;height:52px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.service-card__icon svg{width:24px;height:24px;color:var(--Lime-Green)}
.service-card h3{margin-bottom:10px;font-size:1.1rem}
.service-card p{font-size:.88rem;margin-bottom:20px}
.service-card__link{display:inline-flex;align-items:center;gap:6px;color:var(--orange);font-weight:600;font-size:.88rem;transition:gap var(--transition)}
.service-card__link:hover{gap:10px}
.service-card__link svg{width:14px;height:14px}

/* ===============================
   PREMIUM SERVICES SECTION
=============================== */

.services-pro {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  overflow: hidden;
  
}

/* LIGHT SHAPE BACKGROUND */
.services-pro::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52,183,26,0.08), transparent 70%);
  z-index: 0;
}

.services-pro::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,115,47,0.06), transparent 70%);
  z-index: 0;
}

/* KEEP CONTENT ABOVE */
.services-pro .container {
  position: relative;
  z-index: 1;
}

.services-pro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

/* CARD */
.service-pro-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e6f0e8;

  transition: all 0.35s ease;
  transform-style: preserve-3d;

  display: flex;
  flex-direction: column;
  gap: 14px;

  text-decoration: none;
}

/* TOP GRADIENT LINE */
.service-pro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #7bc46a, #00732f);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}

/* ICON */
.service-pro-card__icon {
  font-size: 32px;
}

/* TITLE */
.service-pro-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #113b51;
}

/* TEXT */
.service-pro-card p {
  font-size: 0.9rem;
  color: #5a6a80;
  line-height: 1.6;
}

/* LINK */
.service-pro-card__link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00732f;
  transition: 0.3s;
}

/* HOVER 3D EFFECT */
.service-pro-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 115, 47, 0.15);
  border-color: transparent;
}

.service-pro-card:hover::before {
  transform: scaleX(1);
}

.service-pro-card:hover .service-pro-card__link {
  transform: translateX(6px);
}

.service-pro-card__icon svg {
  width: 36px;
  height: 36px;
  color: #34B71A;
  stroke: #34B71A;
  transition: all 0.35s ease;
}

/* Hover animation */
.service-pro-card:hover .service-pro-card__icon svg {
  transform: scale(1.15) rotate(6deg);
  stroke: #00732f;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 1024px) {
  .services-pro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-pro__grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   ADVANCED SERVICES (PRO VERSION)
=============================== */

/*.services-pro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}*/

/* CARD BASE */
/*.service-pro-card {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e6f0e8;

  transition: all 0.4s ease;
  transform-style: preserve-3d;

  display: flex;
  flex-direction: column;
  gap: 14px;

  overflow: hidden;
}*/

/* FEATURED CARD */
/*.service-pro-card.featured {
  background: linear-gradient(135deg, #0b2d4e, #113b51);
  color: #fff;
  transform: scale(1.05);
  border: none;
}

.service-pro-card.featured h3,
.service-pro-card.featured p {
  color: #fff;
}*/

/* BADGE */
/*.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #34B71A;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
}*/

/* ICON */
/*.icon svg {
  width: 38px;
  height: 38px;
  stroke: #34B71A;
  transition: 0.4s;
}*/

/* MICRO INTERACTION */
/*.service-pro-card:hover .icon svg {
  transform: rotate(8deg) scale(1.1);
  stroke: #00732f;
}*/

/* TITLE */
/*.service-pro-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #113b51;
}*/

/* TEXT */
/*.service-pro-card p {
  font-size: 0.9rem;
  color: #5a6a80;
}*/

/* CASE STUDY PREVIEW */
/*.case-preview {
  margin-top: auto;
  padding: 12px;
  background: #f7fbf8;
  border-radius: 10px;
  font-size: 0.8rem;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.case-preview strong {
  display: block;
  color: #00732f;
}

.case-preview span {
  color: #666;
}
*/
/* SHOW ON HOVER */
/*.service-pro-card:hover .case-preview {
  opacity: 1;
  transform: translateY(0);
}
*/
/* LINK */
/*.link {
  font-weight: 600;
  color: #00732f;
  transition: 0.3s;
}
*/
/* HOVER 3D */
/*.service-pro-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0,115,47,0.2);
}
*/
/* ===============================
   RESPONSIVE
=============================== */

/*@media (max-width: 1024px) {
  .services-pro__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-pro-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .services-pro__grid {
    grid-template-columns: 1fr;
  }

  .service-pro-card.featured {
    grid-column: span 1;
  }
}
*/

/* ===============================
      How We Work New Design
=============================== */

    /* Uses your existing .container utility, but namespaced section styles */
    .hww-section{
      width:100%;
      padding:40px 0 70px;
      position:relative;
      overflow:hidden;
    }

    .hww-container{
      position:relative;
    }

    .hww-header{
      text-align:center;
      margin-bottom:50px;
    }

    /* Re-using your existing section-title / section-subtitle class names is safe here because
       they already exist in your stylesheet. The more specific selector below prevents clashes. */
    .hww-section .section-title{
      margin:0 0 12px;
      color:#113b51;
      line-height:1;
      font-weight:600;
      letter-spacing:-1px;
      font-size: 1.5rem;
    }

    .hww-section .section-subtitle{
      max-width:820px;
      margin:0 auto;
      color:var(--navy);
      font-size:15px;
      line-height:1.6;
      margin-bottom:0;
      font-weight: 600px;
    }

    .hww-timeline{
      position:relative;
    }

    .hww-row{
      display:grid;
      grid-template-columns:1fr 140px 1fr;
      align-items:center;
      min-height:165px;
      border-bottom:1px solid var(--hww-line);
      position:relative;
    }

    .hww-col{
      padding:25px 10px;
      z-index:2;
    }

    .hww-left{padding-left:20px}
    .hww-right{padding-left:40px}

    .hww-step-center{
      display:flex;
      justify-content:center;
      align-items:center;
      position:relative;
      z-index:3;
    }

    .hww-step{
      width:48px;
      height:48px;
      border-radius:50%;
      background:linear-gradient(180deg,var(--hww-green-2),var(--hww-green));
      color:#fff;
      font-weight:700;
      font-size:15px;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 16px rgba(0,0,0,.15);
    }

    .hww-title-row{
      display:flex;
      align-items:center;
      gap:14px;
      font-size:30px;
      font-weight:300;
      letter-spacing:-0.3px;
      line-height:1.08;
      color:var(--hww-title);
      margin:0;
    }

    .hww-icon{
      width:56px;
      height:56px;
      min-width:56px;
      object-fit:contain;
      display:block;
      flex:0 0 56px;
    }

    .hww-desc{
      margin:0;
      max-width:360px;
      font-size:14.5px;
      line-height:1.6;
      color:var(--navy);
      font-weight:400;
    }

    /* Curved dotted connector */
    .hww-path-layer{
      position:absolute;
      inset:0;
      pointer-events:none;
      z-index:1;
    }

    .hww-path-layer svg{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      width:280px;
      height:100%;
      overflow:visible;
    }

    .hww-path{
      stroke:#4ba94f;
      stroke-width:3;
      stroke-dasharray:10 10;
      fill:none;
      stroke-linecap:round;
    }

    .hww-cta{
      text-align:center;
      margin-top:40px;
      position:relative;
      z-index:2;
    }

    .hww-cta .btn-primary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:14px 34px;
      border-radius:8px;
      font-size:15px;
      text-decoration:none;
    }

    .hww-arrow{
      width:16px;
      height:16px;
      stroke:currentColor;
      fill:none;
      stroke-width:2;
    }

    /* Fine alignment tweaks */
    .hww-row.hww-r1{min-height:150px}
    .hww-row.hww-r2,
    .hww-row.hww-r3,
    .hww-row.hww-r4,
    .hww-row.hww-r5,
    .hww-row.hww-r6,
    .hww-row.hww-r7{min-height:170px}

    @media (max-width: 1024px){
      .hww-section .section-title{font-size:52px}
      .hww-row{grid-template-columns:1fr 110px 1fr;min-height:158px}
      .hww-title-row{font-size:24px}
      .hww-desc{font-size:14px;max-width:none}
      .hww-left{padding-left:0}
      .hww-right{padding-left:18px}
      .hww-icon{width:50px;height:50px;min-width:50px;flex-basis:50px}
    }

    @media (max-width: 768px){
      .hww-section{padding:40px 0 56px}
      .hww-section .section-title{font-size:36px}
      .hww-section .section-subtitle{font-size:14px}
      .hww-row{grid-template-columns:1fr;min-height:auto;padding:20px 0 22px}
      .hww-step-center,.hww-path-layer{display:none}
      .hww-col,.hww-left,.hww-right{padding-left:0;padding-right:0}
      .hww-title-row{font-size:22px}
      .hww-desc{margin-top:10px}
      .hww-cta{margin-top:26px}
      .hww-cta .btn-primary{width:100%;max-width:320px}
    }


/* ===============================
    AI DRIVEN New Design 
    ===============================*/
.section-sub { font-size: 16px; color: var(--navy); margin: 0 0 10px; font-weight: 600; }
.section-desc { font-size: 15px; color: var(--navy); max-width: 760px; margin: 0 auto; }
.ai-driven { padding: 90px 0; background: #fff; }
.ai-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.ai-illustration img { border-radius: 16px; box-shadow: var(--shadow-card); }
.ai-checklist { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 12px; }
.ai-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.ai-checklist i { color: var(--hww-green); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

@media (max-width: 1024px) {
  .ai-driven {
    padding: 70px 0;
  }

  .ai-grid {
    gap: 40px;
  }

  .section-sub {
    font-size: 15px;
  }

  .section-desc {
    font-size: 14px;
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .ai-driven {
    padding: 60px 0;
  }

  .ai-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ai-illustration {
    order: 2;
  }

  .ai-content { order: 1; }
  .section-sub { font-size: 14px; margin-bottom: 8px; }
  .section-desc { font-size: 14px; max-width: 100%; }
  .ai-checklist { margin: 20px 0 24px; gap: 10px; }
  .ai-checklist li { font-size: 14px; gap: 10px; }
  .ai-checklist i { font-size: 16px; }
  .ai-illustration img { width: 100%; height: auto; } }

@media (max-width: 480px) { 
.ai-driven { padding: 50px 0; }
  .section-sub { font-size: 13px; }
  .section-desc { font-size: 13px; line-height: 1.6; }
  .ai-checklist { margin: 18px 0 22px; }
  .ai-checklist li { font-size: 13px; line-height: 1.55;} }

/* ── Process ── */
.process__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.process__grid::after{content:'';position:absolute;top:36px;left:12%;right:12%;height:2px;background:linear-gradient(90deg,var(--Lime-Green),rgba(244,124,32,.2));z-index:0}
.process-step{text-align:center;padding:0 16px;position:relative;z-index:1}
.process-step__num{width:72px;height:72px;background:var(--navy-light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-family:var(--font-head);font-weight:800;font-size:1.3rem;color:var(--white);border:4px solid var(--white);box-shadow:linear-gradient(135deg,#7bc46a,#00732f)}
.process-step h3{font-size:1rem;margin-bottom:8px}
.process-step p{font-size:.83rem}

/* ── Funnel Section ── */
.funnel__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.funnel-card{background:var(--white);border-radius:var(--radius-lg);padding:32px 24px;text-align:center;border:1px solid var(--border);transition:all var(--transition)}
.funnel-card:hover{border-color:var(--orange);box-shadow:var(--shadow)}
.funnel-card__icon{width:56px;height:56px;margin:0 auto 18px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.funnel-card__icon svg{width:26px;height:26px;color:var(--Lime-Green)}
.funnel-card h3{font-size:1.1rem;margin-bottom:8px}

/* ── Benefits ── */
.benefits__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.benefit-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--border);display:flex;gap:18px;align-items:flex-start;transition:all var(--transition)}
.benefit-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.benefit-card__icon{width:44px;height:44px;min-width:44px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.benefit-card__icon svg{width:20px;height:20px;color:var(--Lime-Green)}
.benefit-card h3{font-size:1rem;margin-bottom:6px}
.benefit-card p{font-size:.84rem}

/* ── AEO / GEO ── */
.aeo-geo{background:var(--navy)}
.aeo-geo__grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.aeo-geo__card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:36px}
.aeo-geo__card h3{color:var(--white);margin-bottom:12px;font-size:1.3rem}
.aeo-geo__card p{color:var(--white);margin-bottom:24px}
.aeo-geo__list{display:grid;gap:10px}
.aeo-geo__list li{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.85);font-size:.9rem}
.aeo-geo__list li::before{content:'';width:8px;height:8px;min-width:8px;background:var(--Lime-Green);border-radius:50%}

/*--- Timeline New 3----*/

.ej-journey-section {
  width: 100%;
  background: #eef7ee;
  padding: 48px 0 88px;
  overflow: hidden;
  font-family: "Poppins", "Inter", Arial, sans-serif;
}

.ej-journey-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 44px;
}

.ej-journey-head {
  text-align: center;
  margin-bottom: 72px;
}

.ej-journey-head h2 {
  margin: 0;
  color: #123d54;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -1.2px;
}

.ej-journey-head p {
  margin: 6px 0 0;
  color: #6f7772;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.1px;
}

.ej-journey-timeline {
  position: relative;
  height: 455px;
}

.ej-journey-road {
  position: absolute;
  left: 0;
  top: 174px;
  width: 100%;
  height: 90px;
  z-index: 1;
  overflow: visible;
}

.ej-journey-road path,
.ej-journey-road polyline {
  stroke: #3aa45b;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ej-journey-road polyline {
  stroke: #087a36;
}

.ej-journey-item {
  position: absolute;
  left: var(--x);
  width: 232px;
  transform: translateX(-50%);
  z-index: 3;
}

.ej-journey-item--top {
  top: 0;
}

.ej-journey-item--bottom {
  top: 209px;
}

.ej-journey-card {
  width: 100%;
  min-height: 166px;
  background: #ffffff;
  border-radius: 14px;
  padding: 19px 18px 17px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: none;
}

.ej-journey-card-bottom {
  width: 100%;
  min-height: 166px;
  background: #ffffff;
  border-radius: 14px;
  padding: 19px 18px 17px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: none;
  margin-top:70px;
}

.ej-journey-card-bottom h3 {
  margin: 0 0 9px;
  color: #123d54;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.ej-journey-card-bottom h4 {
  margin: 0 0 13px;
  color: #263238;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
}

.ej-journey-card-bottom p {
  margin: 0;
  color: #666666;
  font-size: 10.2px;
  line-height: 1.55;
  font-weight: 400;
}

.ej-journey-card h3 {
  margin: 0 0 9px;
  color: #123d54;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.ej-journey-card h4 {
  margin: 0 0 13px;
  color: #263238;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
}

.ej-journey-card p {
  margin: 0;
  color: #666666;
  font-size: 10.2px;
  line-height: 1.55;
  font-weight: 400;
}

.ej-journey-node {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%);
  border: 1.5px solid #0c8a3c;
  border-radius: 50%;
  background: #ffffff;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ej-journey-item--top .ej-journey-node {
  top: 174px;
}

.ej-journey-item--bottom .ej-journey-node {
  top: 0;
}

.ej-journey-node span {
  width: 36px;
  height: 36px;
  background: linear-gradient(180deg, #65c46b 0%, #35a852 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.ej-journey-node svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Medium screens */
@media (max-width: 1199px) {
  .ej-journey-container {
    padding: 0 28px;
  }

  .ej-journey-item {
    width: 210px;
  }

  .ej-journey-card {
    min-height: 162px;
    padding: 18px 14px 16px;
  }

  .ej-journey-card h3 {
    font-size: 31px;
  }

  .ej-journey-card p {
    font-size: 9.8px;
  }
  
  .ej-journey-card-bottom {
    min-height: 162px;
    padding: 18px 14px 16px;
  }

  .ej-journey-card-bottom h3 {
    font-size: 31px;
  }

  .ej-journey-card-bottom p {
    font-size: 9.8px;
  }
}

/* Tablet and Mobile Vertical Timeline */
@media (max-width: 899px) {
  .ej-journey-section {
    padding: 42px 0 56px;
  }

  .ej-journey-container {
    padding: 0 18px;
  }

  .ej-journey-head {
    margin-bottom: 34px;
  }

  .ej-journey-head h2 {
    font-size: 34px;
  }

  .ej-journey-head p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
  }

  .ej-journey-timeline {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 72px;
  }

  .ej-journey-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 22px;
    bottom: 22px;
    width: 6px;
    background: #3aa45b;
    border-radius: 20px;
  }

  .ej-journey-road {
    display: none;
  }

  .ej-journey-item,
  .ej-journey-item--top,
  .ej-journey-item--bottom {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 560px;
    transform: none;
    z-index: 3;
  }

  .ej-journey-card {
    min-height: auto;
    padding: 22px 20px;
    text-align: left;
    border-radius: 14px;
  }

  .ej-journey-card h3 {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .ej-journey-card h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .ej-journey-card p {
    font-size: 12px;
    line-height: 1.55;
  }
  
  .ej-journey-card-bottom {
    min-height: auto;
    padding: 22px 20px;
    text-align: left;
    border-radius: 14px;
    margin-top:0;
  }

  .ej-journey-card-bottom h3 {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .ej-journey-card-bottom h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .ej-journey-card-bottom p {
    font-size: 12px;
    line-height: 1.55;
  }

  .ej-journey-node,
  .ej-journey-item--top .ej-journey-node,
  .ej-journey-item--bottom .ej-journey-node {
    left: -72px;
    top: 14px;
    width: 58px;
    height: 58px;
    transform: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .ej-journey-section {
    padding: 36px 0 46px;
  }

  .ej-journey-head h2 {
    font-size: 30px;
  }

  .ej-journey-timeline {
    padding-left: 58px;
    gap: 18px;
  }

  .ej-journey-timeline::before {
    left: 24px;
    width: 5px;
  }

  .ej-journey-node,
  .ej-journey-item--top .ej-journey-node,
  .ej-journey-item--bottom .ej-journey-node {
    left: -58px;
    width: 50px;
    height: 50px;
  }

  .ej-journey-node span {
    width: 32px;
    height: 32px;
  }

  .ej-journey-card {
    padding: 20px 17px;
  }

  .ej-journey-card h3 {
    font-size: 30px;
  }
  
   .ej-journey-card-bottom {
    padding: 20px 17px;
    margin-top:0;
  }

  .ej-journey-card-bottom h3 {
    font-size: 30px;
  }
}

/*----- Timeline New 2--------*/

.eseo-jh-section{
  background:#eaf2e8;
  padding:18px 0 20px;
}

.eseo-jh-container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 42px;
  box-sizing:border-box;
  font-family:var(--font-body);
}

.eseo-jh-title{
  margin:0;
  text-align:center;
  font-family:var(--font-head);
  font-size:clamp(28px, 3vw, 33px);
  line-height:1;
  font-weight:300;
  color:var(--navy);
  letter-spacing:-0.04em;
}

.eseo-jh-subtitle{
  margin:8px 0 0;
  text-align:center;
  font-size:11px;
  line-height:1.2;
  color:#6c726d;
}

.eseo-jh-row{
  display:grid;
  position:relative;
  column-gap:18px;
}

.eseo-jh-row--top{
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:28px;
  padding-bottom:18px;
  border-bottom:1px dashed #b7d9be;
}

.eseo-jh-row--bottom{
  grid-template-columns:repeat(3,minmax(0,1fr));
  margin-top:14px;
  padding-top:12px;
  border-top:1px dashed #b7d9be;
}

.eseo-jh-row--top::before,
.eseo-jh-row--bottom::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.eseo-jh-row--top::before{
  background-image:
    linear-gradient(to right,
      transparent 24.9%, #b7d9be 25%, transparent 25.1%,
      transparent 49.9%, #b7d9be 50%, transparent 50.1%,
      transparent 74.9%, #b7d9be 75%, transparent 75.1%);
  background-repeat:no-repeat;
  background-size:100% 100%;
  opacity:.9;
}

.eseo-jh-row--bottom::before{
  background-image:
    linear-gradient(to right,
      transparent 33.2%, #b7d9be 33.35%, transparent 33.5%,
      transparent 66.5%, #b7d9be 66.65%, transparent 66.8%);
  background-repeat:no-repeat;
  background-size:100% 100%;
  opacity:.9;
}

.eseo-jh-item{
  position:relative;
  z-index:1;
  min-width:0;
}

.eseo-jh-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:4px;
}

.eseo-jh-icon{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#6ac86a 0%, #238f3a 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.25);
}

.eseo-jh-icon svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:#fff;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.eseo-jh-year{
  font-family:var(--font-head);
  font-size:30px;
  line-height:1;
  font-weight:700;
  color:var(--navy);
  letter-spacing:-0.05em;
}

.eseo-jh-label{
  margin:0 0 3px;
  font-size:11px;
  line-height:1.2;
  font-weight:700;
  color:#2f3833;
}

.eseo-jh-text{
  margin:0;
  font-size:10px;
  line-height:1.55;
  color:#5a605b;
}

/* fine-tuning per row */
.eseo-jh-row--top .eseo-jh-item{
  padding-right:4px;
}

.eseo-jh-row--bottom .eseo-jh-item{
  padding-right:10px;
}

/* responsive */
@media (max-width: 992px){
  .eseo-jh-container{
    padding:0 24px;
  }

  .eseo-jh-row--top{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .eseo-jh-row--bottom{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .eseo-jh-row--top::before{
    background-image:
      linear-gradient(to right, transparent 49.9%, #b7d9be 50%, transparent 50.1%);
  }

  .eseo-jh-row--bottom::before{
    background-image:
      linear-gradient(to right, transparent 49.9%, #b7d9be 50%, transparent 50.1%);
  }
}

@media (max-width: 640px){
  .eseo-jh-section{
    padding:16px 0 18px;
  }

  .eseo-jh-container{
    padding:0 16px;
  }

  .eseo-jh-row--top,
  .eseo-jh-row--bottom{
    grid-template-columns:1fr;
    column-gap:0;
  }

  .eseo-jh-row--top::before,
  .eseo-jh-row--bottom::before,
  .eseo-jh-row--top{
    border-bottom:0;
  }

  .eseo-jh-row--bottom{
    border-top:0;
    margin-top:10px;
    padding-top:0;
  }

  .eseo-jh-item{
    margin-bottom:14px;
  }
}


/* ── Timeline ── */
/*.timeline{padding:80px 0}
.timeline__track{display:flex;flex-direction:column;gap:0;position:relative;max-width:700px;margin:0 auto}
.timeline__track::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;background:var(--border);transform:translateX(-50%)}
.timeline-item{display:grid;grid-template-columns:1fr 1fr;gap:0;position:relative;padding-bottom:48px}
.timeline-item:last-child{padding-bottom:0}
.timeline-item__year{text-align:right;padding-right:40px;padding-top:4px;font-family:var(--font-head);font-weight:800;font-size:1.5rem;color:var(--orange)}
.timeline-item__dot{position:absolute;left:50%;top:8px;width:16px;height:16px;background:var(--orange);border-radius:50%;transform:translateX(-50%);border:3px solid var(--white);box-shadow:0 0 0 3px var(--orange)}
.timeline-item__content{padding-left:40px;padding-top:0}
.timeline-item__content h3{font-size:1.05rem;margin-bottom:6px}
.timeline-item__content p{font-size:.85rem}*/

.timeline-section{background:var(--off-white);padding:80px 0}

/* Outer wrapper holds the zig-zag */
.timeline-h{position:relative;overflow:visible}

/* 6 columns, one per milestone */
.timeline-h__row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  position:relative;
}

/* The central horizontal connector line */
.timeline-h__row::before{
  content:'';
  position:absolute;
  top:50%;
  left:calc(100% / 12);
  right:calc(100% / 12);
  height:2px;
  background:linear-gradient(90deg, var(--orange) 0%, rgba(245,130,31,.2) 100%);
  transform:translateY(-50%);
  z-index:0;
}

/* Each milestone cell */
.tl-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  z-index:1;
}

/* ABOVE items: illustration top, year+dot in middle, text bottom */
.tl-item.above{
  /* Top half: illustration */
  /* Middle: dot on the line */
  /* Bottom half: text content */
  padding-top:0;
}

/* BELOW items: text top, year+dot in middle, illustration bottom */
.tl-item.below{}

/* Shared illustration box */
.tl-img{
  width:108px;height:84px;
  background:linear-gradient(135deg,#e4eefb,#ccd9f5);
  border-radius:var(--radius);
  border:2px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  overflow:hidden;
}
.tl-img svg{width:38px;height:38px;opacity:.38;color:var(--navy)}

/* Vertical stub connecting illustration to dot */
.tl-stub{
  width:2px;
  height:36px;
  background:rgba(245,130,31,.3);
  flex-shrink:0;
}

/* Year label */
.tl-year{
  font-family:var(--font-head);
  font-weight:800;
  font-size:1.05rem;
  color:var(--navy-light);
  line-height:1;
  margin:6px 0 4px;
}

/* navy dot on the line */
.tl-dot{
  width:16px;height:16px;
  background:var(--navy-light);
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 0 0 3px rgba(245,130,31,.35);
  flex-shrink:0;
  position:relative;
  z-index:2;
}

/* Text content block */
.tl-content{
  text-align:center;
  padding:0 6px;
  max-width:150px;
}
.tl-content h4{
  font-family:var(--font-head);
  font-weight:700;
  font-size:.78rem;
  color:var(--navy);
  margin-bottom:4px;
  line-height:1.3;
}
.tl-content p{
  font-size:.72rem;
  color:var(--text-muted);
  line-height:1.5;
}

/* ABOVE: img → stub → year → dot → stub → content */
.tl-item.above{justify-content:flex-end}
.tl-item.above .tl-img{order:1}
.tl-item.above .tl-stub:first-of-type{order:2}
.tl-item.above .tl-year{order:3}
.tl-item.above .tl-dot{order:4}
.tl-item.above .tl-stub:last-of-type{order:5}
.tl-item.above .tl-content{order:6}

/* BELOW: content → stub → dot → year → stub → img */
.tl-item.below{justify-content:flex-start;flex-direction:column-reverse}
.tl-item.below .tl-img{order:1}
.tl-item.below .tl-stub:first-of-type{order:2}
.tl-item.below .tl-year{order:3}
.tl-item.below .tl-dot{order:4}
.tl-item.below .tl-stub:last-of-type{order:5}
.tl-item.below .tl-content{order:6}

/* ── Mobile/tablet vertical timeline ── */
.timeline-v{display:none}
.timeline-v__track{position:relative;padding-left:36px}
.timeline-v__track::before{content:'';position:absolute;left:7px;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,var(--orange),rgba(245,130,31,.12))}
.timeline-v__item{position:relative;padding-bottom:36px}
.timeline-v__item:last-child{padding-bottom:0}
.timeline-v__dot{position:absolute;left:-31px;top:4px;width:15px;height:15px;background:var(--orange);border-radius:50%;border:3px solid #fff;box-shadow:0 0 0 3px rgba(245,130,31,.35)}
.timeline-v__year{font-family:var(--font-head);font-weight:800;font-size:.88rem;color:var(--orange);margin-bottom:3px}
.timeline-v__title{font-family:var(--font-head);font-weight:700;font-size:.97rem;color:var(--navy);margin-bottom:4px}
.timeline-v__desc{font-size:.84rem;color:var(--text-muted);line-height:1.6}   

/* ── Stats ── */
.stats{background:var(--navy)}
.stats__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.stat-item{text-align:center}
.stat-item__num{font-family:var(--font-head);font-size:2.8rem;font-weight:800;color:var(--white);line-height:1}
.stat-item__label{color:rgba(255,255,255,.7);font-size:.88rem;margin-top:8px}

/* ── Contact Form ── */
.contact{background:var(--off-white)}
.contact__inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.contact__info h2{margin-bottom:16px}
.contact__features{display:grid;gap:16px;margin-top:32px}
.contact__feature{display:flex;gap:14px;align-items:flex-start}
.contact__feature-icon{width:40px;height:40px;min-width:40px;background:var(--orange);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.contact__feature-icon svg{width:18px;height:18px;color:white}
.contact__feature h4{font-size:.95rem;margin-bottom:2px}
.contact__feature p{font-size:.82rem}
.contact-form{background:var(--white);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow)}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-weight:600;font-size:.85rem;margin-bottom:6px;color:var(--text)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px 16px;border:1.5px solid var(--border);border-radius:var(--radius);font-family:var(--font-body);font-size:.9rem;color:var(--text);background:var(--white);transition:border-color var(--transition);outline:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--orange)}
.form-group textarea{resize:vertical;min-height:110px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

/* MAP FIX */
.contact__map {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== CONTACT FULL MAP SECTION ===== */
.contact-full {
  position: relative;
  height: 100vh;
  width: 100%;
}

/* MAP */
.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* OVERLAY */
.contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 40px;
}

/* FORM BOX */
.contact-form-box {
  width: 420px;
  background: #051A41E6;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  color: #fff;
}

/* TITLE */
.contact-form-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color:#fff;
  text-align: center;
}

/* FORM */
.form-group {
  margin-bottom: 14px;
}

.form-group input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* PHONE INPUT FIX (intl-tel-input) */
.iti {
  width: 100%;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  background: #1ec21e;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #16a34a;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .contact-full {
    height: auto;
  }

  .contact-map {
    position: relative;
    height: 350px;
  }

  .contact-overlay {
    position: relative;
    justify-content: center;
    padding: 20px;
  }

  .contact-form-box {
    width: 100%;
  }
}



/* ── Industries ── */
.industries__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.industry-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px 16px;text-align:center;transition:all var(--transition)}
.industry-card:hover{border-color:var(--orange);box-shadow:var(--shadow);transform:translateY(-3px)}
.industry-card__icon{width:50px;height:50px;margin:0 auto 12px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.industry-card__icon svg{width:22px;height:22px;color:var(--Lime-Green)}
.industry-card p{font-size:.82rem;font-weight:600;color:var(--text)}


/* ---- Case Studies New Section ---- */

.h2case-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 130px;
  background: #0e4c57;
}

.h2case-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.98;
}

.h2case-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 65, 76, 0.82) 0%, rgba(8, 65, 76, 0.86) 100%),
    linear-gradient(90deg, rgba(6, 55, 66, 0.25) 0%, rgba(8, 65, 76, 0.08) 45%, rgba(8, 65, 76, 0.18) 100%);
}

.h2case-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 120px;
  padding: 0 20px;
}

.h2case-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.h2case-title {
  margin: 0;
  line-height: 1.08;
  font-family: var(--font-head);
}

.h2case-light {
  display: block;
  color: #fff;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
}

.h2case-bold {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: clamp(30px, 3.2vw, 42px);
  letter-spacing: -0.02em;
}

.h2case-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: #fff;
  color: #0b7b35;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  margin-top: 20px;
}

.h2case-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,.15);
  background: #f7fff5;
}

.h2case-slider {
  position: relative;
}

.h2case-viewport {
  overflow: hidden;
  padding: 8px 0 2px;
}

.h2case-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.h2case-card {
  flex: 0 0 auto;
  width: clamp(760px, 66vw, 860px);
  min-width: clamp(760px, 66vw, 860px);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 0;
  background: #eef5e8;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.42);
}

.h2case-media {
  border-radius: 6px;
  overflow: hidden;
  min-height: 238px;
  background: #dfe8d8;
}

.h2case-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.h2case-body {
  padding: 10px 10px 8px 18px;
  display: flex;
  flex-direction: column;
}

.h2case-brand {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.h2case-brand--orange {
  color: #ff6b35;
}

.h2case-brand--green {
  color: #0b7b35;
}

.h2case-card-title {
  margin: 0 0 10px;
  color: #2a4c63;
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.22;
}

.h2case-card-text {
  margin: 0 0 14px;
  color: #5c6f7b;
  font-size: 12px;
  line-height: 1.6;
  max-width: 94%;
}

.h2case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.h2case-metric {
  background: #f6faf2;
  border: 1px solid rgba(183, 216, 163, .65);
  border-radius: 4px;
  padding: 12px 8px 10px;
  text-align: center;
}

.h2case-metric strong {
  display: block;
  color: #2ca24f;
  font-size: 25px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 5px;
}

.h2case-metric span {
  display: block;
  color: #6c7c71;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}

.h2case-case-btn {
  align-self: flex-start;
  margin-top: 12px;
  background: transparent;
  color: #0b7b35;
  border: 1px solid rgba(11,123,53,.35);
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.h2case-case-btn:hover {
  background: #f5fff3;
  border-color: rgba(11,123,53,.6);
  transform: translateY(-1px);
}

/* Prevent layout shift */
.h2case-media {
  min-height: 240px;
}

/* Smooth GPU animation */
.h2case-track {
  will-change: transform;
}

@media (max-width: 1180px) {
  .h2case-card {
    width: clamp(700px, 82vw, 860px);
    min-width: clamp(700px, 82vw, 860px);
  }

  .h2case-media {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .h2case-section {
    padding: 58px 0 66px;
  }

  .h2case-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .h2case-card {
    width: calc(100vw - 40px);
    min-width: calc(100vw - 40px);
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .h2case-media {
    min-height: 210px;
  }

  .h2case-body {
    padding: 14px 6px 4px;
  }

  .h2case-card-text {
    max-width: 100%;
  }

  .h2case-metrics {
    gap: 6px;
  }

  .h2case-metric strong {
    font-size: 22px;
  }
}


/* ── Case Studies ── */
/* Section */

.case-slider {
  padding: 50px 0;
}

/* Container */
.case-container {
  max-width: 950px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

/* Track */
.case-track {
  display: flex;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

/* CARD */
.case-card {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  background: #f8f9fc;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid #e5e7eb;
}

/* LEFT */
.case-left {
  flex: 1;
  min-width: 0;
}

/* HEADER */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* LOGO CONTAINER */
.logo {
  width: 120px;     /* 🔥 fixed width */
  height: 50px;     /* 🔥 fixed height */

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* IMAGE INSIDE */
.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.case-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
}

.primary {
  background: #2b6cff;
  color: #fff;
}

.outline {
  border: 1px solid #2b6cff;
  color: #2b6cff;
}

/* TEXT */
.case-left p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* METRICS */
.metrics {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
}

.metrics strong {
  font-size: 20px;
}

.metrics span {
  font-size: 11px;
}

/* IMAGE */
.case-right {
  flex: 0 0 340px;
}

.case-right img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 12px;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

/* Proper spacing */
.prev {
  left: -25px;
}

.next {
  right: -25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .case-card {
    flex-direction: column;
  }

  .case-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-right {
    width: 100%;
  }

  .case-right img {
    width: 100%;
  }
}

/* ── Testimonials ── */
.testimonials{background:var(--off-white)}
.testimonials__slider{position:relative;overflow:hidden}
.testimonials__track{display:flex;transition:transform 0.4s ease}
.testimonial-slide{min-width:100%;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testimonial-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--border);display:flex;flex-direction:column;gap:16px}
.testimonial-card__stars{display:flex;gap:3px;color:var(--Lime-Green)}
.testimonial-card__text{font-size:.88rem;color:var(--text-muted);flex:1;line-height:1.7}
.testimonial-card__author{display:flex;align-items:center;gap:12px;border-top:1px solid var(--border);padding-top:16px}
.testimonial-card__avatar{width:42px;height:42px;border-radius:50%;background:var(--orange-light);display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:700;color:var(--navy-light);font-size:.9rem;min-width:42px}
.testimonial-card__name{font-weight:700;font-size:.88rem}
.testimonial-card__role{font-size:.78rem;color:var(--text-muted)}
.slider-controls{display:flex;justify-content:center;gap:10px;margin-top:32px}
.slider-dot{width:10px;height:10px;border-radius:50%;background:var(--border);transition:all var(--transition);cursor:pointer}
.slider-dot.active{background:var(--navy-light);width:30px;border-radius:5px}

/* ===============================
   TESTIMONIAL NEW
=============================== */
/* SECTION */
.tm-section {
  background: #f5fdf5;
  padding: 80px 0;
  padding-left: 32px;
  padding-right: 32px;
}

.tm-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  
}

.tm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  
}

.tm-title {
  font-size: clamp(24px,4vw,50px);
  line-height: 1.1;
  
}

.tm-light {
  display: block;
  font-weight: 300;
  color: #113b51;
}

.tm-bold {
  font-weight: 600;
  background: linear-gradient(160deg,#7bc46a,#00732f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tm-btn {
  font-size: 14px;
  padding: 12px 20px;
  white-space: nowrap;
}

.tm-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 12px;
}

.tm-viewport {
  overflow: hidden;
}

.tm-track {
  display: flex;
  gap: 20px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.tm-card {
  width: 320px;
  min-width: 320px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
}

.tm-card img {
  width: 120px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.tm-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding-top: 4px;
}

.tm-text {
  font-size: 13px;
  color: rgba(15,20,25,.72);
  line-height: 1.7;
  font-style: italic;
}

.tm-name {
  font-size: 13px;
  font-weight: 700;
  color: #113b51;
}

.tm-role {
  font-size: 11px;
  color: #6b7280;
}

.tm-stars {
  color: #0fcc7c;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.tm-prev,
.tm-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  font-size: 24px;
  color: #113b51;
  line-height: 1;
}

.tm-prev { left: 0; }
.tm-next { right: 0; }

.tm-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
}

.dot.on {
  background: #34B71A;
}

@media (max-width: 768px) {
  .tm-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tm-slider-wrap {
    padding: 0 12px;
  }

  .tm-card {
    width: 280px;
    min-width: 280px;
  }

  .tm-card img {
    width: 100px;
    height: 150px;
  }
}

@media (min-width: 1200px) {
  .tm-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .tm-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ----- New What we Do and Our Process Section CSS --*/

.h2-offer-section {
  background: #f5fdf5;
  padding: 80px 0;
}

.h2-offer-shell {
  display: flex;
  gap: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.h2-offer-left {
  background: #00732f;
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  min-width: 280px;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.h2-offer-kicker {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.h2-offer-title {
  color: #fff;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 300;
  margin: 0 0 16px;
}

.h2-offer-title span {
  font-weight: 700;
}

.h2-offer-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 32px;
}

.h2-offer-btn {
  background: #fff;
  color: #00732f;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 14px;
  align-self: flex-start;
}

.h2-offer-btn:hover {
  background: #f3fff3;
  transform: translateY(-2px);
}

.h2-offer-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.h2-offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(17, 59, 81, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.h2-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 115, 47, 0.13);
}

.h2-offer-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef6ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.h2-offer-card h3 {
  color: #113b51;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
}

.h2-offer-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.h2-process-section {
  background: #eef6ed;
  padding: 80px 0;
}

.h2-process-head {
  text-align: center;
  margin-bottom: 48px;
}

.h2-process-kicker {
  color: #113b51;
  font-size: clamp(22px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}

.h2-process-title {
  color: #113b51;
  font-size: clamp(22px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.h2-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.h2-process-card {
  position: relative;
  background: #eef6ed;
  border: 1px solid rgba(150, 150, 150, 0.28);
  border-radius: 20px;
  padding: 40px 24px 24px;
  box-shadow: 0 10px 28px rgba(17, 59, 81, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.h2-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 115, 47, 0.13);
}

.h2-process-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: rgba(100, 100, 100, 0.14);
  user-select: none;
}

.h2-process-icon {
  display: block;
  margin-bottom: 16px;
}

.h2-process-card h3 {
  color: #113b51;
  font-size: 28px;
  font-weight: 300;
  margin: 0 0 8px;
}

.h2-process-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.h2-process-cta {
  display: flex;
  justify-content: center;
}

.h2-process-btn {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
}

@media (max-width: 1024px) {
  .h2-offer-shell {
    flex-direction: column;
  }

  .h2-offer-left {
    max-width: 100%;
  }

  .h2-offer-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .h2-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .h2-offer-section,
  .h2-process-section {
    padding: 60px 0;
  }

  .h2-offer-right,
  .h2-process-grid {
    grid-template-columns: 1fr;
  }

  .h2-offer-left {
    padding: 32px 24px;
  }

  .h2-process-card {
    padding: 36px 20px 20px;
  }

  .h2-process-card h3 {
    font-size: 24px;
  }
}

/* ── Why UAE Section ── */
.why-uae__content{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.why-uae__features{display:grid;gap:20px;margin-top:32px}
.feature-row{display:flex;gap:16px;align-items:flex-start}
.feature-icon{width:48px;height:48px;min-width:48px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.feature-icon svg{width:22px;height:22px;color:var(--Lime-Green)}
.feature-row h4{font-size:1rem;margin-bottom:4px}
.feature-row p{font-size:.88rem}
.why-uae__img-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.why-uae__img-wrap img,.why-uae__img-placeholder{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius-lg)}
.img-placeholder{background:linear-gradient(135deg,#e8f0fe,#c9d9f9);border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;aspect-ratio:4/3}
.img-placeholder svg{width:60px;height:60px;opacity:.3;color:var(--navy)}


/*----- New Services CSS Sudhanshu Design ---*/

/* SERVICES */

*{box-sizing:border-box}html,body{margin:0;padding:0}body{font-family:var(--font-body);color:var(--navy);background:#fff;overflow-x:hidden}img{max-width:100%;display:block;height:auto}a{text-decoration:none;color:inherit}.eseo-page{width:100%}.eseo-wrap{width:min(1240px,calc(100% - 48px));margin:0 auto}.eseo-section-title{font-family:var(--font-head);font-weight:300;letter-spacing:-.04em;line-height:1;color:var(--navy);text-align:center;margin:0}.eseo-section-subtitle{text-align:center;color:#6b7280;margin:10px auto 0;line-height:1.55;max-width:900px;font-size:16px}

.eseo-services-section{background:#fff;padding:24px 0 44px}

.eseo-services-head{padding-top:4px;padding-bottom:18px}

.eseo-services-title{font-size:clamp(34px,3.3vw,46px);margin-bottom:14px}

.eseo-services-sub{font-size:17px;color:#6b7a90}

.eseo-services-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:32px 28px;margin-top:30px}

.eseo-service-card{position:relative;background:#fff;border:1px solid #dfeee0;border-top:4px solid var(--Lime-Green);border-radius:18px;padding:18px 18px 20px;min-height:256px;box-shadow:0 8px 20px rgba(18,61,32,.04);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;overflow:hidden}

.eseo-service-card:hover{transform:translateY(-8px);box-shadow:0 18px 36px rgba(18,61,32,.12);border-color:#bfe4c0}

.eseo-service-card::after{content:"";position:absolute;inset:auto 18px 0 18px;height:4px;background:linear-gradient(90deg,var(--Lime-Green),var(--Lime-Green));border-radius:999px;opacity:0;transform:scaleX(.7);transition:.28s ease}

.eseo-service-card:hover::after{opacity:1;transform:scaleX(1)}

.eseo-service-no{position:absolute;left:14px;top:14px;background:var(--Lime-Green);color:#fff;font-size:14px;font-weight:700;padding:6px 8px;border-radius:4px;line-height:1;box-shadow:0 8px 18px rgba(52,183,26,.18)}

.eseo-service-icon{width:64px;height:64px;border-radius:50%;background:#eef8ee;display:flex;align-items:center;justify-content:center;margin:18px auto 18px;color:var(--Lime-Green)}

.eseo-service-icon svg{width:30px;height:30px;stroke:currentColor;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}

.eseo-service-card h3{margin:0 0 8px;font-family:var(--font-head);color:var(--navy);font-size:20px;line-height:1.18;font-weight:700}

.eseo-service-card p{margin:0 0 18px;color:#6b7a90;font-size:14px;line-height:1.55;min-height:66px}

.eseo-service-link{display:inline-flex;align-items:center;gap:7px;color:#0b7b35;font-weight:700;font-size:13px}
.eseo-service-link svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2}

/* RESPONSIVE */
@media(max-width:1100px){.eseo-services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.eseo-journey-row--top,.eseo-journey-row--bottom{grid-template-columns:repeat(2,minmax(0,1fr));row-gap:20px}.eseo-journey-path{display:none}.eseo-lead-wrap{grid-template-columns:1fr;gap:24px}.eseo-lead-visual{min-height:610px}.eseo-lead-copy{text-align:center}.eseo-stats{max-width:760px;margin-left:auto;margin-right:auto}.eseo-hero-section{min-height:auto}.eseo-hero-grid{grid-template-columns:1fr;min-height:auto;padding:56px 0 34px}.eseo-hero-right{min-height:680px}.eseo-hero-copy{text-align:center;max-width:none;margin:0 auto}.eseo-hero-copy p{margin-left:auto;margin-right:auto}.eseo-hero-actions{justify-content:center}}
@media(max-width:720px){.eseo-wrap{width:min(100% - 28px,1240px)}.eseo-services-grid{grid-template-columns:1fr;gap:18px}.eseo-service-card{min-height:auto}.eseo-journey-row--top,.eseo-journey-row--bottom{grid-template-columns:1fr}.eseo-journey-row--bottom{margin-top:14px}.eseo-journey-item{min-height:auto}.eseo-lead-section{padding:44px 0 26px}.eseo-lead-visual{min-height:540px;transform:scale(.9);transform-origin:top center}.eseo-founder-card{width:230px}.eseo-founder-card--one{left:10px;top:44px}.eseo-founder-card--two{left:188px;top:140px}.eseo-stats{grid-template-columns:repeat(2,minmax(0,1fr))}.eseo-hero-grid{padding:40px 0 28px}.eseo-hero-copy h1{font-size:clamp(42px,12vw,58px)}.eseo-hero-copy p{font-size:16px}.eseo-hero-right{min-height:780px;transform:scale(.86);transform-origin:top center;margin-left:-24px}.f1,.f2,.f3,.f4{right:auto}.f1{left:8px;top:28px}.f2{left:230px;top:238px}.f3{left:254px;top:430px}.f4{left:214px;top:612px}.eseo-hero-center-badge{right:120px;top:184px}}




/* ── OLD Services CSS ── */
.services__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 28px;transition:all var(--transition);position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--Lime-Green);transform:scaleX(0);transition:transform var(--transition);transform-origin:left}
.service-card:hover{border-color:transparent;box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.service-card:hover::before{transform:scaleX(1)}
.service-card__icon{width:52px;height:52px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.service-card__icon svg{width:24px;height:24px;color:var(--Lime-Green)}
.service-card h3{margin-bottom:10px;font-size:1.1rem}
.service-card p{font-size:.88rem;margin-bottom:20px}
.service-card__link{display:inline-flex;align-items:center;gap:6px;color:var(--orange);font-weight:600;font-size:.88rem;transition:gap var(--transition)}
.service-card__link:hover{gap:10px}
.service-card__link svg{width:14px;height:14px}

/* ===============================
   PREMIUM SERVICES SECTION
=============================== */

.services-pro {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  overflow: hidden;
  
}

/* LIGHT SHAPE BACKGROUND */
.services-pro::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52,183,26,0.08), transparent 70%);
  z-index: 0;
}

.services-pro::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,115,47,0.06), transparent 70%);
  z-index: 0;
}

/* KEEP CONTENT ABOVE */
.services-pro .container {
  position: relative;
  z-index: 1;
}

.services-pro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

/* CARD */
.service-pro-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e6f0e8;

  transition: all 0.35s ease;
  transform-style: preserve-3d;

  display: flex;
  flex-direction: column;
  gap: 14px;

  text-decoration: none;
}

/* TOP GRADIENT LINE */
.service-pro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #7bc46a, #00732f);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}

/* ICON */
.service-pro-card__icon {
  font-size: 32px;
}

/* TITLE */
.service-pro-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #113b51;
}

/* TEXT */
.service-pro-card p {
  font-size: 0.9rem;
  color: #5a6a80;
  line-height: 1.6;
}

/* LINK */
.service-pro-card__link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00732f;
  transition: 0.3s;
}

/* HOVER 3D EFFECT */
.service-pro-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 115, 47, 0.15);
  border-color: transparent;
}

.service-pro-card:hover::before {
  transform: scaleX(1);
}

.service-pro-card:hover .service-pro-card__link {
  transform: translateX(6px);
}

.service-pro-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: #34B71A;
  color: #34B71A;
  transition: all 0.35s ease;
}

/* Hover animation */
.service-pro-card:hover .service-pro-card__icon svg {
  transform: scale(1.15) rotate(6deg);
  stroke: #00732f;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 1024px) {
  .services-pro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-pro__grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   ADVANCED SERVICES (PRO VERSION)
=============================== */

/*.services-pro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}*/

/* CARD BASE */
/*.service-pro-card {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e6f0e8;

  transition: all 0.4s ease;
  transform-style: preserve-3d;

  display: flex;
  flex-direction: column;
  gap: 14px;

  overflow: hidden;
}*/

/* FEATURED CARD */
/*.service-pro-card.featured {
  background: linear-gradient(135deg, #0b2d4e, #113b51);
  color: #fff;
  transform: scale(1.05);
  border: none;
}

.service-pro-card.featured h3,
.service-pro-card.featured p {
  color: #fff;
}*/

/* BADGE */
/*.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #34B71A;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
}*/

/* ICON */
/*.icon svg {
  width: 38px;
  height: 38px;
  stroke: #34B71A;
  transition: 0.4s;
}*/

/* MICRO INTERACTION */
/*.service-pro-card:hover .icon svg {
  transform: rotate(8deg) scale(1.1);
  stroke: #00732f;
}*/

/* TITLE */
/*.service-pro-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #113b51;
}*/

/* TEXT */
/*.service-pro-card p {
  font-size: 0.9rem;
  color: #5a6a80;
}*/

/* CASE STUDY PREVIEW */
/*.case-preview {
  margin-top: auto;
  padding: 12px;
  background: #f7fbf8;
  border-radius: 10px;
  font-size: 0.8rem;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.case-preview strong {
  display: block;
  color: #00732f;
}

.case-preview span {
  color: #666;
}
*/
/* SHOW ON HOVER */
/*.service-pro-card:hover .case-preview {
  opacity: 1;
  transform: translateY(0);
}
*/
/* LINK */
/*.link {
  font-weight: 600;
  color: #00732f;
  transition: 0.3s;
}
*/
/* HOVER 3D */
/*.service-pro-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0,115,47,0.2);
}
*/
/* ===============================
   RESPONSIVE
=============================== */

/*@media (max-width: 1024px) {
  .services-pro__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-pro-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .services-pro__grid {
    grid-template-columns: 1fr;
  }

  .service-pro-card.featured {
    grid-column: span 1;
  }
}
*/

/* ── Process ── */
.process__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.process__grid::after{content:'';position:absolute;top:36px;left:12%;right:12%;height:2px;background:linear-gradient(90deg,var(--Lime-Green),rgba(244,124,32,.2));z-index:0}
.process-step{text-align:center;padding:0 16px;position:relative;z-index:1}
.process-step__num{width:72px;height:72px;background:var(--navy-light);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-family:var(--font-head);font-weight:800;font-size:1.3rem;color:var(--white);border:4px solid var(--white);box-shadow:0 0 0 4px var(--Lime-Green)}
.process-step h3{font-size:1rem;margin-bottom:8px}
.process-step p{font-size:.83rem}

/* ── Funnel Section ── */
.funnel__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.funnel-card{background:var(--white);border-radius:var(--radius-lg);padding:32px 24px;text-align:center;border:1px solid var(--border);transition:all var(--transition)}
.funnel-card:hover{border-color:var(--orange);box-shadow:var(--shadow)}
.funnel-card__icon{width:56px;height:56px;margin:0 auto 18px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.funnel-card__icon svg{width:26px;height:26px;color:var(--Lime-Green)}
.funnel-card h3{font-size:1.1rem;margin-bottom:8px}

/* ── Benefits ── */
.benefits__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.benefit-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--border);display:flex;gap:18px;align-items:flex-start;transition:all var(--transition)}
.benefit-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.benefit-card__icon{width:44px;height:44px;min-width:44px;background:var(--orange-light);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.benefit-card__icon svg{width:20px;height:20px;color:var(--Lime-Green)}
.benefit-card h3{font-size:1rem;margin-bottom:6px}
.benefit-card p{font-size:.84rem}

/* ── AEO / GEO ── */
.aeo-geo{background:var(--navy)}
.aeo-geo__grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.aeo-geo__card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:36px}
.aeo-geo__card h3{color:var(--white);margin-bottom:12px;font-size:1.3rem}
.aeo-geo__card p{color:var(--white);margin-bottom:24px}
.aeo-geo__list{display:grid;gap:10px}
.aeo-geo__list li{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.85);font-size:.9rem}
.aeo-geo__list li::before{content:'';width:8px;height:8px;min-width:8px;background:var(--Lime-Green);border-radius:50%}

/* ── Timeline ── */
/*.timeline{padding:80px 0}
.timeline__track{display:flex;flex-direction:column;gap:0;position:relative;max-width:700px;margin:0 auto}
.timeline__track::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;background:var(--border);transform:translateX(-50%)}
.timeline-item{display:grid;grid-template-columns:1fr 1fr;gap:0;position:relative;padding-bottom:48px}
.timeline-item:last-child{padding-bottom:0}
.timeline-item__year{text-align:right;padding-right:40px;padding-top:4px;font-family:var(--font-head);font-weight:800;font-size:1.5rem;color:var(--orange)}
.timeline-item__dot{position:absolute;left:50%;top:8px;width:16px;height:16px;background:var(--orange);border-radius:50%;transform:translateX(-50%);border:3px solid var(--white);box-shadow:0 0 0 3px var(--orange)}
.timeline-item__content{padding-left:40px;padding-top:0}
.timeline-item__content h3{font-size:1.05rem;margin-bottom:6px}
.timeline-item__content p{font-size:.85rem}*/

.timeline-section{background:var(--off-white);padding:80px 0}

/* Outer wrapper holds the zig-zag */
.timeline-h{position:relative;overflow:visible}

/* 6 columns, one per milestone */
.timeline-h__row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  position:relative;
}

/* The central horizontal connector line */
.timeline-h__row::before{
  content:'';
  position:absolute;
  top:50%;
  left:calc(100% / 12);
  right:calc(100% / 12);
  height:2px;
  background:linear-gradient(90deg, var(--orange) 0%, rgba(245,130,31,.2) 100%);
  transform:translateY(-50%);
  z-index:0;
}

/* Each milestone cell */
.tl-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  z-index:1;
}

/* ABOVE items: illustration top, year+dot in middle, text bottom */
.tl-item.above{
  /* Top half: illustration */
  /* Middle: dot on the line */
  /* Bottom half: text content */
  padding-top:0;
}

/* BELOW items: text top, year+dot in middle, illustration bottom */
.tl-item.below{}

/* Shared illustration box */
.tl-img{
  width:108px;height:84px;
  background:linear-gradient(135deg,#e4eefb,#ccd9f5);
  border-radius:var(--radius);
  border:2px solid rgba(255,255,255,.9);
  box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  overflow:hidden;
}
.tl-img svg{width:38px;height:38px;opacity:.38;color:var(--navy)}

/* Vertical stub connecting illustration to dot */
.tl-stub{
  width:2px;
  height:36px;
  background:rgba(245,130,31,.3);
  flex-shrink:0;
}

/* Year label */
.tl-year{
  font-family:var(--font-head);
  font-weight:800;
  font-size:1.05rem;
  color:var(--navy-light);
  line-height:1;
  margin:6px 0 4px;
}

/* navy dot on the line */
.tl-dot{
  width:16px;height:16px;
  background:var(--navy-light);
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 0 0 3px rgba(245,130,31,.35);
  flex-shrink:0;
  position:relative;
  z-index:2;
}

/* Text content block */
.tl-content{
  text-align:center;
  padding:0 6px;
  max-width:150px;
}
.tl-content h4{
  font-family:var(--font-head);
  font-weight:700;
  font-size:.78rem;
  color:var(--navy);
  margin-bottom:4px;
  line-height:1.3;
}
.tl-content p{
  font-size:.72rem;
  color:var(--text-muted);
  line-height:1.5;
}

/* ABOVE: img → stub → year → dot → stub → content */
.tl-item.above{justify-content:flex-end}
.tl-item.above .tl-img{order:1}
.tl-item.above .tl-stub:first-of-type{order:2}
.tl-item.above .tl-year{order:3}
.tl-item.above .tl-dot{order:4}
.tl-item.above .tl-stub:last-of-type{order:5}
.tl-item.above .tl-content{order:6}

/* BELOW: content → stub → dot → year → stub → img */
.tl-item.below{justify-content:flex-start;flex-direction:column-reverse}
.tl-item.below .tl-img{order:1}
.tl-item.below .tl-stub:first-of-type{order:2}
.tl-item.below .tl-year{order:3}
.tl-item.below .tl-dot{order:4}
.tl-item.below .tl-stub:last-of-type{order:5}
.tl-item.below .tl-content{order:6}

/* ── Mobile/tablet vertical timeline ── */
.timeline-v{display:none}
.timeline-v__track{position:relative;padding-left:36px}
.timeline-v__track::before{content:'';position:absolute;left:7px;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,var(--orange),rgba(245,130,31,.12))}
.timeline-v__item{position:relative;padding-bottom:36px}
.timeline-v__item:last-child{padding-bottom:0}
.timeline-v__dot{position:absolute;left:-31px;top:4px;width:15px;height:15px;background:var(--orange);border-radius:50%;border:3px solid #fff;box-shadow:0 0 0 3px rgba(245,130,31,.35)}
.timeline-v__year{font-family:var(--font-head);font-weight:800;font-size:.88rem;color:var(--orange);margin-bottom:3px}
.timeline-v__title{font-family:var(--font-head);font-weight:700;font-size:.97rem;color:var(--navy);margin-bottom:4px}
.timeline-v__desc{font-size:.84rem;color:var(--text-muted);line-height:1.6}   

/* ── Stats ── */
.stats{background:var(--navy)}
.stats__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.stat-item{text-align:center}
.stat-item__num{font-family:var(--font-head);font-size:2.8rem;font-weight:800;color:var(--white);line-height:1}
.stat-item__label{color:rgba(255,255,255,.7);font-size:.88rem;margin-top:8px}

/* ── Contact Form ── */
.contact{background:var(--off-white)}
.contact__inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.contact__info h2{margin-bottom:16px}
.contact__features{display:grid;gap:16px;margin-top:32px}
.contact__feature{display:flex;gap:14px;align-items:flex-start}
.contact__feature-icon{width:40px;height:40px;min-width:40px;background:var(--orange);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.contact__feature-icon svg{width:18px;height:18px;color:white}
.contact__feature h4{font-size:.95rem;margin-bottom:2px}
.contact__feature p{font-size:.82rem}
.contact-form{background:var(--white);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow)}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-weight:600;font-size:.85rem;margin-bottom:6px;color:var(--text)}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px 16px;border:1.5px solid var(--border);border-radius:var(--radius);font-family:var(--font-body);font-size:.9rem;color:var(--text);background:var(--white);transition:border-color var(--transition);outline:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--orange)}
.form-group textarea{resize:vertical;min-height:110px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

/* MAP FIX */
.contact__map {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== CONTACT FULL MAP SECTION ===== */
.contact-full {
  position: relative;
  height: 100vh;
  width: 100%;
}

/* MAP */
.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* OVERLAY */
.contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 40px;
}

/* FORM BOX */
.contact-form-box {
  width: 420px;
  background: #051A41E6;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  color: #fff;
}

/* TITLE */
.contact-form-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color:#fff;
  text-align: center;
}

/* FORM */
.form-group {
  margin-bottom: 14px;
}

.form-group input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* PHONE INPUT FIX (intl-tel-input) */
.iti {
  width: 100%;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  background: #1ec21e;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #16a34a;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .contact-full {
    height: auto;
  }

  .contact-map {
    position: relative;
    height: 350px;
  }

  .contact-overlay {
    position: relative;
    justify-content: center;
    padding: 20px;
  }

  .contact-form-box {
    width: 100%;
  }
}



/* ── Industries ── */
.industries__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.industry-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:24px 16px;text-align:center;transition:all var(--transition)}
.industry-card:hover{border-color:var(--orange);box-shadow:var(--shadow);transform:translateY(-3px)}
.industry-card__icon{width:50px;height:50px;margin:0 auto 12px;background:var(--orange-light);border-radius:50%;display:flex;align-items:center;justify-content:center}
.industry-card__icon svg{width:22px;height:22px;color:var(--Lime-Green)}
.industry-card p{font-size:.82rem;font-weight:600;color:var(--text)}

/* ── Case Studies ── */
/* Section */

.case-slider {
  padding: 50px 0;
}

/* Container */
.case-container {
  max-width: 950px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

/* Track */
.case-track {
  display: flex;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

/* CARD */
.case-card {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  background: #f8f9fc;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid #e5e7eb;
}

/* LEFT */
.case-left {
  flex: 1;
  min-width: 0;
}

/* HEADER */
.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* LOGO CONTAINER */
.logo {
  width: 120px;     /* 🔥 fixed width */
  height: 50px;     /* 🔥 fixed height */

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* IMAGE INSIDE */
.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.case-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
}

.primary {
  background: #2b6cff;
  color: #fff;
}

.outline {
  border: 1px solid #2b6cff;
  color: #2b6cff;
}

/* TEXT */
.case-left p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* METRICS */
.metrics {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
}

.metrics strong {
  font-size: 20px;
}

.metrics span {
  font-size: 11px;
}

/* IMAGE */
.case-right {
  flex: 0 0 340px;
}

.case-right img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 12px;
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

/* Proper spacing */
.prev {
  left: -25px;
}

.next {
  right: -25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .case-card {
    flex-direction: column;
  }

  .case-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-right {
    width: 100%;
  }

  .case-right img {
    width: 100%;
  }
}

/* ── Testimonials ── */
.testimonials{background:var(--off-white)}
.testimonials__slider{position:relative;overflow:hidden}
.testimonials__track{display:flex;transition:transform 0.4s ease}
.testimonial-slide{min-width:100%;display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testimonial-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--border);display:flex;flex-direction:column;gap:16px}
.testimonial-card__stars{display:flex;gap:3px;color:var(--Lime-Green)}
.testimonial-card__text{font-size:.88rem;color:var(--text-muted);flex:1;line-height:1.7}
.testimonial-card__author{display:flex;align-items:center;gap:12px;border-top:1px solid var(--border);padding-top:16px}
.testimonial-card__avatar{width:42px;height:42px;border-radius:50%;background:var(--orange-light);display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:700;color:var(--navy-light);font-size:.9rem;min-width:42px}
.testimonial-card__name{font-weight:700;font-size:.88rem}
.testimonial-card__role{font-size:.78rem;color:var(--text-muted)}
.slider-controls{display:flex;justify-content:center;gap:10px;margin-top:32px}
.slider-dot{width:10px;height:10px;border-radius:50%;background:var(--border);transition:all var(--transition);cursor:pointer}
.slider-dot.active{background:var(--navy-light);width:30px;border-radius:5px}


/* ===============================
        CTA RIBBON 
 ===============================*/
.cta-ribbon {
  padding: 0 16px;              /* space on left/right of the whole section */
  margin: 10px 0;
  
}

.cta-ribbon__inner {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background-image:
    linear-gradient(90deg, rgba(34, 167, 76, 0.96) 0%, rgba(26, 143, 58, 0.96) 100%),
    var(--cta-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 40px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.cta-ribbon__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(255,255,255,0.16), transparent 42%);
  pointer-events: none;
}

.ribbon-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.ribbon-copy h3 {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
}

.ribbon-copy p {
  margin: 6px 0 0;
  opacity: 0.92;
  font-size: 15px;
  color: #fff;
}

.accent-light {
  color: rgba(255, 255, 255, 0.9);
}

.btn.btn-white {
  background: #fff;
  color: #118d33;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn.btn-white:hover {
  transform: translateY(-1px);
}

/* ===============================
   TESTIMONIAL NEW
=============================== */
/* SECTION */
/*.tm-section {
  background: #f5fdf5;
  padding: 80px 0;
}
*/
/* CONTAINER */
/*.tm-container {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
}*/

/* HEADER */
/*.tm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.tm-title {
  font-size: clamp(24px,4vw,50px);
  line-height: 1.1;
}

.tm-light {
  display: block;
  font-weight: 300;
  color: #113b51;
}

.tm-bold {
  font-weight: 600;
}
*/
/* BUTTON */
/*.tm-btn {
  font-size: 14px;
  padding: 12px 20px;
}*/

/* SLIDER */
/*.tm-slider-wrap {
  position: relative;
  overflow: hidden;
}

.tm-track {
  display: flex;
  gap: 20px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}*/

/* CARD (CRITICAL FIX) */
/*.tm-card {
  width: 320px;
  min-width: 320px;*/ /* 🔥 REQUIRED FOR SLIDER */
/*
  display: flex;
  gap: 16px;
  align-items: flex-start;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px;
}
*/
/* IMAGE */
/*.tm-card img {
  width: 120px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
}*/

/* TEXT */
/*.tm-text {
  font-size: 13px;
  color: rgba(15,20,25,.72);
  line-height: 1.7;
  font-style: italic;
}
*/
/* NAME */
/*.tm-name {
  font-size: 13px;
  font-weight: 700;
  color: #113b51;
}

.tm-role {
  font-size: 11px;
  color: #6b7280;
}*/

/* STARS */
/*.tm-stars {
  color: #0fcc7c;
  font-size: 16px;
  letter-spacing: 2px;
}
*/
/* ARROWS */
/*.tm-prev,
.tm-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
}

.tm-prev { left: -16px; }
.tm-next { right: -16px; }
*/
/* DOTS */
/*.tm-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
}

.dot.on {
  background: #34B71A;
}
*/

/* ── FAQ ── */
.faq__list{
  display:grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 2 columns */
  gap:16px;
  max-width:1000px; /* slightly wider for 2 columns */
  margin:0 auto;
}
.faq-item{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden; height: fit-content;}
.faq-item__q{width:100%;display:flex;justify-content:space-between;align-items:center;padding:20px 24px;text-align:left;font-family:var(--font-head);font-weight:600;font-size:.95rem;color:var(--text);cursor:pointer;transition:color var(--transition);background:none;border:none}
.faq-item__q:hover,.faq-item.open .faq-item__q{color:var(--orange)}
.faq-item__icon{width:22px;height:22px;min-width:22px;border-radius:50%;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;transition:all var(--transition)}
.faq-item.open .faq-item__icon{background:var(--orange);border-color:var(--orange);transform:rotate(45deg)}
.faq-item__icon svg{width:12px;height:12px;transition:transform var(--transition)}
.faq-item.open .faq-item__icon svg{stroke:white}
.faq-item__a{max-height:0;overflow:hidden;transition:max-height 0.3s ease,padding 0.3s ease}
.faq-item.open .faq-item__a{max-height:300px}
.faq-item__a-inner{padding:0 24px 20px;font-size:.9rem;color:var(--text-muted);line-height:1.7}

@media (max-width: 768px){
  .faq__list{
    grid-template-columns: 1fr; /* back to single column on mobile */
  }
}

/* ── Media Coverage ── */
/* SECTION BACKGROUND */
.media-section {
  padding: 80px 0;
  background: #f3f5f7;
  position: relative;
}

/* DOTTED PATTERN (like screenshot) */
.media-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.4;
  pointer-events: none;
}

/* GRID */
.media__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD STYLE */
.media-card {
  background: #fff;
  border: 1px solid var(--Lime-Green);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* LOGO */
.media-card img {
  max-width: 120px;
  height: auto;
}

/* HOVER EFFECT */
.media-card:hover img {
  filter: none;
  opacity: 1;
}

/* CTA BUTTON */
.media-cta {
  margin-top: 40px;
  text-align: center;
}

.media-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--Lime-Green);
  border-radius: 30px;
  color: var(--Lime-Green);
  font-weight: 600;
  transition: 0.3s;
}

.media-btn:hover {
  background: var(--Lime-Green);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .media__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .media__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── CTA Banner ── */
.cta-banner{background:linear-gradient(135deg,var(--orange) 0%,#e05a00 100%);padding:70px 0;text-align:center}
.cta-banner h2{color:var(--white);margin-bottom:12px}
.cta-banner p{color:rgba(255,255,255,.85);margin-bottom:32px;max-width:560px;margin-left:auto;margin-right:auto}


/* ===============================
   FOOTER CTA (FINAL PREMIUM)
=============================== */

.footer-cta {
  position: relative;
  padding: 80px 0;
  overflow: visible;
}

.footer-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.footer-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,112,47,0.95) 0%,
    rgba(7,112,47,0.85) 40%,
    rgba(7,112,47,0.5) 70%,
    rgba(7,112,47,0.2) 100%
  );
  z-index: 1;
}

.footer-cta .container {
  position: relative;
  z-index: 2;
}

/* OVERLAY (VERY IMPORTANT) */
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 112, 47, 0.95) 0%,
    rgba(7, 112, 47, 0.85) 40%,
    rgba(7, 112, 47, 0.55) 70%,
    rgba(7, 112, 47, 0.2) 100%
  );
  z-index: 1;
}

.footer-cta .btn-primary {
  background: #fff;
  color: #0b7b35;
  border: none;
}

.footer-cta .btn-primary:hover {
  background: linear-gradient(135deg,#7bc46a,#00732f);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,115,47,0.3);
}

.footer-cta .btn-outline {
  border: 1.5px solid #fff;
  color: #fff;
  background: transparent;
}

.footer-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* CONTENT LAYER */
.footer-cta .container {
  position: relative;
  z-index: 2;
}

/* GRID */
.footer-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.footer-cta__content h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 15px;
  font-weight: 300;
}

.footer-cta__content h2 span {
  display: block;
  font-weight: 600;
  color: #7BC46A; /* lighter green highlight */
}

.footer-cta__content p {
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 25px;
}

.footer-cta__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

/* RIGHT FORM */
.footer-cta__form {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  /*box-shadow: 0 25px 60px rgba(0,0,0,0.25);*/
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
  margin-top: -120px;
   z-index: 3;
   position: relative;
}

.footer-cta__form h3 {
  margin-bottom: 5px;
  color: #113b51;
}

.footer-cta__form p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.footer-cta__form form {
  display: grid;
  gap: 12px;
}

.footer-cta__form input {
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
}

.footer-cta__form input:focus {
  border-color: #34B71A;
  outline: none;
}

.footer-cta__form button {
  height: 44px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #7bc46a, #00732f);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.footer-cta__form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,115,47,0.25);
}

.footer-cta__trust {
  margin-top: 14px;
  text-align: center;
}

/* avatars */
.trust-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.trust-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* rating */
.trust-rating {
  font-size: 12px;
  color: #666;
}

.trust-rating span {
  margin-left: 4px;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 1024px) {
  .footer-cta__inner {
    grid-template-columns: 1fr;
  }

  .footer-cta__form {
    max-width: 420px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 60px 0;
  }

  .footer-cta__actions {
    flex-direction: column;
  }

  .footer-cta__points {
    flex-direction: column;
  }
  
  .footer-cta__form {
    margin-top: -40px;
  }

  .footer-cta {
    margin-top: 80px;
  }
}

/* ===============================
   FOOTER (PRODUCTION VERSION)
================================= */

.footer {
  position: relative;
  color: #fff;
  padding: 60px 0 20px;

  background: linear-gradient(
    135deg,
    #031a3a 10%,
    #062a4d 40%,
    #0a3d66 75%,
    #0f5c7a 100%
  );
}

/* TOP GRID */
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* HEADINGS */
.footer__col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 700;
  color:#fff;
}

/* LINKS */
.footer__col a {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer__col a:hover {
  color: #fff;
}

/* TEXT */
.footer__col p {
  font-size: 16px;
  color: #fff;
}

/* DIVIDER */
/*.footer__divider {
  margin: 20px auto;
  width: 100%;
}*/

.footer__divider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 20px 0;
  max-width: 1200px;   /* match container */
  margin: 20px auto;   /* center it */
  padding: 0 20px;     /* match container padding */
}

/* EACH SEGMENT */
.footer__divider span {
  display: block;
  border-top: 1px dashed rgba(255,255,255,0.25);
}

.footer__divider::before,
.footer__divider::after {
  content: "";
}

/* Create 4 segments */
.footer__divider div {
  border-top: 1px dashed rgba(255,255,255,0.25);
}

/* OFFICES */
.footer__offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer__offices p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* BOTTOM */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SOCIAL */
.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer__social a:hover {
  background: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .footer__top,
  .footer__offices {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
  }
   .footer__divider {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ── Floating Buttons ── */
.float-btns{position:fixed;bottom:28px;right:24px;display:flex;flex-direction:column;gap:12px;z-index:900}
.float-btn{width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(0,0,0,.2);transition:all var(--transition)}
.float-btn:hover{transform:scale(1.1)}
.float-btn--wa{background:#25d366}
.float-btn--call{background:#045683}
.float-btn svg{width:22px;height:22px;color:white}

/* ── Blog ── */
.blog__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:all var(--transition)}
.blog-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.blog-card__img{aspect-ratio:16/9;overflow:hidden}
.blog-card__img img,.blog-card__img-placeholder{width:100%;height:100%;object-fit:cover;transition:transform 0.4s ease}
.blog-card:hover .blog-card__img img,.blog-card:hover .blog-card__img-placeholder{transform:scale(1.04)}
.blog-card__img-placeholder{background:linear-gradient(135deg,#e8f0fe,#c9d9f9);display:flex;align-items:center;justify-content:center}
.blog-card__body{padding:24px}
.blog-card__meta{display:flex;align-items:center;gap:10px;font-size:.75rem;color:var(--text-muted);margin-bottom:10px}
.blog-card__meta span{background:var(--orange-light);color:var(--navy-light);padding:2px 8px;border-radius:20px;font-weight:600}
.blog-card h3{font-size:1rem;margin-bottom:10px;line-height:1.4}
.blog-card p{font-size:.84rem;margin-bottom:16px}
.blog-card__read{color:var(--navy-ligh);font-weight:600;font-size:.85rem;display:inline-flex;align-items:center;gap:5px;transition:gap var(--transition)}
.blog-card:hover .blog-card__read{gap:9px}

.blog-section {
  text-align: left;
}

.blog-section .section-head {
  max-width: 700px;
  margin: 0 0 30px 0; /* remove center alignment */
}

.blog-section .section-title,
.blog-section .section-subtitle {
  text-align: left;
}

/* ── Scroll to Top ── */
.scroll-top{position:fixed;bottom:90px;right:24px;width:42px;height:42px;background:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:900;opacity:0;visibility:hidden;transition:all var(--transition);border:2px solid rgba(255,255,255,.15)}
.scroll-top.visible{opacity:1;visibility:visible}
.scroll-top:hover{background:var(--orange);border-color:var(--orange)}
.scroll-top svg{width:18px;height:18px;color:white}

/* ── Responsive ── */
@media(max-width:1024px){
  .hero__inner{grid-template-columns:1fr;text-align:center}
  .hero__image{display:none}
  .hero__actions{justify-content:center}
  .hero__trust{justify-content:center}
  .services__grid{grid-template-columns:repeat(2,1fr)}
  .process__grid{grid-template-columns:repeat(2,1fr)}
  .process__grid::after{display:none}
  .industries__grid{grid-template-columns:repeat(3,1fr)}
  .footer__top{grid-template-columns:1fr 1fr}
  .testimonial-slide{grid-template-columns:repeat(2,1fr)}
  .case-studies__grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .section{padding:30px 0}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .navbar__nav,.navbar__actions .btn{display:none}
  .hamburger{display:flex}
  .services__grid{grid-template-columns:1fr}
  .funnel__grid{grid-template-columns:repeat(2,1fr)}
  .industries__grid{grid-template-columns:repeat(2,1fr)}
  .benefits__grid{grid-template-columns:1fr}
  .aeo-geo__grid{grid-template-columns:1fr}
  .stats__grid{grid-template-columns:repeat(2,1fr)}
  .blog__grid{grid-template-columns:1fr}
  .contact__inner{grid-template-columns:1fr}
  .footer__top{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column;text-align:center}
  .topbar__left{display:none}
  .why-uae__content{grid-template-columns:1fr}
  .testimonial-slide{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .timeline__track::before{left:20px}
  .timeline-item{grid-template-columns:0 1fr}
  .timeline-item__year{display:none}
  .timeline-item__content{padding-left:48px}
  .timeline-item__dot{left:20px}
  .process__grid{grid-template-columns:1fr;gap:28px}
}
@media(max-width:480px){
  .funnel__grid,.industries__grid{grid-template-columns:1fr}
  .stats__grid{grid-template-columns:1fr 1fr}
  h1{font-size:1.8rem}
  h2{font-size:1.5rem}
}

/* ── Print ── */
@media print{
  .navbar,.topbar,.float-btns,.scroll-top,.hamburger{display:none !important}
  .hero{min-height:auto}
}


/* FIX 1 – Marquee constrained width */
/* Marquee: now inside container so width = container width (max 1200px) */
.clients .container { overflow: hidden }
.marquee-outer {
  overflow: hidden;
  border-radius: 8px;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.marquee-item img,
.marquee-item svg { display:block; height:70px; width:auto; max-width:130px; border-radius:8px; filter:grayscale(0.2); transition:filter 0.2s }
.marquee-item:hover img,
.marquee-item:hover svg { filter:none }

/* FIX 2 – Service card as full link + arrow icon */
a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--orange-light);
  border-radius: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.service-card__arrow svg {
  width: 16px;
  height: 16px;
  color: var(--Lime-Green);
  transition: transform 0.25s ease;
}
a.service-card:hover .service-card__arrow {
  background: var(--Lime-Green);
}
a.service-card:hover .service-card__arrow svg {
  color: #fff;
  transform: translate(2px, -2px);
}
a.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
a.service-card:hover::before { transform: scaleX(1); }

/* FIX 3 – Transparent Reporting section */
.reporting-section { background: #fff }
.reporting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reporting-lead {
  font-size: 1rem;
  margin-bottom: 32px;
  color: var(--text-muted);
  line-height: 1.7;
}
.reporting-items { display: grid; gap: 20px }
.reporting-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.22s ease;
}
.reporting-item:hover {
  border-color: var(--Lime-Green);
  box-shadow: 0 4px 20px rgba(52,183,26,.08);
  transform: translateX(4px);
}
.reporting-item__icon {
  width: 42px; height: 42px; min-width: 42px;
  background: #fff3e8;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.reporting-item__icon svg { width: 20px; height: 20px; color: var(--Lime-Green) }
.reporting-item h4 { font-size: .95rem; margin-bottom: 3px; color: var(--navy) }
.reporting-item p { font-size: .83rem }

/* Dashboard visual */
.reporting-visual { display: flex; justify-content: center }
.reporting-visual img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.reporting-dashboard {
  background: #0b1d3a;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(11,29,58,.3);
}
.dash-header {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 20px;
  font-size: .75rem; color: rgba(255,255,255,.5);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50% }
.dash-header span { margin-left: 4px }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px }
.dash-stat {
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.dash-stat strong { display: block; color: var(--Lime-Green); font-family: var(--font-head); font-size: 1.1rem; font-weight: 800 }
.dash-stat span { color: rgba(255,255,255,.5); font-size: .7rem }
.dash-chart { background: rgba(255,255,255,.04); border-radius: 8px; padding: 10px; margin-bottom: 16px }
.dash-chart svg { width: 100%; display: block }
.dash-rows { display: grid; gap: 10px }
.dash-row { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.6) }
.dash-row span:first-child { width: 60px; min-width: 60px }
.dash-bar { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden }
.dash-bar div { height: 100%; border-radius: 3px }
.dash-row span:last-child { width: 30px; text-align: right }

/* FIX 4 – Affordable Pricing section */
.pricing-section { }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pricing-img-wrap svg { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg) }
.pricing-lead { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.75 }
.pricing-features { display: grid; gap: 12px }
.pricing-feature {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.pricing-feature:hover { background: #f0fdf0 }
.pricing-feature svg { width: 18px; height: 18px; min-width: 18px; color: var(--Lime-Green); margin-top: 2px }
.pricing-feature span { font-size: .9rem; color: var(--text) }

/* ---- AI Marketing ERA Section -- */

.h2ai2-section {
  background:#fff;
    /*radial-gradient(circle at 18% 18%, rgba(25, 120, 110, 0.28), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(0, 115, 47, 0.16), transparent 24%),
    linear-gradient(180deg, #050606 0%, #0a0c0d 100%);*/
  padding: 40px 0;
  color: #113b51;
  overflow: hidden;
}

.h2ai2-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.h2ai2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #113b51;
  font-weight: 500;
  text-transform: uppercase;
}

.h2ai2-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #18d0b2;
}

.h2ai2-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 0.98;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  color: #113b51;
}

.h2ai2-title span {
  background:linear-gradient(160deg,#7bc46a,#00732f);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  font-weight: 500;
}

.h2ai2-desc {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 28px;
}

.h2ai2-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
}

.h2ai2-feature {
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.h2ai2-feature:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(24, 208, 178, 0.25);
}

.h2ai2-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: #18d0b2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.h2ai2-icon svg {
  width: 24px;
  height: 24px;
}

.h2ai2-feature-content h4 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 600;
}

.h2ai2-feature-content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--navy);
}

.h2ai2-right {
  display: flex;
  justify-content: center;
}

.h2ai2-stat-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  padding: 32px 30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(10, 12, 13, 0.86);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.h2ai2-stat-topline {
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #18d0b2 0%, #34B71A 52%, #ff7a45 100%);
}

.h2ai2-stat {
  font-size: clamp(56px, 6vw, 74px);
  line-height: 0.95;
  font-weight: 600;
  background: linear-gradient(160deg,#7bc46a,#00732f);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing: -0.04em;
  margin: 8px 0 10px;
}

.h2ai2-stat-desc {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.h2ai2-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.h2ai2-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.h2ai2-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #18d0b2;
  box-shadow: 0 0 0 3px rgba(24, 208, 178, 0.12);
}

.h2ai2-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .h2ai2-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .h2ai2-right {
    justify-content: flex-start;
  }

  .h2ai2-stat-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .h2ai2-section {
    padding: 64px 0;
  }

  .h2ai2-feature {
    padding: 16px 14px;
  }

  .h2ai2-stat-card {
    padding: 26px 20px 22px;
  }

  .h2ai2-title {
    font-size: clamp(32px, 10vw, 46px);
  }
}

/* FIX 5 – Real Results section */
.results-section { background: var(--navy) }
.results-section .section-label { background: rgba(52,183,26,.15); color: #fff }
.results-section .section-title { color: #fff }
.results-section .section-subtitle { color: rgba(255,255,255,.7) }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}
.result-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
  border-color: rgba(52,183,26,.4);
}
.result-card__icon {
  width: 60px; height: 60px;
  background: rgba(52,183,26,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s;
}
.result-card:hover .result-card__icon { background: rgba(52,183,26,.3) }
.result-card__icon svg { width: 26px; height: 26px; color: #34B71A }
.result-card__num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #34B71A;
  margin-bottom: 8px;
}
.result-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px }
.result-card p { color: rgba(255,255,255,.65); font-size: .88rem }
.result-card__hover-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #34B71A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.result-card:hover .result-card__hover-bar { transform: scaleX(1) }

/* FIX 6 – Local Expertise */
.local-section {}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.local-list {
  display: grid; gap: 12px; margin: 24px 0;
}
.local-list li {
  display: flex; gap: 10px; align-items: center;
  font-size: .95rem; color: var(--text);
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.local-list li:hover {
  border-color: var(--Lime-Green);
  transform: translateX(4px);
}
.local-list svg { width: 18px; height: 18px; min-width: 18px; color: var(--Lime-Green) }
.local-footer { font-size: .9rem; color: var(--text-muted); margin-top: 8px }
.local-map-wrap svg { width: 100%; border-radius: 16px; box-shadow: var(--shadow) }
.local-map-wrap {
  width: 100%;
}
.local-custom-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

@media (max-width: 767px) {
  .local-custom-img {
    height: auto;
  }
}

/* FIX 7 – Let's Build Future */
/* SECTION */
/* SECTION */
/* SECTION */
.future-section {
  background: linear-gradient(135deg, #0b1d3a 0%, #163060 60%, #1a3d7a 100%);
  padding: 50px 0;
}

/* GRID LAYOUT */
.future-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* 🔥 left small, right larger */
  gap: 50px;
  align-items: start;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}

/* LEFT COLUMN */
.future-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.future-icon svg {
  width: 60px;
  height: 60px;
}

.future-left h2 {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.3;
}

/* RIGHT COLUMN */
.future-right {
  display: flex;
  flex-direction: column;
}

.future-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* BUTTONS (FIXED ISSUE) */
.future-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.future-actions .btn {
  width: auto; /* 🔥 prevents full width */
  padding: 10px 18px;
  border-radius: 25px;
  white-space: nowrap;
}

/* HOVER */
.future-grid:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .future-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .future-actions {
    justify-content: center;
  }
}

/* FIX 8 – Boost / Lead Form section */
.boost-section { background: var(--off-white) }
.boost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.boost-content .section-title { margin-bottom: 12px }
.boost-content > p { font-size: .95rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.75 }
.boost-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px }
.boost-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
}
.boost-trust-item svg { width: 16px; height: 16px; color: var(--Lime-Green) }
.boost-stats { display: flex; gap: 24px }
.boost-stat { text-align: center }
.boost-stat strong { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy) }
.boost-stat span { font-size: .75rem; color: var(--text-muted) }

/* Compact lead form */
.boost-form-wrap { }
.boost-form {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(11,29,58,.18);
}
.boost-form h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  text-align: center;
}
.boost-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px }
.boost-field { margin-bottom: 10px }
.boost-field input,
.boost-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: var(--font-body);
  font-size: .87rem;
  outline: none;
  transition: border-color 0.22s;
}
.boost-field input::placeholder,
.boost-field textarea::placeholder { color: rgba(255,255,255,.4) }
.boost-field input:focus,
.boost-field textarea:focus { border-color: var(--Lime-Green) }
.boost-field textarea { resize: none }
.boost-field--phone .iti { width: 100% }
.boost-field--phone .iti input { width: 100% }
.boost-submit {
  width: 100%;
  background: var(--Lime-Green);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}
.boost-submit svg { width: 16px; height: 16px }
.boost-submit:hover { background: #28a016; transform: translateY(-1px) }

/* intl-tel-input dark theme overrides */
.boost-field .iti__flag-container { height: 100% }
.boost-field .iti__selected-flag { background: rgba(255,255,255,.08) }
.boost-field .iti__selected-flag:hover { background: rgba(255,255,255,.15) }
.boost-field .iti__country-list {
  background: #0b1d3a;
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.boost-field .iti__country:hover,
.boost-field .iti__country.iti__highlight { background: rgba(255,255,255,.08) }
.boost-field .iti__dial-code { color: rgba(255,255,255,.6) }

/* FIX 9 – Scroll-to-top: fix overlap with WhatsApp/call buttons */
/* float-btns: bottom 28px, 2 buttons × 50px + 12px gap = 140px height */
/* scroll-top must be above that: 28+140+16 = 184px */
.scroll-top {
  bottom: 165px !important;
  right: 24px;
}

/* ── Responsive: new sections ── */
@media(max-width:1024px) {
  .reporting-grid,
  .pricing-grid,
  .local-grid,
  .boost-grid { grid-template-columns: 1fr }
  .reporting-visual { order: -1 }
  .pricing-visual { order: -1 }
  .timeline-h { display: none !important }
  .timeline-v { display: block !important }
}
@media(max-width:768px) {
  .results-grid { grid-template-columns: 1fr }
  .boost-form-row { grid-template-columns: 1fr }
  .boost-stats { gap: 16px }
  .future-actions { flex-direction: column; align-items: center }
}


/* FIX: hamburger visible on dark navbar */
.hamburger span {
  background: #ffffff !important;
}

body.menu-open .topbar {
  display: none;
}


/* ============================
   Contact Us Page CSS 
=============================*/

.tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--Lime-Green);
    border: 1px solid var(--Lime-Green);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
  }


  /* ============================
     HERO / PAGE HEADER
  ============================= */
  .contact-hero {
    position: relative;
    padding: 30px 0 80px;
    background: var(--navy);
    overflow: hidden;
    text-align: center;
  }
  .contact-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(201,168,76,0.07) 0%, transparent 60%);
  }
  .contact-hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at center, navy 20%, transparent 80%);
  }
  .contact-hero-inner { position: relative; z-index: 2; }
  .contact-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
  .contact-hero h1 em { font-style: normal; color: var(--Lime-Green); }
  .contact-hero-sub {
    font-size: 17px;
    color: var(--text-body);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }
  .hero-quick-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mid-surface);
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: all var(--transition);
  }
  .hero-quick-link:hover { border-color: var(--Lime-Green); color: var(--Lime-Green); }
  .hero-quick-link span { font-size: 18px; }

  /* ============================
     MAIN CONTACT SECTION
  ============================= */
  .contact-main {
    background: var(--dark-surface);
    padding: 80px 0;
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
  }
  /* Info Column */
  .contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .contact-info-sub {
    font-size: 15px;
    color: var(--navy-light);
    line-height: 1.7;
    margin-bottom: 40px;
  }
  /* Contact Methods */
  .contact-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
  .contact-method {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-decoration: none;
    transition: all var(--transition);
  }
  /*.contact-method:hover { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.03); }*/
  .contact-method-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(201,168,76,0.1);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .contact-method-body {}
  .contact-method-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
  }
  .contact-method-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
  }
  .contact-method-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--text-muted);
    transition: color var(--transition);
  }
  .contact-method:hover .contact-method-arrow { color: var(--Lime-Green); }

  /* Query Types */
  .query-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .query-card {
    background: var(--mid-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color var(--transition);
  }
  .query-card:hover { border-color: rgba(201,168,76,0.4); }
  .query-icon { font-size: 24px; margin-bottom: 12px; }
  .query-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
  .query-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

  /* Contact Form */
  .contact-form-card {
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 100px;
  }
  .contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--Lime-Green), transparent);
  }
  .contact-form-card h3 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
  .contact-form-card > p { font-size: 13px; color: var(--white); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 11px; color: var(--white); margin-bottom: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
  .form-control {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    color: var(--white);
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    outline: none;
  }
  .form-control:focus { border-color: var(--Lime-Green); }
  .form-control::placeholder { color: #444; }
  textarea.form-control { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%;
    background: var(--Lime-Green);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 15px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background var(--transition);
    margin-top: 6px;
  }
  .form-submit:hover { background: var(--Lime-Green-light); }
  .form-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--text-muted); }

  /* ============================
     OFFICES
  ============================= */
  .offices-section { background: var(--navy); }
  .offices-section h2 {color: #fff;}
  .offices-section p { color: #fff; margin-top: 20px;}
  .offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .office-card {
    background: var(--mid-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  .office-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; width: 2px;
    background: var(--Lime-Green);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .office-card:hover { border-color: rgba(201,168,76,0.3); }
  .office-card:hover::before { opacity: 1; }
  .office-flag { font-size: 28px; margin-bottom: 16px; color: var(--Lime-Green); }
  .office-card h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--Lime-Green);
    margin-bottom: 12px;
  }
  .office-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }
  .office-badge {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    color: var(--Lime-Green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
  }

  /* ============================
     CLIENTS TICKER
  ============================= */
  .clients-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--dark-surface);
  }
  .clients-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .clients-track-wrapper { overflow: hidden; }
  .clients-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .client-item {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .client-dot { color: var(--Lime-Green); font-size: 8px; vertical-align: middle; }

  /* ============================
     WHY CONTACT
  ============================= */
  .why-contact { background: var(--dark-surface); }
  .why-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .wc-card {
    background: var(--mid-surface);
    padding: 40px;
    transition: background var(--transition);
  }
  .wc-card:hover { background: #1F1F1F; }
  .wc-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--Lime-Green);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.4;
  }
  .wc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
  .wc-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

  /* ============================
     SOCIAL SECTION
  ============================= */
  .social-section {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid var(--border);
  }
  .social-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
  .social-links { display: flex; gap: 16px; justify-content: center; }
  .social-link-lg {
    display: flex; align-items: center; gap: 10px;
    background: var(--mid-surface);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    transition: all var(--transition);
  }
  .social-link-lg:hover { border-color: var(--Lime-Green); color: var(--Lime-Green); }

  /* ============================
     CTA
  ============================= */
  .cta-section {
    background: linear-gradient(135deg, #1A1508 0%, #111111 50%, #0A0A0A 100%);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 80px 0;
  }
  .cta-section h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
  .cta-section p { font-size: 16px; color: var(--text-body); margin-bottom: 36px; }
 
  
   /* ============================
     ANIMATIONS
  ============================= */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .fade-up { animation: fadeUp 0.6s ease forwards; }

  /* ============================
     RESPONSIVE
  ============================= */
  @media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-card { position: static; }
    .offices-grid { grid-template-columns: 1fr 1fr; }
    .why-contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .offices-grid { grid-template-columns: 1fr; }
    .query-types { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-quick-links { flex-direction: column; align-items: center; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .social-links { flex-wrap: wrap; justify-content: center; }
  }

  /* Success state */
  .success-msg {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--Lime-Green);
    border-radius: var(--radius);
    color: var(--Lime-Green);
    font-weight: 600;
    margin-top: 12px;
  }
  
  
  
  /* ====================================
   Seo Services Company Dubai Page CSS 
=====================================================*/

.hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 80%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-eyebrow-line { width: 40px; height: 2px; background: var(--white); }
  .hero-eyebrow span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
  }
  .hero h1 {
    color: var(--white);
    margin-bottom: 24px;
  }
  .hero-subtitle {
    font-size: 17px;
    color: var(--off-white);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .hero-stat {}
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
  }
  .hero-stat-num span { color: var(--off-white); }
  .hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
 


/* Process New CSS*/

/* =========================
   SECTION BACKGROUND
========================= */
.jt-journey-section {
  background: #eef3eb;
  padding: 50px 24px 40px;
}

.jt-journey-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 0 15px;
}

.jt-journey-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 400;
  color: #1d4964;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.jt-journey-subtitle {
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
  color: #4f5856;
  margin: 0 0 70px;
  font-weight: 400;
}

.jt-journey-timeline {
  position: relative;
}

.jt-journey-row {
  display: grid;
  gap: 30px;
}

.jt-journey-row--top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jt-journey-row--bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  margin-bottom: 30px;
}

.jt-journey-connector {
  margin: 46px 0 0;
  border-top: 2px dashed #8ac69d;
  position: relative;
}

/* item */
.jt-journey-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

/* vertical dotted line */
.jt-journey-row--top .jt-journey-item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 58px;
  bottom: -48px;
  border-left: 2px dashed #8ac69d;
}

.jt-journey-row--bottom .jt-journey-item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -28px;
  height: 58px;
  border-left: 2px dashed #8ac69d;
}

/* icon */
.jt-journey-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6fc15d 0%, #1a8c39 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(26, 140, 57, 0.18);
}

.jt-journey-icon-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

/* content shift */
.jt-journey-content {
  flex: 1;
  padding-right: 6px;
  max-width: 265px;
}

.jt-journey-year {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: #1d4964;
  margin: 15px 0 8px 4px;
  letter-spacing: -0.04em;
}

.jt-journey-heading {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: #2a3538;
  margin: 0 0 8px;
}

.jt-journey-text {
  font-size: 14px;
  line-height: 1.65;
  color: #54615d;
  margin: 0;
}

/* responsive */
@media (max-width: 1200px) {
  .jt-journey-title {
    font-size: 42px;
  }

  .jt-journey-subtitle {
    font-size: 18px;
    margin-bottom: 55px;
  }

  .jt-journey-row--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jt-journey-row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jt-journey-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .jt-journey-section {
    padding: 50px 16px 60px;
  }

  .jt-journey-container {
    padding: 0 8px;
  }

  .jt-journey-title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .jt-journey-subtitle {
    font-size: 16px;
    margin-bottom: 38px;
  }

  .jt-journey-row--top,
  .jt-journey-row--bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }

  .jt-journey-connector {
    display: none;
  }

  .jt-journey-row--top .jt-journey-item::before,
  .jt-journey-row--bottom .jt-journey-item::before {
    left: 28px;
    top: 58px;
    bottom: auto;
    height: calc(100% - 58px);
  }

  .jt-journey-content {
    padding-left: 10px;
  }

  .jt-journey-year {
    font-size: 32px;
  }

  .jt-journey-heading {
    font-size: 18px;
  }

  .jt-journey-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .jt-journey-timeline {
    display: flex;
    flex-direction: column;
  }

  .jt-journey-row {
    display: contents;
  }

  .jt-journey-row--top .jt-journey-item:nth-child(1) { order: 1; }
  .jt-journey-row--bottom .jt-journey-item:nth-child(1) { order: 2; }
  .jt-journey-row--top .jt-journey-item:nth-child(2) { order: 3; }
  .jt-journey-row--bottom .jt-journey-item:nth-child(2) { order: 4; }
  .jt-journey-row--top .jt-journey-item:nth-child(3) { order: 5; }
  .jt-journey-row--bottom .jt-journey-item:nth-child(3) { order: 6; }
  .jt-journey-row--top .jt-journey-item:nth-child(4) { order: 7; }

  .jt-journey-row--top,
  .jt-journey-row--bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }

  .jt-journey-connector {
    display: none;
  }
}

/* ------- Why Business Choose eSEO -------- */

:root {
  --ezo-green: #178f3a;
  --ezo-green-deep: #11732f;
  --ezo-navy: #153f5a;
  --ezo-light: #eef4eb;
  --ezo-card-dark: rgba(20, 58, 84, 0.82);
  --ezo-card-dark-2: rgba(12, 36, 52, 0.88);
  --ezo-card-light: #f4f7f0;
  --ezo-text: #5c6770;
  --ezo-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ezo-why-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background:
    linear-gradient(rgba(18, 141, 56, 0.95), rgba(18, 141, 56, 0.95)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 30%),
    #178f3a;
}

.ezo-why-section::before,
.ezo-why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ezo-why-section::before {
  background:
    linear-gradient(45deg, transparent 49.5%, rgba(255,255,255,0.08) 50%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, rgba(255,255,255,0.08) 50%, transparent 50.5%);
  background-size: 180px 180px;
  opacity: 0.6;
}

.ezo-why-section::after {
  background:
    linear-gradient(0deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

.ezo-why-shell {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}

.ezo-why-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.ezo-why-heading-wrap {
  max-width: 700px;
}

.ezo-why-title {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.ezo-why-title span {
  display: block;
  
}

.ezo-why-subtitle {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
}

.ezo-why-cta-wrap {
  flex: 0 0 auto;
  padding-top: 56px;
}

.ezo-why-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--ezo-green);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--ezo-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ezo-why-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
}

.ezo-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* 2nd box: increase space only from the top side */
.ezo-why-grid > .ezo-why-card:nth-child(2) .ezo-why-card-inner {
  padding-top: 64px;
}

/* 4th box: increase space only from the bottom side */
.ezo-why-grid > .ezo-why-card:nth-child(4) .ezo-why-card-inner {
  padding-bottom: 34px;
}

.ezo-why-card {
  position: relative;
  min-height: 275px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--ezo-shadow);
}

.ezo-why-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ezo-why-card-dark {
  background: var(--ezo-card-dark);
  color: #fff;
}

.ezo-why-card-dark.ezo-why-card-photo {
  background:
    linear-gradient(rgba(14, 46, 68, 0.72), rgba(14, 46, 68, 0.72)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.ezo-why-card-dark:nth-child(3) {
  background:
    linear-gradient(rgba(10, 39, 58, 0.78), rgba(10, 39, 58, 0.78)),
    url("https://images.unsplash.com/photo-1484417894907-623942c8ee29?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.ezo-why-card-dark:nth-child(5) {
  background:
    linear-gradient(rgba(10, 16, 22, 0.75), rgba(10, 16, 22, 0.75)),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.ezo-why-card-light {
  background: var(--ezo-card-light);
  color: var(--ezo-navy);
}

.ezo-why-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: currentColor;
}

.ezo-why-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ezo-why-card-title {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: inherit;
}

.ezo-why-card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: inherit;
  opacity: 0.92;
  max-width: 95%;
}

.ezo-why-card-light .ezo-why-card-title {
  color: var(--ezo-navy);
}

.ezo-why-card-light .ezo-why-card-text {
  color: var(--ezo-text);
}

.ezo-why-card-dark .ezo-why-card-text {
  color: rgba(255,255,255,0.92);
}

.ezo-why-card-dark .ezo-why-card-icon,
.ezo-why-card-dark .ezo-why-card-title {
  color: #ffffff;
}

.ezo-why-card-light .ezo-why-card-icon {
  color: var(--ezo-navy);
}

/* responsive */
@media (max-width: 1100px) {
  .ezo-why-title {
    font-size: 46px;
  }

  .ezo-why-subtitle {
    font-size: 18px;
  }

  .ezo-why-grid {
    gap: 14px;
  }

  .ezo-why-card-title {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .ezo-why-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .ezo-why-cta-wrap {
    padding-top: 0;
  }

  .ezo-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ezo-why-card {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .ezo-why-section {
    padding: 64px 0 72px;
  }

  .ezo-why-shell {
    padding: 0 16px;
  }

  .ezo-why-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .ezo-why-subtitle {
    font-size: 15px;
    margin-top: 12px;
  }

  .ezo-why-cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .ezo-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ezo-why-card {
    min-height: 220px;
  }

  .ezo-why-card-inner {
    padding: 22px 18px 18px;
  }

  .ezo-why-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .ezo-why-card-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .ezo-why-card-text {
    font-size: 14px;
    line-height: 1.58;
    max-width: 100%;
  }
}


/*---- Transparent Reporting ---*/

/* Section */
.section-transparent {
  padding: 50px 20px;
  text-align: center;
  background: #fff; /*- radial-gradient(circle at top, #12385b, #071421);*/
}

/* Heading */
.section-transparent h2 {
  color: var(--navy);
  margin-bottom: 15px;
}

.section-transparent p {
  max-width: 950px;
  margin: 0 auto 50px;
  color: var(--navy-light);
  line-height: 1.6;
}

/* Grid */
.grid-transparent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.card-transparent {
  
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  backdrop-filter: blur(12px);
  border: 1px var(--navy-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow Effect */
.card-transparent::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,140,255,0.15), transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.4s;
}

.card-transparent:hover::before {
  opacity: 1;
}

.card-transparent:hover {
  transform: translateY(-8px);
  border-color: rgba(0,140,255,0.4);
}

/* Icon */
.icon-transparent {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border-radius: 12px;
  font-size: 22px;
}

/* Title */
.card-transparent h3 {
  margin-bottom: 12px;
  color: var(--navy-light);
}

/* Text */
.card-transparent p {
  color: var(--navy-light);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-transparent h1 {
    font-size: 30px;
  }
}

/* ----- Result Grid -----*/

.section--lightblue1 {background: radial-gradient(circle at 50% 20%, #111827, #133760);
}

.result-section-title { color: #fff;}
.result-section-subtitle { color: #F5F5F5; font-size:1.05rem;max-width:640px;margin-bottom:48px; margin-left:auto;margin-right:auto}

.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;}
  .result-card {
    background: rgb(255,255,255, 0.06);
    padding: 40px 32px;
    border: 1px solid var(--Lime-Green);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
  }
  .result-card:hover { transform: translateY(-4px); }
  .result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .result-card:hover::before { opacity: 1; }
  .result-icon { font-size: 32px; margin-bottom: 20px; }
  .result-card h3 { font-size: 18px; color: var(--white);font-weight: 600; margin-bottom: 10px; }
  .result-card p { font-size: 14px; color: var(--off-white); line-height: 1.6; }
  
  
  /* Strategic Importance */
  
  .strategic-section-light {
  padding: 30px 20px;
  text-align: center;
}

.strategic-section-light h2 {
  color: var(--navy);
  margin-bottom: 15px;
}

.strategic-section-light p {
  max-width: 750px;
  margin: 0 auto 50px;
  color: var(--navy-light);
  line-height: 1.6;
}

/* Cards */
.strategic-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.strategic-feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-top: 4px solid #2ecc71;
}

.strategic-feature-card:hover {
  transform: translateY(-6px);
}

.strategic-icon-box {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--Lime-Green);
  margin-bottom: 15px;
}

.strategic-feature-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.strategic-feature-card p {
  color: var(navy-light);
}

/* Local SEO */

.local-seo-section-premium {
  padding: 30px 20px;
  background: linear-gradient(135deg, #071a2d 0%, #0b2c4a 60%, #0d3b66 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.local-seo-section-premium::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,140,255,0.25), transparent 70%);
  filter: blur(60px);
}

/* heading */
.local-seo-section-premium h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.local-seo-section-premium .subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  color: #c7d6e6;
  line-height: 1.6;
}

/* layout */
.local-seo-premium-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

/* image side */
.local-seo-premium-image {
  position: relative;
}

.local-seo-premium-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* glass panel */
.local-seo-premium-content {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  padding: 35px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* cards */
.local-seo-premium-card {
  padding: 20px 20px 20px 25px;
  margin-bottom: 20px;
  border-left: 4px solid #00c6ff;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.local-seo-premium-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(6px);
  border-left-color: #4facfe;
}

/* text */
.local-seo-premium-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.local-seo-premium-card p {
  font-size: 14px;
  color: #cfd8e3;
}

/* responsive */
@media (max-width: 768px) {
  .local-seo-premium-grid {
    grid-template-columns: 1fr;
  }

  .local-seo-section-premium h2 {
    font-size: 28px;
  }
}

/* ============================
     SEO Services Dubai AEO/GEO SECTION
  ============================= */
  .seo-dubai-aeo-section {
    
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .seo-dubai-aeo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .seo-dubai-aeo-features { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
  .seo-dubai-aeo-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px;
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
  }
  .seo-dubai-aeo-feature:hover { border-color: rgba(201,168,76,0.4); }
  .seo-dubai-aeo-feature-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--orange-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .seo-dubai-aeo-feature h4 { font-size: 15px; color: var(--white); font-weight: 600; margin-bottom: 4px; }
  .seo-dubai-aeo-feature p { font-size: 13px; color: var(--white); }
  .seo-dubai-aeo-visual {
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
  }
  .seo-dubai-aeo-label {
    display: inline-block;
    background: #045683;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .seo-dubai-aeo-visual h3 { font-size: 28px; color: var(--navy); font-weight: 800; margin-bottom: 16px; }
  .seo-dubai-aeo-visual p { font-size: 14px; color: var(--navy-light); line-height: 1.7; }
  .seo-dubai-aeo-platforms {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 24px; justify-content: center;
  }
  .seo-dubai-aeo-platform {
    background: var(--navy);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
  }
  
@media (max-width: 1024px) {
    
     .hero-inner { grid-template-columns: 1fr; }
    .hero-form-card { max-width: 520px; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .seo-dubai-aeo-inner { grid-template-columns: 1fr; }
    .reporting-grid { grid-template-columns: 1fr; }

  }
  @media (max-width: 768px) {
    .hero-inner { padding: 10px 20px; }
    .results-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .container-wide { padding: 0 20px; }
  }
  
  /* ------ Guest Posting Agency Page CSS ------- */
  
  /* ── What We Offer Grid ── */
    .offer-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-top: 48px;
    }
    .offer-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 36px 32px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: all .25s ease;
      position: relative;
      overflow: hidden;
    }
    .offer-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: #34B71A;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .3s ease;
    }
    .offer-card:hover {
      border-color: transparent;
      box-shadow: 0 16px 48px rgba(11,29,58,.1);
      transform: translateY(-4px);
    }
    .offer-card:hover::before { transform: scaleY(1) }
    .offer-card__num {
      width: 44px; height: 44px; min-width: 52px;
      background: var(--orange-light);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: #34B71A;
    }
    .offer-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #0b1d3a }
    .offer-card p { font-size: .88rem; margin-bottom: 16px }
    .offer-card ul { display: grid; gap: 7px }
    .offer-card ul li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .83rem;
      color: #5a6a80;
    }
    .offer-card ul li::before {
      content: '';
      width: 7px; height: 7px; min-width: 7px;
      background: #34B71A;
      border-radius: 50%;
      margin-top: 6px;
    }
    
     /* ── Who It's For ── */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .who-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 28px 24px;
      text-align: center;
      transition: all .25s;
      cursor: default;
    }
    .who-card:hover {
      border-color: #34B71A;
      box-shadow: 0 8px 30px rgba(52,183,26,.1);
      transform: translateY(-4px);
    }
    .who-card__icon {
      width: 44px; height: 44px;
      margin: 0 auto 16px;
      background: var(--orange-light);
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
    }
    .who-card__icon svg { width: 28px; height: 28px; color: #2a9a14 }
    .who-card h3 { font-size: 1rem; margin-bottom: 8px; color: #0b1d3a }
    .who-card p { font-size: .83rem }
    
    /* ── How It Works ── */
    
    .how-section { background: #0b1d3a; padding: 30px 0 }
    .how-section .section-title { color: #fff }
    .how-section .section-subtitle { color: #fff }
    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 48px;
      position: relative;
    }
    .how-grid::before {
      content: '';
      position: absolute;
      top: 46px;
      left: calc(16.67% + 20px);
      right: calc(16.67% + 20px);
      height: 2px;
      background: linear-gradient(90deg, #34B71A, rgba(52,183,26,.2));
    }
    .how-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      padding: 36px 28px;
      text-align: center;
      transition: all .25s;
      position: relative;
      z-index: 1;
    }
    .how-card:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(52,183,26,.4);
      transform: translateY(-6px);
    }
    .how-card__num {
      width: 72px; height: 72px;
      background: #34B71A;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.4rem;
      color: #fff;
      box-shadow: 0 0 0 6px rgba(52,183,26,.15);
      position: relative;
      z-index: 2;
    }
    .how-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 12px }
    .how-card p { color: #fff; font-size: .88rem; line-height: 1.7 }

    /* ── Quality Section ── */
    .quality-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .quality-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 32px 28px;
      transition: all .25s;
      position: relative;
      overflow: hidden;
    }
    .quality-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #34B71A, #0b1d3a);
      transform: scaleX(0);
      transition: transform .3s;
    }
    .quality-card:hover {
      border-color: transparent;
      box-shadow: 0 16px 48px rgba(11,29,58,.1);
      transform: translateY(-4px);
    }
    .quality-card:hover::after { transform: scaleX(1) }
    .quality-card__badge {
      display: inline-block;
      background: #045683;
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .quality-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: #0b1d3a }
    .quality-card p { font-size: .84rem; margin-bottom: 18px }
    .quality-list { display: grid; gap: 10px }
    .quality-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .84rem;
      color: #112347;
    }
    .quality-list li svg {
      width: 17px; height: 17px; min-width: 17px;
      color: #34B71A;
      margin-top: 1px;
    }
    
    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .who-grid { grid-template-columns: repeat(2, 1fr) }
    }
    
    @media (max-width: 768px) {
      .offer-grid { grid-template-columns: 1fr }
      .who-grid { grid-template-columns: 1fr }
      .how-grid { grid-template-columns: 1fr }
      .how-grid::before { display: none }
      .quality-grid { grid-template-columns: 1fr }
    }
    
     /* ============================
         Performance Marketing Page CSS
    ======================================== */
    
    /* ══════════════════════════════
       CHALLENGES SECTION
    ══════════════════════════════ */
    .challenges-section { background: #0b1d3a; padding: 30px 0 }
    .challenges-section .section-label { background: background: rgba(52,183,26,0.15); color: #fff }
    .challenges-section .section-title { color: #fff }
    .challenges-section .section-subtitle { color: #fff }
    .challenges-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .challenge-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px;
      padding: 28px 24px;
      transition: all .25s;
    }
    .challenge-card:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(244,124,32,.4);
      transform: translateY(-4px);
    }
    .challenge-card__icon {
      width: 44px; height: 44px;
      background: var(--orange-light);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .challenge-card__icon svg { width: 22px; height: 22px; color: var(--Lime-Green) }
    .challenge-card h3 { color: #fff; font-size: .97rem; margin-bottom: 10px }
    .challenge-card p { color: rgba(255,255,255,.6); font-size: .84rem; line-height: 1.7 }

    /* ══════════════════════════════
       WHY US
    ══════════════════════════════ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .why-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 32px 28px;
      text-align: center;
      transition: all .25s;
      position: relative;
    }
    .why-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #f47c20, #0b1d3a);
      border-radius: 0 0 20px 20px;
      transform: scaleX(0);
      transition: transform .3s;
    }
    .why-card:hover { box-shadow: 0 16px 48px rgba(11,29,58,.1); transform: translateY(-4px) }
    .why-card:hover::before { transform: scaleX(1) }
    .why-card__icon {
      width: 44px; height: 44px;
      margin: 0 auto 20px;
      background: var(--orange-light);
      border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
    }
    .why-card__icon svg { width: 30px; height: 30px; color: var(--Lime-Green) }
    .why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: #0b1d3a }
    .why-card p { font-size: .84rem }
    
    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media(max-width:1024px){
      .why-grid { grid-template-columns: repeat(2,1fr) }
      .challenges-grid { grid-template-columns: repeat(2,1fr) }
    }
    @media(max-width:768px){
      .why-grid { grid-template-columns: 1fr }
      .challenges-grid { grid-template-columns: 1fr }
    }
    
/* ══════════════════════════════
    Social Media Optimization Page CSS 
══════════════════════════════════════════*/

/* Section */
.social-section {
  padding: 30px 20px;
  background: #224177;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Layout */
.social-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.social-content {
  flex: 1;
}

.social-content h2 {
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.social-content p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

/* Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

/* Brand Colors */
.fb { background: #3b5998; }
.ig { background: #333; }
.li { background: #0077b5; }
.tw { background: #1da1f2; }
.yt { background: #ff0000; }
.pi { background: #bd081c; }
.tt { background: #000; }

/* Right Image */
.social-image {
  flex: 1;
  text-align: center;
}

.social-image img {
  max-width: 100%;
  height: auto;
}

/* ========================= */
/* Responsive */
/* ========================= */

@media (max-width: 992px) {
  .social-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .social-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .social-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons {
    justify-content: center;
  }

  .social-image img {
    max-height: 350px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .social-content h2 {
    font-size: 26px;
  }

  .social-content p {
    font-size: 14px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

 /* ══════════════════════════════
       About Us Page CSS
    ══════════════════════════════ */
/* ── Who we are ── */
.about-who{background:var(--white)}
.about-who__grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.about-who__card{background:#04527F;border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:36px}
.about-who__card h3{color:var(--white);margin-bottom:12px;font-size:1.3rem}
.about-who__card p{color:var(--white)}

@media(max-width:768px){
  .section{padding:20px 0}
  .about-who__grid{grid-template-columns:1fr}
}

/*----- Know More About Us ----*/

/* Base */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #eef2f7;
  margin: 0;
}

.about-section {
  padding: 30px 20px;
}

/*.container {
  max-width: 1200px;
  margin: auto;
}*/

/* Header */
.about-section-header {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
}

.about-section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b2a4a;
  margin-bottom: 15px;
}

.about-section-header p {
  color: #5f6b7a;
  line-height: 1.7;
  font-size: 16px;
}

/* Grid */
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.about-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.about-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Gradient glow on hover */
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: 0.4s;
}

.about-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(0,123,255,0.15), rgba(255,0,150,0.1));
}

/* Icon */
.about-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  font-size: 28px;
  color: white;
}

/* Icon Colors */
.blue { background: #3b82f6; }
.pink { background: #ec4899; }
.orange { background: #f59e0b; }
.purple { background: #8b5cf6; }

/* Text */
.about-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b2a4a;
}

.about-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ========================= */
/* Responsive */
/* ========================= */

@media (max-width: 1024px) {
  .about-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 60px 15px;
  }

  .about-section-header h2 {
    font-size: 26px;
  }

  .about-card {
    padding: 25px 20px;
  }
}


/* ========================= */
/* Pricing Page CSS */
/* ========================= */

/* ===== HERO ===== */
.pc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1f3a, #0f3c6e);
}

.pc-hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  position: relative;
}

.pc-hero-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

/* % Symbol */
.pc-percent {
  position: absolute;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
}

.pc-main {
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  color: rgba(255,255,255,0.15);
  text-shadow: 0 0 40px rgba(0,150,255,0.3);
}

.pc-sm {
  font-size: 60px;
  filter: blur(1px);
}

.p1 { right: 25%; top: 20%; }
.p2 { right: 20%; bottom: 20%; }

/* ===== CONTACT SECTION ===== */
.pricing-contact-section {
  background: #f5f6f8;
  padding: 80px 20px;
}

.pc-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
}

/* LEFT */
.pc-left { flex: 1; }

.pc-feature {
  display: flex;
  gap: 20px;
}

.pc-icon {
  font-size: 40px;
  color: #22c55e;
}

.pc-feature h3 {
  font-size: 22px;
  color: #4b5563;
}

.pc-feature p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.pc-divider {
  height: 1px;
  background: #ddd;
  margin: 30px 0;
}

/* FORM */
.pc-form-box {
  flex: 1;
  background: linear-gradient(135deg, #0b2c4d, #0e3a66);
  padding: 35px;
  border-radius: 16px;
  color: #fff;
}

.pc-form-title {
    text-align: center;
    color: #fff;
}

.pc-form-sub {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.pc-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.pc-form input,
.pc-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
}

.pc-form textarea {
  height: 100px;
}

.pc-form button {
  background: #22c55e;
  padding: 14px;
  border: none;
  color: #fff;
  border-radius: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .pc-container {
    flex-direction: column;
  }

  .pc-grid {
    grid-template-columns: 1fr;
  }

  .pc-main {
    font-size: 120px;
  }
}

@media (max-width: 600px) {
  .pc-hero-title {
    font-size: 28px;
  }

  .pc-main {
    font-size: 90px;
  }

  .pc-sm {
    display: none;
  }
}

/* ---------- AEO Services Page CSS ----------- */

.hero-form {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.stat-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.strategy-box {
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 10px;
  background: #043E69;
}

/* =========================
   RESPONSIVE TABLE (AEO)
========================= */

.custom-table-wrap {
  width: 100%;
  margin-top: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden; /* 🔥 FIX */
}

/* TABLE */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
  background: var(--white);
}

/* HEADER */
.custom-table thead {
  background: var(--navy);
}

.custom-table th {
  color: var(--white);
  text-align: left;
  padding: 16px 18px;
  font-family: var(--font-head);
  font-size: 0.9rem;
}

/* BODY */
.custom-table td {
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* HOVER */
.custom-table tbody tr:hover {
  background: var(--orange-light);
}

/* FIRST COLUMN */
.custom-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

/* =========================
   AI PLATFORM TABS (PREMIUM)
========================= */

.platform-tabs {
  margin-top: 40px;
}

/* TAB NAV */
.platform-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* TAB BUTTON */
.platform-tab-btn {
  padding: 12px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* ACTIVE */
.platform-tab-btn.active {
  background: var(--Lime-Green);
  color: #fff;
  border-color: var(--Lime-Green);
  box-shadow: 0 8px 25px rgba(52,183,26,0.35);
}

/* HOVER */
.platform-tab-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* TAB CONTENT */
.platform-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.platform-tab-content.active {
  display: block;
}

/* INNER GRID */
.platform-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.platform-content h3 {
  color: #fff;
  margin-bottom: 12px;
}

.platform-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

/* FEATURES */
.platform-list {
  display: grid;
  gap: 10px;
}

.platform-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: #fff;
}

.platform-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--Lime-Green);
  border-radius: 50%;
}

/* IMAGE */
.platform-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   MOBILE VERSION (STACKED)
========================= */

@media (max-width: 768px) {

  .custom-table-wrap {
    box-shadow: none;
    overflow: visible;
    overflow-x: auto;  
      
  }
  
  .custom-table {
    min-width: 100%;
    border: none;
  }

  /* HIDE HEADER */
  .custom-table thead {
    display: none;
  }

  /* ROW AS CARD */
  .custom-table tr {
    display: block;
    margin-bottom: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  /* CELLS */
  .custom-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
  }

  .custom-table td:last-child {
    border-bottom: none;
  }

  /* LABEL (LEFT SIDE) */
  .custom-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--navy);
  }
  
   .platform-tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .platform-tab-btn {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .platform-content-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .platform-image {
    order: -1; /* image first on mobile */
  }

}

/* write icon */

 .custom-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-bullets li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

/* Circle background */
.custom-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background-color: limegreen;
  border-radius: 50%;
}

/* White check icon */
.custom-bullets li::after {
  content: "✔";
  position: absolute;
  left: 5px;
  top: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}


/* ----------- Mobile SEO Services Page CSS -----------*/

/* Approach SEction */

/* Section */
.approach-section {
  background: #f5f7fa;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.section-title-c {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0a2a4a;
  margin-bottom: 15px;
}
.section-title-l {
  text-align: left;
  font-size: 36px;
  font-weight: 700;
  color: #0a2a4a;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #6c7a89;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Card */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Full width last card */
.card.full {
  grid-column: 1 / -1;   /* take full width */
  max-width: 520px;     /* control width */
  margin: 0 auto;       /* center horizontally */
}

/* Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-wrap h3 {
  font-size: 18px;
  color: #0a2a4a;
  margin: 0;
}

/* Check icon */
.check-icon {
  width: 22px;
  height: 22px;
  background: limegreen;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

/* Step badge */
.step {
  background: #1bb14c;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* Text */
.card p {
  color: #6c7a89;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .card.full {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 26px;
  }

  .card {
    padding: 20px;
  }

  .title-wrap h3 {
    font-size: 16px;
  }
}