*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:#000;color:#fff;overflow-x:hidden}

/* ══════════════════════════════
   NAV — TRANSPARENT BY DEFAULT, SOLID ON SCROLL
══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 32px;
  gap: 75px;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-right: 48px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: #e8f060;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text {
  font-size: 20px; font-weight: 700; color: #fff;
  letter-spacing: -0.5px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  margin-left: auto;
  justify-content: left;
}
.nav-links li { position: relative; }
.nav-links a, .nav-links button {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  color: white;
  background: none; border: none; cursor: pointer;
  text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 10px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover {
  background: rgba(255,255,255,0.08); color: #fff;
}
.nav-dot { color: #f1f1f1; font-size: 10px; margin-right: -3px; }
.nav-chevron { font-size: 11px; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.btn-book-demo {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  background: #00d5a4; color: #fff;
  border: none; border-radius: 100px;
  padding: 10px 24px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-book-demo:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-signin {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 9px 22px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-signin:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* ══════════════════════════════
   MEGA DROPDOWN — Services (cream/beige panel)
══════════════════════════════ */
.mega-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #f2ede3;
  z-index: 8000;
  padding: 36px 40px 40px;
  border-bottom: 1px solid #ddd7c8;
  animation: dropIn 0.18s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-open .mega-menu { display: block; }

.mega-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; column-gap: 0;
}

.mega-col {
  padding: 0 32px 0 0;
  border-right: 1px solid #ddd6c5;
}
.mega-col:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.mega-col:first-child { padding-left: 0; }
.mega-col:nth-child(2) { padding-left: 32px; }

/* Category pill buttons */
.mega-cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  padding: 10px 18px; border-radius: 100px;
  margin-bottom: 24px; cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.15s;
}
.mega-cat:hover { opacity: 0.85; }
.mega-cat.green  { background: #361B63; color: #fff; }
.mega-cat.teal   { background: #2E67FA; color: #fff; }
.mega-cat.blue   { background: #1e2d4a; color: #fff; }
.mega-cat.sand   { background: #e8dfc8; color: #2a2a2a; }
.mega-cat-arrow  { font-size: 13px; }

/* Service items */
.mega-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid #ddd6c5;
  cursor: pointer; text-decoration: none;
  transition: background 0.1s;
  gap: 12px;
}
.mega-item:hover .mega-item-title { color: #1a2318; }

.mega-item-left { flex: 1; }
.mega-item-title {
  font-size: 15px; font-weight: 600;
  color: #1a2318; margin-bottom: 2px;
  display: flex; align-items: center; gap: 7px;
  line-height: 1.3;
}
.mega-item-desc {
  font-size: 12.5px; color: #7a7468;
  line-height: 1.4;
}
.mega-item-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  color: #8a8478;
  display: flex; align-items: center; justify-content: center;
}
.mega-item-icon svg { width: 20px; height: 20px; }

.badge-new {
  font-size: 10px; font-weight: 700;
  background: #2E67FA; color: white;
  padding: 2px 7px; border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ══════════════════════════════
   RESOURCES MEGA DROPDOWN
══════════════════════════════ */
.resources-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #f2ede3;
  z-index: 8000;
  padding: 36px 40px 40px;
  border-bottom: 1px solid #ddd7c8;
  animation: dropIn 0.18s ease;
}

.resources-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr 1.5fr;
  gap: 0; column-gap: 0;
}

.res-col {
  padding: 0 36px 0 0;
  border-right: 1px solid #ddd6c5;
}
.res-col:last-child { border-right: none; padding-right: 0; padding-left: 36px; }
.res-col:first-child { padding-left: 0; }
.res-col:nth-child(2) { padding-left: 36px; }

/* Column header link */
.res-col-header {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 700;
  color: #1a1a1a; text-decoration: none;
  margin-bottom: 22px;
  transition: color 0.15s;
}
.res-col-header:hover { color: #3a6b3a; }
.res-col-header-arrow { font-size: 13px; }

/* List items (col 1) */
.res-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #ddd6c5;
  text-decoration: none;
  gap: 12px;
  transition: opacity 0.15s;
}
.res-item:hover { opacity: 0.75; }
.res-item-left { flex: 1; }
.res-item-title {
  font-size: 14.5px; font-weight: 600;
  color: #1a1a1a; margin-bottom: 2px;
  line-height: 1.3;
}
.res-item-desc {
  font-size: 12px; color: #7a7468; line-height: 1.4;
}
.res-item-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  color: #9a9388;
  display: flex; align-items: center; justify-content: center;
}
.res-item-icon svg { width: 18px; height: 18px; }

/* Blog/story post cards (cols 2 & 3) */
.res-post {
  display: flex; flex-direction: column;
  text-decoration: none;
  margin-bottom: 20px;
  cursor: pointer;
  transition: opacity 0.18s;
}
.res-post:last-child { margin-bottom: 0; }
.res-post:hover { opacity: 0.85; }

.res-post-img {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 8px; overflow: hidden;
  background: #ccc8be; margin-bottom: 11px;
  position: relative;
}
.res-post-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.res-post:hover .res-post-img img { transform: scale(1.03); }

.res-post-title {
  font-size: 14px; font-weight: 600;
  color: #1a1a1a; line-height: 1.45;
}

/* ══════════════════════════════
   WHY US MEGA DROPDOWN
══════════════════════════════ */
.whyus-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #f2ede3;
  z-index: 8000;
  padding: 40px;
  border-bottom: 1px solid #ddd7c8;
  animation: dropIn 0.18s ease;
}

.whyus-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.whyus-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  background: #f2ede3;
}
.whyus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}

.whyus-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #d4cfc5;
}
.whyus-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.whyus-card-body {
  padding: 16px 4px 8px;
}

.whyus-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.whyus-card-desc {
  font-size: 13px;
  color: #7a7468;
  line-height: 1.5;
}



/* ══════════════════════════════
   TRUSTED LOGOS MARQUEE
══════════════════════════════ */
.trusted {
  background: #131a12;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.trusted-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  text-align: center; margin-bottom: 20px;
}
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;align-items: center;
  animation: marquee 28s linear infinite; white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-logo {
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.28);
  white-space: nowrap; letter-spacing: -0.2px; cursor: default;
  transition: color 0.2s;
}
.t-logo:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
.sec { padding: 40px 40px; }
.inner { max-width: 1200px; margin: 0 auto; }

.pill {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #00d5a4; margin-bottom: 16px;
}

h2 {
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 800;
  line-height: 1.07; letter-spacing: -2px;
  color: #fff; margin-bottom: 20px;
}
h2 em { font-style: italic; color: #c8e645; }

/* ══════════════════════════════
   ABOUT / NEW ERA
══════════════════════════════ */
.about-sec { background: #000; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 16.5px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 18px; }

.vid-box {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
   border: 1px solid rgba(255,255,255,0.07);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.vid-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle 200px at 70% 30%, rgba(200,230,69,0.08), transparent);
}
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: #00d5a4; display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; z-index: 1;
  transition: transform 0.2s; box-shadow: 0 0 30px rgba(200,230,69,0.3);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 20px; height: 20px; fill: #1a2318; margin-left: 3px; }
.vid-tag {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 7px 13px;
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.75);
}

/* ══════════════════════════════
   FLEX CARDS
══════════════════════════════ */
.flex-sec {
  background: #7b4ace;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 40px;
}
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border-radius: 20px; overflow: hidden; margin-top: 52px;
}
.fc {
  background: #000; padding: 44px 36px;
  transition: background 0.2s;
}
.fc:hover { background: #000; }
.fc-num { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.18); margin-bottom: 22px; }
.fc-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(200,230,69,0.1); border: 1px solid rgba(200,230,69,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 20px;
}
.fc h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.3px; line-height: 1.3; }
.fc h3 em { font-style: italic; color: #c8e645; }
.fc p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.stats-sec { background: #0e1610; padding: 100px 40px; text-align: center; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border-radius: 20px; overflow: hidden; margin-top: 56px;
}
.sb { background: #0e1610; padding: 44px 28px; transition: background 0.2s; }
.sb:hover { background: #131a12; }
.sv { font-size: 52px; font-weight: 800; letter-spacing: -3px; color: #fff; line-height: 1; margin-bottom: 10px; }
.sv em { font-style: italic; color: #c8e645; }
.st { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ══════════════════════════════
   SERVICES SCROLL
══════════════════════════════ */
.svc-sec { background: #000; padding: 40px 0 40px 40px; }
.svc-head {
  padding-right: 40px; display: flex;
  justify-content: space-between; align-items: flex-end; margin-bottom: 44px;
}
.svc-head h2 { margin-bottom: 0; }
.svc-track {
  display: flex; gap: 14px; overflow-x: auto;
  padding-bottom: 14px; padding-right: 40px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.svc-track::-webkit-scrollbar { display: none; }
.sc {
  flex-shrink: 0; width: 248px; border-radius: 14px; overflow: hidden;
  background: #1a2318; border: 1px solid rgba(255,255,255,0.07);
  scroll-snap-align: start; transition: transform 0.25s, border-color 0.25s;
  text-decoration: none; color: inherit; display: block;
}
.sc:hover { transform: translateY(-6px); border-color: rgba(200,230,69,0.3); }
.sc-img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; background: #0e1610; }
.sc-body { padding: 16px 18px; }
.sc-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 7px; letter-spacing: -0.2px; }
.sc-body h4 em { font-style: italic; color: #c8e645; }
.sc-tags { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.9; }

/* ══════════════════════════════
   COMPARE
══════════════════════════════ */
.cmp-sec { background: #361b63; padding: 40px 40px; }
.cmp-wrap { margin-top: 52px; overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }
.cmp-t { min-width: 680px; width: 100%; }
.cr { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cr:last-child { border-bottom: none; }
.cc { padding: 17px 10px; font-size: 13px; color: rgba(255,255,255,0.5); border-right: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; }
.cc:last-child { border-right: none; }
.cr.hd .cc { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.02); padding: 13px 20px; }
.cc.hl { background: rgba(200,230,69,0.06); }
.cr.hd .cc.hl { color: #00d5a4; }
.rl { color: #fff; font-weight: 600; font-size: 13.5px; }
.cy { color: #4ade80; font-size: 14px; }
.cn { color: rgba(255,255,255,0.14); font-size: 14px; }
.cm { color: #4ade80; font-size: 14px; }

/* ══════════════════════════════
   WORK GRID
══════════════════════════════ */
.work-sec { background: #000; padding: 40px 40px; }
.work-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.work-hd h2 { margin-bottom: 0; }
.wg { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.wi { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 1; background: #1a2318; border: 1px solid rgba(255,255,255,0.06); }
.wi.big { grid-column: span 1; }
.wi img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.wi:hover img { transform: scale(1.05); }
.wov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.wi:hover .wov { opacity: 1; }
.wov h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.wov p { font-size: 11.5px; color: rgba(255,255,255,0.62); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.tsti-sec { background: #000; padding: 40px 40px; }
.tg { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 52px; }
.tc { background: #7b4ace; border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 34px 30px; transition: border-color 0.25s; }
.tc:hover { border-color: rgba(200,230,69,0.25); }
.tq { font-size: 38px; line-height: 1; color: #00d5a4; margin-bottom: 14px; font-family: Georgia, serif; }
.tt { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 26px; }
.tt strong { color: #fff; }
.ta { display: flex; align-items: center; gap: 11px; }
.av { width: 38px; height: 38px; border-radius: 50%; background: #c8e645; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #1a2318; }
.av.b { background: #4a7c5e; color: #fff; }
.av.c { background: #3a6b8a; color: #fff; }
.an { font-size: 13px; font-weight: 600; color: #fff; }
.ar { font-size: 11.5px; color: rgba(255,255,255,0.45); }
.mets { display: flex; gap: 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); }
.mv { font-size: 18px; font-weight: 800; letter-spacing: -0.4px; color: #00d5a4; }
.ml { font-size: 10.5px; color: rgba(255,255,255,0.4); }

/* ══════════════════════════════
   CTA FINAL
══════════════════════════════ */
.cta-sec {
  background: #0e1610; padding: 120px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(200,230,69,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-sec h2 { font-size: clamp(42px, 6vw, 70px); margin-bottom: 32px; }
.cta-sec p { font-size: 17px; color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto 44px; line-height: 1.7; }

/* ══════════════════════════════
   MODAL
══════════════════════════════ */
.mbg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(8px); z-index: 99999; align-items: center; justify-content: center; }
.mbg.on { display: flex; }
.modal { background: #7b4ace; border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 44px; max-width: 460px; width: 90%; position: relative; animation: su 0.3s cubic-bezier(.32,.72,0,1); box-shadow: 0 40px 80px rgba(0,0,0,0.7); }
@keyframes su { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.mx { position: absolute; top: 16px; right: 18px; background: rgba(255,255,255,0.07); border: none; width: 30px; height: 30px; border-radius: 7px; cursor: pointer; color: rgba(255,255,255,0.55); font-size: 15px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.mx:hover { background: rgba(255,255,255,0.12); }
.modal h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.4px; color: #fff; margin-bottom: 5px; }
.modal h3 em { font-style: italic; color: #00d5a4; }
.msub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.mf { display: flex; flex-direction: column; gap: 11px; }
.mf input, .mf select { font-family: 'Inter', sans-serif; font-size: 13.5px; padding: 13px 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 9px; color: #fff; outline: none; transition: border-color 0.2s; }
.mf input:focus, .mf select:focus { border-color: #c8e645; }
.mf input::placeholder { color: rgba(255,255,255,0.35); }
.mf select option { background: #1a2318; }
.mf .btn-hero-demo { width: 100%; justify-content: center; margin-top: 4px; }

/* ══════════════════════════════
   SCROLL ANIMATION
══════════════════════════════ */
.sa { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sa.vis { opacity: 1; transform: none; }
.sa.d1 { transition-delay: 0.12s; } .sa.d2 { transition-delay: 0.22s; } .sa.d3 { transition-delay: 0.32s; }

/* ══════════════════════════════
   BTN OUTLINE (secondary)
══════════════════════════════ */
.btn-sec {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: white;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 10px 22px; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: background 0.2s;
}
.btn-sec:hover { background: rgba(255,255,255,0.1); }

/* RESPONSIVE */
@media(max-width:1040px) {
  .about-grid,.tech-grid{grid-template-columns:1fr;        gap: 0px;}
  .stat-grid{grid-template-columns:repeat(2,1fr)}
  .tg{grid-template-columns:1fr 1fr}
  .ft{grid-template-columns:1fr 1fr}
  .feat-grid{grid-template-columns:1fr}
  .mega-inner{grid-template-columns:1fr 1fr}
  .mega-col:nth-child(3){display:none}
  .whyus-inner{grid-template-columns:1fr 1fr}
}
@media(max-width:768px) {
  nav{padding:0 16px}
  .nav-links{display:none}
  .sec,.flex-sec,.stats-sec,.svc-sec,.cmp-sec,.work-sec,.tsti-sec,.tech-sec,.cta-sec{padding:60px 20px}
  .svc-sec{padding:60px 0 60px 20px}
  h2{font-size:34px;letter-spacing:-1.5px}
  .feat-grid,.wg{grid-template-columns:1fr}
  .wi.big{grid-column:span 1}
  .cr{grid-template-columns:1.5fr 1fr 1fr}
  .cc:nth-child(n+4){display:none}
  .tg{grid-template-columns:1fr}
  .ft{grid-template-columns:1fr}
  .fb2{flex-direction:column;gap:10px;text-align:center}
  .mega-menu{padding:24px 20px}
  .mega-inner{grid-template-columns:1fr}
  .mega-col{border-right:none;padding:0 0 16px}
  .whyus-menu{padding:24px 20px}
  .whyus-inner{grid-template-columns:1fr}
  .resources-menu{padding:24px 20px}
  .resources-inner{grid-template-columns:1fr}
  .res-col{border-right:none;padding:0 0 20px;margin-bottom:4px}
}
/* ═══ DIFFERENCE SECTION ═══ */
.difference-sec {
  background: #f0efe8;
  padding: 40px 40px 40px;
  text-align: center;
}
.diff-inner { max-width: 1100px; margin: 0 auto; }
.diff-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #5a6b5a; margin-bottom: 22px; display: block; }
.diff-heading { font-family: 'Inter', sans-serif; font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: #1a2318; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 72px; }
.diff-heading em { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 400; color: #1a2318; letter-spacing: -0.5px; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; text-align: left; }
.diff-card { padding: 0 25px 0 0; border-right: 1px solid rgba(26, 35, 24, 0.1); }
.diff-card:last-child { border-right: none; padding-right: 0; padding-left: 25px; }
.diff-card:nth-child(2) { padding-left: 25px; }
.diff-icon-box { width: 68px; height: 68px; background: #e6e4db; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; flex-shrink: 0; }
.diff-icon-box svg { width: 28px; height: 28px; stroke: #2a3828; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.diff-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #5a6b5a; margin-bottom: 10px; display: block; }
.diff-title { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; color: #1a2318; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 14px; }
.diff-desc { font-size: 14.5px; color: #5a6050; line-height: 1.7; }
@media (max-width: 860px) {
  .diff-grid { grid-template-columns: 1fr; gap: 48px; }
  .diff-card { border-right: none; padding: 0 0 48px; border-bottom: 1px solid rgba(26,35,24,0.1); }
  .diff-card:last-child { border-bottom: none; padding-bottom: 0;        padding-left: 0px; }
  .diff-card:nth-child(2) { padding-left: 0; }
}
/* ═══ SUCCESS SECTION ═══ */
.success-sec { background: #361b63; padding: 40px 60px 40px; }
.success-inner { max-width: 1160px; margin: 0 auto; }
.success-header { text-align: center; margin-bottom: 36px; }
.success-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.success-heading { font-family: 'Inter', sans-serif; font-size: clamp(36px, 4.5vw, 56px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -1.5px; }
.success-heading em { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 400; color: #fff; letter-spacing: -0.5px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; row-gap: 0; }
.stat-cell { padding: 36px 40px 36px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; justify-content: center; }
.stat-cell:nth-child(4n) { padding-right: 0; }
.stat-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 220px; }
.stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(54px, 7vw, 68px); font-weight: 400; color: #fff; line-height: 1; letter-spacing: -2px; }
.stat-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: #fff; text-decoration: none; margin-top: 10px; transition: opacity 0.2s; }
.stat-link:hover { opacity: 0.7; }
.stat-link-arrow { font-size: 13px; }
/* ═══ HERO LAYOUT ═══ */
.hero { background: #7B4ACE; color: #ffffff; overflow: hidden; margin: 0; padding: 0; position: relative; }
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-container { display: flex; align-items: stretch; justify-content: space-between; gap: 0; min-height: 100vh; padding: 0; margin: 0; }
.hero-content { flex: 0 0 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 40px; padding-top: 60px; }
.hero-content h1 { font-size: 34px; font-weight: 600; line-height: 1.15; margin-bottom: 18px; }
.script-text { font-family: "Playfair Display", serif; font-style: italic; color: #00d5a4; font-weight: 500; }
.hero-content p { font-size: 14px; line-height: 1.6; color: #fff; margin-bottom: 24px; }
.btn-primary { display: inline-block; background: #00d5a4; color: #fff; padding: 10px 20px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: 0.3s ease; }
.btn-primary:hover { background: #361B63; }
.hero-btn-wrap { display: flex; justify-content: center; }

/* ═══ HERO GRID ═══ */
.hero-grid { display: flex; gap: 12px; flex: 1; height: 100vh; overflow: hidden; align-items: flex-start; padding: 12px 12px 0 12px; margin: 0; box-sizing: border-box; }
.column { display: flex; flex-direction: column; gap: 12px; flex: 1; margin: 0; padding: 0; }
.grid-item { width: 100%; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; }
.move-up { animation: scrollUp 20s linear infinite; }
.move-down { animation: scrollDown 20s linear infinite; }
@keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes scrollDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }

@media (max-width: 992px) {
  .hero-container { flex-direction: column; }
  .hero-grid { grid-template-columns: repeat(2, 150px); }
  .hero-content h1 { font-size: 42px; }
}
/* ═══ VIDEO MODAL ═══ */
.video-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); justify-content: center; align-items: center; }
.video-content { width: 80%; max-width: 800px; position: relative; }
.video-content iframe { border-radius: 12px; }
.close { position: absolute; top: -30px; right: 0; font-size: 30px; color: #fff; cursor: pointer; }

/* ═══ VID BOX ═══ */
.vid-box { position: relative; overflow: hidden; border-radius: 20px; }
.bg-video { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 1; }
.vid-glow, .play-btn, .vid-tag { position: relative; z-index: 2; }
/* ═══ BRANDS SECTION ═══ */
.brands-section { padding: 40px 0; text-align: center; }
.slider { overflow: hidden; position: relative; width: 100%; margin-bottom: 40px; }
.slide-track { display: flex; width: calc(250px * 12); }
.slide { width: 200px; display: flex; justify-content: center; align-items: center; padding: 10px; }
.slide img { max-width: 150px; filter: grayscale(100%); opacity: 0.8; transition: 0.3s; }
.slide img:hover { filter: grayscale(0%); opacity: 1; }
.left-scroll .slide-track { animation: scrollLeft 60s linear infinite; }
@keyframes scrollLeft { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.right-scroll .slide-track { animation: scrollRight 60s linear infinite; }
@keyframes scrollRight { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* ═══ SECTION 1 ═══ */
.section1 { display: flex; min-height: 100vh; }
.left { width: 50%; padding: 40px 40px; display: flex; flex-direction: column; justify-content: center;  }
.small-title { font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: #2c3b34; margin-bottom: 20px; }
.small-title::after { content: ""; display: block; width: 120px; height: 1px; background: #2c3b34; margin-top: 15px; }
h2 { font-size: 58px; font-weight: 500; color: #1f2f29; margin: 40px 0; }
h2 span.italic { font-family: 'Playfair Display', serif; font-style: italic; }
.description { font-size: 17px; line-height: 1.6; color: #1f2f29; margin-bottom: 25px; }
.sub-text { font-size: 16px; line-height: 1.7; color: #4b5a54; max-width: 520px; }
.right { width: 50%; overflow: hidden; }
.right img { width: 100%; height: 100%; object-fit: cover; }
@media(max-width:991px) { .section1 { flex-direction: column; } .left, .right { width: 100%; } h1 { font-size: 42px; } }
/* ═══ TESTIMONIALS CAROUSEL ═══ */
.testimonials-section { background: #d3d3d359; min-height: 700px; display: flex; align-items: center; justify-content: center; }
.carousel-container { max-width: 1400px; width: 100%; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr 100px; gap: 4rem; align-items: center; }
.profile-carousel-section { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.profiles-carousel { height: 600px; perspective: 1200px; position: relative; width: 200px; }
.profiles-wrapper { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.profile-item { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: linear-gradient(135deg, #d0d0d0, #a0a0a0); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; transition: all 0.8s ease-in-out; border: 4px solid white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); overflow: hidden; background-size: cover; background-position: center; }
.profile-item.prev { transform: translateY(-240px) scale(0.65); opacity: 0.35; filter: brightness(0.65); z-index: 1; }
.profile-item.active { transform: translateY(0) scale(1); opacity: 1; filter: brightness(1); box-shadow: 0 12px 40px rgba(0,0,0,0.2); z-index: 3; }
.profile-item.next { transform: translateY(240px) scale(0.65); opacity: 0.35; filter: brightness(0.65); z-index: 1; }
.content-section { position: relative; min-height: 400px; display: flex; flex-direction: column; justify-content: center; }
.testimonial-item { position: absolute; width: 100%; opacity: 0; pointer-events: none; transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out; transform: translateX(50px); }
.testimonial-item.active { opacity: 1; pointer-events: auto; transform: translateX(0); position: relative; }
.carousel-controls { display: flex; flex-direction: column; gap: 2rem; align-items: center; justify-content: center; height: 600px; }
.arrow-btn { width: 50px; height: 50px; border: 2px solid #1a1a1a; border-radius: 50%; background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: all 0.3s; font-weight: bold; color: #1a1a1a; }
.arrow-btn:hover { background: #1a1a1a; color: white; transform: scale(1.1); }
.testimonial-company { font-size: 1.5rem; font-weight: 800; color: #1a1a1a; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.testimonial-quote { font-size: 1.15rem; line-height: 1.7; margin-bottom: 1.5rem; color: #1a1a1a; }
.testimonial-quote strong { font-weight: 700; }
.testimonial-author { font-weight: 600; color: #1a1a1a; margin-bottom: 0.25rem; font-size: 1rem; }
.testimonial-role { color: #666; font-size: 0.95rem; margin-bottom: 2rem; }
.testimonial-stats { display: inline-flex; gap: 5px; padding: 2rem 0; border-top: 1px solid #d9d3c8; border-bottom: 1px solid #d9d3c8; margin-bottom: 2rem; }
.stat-block { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-number { font-size: 20px; font-weight: 800; color: #1a1a1a; }
.stat-label { font-size: 0.95rem; color: #666; }
.case-study-card { display: flex; gap: 1rem; align-items: center; background: rgba(0,0,0,0.04); padding: 1.25rem; border-radius: 0.75rem; cursor: pointer; transition: all 0.3s; }
.case-study-card:hover { background: rgba(0,0,0,0.08); }
.case-study-thumbnail { width: 80px; height: 80px; background: linear-gradient(135deg, #333, #666); border-radius: 0.5rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.7rem; font-weight: 600; }
.case-study-content h4 { font-size: 0.85rem; font-weight: 600; color: #999; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.case-study-content p { font-size: 0.95rem; font-weight: 600; color: #1a1a1a; line-height: 1.4; }
.case-study-arrow { margin-left: auto; font-size: 1.2rem; color: #666; }
/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: #000; border-top: 1px solid rgba(255,255,255,0.07); padding: 30px 40px 40px; padding-bottom: 10px; }
.ft { display: grid; grid-template-columns: 1.5fr 1.2fr 1.2fr 1.2fr 1.2fr; gap: 40px; max-width: 1400px; margin: 0 auto 20px; }
.ft > div:first-child { display: flex; flex-direction: column; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 0px; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #c8e645, #a3d800); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(200,230,69,0.3); }
.logo-text { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.fa { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.8;margin: 0; }
.fcol { display: flex; flex-direction: column; gap: 18px; }
.fcol h5 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #00d5a4; margin: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(0,213,164,0.2); }
.solutions-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; }
.solutions-col { display: flex; flex-direction: column; gap: 10px; }
.solutions-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.solutions-col li { margin: 0; padding: 0; }
.solutions-col a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 6px; }
.solutions-col a:hover { color: #00d5a4; padding-left: 6px; }
.fcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fcol li { margin: 0; padding: 0; }
.fcol a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 6px; }
.fcol a:hover { color: #00d5a4; padding-left: 6px; }
.fcol p { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin: 10px 0 6px 0; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.1); }
.fcol span { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; display: block; margin-bottom: 4px; }
.fb2 { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.07); max-width: 1400px; margin: 0 auto; font-size: 12px; color: rgba(255,255,255,0.4); }
.fb2 span { font-weight: 500; letter-spacing: 0.3px; }
.fb2-l { display: flex; gap: 24px; align-items: center; }
.fb2-l a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.3s ease; }
.fb2-l a:hover { color: #00d5a4; }
.social-icons { display: flex; gap: 14px; align-items: center; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,213,164,0.1); border: 1.5px solid rgba(0,213,164,0.3); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease; color: rgba(0,213,164,0.7); }
.social-icon:hover { background: #00d5a4; border-color: #00d5a4; color: #000; transform: translateY(-3px); }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }
@media(max-width:1200px) { .ft { grid-template-columns: 1fr 1fr 1fr; gap: 40px; } .fb2 { flex-direction: column; gap: 20px; text-align: center; } .fb2-l { justify-content: center; } }
@media(max-width:768px) { footer { padding: 40px 20px 30px; } .ft { grid-template-columns: 1fr; gap: 30px; } .social-icons { justify-content: center; } }
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body9 {
      background-color: #0d2b20;
      font-family: 'DM Sans', sans-serif;
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── Header ── */
    .header3 {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 48px 40px 36px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease forwards 0.1s;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .header-left3 { max-width: 520px; }

    .eyebrow {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #7cb899;
      margin-bottom: 12px;
    }

    .headline {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 3.5vw, 26px);
      line-height: 1.15;
      color: #fff;
    }

    .headline em { font-style: italic; }

    .header-right { max-width: 350px; padding-top: 10px; }
    .header-right p { font-size: 12.5px; color: #8aad9a; line-height: 1.65; }

    /* ── Marquee Wrapper ── */
   .marquee-outer {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.card18 {
  flex: 0 0 auto;
  margin-right: 20px;
}

.marquee-track {
  animation: marqueeScroll 40s linear infinite;
}
.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}
/* KEY FIX HERE */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

    /* ── Cards ── */
    .card9 {
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      flex: 0 0 300px;
      height: 420px;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(.25,.8,.25,1),
                  box-shadow 0.4s ease;
    }

    .card9:hover {
      transform: scale(1.04) translateY(-6px);
      box-shadow: 0 24px 48px rgba(0,0,0,0.45);
    }

    .card-motion1   { background: linear-gradient(160deg, #e84a1a 0%, #f87232 40%, #cc3c0c 100%); }
    .card-print     { background: linear-gradient(160deg, #c8a97a 0%, #b5956a 50%, #8c6e45 100%); }
    .card-immersive { background: linear-gradient(160deg, #d4cfc8 0%, #b8b4ac 50%, #9a9690 100%); }
    .card-packaging { background: linear-gradient(160deg, #87a8c3 0%, #6b8fa8 50%, #4e7290 100%); }

    .card9::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.38) 100%);
      border-radius: 18px;
      pointer-events: none;
    }

    .card-label {
      position: absolute;
      top: 18px; left: 20px;
      z-index: 2;
      font-size: 17px;
      font-weight: 400;
      color: #fff;
      text-shadow: 0 1px 6px rgba(0,0,0,0.3);
      line-height: 1.25;
    }

    .card-label em {
      font-family: 'DM Serif Display', serif;
      font-style: italic;
    }

    .card-tags {
      position: absolute;
      bottom: 18px; left: 14px; right: 14px;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }

    .tag {
      background: rgba(255,255,255,0.16);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      padding: 3px 11px;
      font-size: 9.5px;
      font-weight: 500;
      color: #fff;
      letter-spacing: 0.02em;
      transition: background 0.2s;
    }

    .tag:hover { background: rgba(255,255,255,0.28); }

    /* ── Motion Art ── */
    .motion-art {
      position: absolute; inset: 0;
      overflow: hidden; border-radius: 18px;
    }

    .motion-art .bowl {
      position: absolute;
      bottom: -20px; left: 50%;
      transform: translateX(-50%);
      width: 220px; height: 130px;
      background: radial-gradient(ellipse at 50% 80%, #f97b30 0%, #e85010 60%, #c03a08 100%);
      border-radius: 50%;
    }

    .shape {
      position: absolute;
      border-radius: 50%;
      animation: floatUp 4s ease-in-out infinite;
      opacity: 0.9;
    }

    .shape-1  { width:18px; height:18px; background:#ffd580; top:55%; left:30%; animation-delay:0s; }
    .shape-2  { width:12px; height:12px; background:#fff8c0; top:45%; left:55%; animation-delay:0.5s; }
    .shape-3  { width:22px; height:10px; background:#ffb347; border-radius:8px; top:38%; left:42%; animation-delay:1s; }
    .shape-4  { width:10px; height:10px; background:#fff176; top:62%; left:65%; animation-delay:1.5s; }
    .shape-5  { width:15px; height:15px; background:#ffa040; top:30%; left:25%; animation-delay:0.7s; }
    .shape-6  { width:8px;  height:8px;  background:#ffe0a0; top:50%; left:20%; animation-delay:2s; }
    .shape-7  { width:20px; height:8px;  background:#ff8c42; border-radius:6px; top:40%; left:70%; animation-delay:0.3s; }
    .shape-8  { width:14px; height:14px; background:#ffe599; top:70%; left:45%; animation-delay:1.2s; }

    @keyframes floatUp {
      0%,100% { transform: translateY(0) rotate(0deg); }
      50%      { transform: translateY(-18px) rotate(12deg); }
    }

    /* ── Print Art ── */
    .print-art {
      position: absolute; inset: 0;
      overflow: hidden;
    }

    .plant-bg {
      position: absolute; top:0; left:0; right:0; bottom:0;
      background: linear-gradient(160deg, #d4c4a0 0%, #c2aa82 40%, #8a7258 100%);
    }

    .plant-leaves {
      position: absolute; top: 30px; right: 10px;
      font-size: 70px; opacity: 0.6; transform: rotate(-15deg);
    }

    .window-light {
      position: absolute; top: 20px; left: -20px;
      width: 100px; height: 140px;
      background: rgba(255,240,200,0.25);
      border-radius: 6px; transform: rotate(-5deg);
    }

    .book-art {
      position: absolute; bottom: 40px; left: 50%;
      transform: translateX(-50%);
      width: 90px; height: 120px;
      background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
      border-radius: 4px 12px 12px 4px;
      box-shadow: -4px 4px 12px rgba(0,0,0,0.4);
    }

    .book-label {
      position: absolute; top: 20px; left: 8px; right: 8px;
      background: linear-gradient(135deg, #e85a10 0%, #c84008 100%);
      border-radius: 50%; width: 70px; height: 70px;
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 700; color: #fff;
      text-align: center; letter-spacing: 0.04em;
    }

    /* ── Immersive Art ── */
    .immersive-art {
      position: absolute; inset: 0;
      overflow: hidden; border-radius: 18px;
    }

    .monitor {
      position: absolute; bottom: 60px; left: 50%;
      transform: translateX(-42%);
      width: 130px; height: 90px;
      background: #1a1a2e; border-radius: 8px;
      border: 3px solid #555;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    .monitor-screen {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #f7a8c4 0%, #e879a0 50%, #c44d82 100%);
      border-radius: 5px; position: relative; overflow: hidden;
    }

    .flower {
      position: absolute; top: 10px; left: 50%;
      transform: translateX(-50%); font-size: 32px;
    }

    .person-back {
      position: absolute; bottom: 0; left: 10px;
      width: 80px; height: 200px;
      background: linear-gradient(to top, #8b4513 0%, #a0522d 60%, #8b3a0f 100%);
      border-radius: 40px 40px 0 0;
    }

    /* ── Packaging Art ── */
    .packaging-art {
      position: absolute; inset: 0;
      overflow: hidden; border-radius: 18px;
    }

    .sky {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, #87ceeb 0%, #5fa8c8 50%, #6b9ab8 100%);
    }

    .building {
      position: absolute; bottom: 0; right: 0;
      width: 70%; height: 85%;
      background: linear-gradient(180deg, #e8e4dc 0%, #d4cfc4 100%);
      clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .man-silhouette {
      position: absolute; bottom: 0; left: 10px;
      width: 65px; height: 260px;
      background: linear-gradient(to top, #5c3317 0%, #7a4828 100%);
      border-radius: 30px 30px 0 0;
    }

    .tote-bag {
      position: absolute; bottom: 30px; right: 20px;
      width: 100px; height: 130px;
      background: linear-gradient(160deg, #f5f0e8 0%, #e8dfc8 100%);
      border-radius: 8px 8px 14px 14px;
      box-shadow: 4px 8px 20px rgba(0,0,0,0.25);
      display: flex; align-items: center; justify-content: center;
    }

    .tote-text {
      font-family: 'DM Serif Display', serif;
      font-size: 11px; font-weight: 700;
      color: #2a2a2a; text-align: center;
      line-height: 1.3; letter-spacing: 0.05em;
    }

    .tote-handle {
      position: absolute; top: -18px; left: 50%;
      transform: translateX(-50%);
      width: 50px; height: 22px;
      border: 4px solid #e8dfc8;
      border-bottom: none; border-radius: 14px 14px 0 0;
    }

    /* ── Pause hint ── */
    .pause-hint {
      text-align: center;
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding-top: 18px;
      padding-bottom: 8px;
    }
	* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
.left {
  width: 50%;
}
.subheading {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9adbb8;
  margin-bottom: 20px;
}
.left h2 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}
.left p {
  margin-top: 25px;
  font-size: 16px;
  color: #cbd5d1;
  max-width: 520px;
  line-height: 1.6;
}
.right {
  width: 50%;
}
.timeline {
  position: relative;
}

/* Each step row */
.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 0;
}

/* Left column: circle + line below it */
.circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

/* Circle — no background line passing through */
.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background: #7b4ace; /* matches section bg so no line shows inside */
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Connector line outside/below the circle */
.connector {
  width: 2px;
  background: rgba(255, 255, 255, 0.6);
  flex: 1;
  min-height: 130px;
}

/* Right column: text content */
.step-content {
  padding-top: 8px;
  padding-bottom: 42px;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: #b8c5c1;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }
  .left, .right {
    width: 100%;
  }
  .left h1 {
    font-size: 48px;
  }
}
body13{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#e7e4d6;
color:#222;
}

.container13{
max-width:1200px;
margin:auto;
padding:20px 20px;
}

/* Badge */

.badge{
display:inline-block;
border:1px solid #d5caa7;
padding:6px 14px;
border-radius:20px;
font-size:13px;
margin-bottom:20px;
}

/* Heading */

.title{
text-align:center;
font-size:46px;
margin-bottom:50px;
}

/* Layout */

.grid13{
display:grid;
grid-template-columns: 420px 1fr;
gap:40px;
align-items:start;
}

/* Image Card */

.card13{
border-radius:12px;
overflow:hidden;
border:1px solid #ddd;
background:white;
}

.card13 img{
width:100%;
display:block;
}

/* Content grid */

.content{
display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
}

.block h3{
margin:0 0 10px;
font-size:20px;
}

.block p{
font-size:14px;
line-height:1.6;
color:#555;
}

.block ul{
padding-left:18px;
margin-top:10px;
font-size:14px;
color:#555;
}

.block{
padding-bottom:20px;
border-bottom:1px dashed #cfcfcf;
}

.block:nth-last-child(-n+2){
border-bottom:none;
}

/* Bottom buttons */

.buttons{
margin-top:40px;
display:flex;
justify-content:center;
gap:20px;
}

.btn{
border:1px solid #00d5a4;
padding:10px 20px;
border-radius:25px;
background:white;
font-size:14px;
cursor:pointer;
}

.btn.gradient{
background:linear-gradient(90deg,#8c52ff,#ff9f3c);
color:white;
border:none;
}

.btn span{
margin:0 6px;
}

/* Responsive */

@media(max-width:900px){

.title{
font-size:34px;
}

.grid{
grid-template-columns:1fr;
}

.content{
grid-template-columns:1fr;
}

}
body14{
margin:0;
background:#0f0f0f;
font-family:Arial, Helvetica, sans-serif;
display:flex;
justify-content:center;
padding:60px 20px;
}

.container14{
<!-- max-width:1100px; -->
width:100%;
}

/* GRID */

.grid14{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:22px;
align-items:start;
}

/* COLUMN LAYOUT */

.left14,
.right14{
display:grid;
gap:22px;
}

.middle14{
display:flex;
align-items:center;
justify-content:center;
}

/* CARDS */

.card14{
border-radius:16px;
overflow:hidden;
}

.card14 img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* HEIGHT CONTROL */

.left14 .card,
.right14 .card{
height:260px;
}

.middle14 .card{
height:420px;
}

/* BUTTON */

.button-wrap{
display:flex;
justify-content:center;
margin-top:30px;
}

.btn{
display:flex;
align-items:center;
gap:10px;
background:linear-gradient(90deg,#8a4bff,#f5a623);
color:#fff;
padding:10px 18px;
border-radius:25px;
text-decoration:none;
font-size:14px;
}

.arrow{
width:30px;
height:30px;
background:#f5a623;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}
 .card14:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
   
  }
/* RESPONSIVE */

@media(max-width:900px){

.grid{
grid-template-columns:1fr;
}

.middle{
order:-1;
}

}
body15{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#cfd3be;
display:flex;
justify-content:center;
align-items:center;

}

.testimonial-section{
text-align:center;
<!-- max-width:900px; -->
padding:40px 20px;
}

/* PROFILE ROW */

.profile-row{
display:flex;
justify-content:center;
align-items:center;
gap:25px;
margin-bottom:40px;
}

.profile{

overflow:hidden;
opacity:0.4;
<!-- transition:all .4s ease; -->
<!-- cursor:pointer; -->
}

.profile img{
width:100%;
height:100%;
object-fit:cover;
}

.profile.active{

opacity:1;
border:4px solid #cfe3d9;
}

/* TEXT AREA */

.company{
font-size:22px;
font-weight:600;
margin-bottom:20px;
color:#24312c;
transition:opacity .5s;
}

.quote{
font-size:20px;

color:#1d2b25;
line-height:1.6;
margin-bottom:20px;
transition:opacity .5s;
}

.quote span{
font-weight:400;
}

.author{
font-size:14px;
color:#4d5a55;
transition:opacity .5s;
}

.fade{
opacity:0;
}
body15{
margin:0;
font-family:Arial, Helvetica, sans-serif;
}

/* HERO SECTION */

.hero5{
position:relative;
height:80vh;
background:url("images/mrv_index_bottom_image.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

/* DARK OVERLAY */

.hero5::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,70,40,0.55);
}

/* CONTENT */

.hero-content5{
position:relative;
z-index:2;
max-width:900px;
padding:20px;
}

.hero5 h2{
font-size:70px;
line-height:1.2;
font-weight:300;
margin-bottom:30px;
}

.hero5 h2 span{
font-style:italic;
font-family:Georgia, serif;
}

/* BUTTON */

.btn{
display:inline-block;
background:#00d5a4;
color:#1a1a1a;
padding:14px 30px;
border-radius:40px;
font-size:16px;
text-decoration:none;
font-weight:600;
}

/* BOTTOM BAR */

.bottom-bar{
position:absolute;
bottom:20px;
left:0;
width:100%;
padding:0 60px;
display:flex;
justify-content:space-between;
color:white;
font-size:18px;
z-index:2;
}

.line{
position:absolute;
bottom:60px;
left:40px;
right:40px;
height:1px;
background:rgba(255,255,255,0.4);
}

/* RESPONSIVE */

@media(max-width:900px){

.hero h1{
font-size:40px;
}

.bottom-bar{
padding:0 20px;
font-size:16px;
}

}
* { margin: 0; padding: 0; box-sizing: border-box; }

  body18 {
    background: #FDFBF0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }

  .wrapper1 {
    width: 100%;
 
  }

  /* ── TABLE GRID ── */
  .table1 {
    display: grid;
    grid-template-columns: 140px 200px 1fr 1fr 1fr;
    border-collapse: separate;
  }

  /* ── HEADER ROW ── */
  .header-row {
    display: contents;
  }

  .th1 {
    padding: 18px 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
  }

  .th.row-label {
    text-align: left;
    color: #555;
  }

  /* The inklusive branded header cell */
  .th.inklusive-header {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
  }

  /* ── DIVIDER LINE under header ── */
  .divider1 {
    display: contents;
  }

  .divider-cell {
    border-bottom: 1.5px solid #7B5EA7;
    margin-bottom: 0;
  }

  .divider-cell.inklusive-col {
    border-bottom: 1.5px solid #00d5a4;
  }

  /* ── DATA ROWS ── */
  .data-row {
    display: contents;
  }

  .cell {
    padding: 22px 16px;
    font-size: 14px;
    color: #444;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .cell.row-label {
    text-align: left;
    justify-content: flex-start;
    font-weight: 700;
    font-size: 14px;
    color: #222;
  }

  /* Shaded alternate rows (Time, Output) */
  .shaded .cell:not(.inklusive-col) {
    background: #F2F0E8;
  }

  /* ── INKLUSIVE HIGHLIGHT COLUMN ── */
  .inklusive-col {
    background: linear-gradient(160deg, #F3EEFF 0%, #FFF8E6 100%) !important;
    border-left: 1.5px solid #C9A8F5;
    border-right: 1.5px solid #00d5a4;
    color: #333;
    font-weight: 500;
  }

  /* Top rounded cap */
  .inklusive-top {
    border-top: 1.5px solid #C9A8F5;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-left: 1.5px solid #C9A8F5;
    border-right: 1.5px solid #00d5a4;
    background: linear-gradient(160deg, #F3EEFF 0%, #FFF8E6 100%) !important;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  /* Bottom rounded cap */
  .inklusive-bottom {
    border-bottom: 1.5px solid #00d5a4;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-left: 1.5px solid #C9A8F5;
    border-right: 1.5px solid #00d5a4;
    background: linear-gradient(160deg, #F3EEFF 0%, #FFF8E6 100%) !important;
  }

  /* ── LOGO ── */
  .logo1 {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
  }

  .logo-icon {
    font-size: 22px;
  }

  /* Pinwheel SVG icon */
  .pinwheel {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
body7{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#052f2c;
color:white;
}

.container7{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

/* HEADER */

.top-text{
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
color:#cfd9d6;
margin-bottom:10px;
}

.header2{
display:flex;
justify-content:space-between;
align-items:flex-start;
margin-bottom:40px;
gap:40px;
}

.header2 h2{
font-size:56px;
font-weight:500;
margin:0;
}

.header2 h2 span{
font-style:italic;
font-weight:400;
}

.header2 p{
max-width:380px;
color:#c9d2cf;
font-size:14px;
line-height:1.6;
}

/* GRID */

.grid7{
display:grid;
grid-template-columns:1fr 2fr;
grid-template-rows:auto auto;
gap:20px;
}

/* CARDS */

.card7{
border-radius:10px;
padding:30px;
position:relative;
overflow:hidden;
}

.card h3{
margin-top:10px;
font-size:22px;
font-weight:500;
}

.card p{
font-size:14px;
line-height:1.6;
margin-top:10px;
}

/* COLORS */

.beige{
background:#d8c7a5;
color:#0c2a2a;
}

.blue{
background:#8eb4d8;
color:#0c2a2a;
}

/* IMAGE CARDS */

.image-card{
background-size:cover;
background-position:center;
color:white;
display:flex;
flex-direction:column;

min-height:250px;
}

.image1{
    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),
        url("images/flexible.png");
    background-size: cover;
    background-position: center;
}

.image2{
    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),
        url("images/ai-powered.png");
    background-size: cover;
    background-position: center;
}

/* GRID SPAN */

.span2{
grid-column:span 1;
}

.wide{
grid-column:span 1;
}

/* BOTTOM ROW */

.bottom{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
margin-top:20px;
}

/* RESPONSIVE */

@media(max-width:900px){

.header{
flex-direction:column;
}

.grid{
grid-template-columns:1fr;
}

.bottom{
grid-template-columns:1fr;
}

}
* { margin: 0; padding: 0; box-sizing: border-box; }

body19 {
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: poppins;
  gap: 16px;
}

/* ── MARQUEE ROWS ── */
.marquee-row { width: 100%; overflow: hidden; }

/* ROW 1 — Right to Left */
.marquee-track-rtl {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollRTL 40s linear infinite;
  padding-top: 20px;
  padding-bottom: 20px;
}
.marquee-track-rtl:hover { animation-play-state: paused; }

@keyframes scrollRTL {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ROW 2 — Left to Right */
.marquee-track-ltr {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLTR 40s linear infinite;
  padding-top: 20px;
  padding-bottom: 20px;
}
.marquee-track-ltr:hover { animation-play-state: paused; }

@keyframes scrollLTR {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── BASE CARD ── */
.card18 {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
}

.card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 0;
  position: relative;
}

/* ── GIF SCREEN ── */
.gif-screen {
  <!-- width: 180px; -->
  <!-- height: 180px; -->
  width:300px;
  height:300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: none;
  background: transparent;
}

.gif-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

/* removed ::after shimmer line */
/* Add to your existing <style> block */
.trust-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; width: 100%; }
.trust-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(0,213,164,0.2); border-radius: 12px; padding: 13px 14px; display: flex; align-items: center; gap: 10px; opacity: 0; transform: translateY(16px); animation: cardIn 0.5s ease forwards; transition: all 0.25s ease; }
.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.22s; }
.trust-card:nth-child(3) { animation-delay: 0.34s; }
.trust-card:nth-child(4) { animation-delay: 0.46s; }
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.trust-card:hover { background: rgba(0,213,164,0.1); border-color: rgba(0,213,164,0.45); transform: translateY(-2px); }
.trust-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(0,213,164,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 17px; height: 17px; }
.trust-label { font-size: 12px; font-weight: 600; color: #00d5a4; letter-spacing: 0.3px; line-height: 1.2; }
.trust-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; line-height: 1.3; }
/* Add to your stylesheet */
.gif-screen { position: relative; }

.tags-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 10;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #000;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 213, 164, 0.35);
  color: #00d5a4;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateX(-10px);
  animation: tagIn 0.4s ease forwards;
}

.tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00d5a4;
  flex-shrink: 0;
}

.tag:nth-child(1) { animation-delay: 0.05s; }
.tag:nth-child(2) { animation-delay: 0.15s; }
.tag:nth-child(3) { animation-delay: 0.25s; }
.tag:nth-child(4) { animation-delay: 0.35s; }
.tag:nth-child(5) { animation-delay: 0.45s; }

@keyframes tagIn {
  to { opacity: 1; transform: translateX(0); }
}
.wi video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container20{
 background:linear-gradient(135deg,#2a0a53,#7a4cc7);
      max-width: -webkit-fill-available;
    margin:auto;
    padding:20px;
}

.heading13{
    text-align:center;
    font-family:'Playfair Display',serif;
    font-size:56px;
    font-weight:700;
    margin-bottom:40px;
}

.story-wrapper13{
    display:flex;
    gap:40px;
    justify-content:center;
    align-items:center;
}

.image-box{
   position:relative;
    border-radius:18px;
    overflow:hidden;
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:18px;
}
.image-tag{
    position:absolute;
    top:0px;
    right: 0;
    z-index:10;

    padding:8px 18px;

    font-size:16px;
    font-weight:700;

    color:#fff;

    border-radius:30px;

   
    letter-spacing:1px;
}

.before-tag{
    background:#000;
}

.after-tag{
    background:#000;
    color:#fff;
}
@media(max-width:991px){

.story-wrapper{
    flex-direction:column;
}

.image-box{
    width:100%;
    
}

}

.right-content{
    flex:1;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px 60px;
}

.block h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.block p{
    font-size:16px;
    line-height:1.7;
    color:#fff;
}

.block ul{
    margin-top:12px;
    padding-left:20px;
}

.block ul li{
    margin-bottom:6px;
}

.divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.25);
    margin:20px 0;
}

.navigation{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:50px;
}

.nav-btn{
    background:#16d7c0;
    border:none;
    color:#000;
    padding:15px 35px;
    border-radius:40px;
    font-size:22px;
    cursor:pointer;
    font-weight:600;
}

.view-btn{
    border:none;
    color:#fff;
    font-size:25px;
    font-weight:600;
    padding:15px 35px;
    border-radius:40px;
    cursor:pointer;
    background:linear-gradient(90deg,#a55cff,#ffae42);
}

@media(max-width:992px){

.story-wrapper{
    flex-direction:column;
}

.left-image{
    width:100%;
}

.grid{
    grid-template-columns:1fr;
}

.heading{
    font-size:42px;
}
}

</style>
<style>
.testimonial-section1{
    padding-bottom:40px;
       background: black;
    overflow:hidden;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#0d2d62;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.testimonial-slider1{
    overflow:hidden;
    position:relative;
}

.testimonial-track1{
    display:flex;
    width:max-content;
    animation: scrollTestimonials 60s linear infinite;
}

.testimonial-track1:hover{
    animation-play-state: paused;
}

.testimonial-card{
    width:320px;
    min-width:320px;
    margin:0 15px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    text-align:center;
}

.testimonial-card img{
    width:180px;
   height:60px;
    object-fit:contain;
    margin-bottom:20px;
}

.testimonial-card h4{
    font-size:20px;
    color:#0d2d62;
    margin-bottom:12px;
}

.testimonial-card p{
    color:#555;
    line-height:1.7;
    font-size:15px;
}

@keyframes scrollTestimonials{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Mobile */
@media(max-width:768px){
    .testimonial-card{
        width:280px;
        min-width:280px;
    }

    .section-title h2{
        font-size:30px;
    }
}
/* FAQ */
.faq-sec{background:#fff;padding:30px 40px;}
.faq-sec h2{font-size:clamp(32px,4vw,48px);color:#1a1a2e;margin-bottom:8px;letter-spacing:1px;}
.faq-sec .sec-pill{color:var(--blue);}
.faq-list{margin-top:36px;max-width:860px;margin-left:auto;margin-right:auto;}
.faq-item{border-bottom:1px solid #e0e0d8;overflow:hidden;}
.faq-item:first-child{}
.faq-btn{width:100%;background:none;border:none;text-align:left;padding:22px 0;display:flex;align-items:center;justify-content:space-between;cursor:pointer;gap:16px;}
.faq-btn-text{font-size:15px;color:#1a1a2e;line-height:1.4;}
.faq-icon{flex-shrink:0;width:28px;height:28px;border-radius:50%;    background: linear-gradient(135deg, #1A0533, #7F4DCB);color:#fff;display:flex;align-items:center;justify-content:center;font-size:18px;transition:transform 0.3s,background 0.3s;}
.faq-item.open .faq-icon{transform:rotate(45deg);background:#00d5a4;}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease;}
.faq-item.open .faq-answer{max-height:300px;}
.faq-answer p{font-size:15px;color:#555;line-height:1.75;padding-bottom:20px;}
/* Two Column Layout */
.faq-columns {
  display: flex;
  gap: 40px;
  margin-top: 0px;
  <!-- max-width: 1100px; -->
  margin-left: auto;
  margin-right: auto;
}

.faq-columns .faq-list {
margin-top: 0px;
  flex: 1;
}

/* Responsive (Mobile View → Single Column) */
@media (max-width: 768px) {
  .faq-columns {
          gap: 0px;
    flex-direction: column;
  }
}
 .btn-book-demo{
    background:#00d5a4;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.btn-book-demo:hover{
    opacity:.9;
}

.mbg{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);
    z-index:99999;
    align-items:center;
    justify-content:center;
}

.mbg.on{
    display:flex;
}

.modal{
    background:#7b4ace;
    width:90%;
    max-width:460px;
    padding:40px;
    border-radius:20px;
    position:relative;
    animation:popup .3s ease;
}

@keyframes popup{
    from{
        transform:translateY(30px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

.mx{
    position:absolute;
    right:15px;
    top:15px;
    width:34px;
    height:34px;
    border:none;
    border-radius:8px;
    background:rgba(255,255,255,.15);
    color:#fff;
    cursor:pointer;
    font-size:18px;
}

.modal h3{
    color:#fff;
    margin-bottom:10px;
    font-size:28px;
}

.modal h3 em{
    color:#00d5a4;
    font-style:italic;
}

.msub{
    color:#fff;
    margin-bottom:25px;
}

.mf{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mf input,
.mf select{
    width:100%;
    padding:14px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.08);
    color:#fff;
    outline:none;
}

.mf input::placeholder{
    color:#ddd;
}

.mf select option{
    color:#fff;
}

.btn-submit{
    background:#00d5a4;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    font-weight:600;
}

.btn-submit:hover{
    opacity:.9;
}
/* ════════════════════════════════════════════════
   HAMBURGER BUTTON (hidden on desktop)
════════════════════════════════════════════════ */
.table-scroll-hint { display: none; }
.mobile-menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
  transition: background 0.2s; margin-left: auto;
  z-index: 9100; position: relative;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.08); }
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════
   MOBILE NAV DRAWER
════════════════════════════════════════════════ */
.mobile-nav-drawer {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(5,0,15,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 8999; overflow-y: auto;
  max-height: calc(100vh - 72px);
}
.mobile-nav-drawer.open { display: block; }
.mobile-nav-list { list-style: none; padding: 16px 0 8px; margin: 0; }
.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav-list li:last-child { border-bottom: none; }
.mobile-nav-list a,
.mobile-nav-list button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 24px;
  font-family: 'Inter',sans-serif; font-size: 16px; font-weight: 500;
  color: #fff; background: none; border: none;
  cursor: pointer; text-decoration: none; text-align: left;
}
.mobile-nav-list a:active,
.mobile-nav-list button:active { background: rgba(255,255,255,0.05); }
.mobile-nav-accordion { display: none; padding: 8px 24px 16px; background: rgba(255,255,255,0.02); }
.mobile-nav-accordion.open { display: block; }
.mobile-nav-accordion a {
  display: block; padding: 10px 0; font-size: 14px;
  color: rgba(255,255,255,0.55); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  justify-content: flex-start; width: 100%;
}
.mobile-nav-accordion a:last-child { border-bottom: none; }
.mobile-nav-accordion a:active { color: #00d5a4; }
.mob-chevron { font-size: 11px; transition: transform 0.2s; color: rgba(255,255,255,0.35); }
.mob-chevron.open { transform: rotate(180deg); }

/* ════════════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVE — max-width: 768px
   MasterRV Homepage (index.html)
════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  .mobile-menu-btn { display: flex !important; }
  .nav-links { display: none !important; }
  nav { padding: 0 16px !important; gap: 0 !important; height: 64px !important; }
  .logo img { width: 130px !important; height: auto !important; }

  /* ── GLOBAL OVERFLOW GUARD ── */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }

  /* ════════════════ HERO ════════════════ */
  .hero-container { min-height: auto !important; }
  .hero-content { padding: 90px 20px 30px !important; }
  .hero-content h1 { font-size: 30px !important; margin-bottom: 14px !important; }
  .hero-content p { font-size: 14px !important; }
  .trust-cards { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .trust-label { font-size: 11px !important; }

  /* ════════════════ MARQUEE / GIF CARDS ════════════════ */
  .gif-screen { width: 220px !important; height: 220px !important; }
  .card18 .gif-screen[style*="420px"] { height: 260px !important; }

  /* ════════════════ ABOUT SECTION ════════════════ */
  .about-sec {         padding-top: 0px !important;padding-bottom: 0px !important; }
  .vid-box video { margin-top: 24px !important; }

  /* ════════════════ WORK SECTION ════════════════ */
  .work-sec { padding: 60px 20px !important; }
  .work-hd { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; margin-bottom: 28px !important; }
  .work-hd h2 { font-size: 26px !important; }

  /* ════════════════ COMPARISON TABLE (wrapper1 / table1) ════════════════ */
  .pricing-compare-sec { padding: 32px 20px !important; }
  .table-scroll-hint { display: block !important; text-align: center; font-size: 12px; font-weight: 600; color: #7B5EA7; letter-spacing: 0.3px; margin-bottom: 10px; }
  .wrapper1 { overflow-x: auto !important; justify-content: flex-start !important; -webkit-overflow-scrolling: touch; padding-bottom: 8px !important; scroll-snap-type: x proximity; }
  .table1 { min-width: 640px !important; }
  .table1 > div { scroll-snap-align: start; }

  /* ════════════════ HEADER3 / "EASY & HASSLE-FREE" INTRO (before motion cards marquee) ════════════════ */
  .header3 { flex-direction: column !important; padding: 32px 20px 0 !important; gap: 16px !important; }
  .header-left3, .header-right { max-width: 100% !important; }
  .headline { font-size: 24px !important;        margin-bottom: 0px; }
  .header-right p { font-size: 13.5px !important;        padding-bottom: 20px; }

  /* ════════════════ "WHAT KIND OF WORK" (container7 / header2 / grid7) ════════════════ */
  .container7 { padding: 32px 20px !important; }
  .header2 { flex-direction: column !important; gap: 16px !important; margin-bottom: 24px !important; }
  .header2 h2 { font-size: 30px !important; }
  .header2 p { max-width: 100% !important; font-size: 13.5px !important; }
  .grid7 { grid-template-columns: 1fr !important; gap: 16px !important; }
  .bottom { grid-template-columns: 1fr !important; gap: 16px !important; }
  .card7 { padding: 22px !important; }
  .image-card { min-height: 180px !important; }

  /* ════════════════ HOW IT WORKS (section5 / container / left / right / timeline) ════════════════ */
  .section5 .container { margin-top: 0 !important; }
  .section5 .left { padding-top: 40px !important; padding: 40px 20px 20px !important; }
  .section5 .left h2 { font-size: 34px !important; }
  .section5 .right { padding: 0 20px 20px !important; }
  .timeline { margin-left: 0 !important; }
  .step-content h3 { font-size: 18px !important; }
  .step-content p { font-size: 14px !important; }

  /* ════════════════ DIFFERENCE / SECTION1 (already partially responsive — refine) ════════════════ */
  .difference-sec { padding: 40px 20px !important; }
  .diff-heading { margin-bottom: 40px !important; }
  .section1 .left, .section1 .right { padding: 32px 20px !important; }
  .section1 h2 { font-size: 30px !important; margin: 20px 0 !important; }

  /* ════════════════ BEFORE/AFTER (container20 / story-wrapper13) ════════════════ */
  .heading13 { font-size: 30px !important; }
  .story-wrapper13 { flex-direction: column !important; gap: 20px !important; }
  .story-wrapper13 .image-box {  }
  .navigation { flex-wrap: wrap !important; gap: 12px !important; margin-top: 28px !important; }
  .nav-btn, .view-btn { padding: 12px 20px !important; font-size: 15px !important; }

  /* ════════════════ TESTIMONIALS ════════════════ */
  .testimonial-section1 .title { font-size: 26px !important; }

  /* ════════════════ FINAL CTA (hero5) ════════════════ */
  .hero5 { height: auto !important; min-height: 60vh !important; padding: 60px 20px !important; }
  .hero5 h2 { font-size: 30px !important; }

  /* ════════════════ FAQ ════════════════ */
  .faq-sec { padding: 40px 20px !important; }
  .faq-btn-text { font-size: 14px !important; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 25px !important; }
  .header2 h2 { font-size: 24px !important; }
  .section5 .left h2 { font-size: 27px !important; }
  .heading13 { font-size: 24px !important; }
  .hero5 h2 { font-size: 24px !important; }
  .gif-screen { width: 170px !important; height: 170px !important; }
  .trust-cards { grid-template-columns: 1fr !important; }
}
.new-display{
display:block;
} 
@media(max-width:768px) { 
.mob-display{
display:none !important;
}
.new-left{
left:230px !important;
}
.new-bottom{
bottom:70px !important;
}
@media(max-width:768px) { 
.mob-left{
left:135px !important;
}
@media(max-width:768px) { 
.mob-left{
bottom:60px !important;
}