/* ============================================================
   FULL CLEAN STYLESHEET - NAVBAR, MOBILE MENU, HERO, EFFECTS
   - Updated: camera image scaling, beam, ghost parallax
============================================================ */

/* ---------- GLOBAL RESET ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", Arial, sans-serif;
  /* background: linear-gradient(180deg, #02060a 0%, #051016 100%); */
  color: #e7faff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- BEAM CURSOR (desktop only) ---------- */
.beam-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  background: radial-gradient(circle at 30% 30%, #8ff7ff, #22d5ea 30%, #00767a 60%, #001516);
  box-shadow: 0 0 8px #22d5ea, 0 0 20px #22d5ea66, 0 0 40px #22d5ea33;
  transform: translate(-50%, -50%);
  transition: transform .04s linear;
  will-change: transform;
}

/* ---------- NAVBAR ---------- */
/* ================================
   RESET (SAFE)
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================================
   HEADER & NAVBAR
================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.48),
      rgba(6, 32, 36, 0.42),
      rgba(10, 162, 184, 0.06));
  border-bottom: 1px solid rgba(10, 162, 184, 0.08);
  backdrop-filter: blur(12px);
  position: relative;
}

.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 14px;
  background: linear-gradient(180deg,
      rgba(10, 162, 184, 0.12),
      transparent);
  filter: blur(10px);
}

/* ================================
   BRAND
================================ */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  width: 180px;
  height: 120px;
  object-fit: contain;
}

/* ================================
   DESKTOP NAV LINKS
================================ */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 18px;
  color: #e7faff;
  padding: 8px 6px;
  text-decoration: none;
  transition: color .18s, transform .12s;
}

.nav-link:hover {
  color: #bffcff;
  transform: translateY(-2px);
}

/* ================================
   MAIN DROPDOWN
================================ */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(5, 15, 18, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(10, 162, 184, 0.05);
  display: none;
  flex-direction: column;
  z-index: 1500;
}

/* hover open */
.dropdown:hover>.dropdown-menu {
  display: flex;
}

/* dropdown links */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  color: #dffcff;
  text-decoration: none;
  border-radius: 8px;
  transition: background .14s ease, transform .12s ease, color .14s;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg,
      rgba(34, 213, 234, 0.07),
      rgba(160, 245, 255, 0.03));
  transform: translateX(6px);
  color: #00f0ff;
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.06);
}

/* ================================
   SUB DROPDOWN (FIXED HOVER)
================================ */
/* ================================
   SUB DROPDOWN (RIGHT SIDE – FIXED)
================================ */
.dropdown-sub {
  position: relative;
}

/* Right-side submenu */
.dropdown-sub-menu {
  position: absolute;
  top: 0;
  right: 100%;
  margin-left: 10px;
  min-width: 200px;

  background: rgba(5, 15, 18, 0.94);
  border-radius: 10px;
  padding: 10px;

  backdrop-filter: blur(14px);
  border: 1px solid rgba(10, 162, 184, 0.06);

  display: none;
  flex-direction: column;
  z-index: 1600;
}

/* KEEP submenu open (no hover gap) */
.dropdown-sub:hover>.dropdown-sub-menu {
  display: flex;
}

/* sub links */
.dropdown-sub-menu a {
  padding: 8px 14px;
  font-size: 14px;
  color: #dffcff;
  text-decoration: none;
  border-radius: 8px;
  transition: background .14s, transform .12s, color .14s;
}

.dropdown-sub-menu a:hover {
  background: rgba(34, 213, 234, 0.08);
  transform: translateX(6px);
  color: #00f0ff;
}


/* ================================
   HAMBURGER
================================ */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: #cfeff2;
  border-radius: 2px;
  margin: 3px 0;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ================================
   MOBILE MENU OVERLAY
================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 10, 0.72);
  backdrop-filter: blur(26px);
  display: none;
  opacity: 0;
  transform: translateY(-8%);
  transition: opacity .35s ease, transform .35s ease;
  z-index: 5000;
}

.mobile-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-close {
  position: absolute;
  right: 28px;
  top: 22px;
  font-size: 42px;
  background: none;
  border: none;
  color: #e7ffff;
  cursor: pointer;
}

/* ================================
   MOBILE CONTENT
================================ */
.mobile-content {
  margin-top: 90px;
  height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 20px 32px 120px;
}

/* mobile links */
.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-size: 22px;
  padding: 14px 12px;
  border-radius: 10px;
  color: #dffcff;
  text-decoration: none;
}

/* accordion */
.accordion-toggle {
  font-size: 22px;
  padding: 14px 12px;
  background: none;
  border: none;
  color: #dffcff;
  text-align: left;
  cursor: pointer;
}

.accordion-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-left: 12px;
  margin-top: 10px;
}

.accordion-panel.show {
  display: flex;
}

.accordion-panel a {
  font-size: 19px;
  padding: 12px;
  border-radius: 10px;
  color: #e2ffff;
  text-decoration: none;
}


/* ---------- HERO (positioned after nav) ---------- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8ffff;
}

/* background subtle layers */
.hero-bg-layer {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: radial-gradient(circle at center, rgba(0, 200, 255, 0.08), transparent 70%);
  z-index: -3;
  transform: translateZ(0);
}

.layer-1 {
  animation: float1 20s infinite linear;
  opacity: 0.45;
}

.layer-2 {
  animation: float2 26s infinite linear;
  opacity: 0.22;
}

/* glow behind text */
.hero-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.18), rgba(0, 80, 100, 0.12), transparent 70%);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(90px);
  z-index: -2;
}

/* hero content */
.hero-content {
  max-width: 980px;
  text-align: center;
  padding: 0 20px;
  z-index: 5;
}

.hero-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.4;
  /* letter-spacing: -1px; */
  margin-bottom: 14px;
}

.gradient-text {
  background: linear-gradient(90deg, #00f0ff, #4effdf, #e8ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientMove 4s linear infinite alternate;
  display: inline-block;
}

@keyframes gradientMove {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 100%
  }
}

.hero-subtext {
  margin: 18px auto;
  max-width: 760px;
  font-size: 18px;
  opacity: 0.92;
  line-height: 1.6;
}

/* CTA */
.hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  justify-content: center;
  z-index: 6;
}

.btn-primary {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 12px;
  color: #001416;
  background: linear-gradient(100deg, #00eaff, #00bcd4);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(0, 244, 255, 0.4);
  transition: transform .18s, box-shadow .18s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 244, 255, 0.6);
}

.btn-secondary {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 12px;
  color: #b6ffff;
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 40, 50, 0.26);
  text-decoration: none;
  font-weight: 500;
  transition: transform .18s, background .18s;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(0, 255, 255, 0.06);
  color: #00eaff;
}

/* floating animations */
@keyframes float1 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, -50px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes float2 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-60px, 40px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ---------- CAMERA LENS IMAGE (bigger responsive) ---------- */
.lens-layer {
  position: absolute;
  right: 0;
  top: 8%;
  width: 60%;
  height: 84%;
  overflow: visible;
  z-index: -4;
  pointer-events: none;
  display: block;
}

.lens-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: drop-shadow(0 0 60px rgba(0, 255, 255, 0.14));
  transform: translateZ(0);
  transition: transform .25s linear, opacity .25s;
  will-change: transform, opacity;
}

/* make camera larger on very large screens */
@media(min-width:1400px) {
  .lens-layer {
    width: 68%;
    height: 88%;
    top: 6%;
  }

  .lens-img {
    opacity: 0.34;
  }
}

/* mobile adjustments: lens takes more visual space and is center-right */
@media(max-width:900px) {
  .lens-layer {
    width: 92%;
    height: 86%;
    top: 4%;
    right: -6%;
    opacity: 1;
  }

  .lens-img {
    opacity: 0.42;
    transform-origin: center right;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtext {
    font-size: 15px;
    max-width: 92%;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* ===========================
   FUTURISTIC GLOW HOVER (NO UNDERLINE)
=========================== */

.nav-links .nav-link {
  color: #e7faff;
  font-weight: 500;
  transition:
    color 0.28s ease,
    transform 0.25s ease,
    text-shadow 0.35s ease,
    letter-spacing 0.25s ease;
}

/* Hover Effect */
.nav-links .nav-link:hover {
  color: #00eaff;
  transform: translateY(-2px);
  letter-spacing: 1px;

  text-shadow:
    0 0 6px rgba(0, 255, 255, 0.45),
    0 0 14px rgba(0, 255, 255, 0.35),
    0 0 28px rgba(0, 255, 255, 0.18);
}

/* (Optional) Slight active state memory */
.nav-links .nav-link.active {
  color: #00eaff;
  text-shadow:
    0 0 6px rgba(0, 255, 255, 0.4),
    0 0 14px rgba(0, 255, 255, 0.25);
}

/* ---------- GHOST PARALLAX TEXT (EASEIN STUDIO across page) ---------- */
.ghost-text {
  position: fixed;
  /* fixed so it persists across sections */
  left: 50%;
  top: 60%;
  transform: translate(-50%, 0);
  font-size: 160px;
  font-weight: 900;
  letter-spacing: -6px;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  z-index: -6;
  pointer-events: none;
  transition: transform .08s linear;
  will-change: transform;
}
.ghost-text-1 {
  position: fixed;
  /* fixed so it persists across sections */
  left: 50%;
  top: 60%;
  transform: translate(-50%, 0);
  font-size: 150px;
  font-weight: 900;
  letter-spacing: -6px;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  z-index: -6;
  pointer-events: none;
  transition: transform .08s linear;
  will-change: transform;
}

/* reduce huge ghost on mobile */
@media(max-width:900px) {
  .ghost-text {
    font-size: 80px;
    top: 62%;
    opacity: 0.035;
  }
}

/* ---------- LIGHT BEAM (top-left falling beam + trail) ---------- */
/* we'll create a container that animates along scroll; initially it falls from top-left */
.light-beam {
  position: fixed;
  left: 6%;
  top: 0%;
  width: 28vw;
  height: 36vh;
  transform-origin: top left;
  pointer-events: none;
  z-index: 40;
  mix-blend-mode: screen;
  transition: opacity .2s linear;
  will-change: transform, width, height, opacity;
}

/* beam shape: use pseudo-element with gradient */
.light-beam::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.28) 0%, rgba(0, 230, 255, 0.18) 20%, rgba(0, 120, 140, 0.06) 50%, transparent 90%);
  filter: blur(12px);
  transform: skewY(-12deg);
  border-radius: 12px;
  opacity: 1;
  transition: all .24s ease;
}

/* trail (thin) when collapsed */
.light-trail {
  position: fixed;
  left: 10%;
  top: 8%;
  width: 8px;
  height: 16vh;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.9), rgba(0, 200, 220, 0.18));
  filter: blur(8px);
  border-radius: 999px;
  z-index: 38;
  pointer-events: none;
  transform-origin: top left;
  opacity: 0;
  transition: transform .16s linear, opacity .16s linear, height .2s linear;
}

.light-trail {
  --rgb-offset: 0px;
}

.light-trail::before {
  transform: translateX(calc(var(--rgb-offset) * -1));
}

.light-trail::after {
  transform: translateX(var(--rgb-offset));
}

/* RGB FADE LAYERS */
.light-trail::before,
.light-trail::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .25s linear, transform .25s linear;
  pointer-events: none;
}

.light-trail::before {
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.8), transparent);
}

.light-trail::after {
  background: linear-gradient(180deg, rgba(0, 150, 255, 0.7), transparent);
}

/* trail accent glow */
.light-trail::after {
  content: "";
  position: absolute;
  left: -14px;
  top: -8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.6), transparent 40%);
  filter: blur(6px);
  opacity: 0.65;
}

/* small helper for performance */
.will-change-transform {
  will-change: transform, opacity, width, height;
}

/* ---------- accessibility and small adjustments ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/* ---------- END ---------- */
/* ================================
   BRAND REEL — PERFORMANCE OPTIMIZED
================================ */

.brand-reel {
  width: 100%;
  padding: 80px 0;
  background: #02070b;
  display: flex;
  justify-content: center;
}

.brand-reel-inner {
  width: 90%;
  max-width: 1400px;

  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  align-items: center;
}

/* ----- LEFT TEXT ----- */

.brand-reel-kicker {
  font-size: 14px;
  text-transform: uppercase;
  color: #00eaff;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.brand-reel-title {
  font-size: 32px;
  font-weight: 700;
  color: #eaffff;
  margin-bottom: 12px;
}

.brand-reel-text {
  font-size: 15px;
  color: #c6f4ff;
  line-height: 1.7;
}

/* ----- RIGHT VIDEO AREA ----- */

.brand-reel-screen {
  width: 95%;
  aspect-ratio: 16/9;

  background: #000;
  border-radius: 12px;
  overflow: hidden;

  border: 1px solid rgba(0, 255, 255, 0.18);
}

/* VIDEO — no animation, no filters, GPU friendly */
.brand-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

@media (max-width: 1024px) {
  .brand-reel-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-reel-title {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .brand-reel {
    margin-top: -80px;
    padding: 50px 0;
  }

  .brand-reel-inner {
    width: 92%;
  }

  .brand-reel-title {
    font-size: 20px;
  }

  .brand-reel-text {
    font-size: 14px;
  }
}

/* ========================= WHY CHOOSE - HOLOGRAM PANELS (Option A) ========================= */
.hologram-section {
  position: relative;
  padding: 120px 20px;
  color: #eafcff;
  overflow: hidden;
  /* keep the ghost text visible behind */
}

.hologram-section .holo-texture {
  position: absolute;
  inset: 0;
  background-image: url('/mnt/data/7e3038e5-e994-4615-bf92-ba6ba49a93c3.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.08;
  /* subtle texture — adjust 0.04–0.12 */
  mix-blend-mode: screen;
  filter: grayscale(0.35) contrast(1.05) saturate(0.9);
  z-index: 0;
  pointer-events: none;
}

/* scanning grid overlay */
.hologram-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0 2px, rgba(0, 255, 255, 0.012) 2px),
    linear-gradient(90deg, transparent 0 2px, rgba(0, 255, 255, 0.012) 2px);
  background-size: 100% 60px, 60px 100%;
  opacity: 0.22;
  z-index: 1;
  transform-origin: center;
  pointer-events: none;
  filter: blur(0.6px);
}

/* soft vignette */
.hologram-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.02), rgba(0, 0, 0, 0.55));
  z-index: 1;
  pointer-events: none;
}

/* orbs */
.holo-orbs {
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.holo-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.45;
  mix-blend-mode: screen;
}

/* positions & sizes */
.holo-orbs .orb-1 {
  width: 220px;
  height: 220px;
  left: 6%;
  top: 8%;
  background: radial-gradient(circle, rgba(0, 235, 255, 0.26), rgba(0, 120, 140, 0.06));
}

.holo-orbs .orb-2 {
  width: 160px;
  height: 160px;
  right: 8%;
  top: 18%;
  background: radial-gradient(circle, rgba(120, 255, 200, 0.14), rgba(0, 80, 120, 0.04));
}

.holo-orbs .orb-3 {
  width: 120px;
  height: 120px;
  left: 44%;
  top: 40%;
  background: radial-gradient(circle, rgba(180, 240, 255, 0.12), rgba(0, 100, 120, 0.04));
}

/* container */
.why-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.why-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -1px;
  text-transform: none;
}

.why-desc {
  max-width: 820px;
  margin: 0 auto 40px;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

/* grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 18px;
}

/* card base */
.why-card {
  background: linear-gradient(180deg, rgba(3, 10, 12, 0.48), rgba(6, 18, 20, 0.26));
  border: 1px solid rgba(0, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  text-align: left;
  color: #e6fdff;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 30px rgba(0, 200, 255, 0.02);
  transition: transform .28s cubic-bezier(.2, .9, .26, 1), box-shadow .28s, border-color .28s;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
}

/* hologram accent border */
.why-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.06), rgba(120, 255, 200, 0.02), rgba(0, 150, 255, 0.04));
  mix-blend-mode: screen;
  opacity: 0.8;
  z-index: -1;
}

/* icon */
.card-icon {
  font-size: 36px;
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
}

/* title & desc */
.card-title {
  font-size: 15px;
  font-weight: 700;
}

.card-desc {
  font-size: 13px;
  opacity: 0.88;
  margin-top: auto;
}

/* hover lift & neon edge */
.why-card:hover {
  transform: translateY(-12px) rotateX(3deg) rotateY(2deg);
  box-shadow: 0 18px 60px rgba(0, 220, 255, 0.12);
  border-color: rgba(0, 255, 255, 0.12);
}

/* reveal animation (used by JS) */
.why-card.is-visible {
  transform: translateY(0) rotateX(0) rotateY(0);
  opacity: 1;
  transition: transform .6s cubic-bezier(.2, .9, .26, 1), opacity .6s;
}

.why-card {
  opacity: 0;
  transform: translateY(18px);
}

/* make cards bigger on small screens */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .why-title {
    font-size: 34px;
  }

  .why-desc {
    font-size: 16px;
    max-width: 94%;
  }

  .holo-orbs .orb-1 {
    left: 2%;
    top: 4%;
  }

  .holo-orbs .orb-2 {
    right: 6%;
    top: 12%;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 120px;
    padding: 20px;
  }

  .why-title {
    font-size: 28px;
  }

  .holo-orbs {
    display: none;
  }
}

/* small accessibility tweak - make icons larger on touch devices */
@media (pointer: coarse) {
  .card-icon {
    font-size: 44px;
  }
}

/* ============================================================
   OUR PROCESS — 3-column split layout
============================================================ */

.process-section {
  width: 100%;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.process-split-sub {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.85;
  margin-top: -40px;
  margin-bottom: 40px;
  letter-spacing: 0.3px;
  text-align: left;
  max-width: 600px;

  /* Futuristic glow */
  text-shadow:
    0 0 6px rgba(0, 255, 255, 0.25),
    0 0 12px rgba(0, 255, 255, 0.12);

  /* Smooth fade-in */
  animation: fadeInSub 1.1s ease forwards;
}

@keyframes fadeInSub {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 0.85;
    transform: translateY(0);
  }
}

/* Mobile refinements */
@media(max-width: 900px) {
  .process-split-sub {
    font-size: 16px;
    margin-bottom: 32px;
    text-align: left;
    max-width: 100%;
  }
}

/* 3 Column Layout */
.process-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 140px 1fr 380px;
  align-items: start;
  gap: 40px;
  padding: 0 40px;
}

/* ===========================================
   LEFT COLUMN — AI BEAM
=========================================== */

.process-left {
  display: flex;
  justify-content: center;
  position: relative;
}

.process-beam {
  position: relative;
  width: 18px;
  height: 540px;
  margin-top: 90px;
}

/* Beam core */
.beam-core {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 255, 255, 0.28),
      rgba(0, 200, 235, 0.2),
      rgba(0, 140, 150, 0.1),
      rgba(0, 255, 255, 0.18));
  border-radius: 999px;
  box-shadow:
    0 0 22px rgba(0, 255, 255, 0.25),
    inset 0 0 18px rgba(255, 255, 255, 0.2);
}

/* Outer glow */
.beam-glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 120%;
  top: -10%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent 70%);
  filter: blur(28px);
}

/* Reflection */
.beam-reflection {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 255, 255, 0.08), transparent 80%);
  filter: blur(40px);
}

/* Container for particles + pulse */
.beam-actors {
  position: absolute;
  width: 18px;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

/* Particle dots */
.p-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #e3ffff, #00faff 40%, rgba(0, 100, 120, 0.2));
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* Pulse */
.beam-pulse {
  position: absolute;
  width: 8px;
  height: 14%;
  left: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #00eaff, rgba(0, 150, 170, 0.3));
  filter: blur(6px);
  opacity: 0;
}

/* Flare */
.pulse-flare {
  position: absolute;
  width: 26px;
  height: 10px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.9), transparent);
  opacity: 0;
  filter: blur(10px);
}

/* ===========================================
   CENTER COLUMN — PROCESS CARDS
=========================================== */

.process-center {
  position: relative;
}

.process-heading {
  font-size: 42px;
  font-weight: 700;
  color: #eaffff;
  margin-bottom: 50px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Smaller, compact futuristic cards */
.process-step {
  width: 80%;
  padding: 24px 28px;
  background: rgba(0, 40, 60, 0.35);
  border: 1px solid rgba(0, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
  transform: translateX(120px);
  opacity: 0;
  transition: 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-step:hover {
  transform: translateX(0) scale(1.05);
  box-shadow: 0 0 28px rgba(0, 255, 255, 0.25);
}

.process-step h3 {
  font-size: 20px;
  color: #dfffff;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 15px;
  color: #a7dce8;
  line-height: 1.6;
}

/* Visible state (activated by JS) */
.step-visible {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

/* ===========================================
   RIGHT COLUMN — AI BRAIN
=========================================== */
/* ================================
   PROCESS SECTION — RIGHT IMAGE FIX
=================================== */

/* ============================================================
   AI Right Image – SUBTLE (Low Glow + Low Opacity)
============================================================ */
.process-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 60px;
  height: 100%;
}

.ai-brain {
  width: 500px;
  height: auto;
  object-fit: contain;

  /* NEW — reduced opacity */
  opacity: 0.58;

  display: block;
  position: relative;
  z-index: 5;

  /* VERY LIGHT glow (75% reduced) */
  filter:
    drop-shadow(0 0 8px rgba(0, 255, 255, 0.15)) drop-shadow(0 0 20px rgba(0, 180, 255, 0.12));

  /* MUCH SMOOTHER breathing */
  animation: brainBreath 6s ease-in-out infinite;
  transition: transform 0.2s linear;
  will-change: transform, filter;
}

/* Subtle breathing animation */
@keyframes brainBreath {
  0% {
    transform: scale(1);
    opacity: 0.55;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.10));
  }

  50% {
    transform: scale(1.03);
    /* reduced from 1.06 to 1.03 */
    opacity: 0.62;
    filter:
      drop-shadow(0 0 12px rgba(0, 255, 255, 0.18)) drop-shadow(0 0 24px rgba(0, 200, 255, 0.10));
  }

  100% {
    transform: scale(1);
    opacity: 0.55;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.10));
  }
}

/* MOBILE – remove even more glow */
@media (max-width: 900px) {
  .ai-brain {
    width: 75%;
    opacity: 0.50;
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.10));
  }

  .process-right {
    padding-right: 0;
    justify-content: center;
  }
}


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

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: 120px 1fr;
  }

  .process-right {
    display: none;
  }
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .process-left {
    display: none;
  }

  .process-step {
    width: 100%;
    transform: translateX(40px);
  }

  .process-heading {
    font-size: 32px;
  }
}

@media (max-width: 500px) {
  .process-step {
    padding: 18px 20px;
  }

  .process-heading {
    font-size: 28px;
  }
}

/* ===============================================================
   OUR SERVICES — FUTURISTIC AI MATRIX SYSTEM (HIGH INTENSITY)
=============================================================== */

.services-matrix-section {
  position: relative;
  width: 100%;
  padding: 150px 0 40px;
  /* bottom padding = 40px as requested */
  overflow: hidden;
  background: #02070b;
  min-height: 100vh;
  /* section at least full viewport height */
}

/* All background layers share same size */
.services-bg-img,
#codeRain,
.matrix-bg,
.matrix-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* REAL BACKGROUND IMAGE */
.services-bg-img {
  background: url("head.jpg") center/cover no-repeat;
  opacity: 0.55;
  animation: bgFloat 14s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes bgFloat {
  0% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1.12) translateY(-20px);
  }
}

/* GRID LINES */
.matrix-grid {
  background:
    linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.12;
  animation: gridMove 40s linear infinite;
  z-index: 2;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-200px, -200px);
  }
}

/* DARK OVERLAY */
.matrix-bg {
  background: radial-gradient(circle at 50% 60%,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.9));
  z-index: 3;
}

/* MATRIX RAIN CANVAS */
#codeRain {
  z-index: 4;
  opacity: 0.28;
}

/* CONTENT WRAPPER */
.services-matrix-inner {
  position: relative;
  z-index: 10;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER */
.services-matrix-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-matrix-title {
  font-size: 44px;
  font-weight: 700;
  color: #eaffff;
  text-shadow: 0 0 22px rgba(0, 255, 255, 0.4);
}

.services-matrix-sub {
  max-width: 650px;
  margin: 14px auto 0;
  font-size: 17px;
  color: #c0f9ff;
  opacity: 0.85;
}

/* GRID OF CARDS */
.services-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

/* FUTURISTIC HOLOGRAM CARD */
.matrix-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 18px;
  background: rgba(0, 30, 40, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 255, 255, 0.25);
  cursor: pointer;
  transition: 0.32s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* scanline effect */
.matrix-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 255, 255, 0.08) 50%,
      transparent 100%);
  opacity: 0;
  animation: scan 4s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* text inside card */
.matrix-card h3 {
  text-align: center;
  color: #eaffff;
  font-size: 18px;
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

.matrix-card p {
  text-align: center;
  color: #c0edf9;
  font-size: 14px;
}

.click-btn {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
  color: gainsboro
}

/* hover / focus */
.matrix-card:hover,
.matrix-card:focus-visible {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(0, 255, 255, 0.7);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.25);
}

/* click feedback */
.matrix-card:active {
  transform: scale(0.96);
  filter: brightness(1.4);
}

/* CTA */
.services-matrix-cta {
  margin-top: 40px;
  /* then section padding-bottom gives final 40px below */
  margin-bottom: 0;
  text-align: center;
}

.matrix-btn {
  padding: 14px 38px;
  border-radius: 999px;
  background: linear-gradient(95deg, #00eaff, #00bcd4);
  text-decoration: none;
  color: #001518;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transition: 0.3s;
}

.matrix-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(0, 255, 255, 0.7);
}

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

@media (max-width: 700px) {
  .services-matrix-inner {
    padding: 0 20px;
  }

  .services-matrix-section {
    padding: 120px 0 40px;
  }

  .services-matrix-grid {
    grid-template-columns: 1fr;
  }

  .services-matrix-title {
    font-size: 32px;
  }

  .services-matrix-sub {
    font-size: 14px;
  }
}

/* ==========================================================
   OUR WORK SECTION (Easein Studio Theme)
========================================================== */

.work-section {
  position: relative;
  padding: 80px 0 90px;
}

.work-inner {
  width: 85%;
  max-width: 1300px;
  margin: 0 auto;
  /* left/right empty space */
}

/* ---------- Header ---------- */

.work-header {
  text-align: center;
  margin-bottom: 40px;
}

.work-kicker {
  font-size: 44px;
  font-weight: 700;
  color: #eaffff;
  text-shadow: 0 0 22px rgba(0, 255, 255, 0.4);
  opacity: 0.85;
  margin-bottom: 8px;
}

.work-heading {
  font-size: 18px;
  color: #eaffff;
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================
   DESKTOP / TABLET – 3D RING + PODIUM
========================================================== */

.work-stage-desktop {
  position: relative;
  height: 430px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 3D space shared by podium + ring */
  perspective: 1100px;
  transform-style: preserve-3d;
}

/* 3D ring container */
.work-slider {
  position: absolute;
  width: 360px;
  height: 200px;
  transform-style: preserve-3d;
  /* only rotation here */
  animation: workAutoRotate 34s linear infinite;
  /* slower rotation */
  /* no z-index – depth decided by translateZ */
}

/* auto rotation around Y */
@keyframes workAutoRotate {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

/* 3D items around the ring */
.work-item {
  position: absolute;
  inset: 0;
  transform:
    rotateY(calc((var(--position) - 1) * (360deg / var(--quantity)))) translateZ(460px);
  /* 🔧 ring radius – decrease to bring cards closer */
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* YouTube-style thumbnail 16:9 */
.work-item img {
  width: 260px;
  height: 146px;
  /* ~16:9 */
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(0, 255, 255, 0.35);
  background: #000;
  transition: transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s;
}

/* play overlay */
.work-play {
  top: 50px;
  position: absolute;
  font-size: 28px;
  color: #eaffff;
  text-shadow: 0 0 18px rgba(0, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

/* hover state */
.work-item:hover img {
  transform: translateY(-6px) scale(1.03);
  border-color: #00eaff;
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.5);
}

.work-item:hover .work-play {
  opacity: 1;
  transform: translateY(0);
}

/* Podium in center – sits at Z = 0 between front & back cards */

.work-podium {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: 700px;
  /* 🔧 Podium size control:
     increase this width (e.g. 750px) to make it bigger,
     decrease (e.g. 520px) to make it smaller */
  pointer-events: none;
  z-index: 0;
  /* let 3D depth control overlap */
}

.work-podium-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

/* glow under podium */
.work-podium-glow {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 130%;
  height: 40px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.7), transparent 55%);
  filter: blur(20px);
  opacity: 0.42;
}

/* ==========================================================
   MOBILE – PODIUM BG + HORIZONTAL CAROUSEL
========================================================== */

.work-stage-mobile {
  display: none;
  /* hidden on desktop, enabled on mobile via media query */
  position: relative;
  margin-top: 30px;
  padding: 26px 0 18px;
  border-radius: 20px;
  overflow: hidden;
  background: #02060a;
  background-image: url("podium-logo.png");
  /* 🔧 mobile podium background */
  background-size: cover;
  background-position: center bottom;
}

/* dark overlay for readability */
.work-mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.9));
  z-index: 1;
}

/* horizontal carousel */
.work-mobile-carousel {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  padding: 0 20px 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* hide scrollbar (Webkit) */
.work-mobile-carousel::-webkit-scrollbar {
  height: 0;
}

.work-mobile-card {
  flex: 0 0 78%;
  max-width: 320px;
  scroll-snap-align: center;
  border-radius: 16px;
  background: rgba(0, 22, 30, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.28);
  overflow: hidden;
  cursor: pointer;
  /* padding: 8px; */
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
  
}

.work-mobile-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  /* border-radius: 12px; */
  border-radius: 0;
}

.work-mobile-meta {
  padding: 0px 0px;
}

.work-mobile-meta p {
  font-size: 14px;
  color: #eaffff;
}

/* ---------- CTA ---------- */

.work-cta-wrap {
  margin-top: 40px;
  text-align: center;
}

.work-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  color: #001416;
  background: linear-gradient(110deg, #00eaff, #00bcd4);
  box-shadow: 0 0 26px rgba(0, 255, 255, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.work-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

/* ==========================================================
   RESPONSIVE — WORK SECTION
========================================================== */

@media (max-width: 900px) {

  .work-header {
    margin-bottom: 28px;
    padding: 0 20px;
  }

  .work-kicker {
    font-size: 24px;
    /* Reduced size */
    letter-spacing: 0.12em;
    text-shadow: 0 0 14px rgba(0, 255, 255, 0.35);
    margin-bottom: 6px;
  }

  .work-heading {
    font-size: 13px;
    max-width: 90%;
    line-height: 1.5;
    margin-top: 4px;
    opacity: 0.9;
  }
}

@media (max-width: 768px) {

  .work-inner {
    width: 90%;
  }

  .work-heading {
    font-size: 13px;
  }

  /* hide desktop 3D, show mobile carousel */
  .work-stage-desktop {
    display: none;
  }

  .work-stage-mobile {
    display: block;
  }
}

@media (max-width: 480px) {

  .work-kicker {
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  .work-heading {
    font-size: 13px;
    max-width: 92%;
  }

  .work-stage-mobile {
    padding: 22px 0 14px;
  }

  .work-mobile-card {
    flex: 0 0 82%;
  }
}

/*harshek*/
/* ===================== VIDEO MODAL STYLES ===================== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* .video-modal-box {
  width: 90%;
  max-width: 900px;
} */
.video-modal-box {
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* .video-modal video {
  width: 100%;
  border-radius: 12px;
} */
.video-modal video {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  background: black;
}


.video-modal-backdrop {
  position: absolute;
  inset: 0;
}

/*harshek end*/

/* ============================================================
   CTA BANNER – FUTURISTIC NEON STRIP + GHOST GLITCH
============================================================ */

.cta-banner {
  position: relative;
  width: 100%;
  padding: 110px 20px 110px;
  overflow: hidden;
  /* Use your global dark theme base */
  background: radial-gradient(circle at top, rgba(0, 40, 60, 0.4), transparent 60%);
}

/* ----- Ghost Background Text ----- */
.cta-ghost-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* parallax JS will adjust Y */
  font-size: 220px;
  font-weight: 900;
  letter-spacing: -6px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.04);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  filter: blur(1px);
  /* subtle global flicker */
  animation: ghostFlicker 4.5s infinite steps(1, end);
}

/* extra glitch slice layer */
.cta-ghost-text::before {
  content: "EASEIN STUDIO";
  position: absolute;
  inset: 0;
  color: rgba(0, 255, 255, 0.16);
  mix-blend-mode: screen;
  filter: blur(0.5px);
  clip-path: inset(0 0 50% 0);
  opacity: 0;
  pointer-events: none;
  animation: ghostGlitchSlices 2.8s infinite steps(1, end);
}

/* flicker */
@keyframes ghostFlicker {

  0%,
  70%,
  100% {
    opacity: 0.04;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  }

  71% {
    opacity: 0.09;
    text-shadow: 0 0 18px rgba(0, 255, 255, 0.28);
  }

  72% {
    opacity: 0.03;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.1);
  }

  80% {
    opacity: 0.07;
    text-shadow: 0 0 14px rgba(0, 255, 255, 0.2);
  }
}

/* glitch slices */
@keyframes ghostGlitchSlices {

  0%,
  60%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 50% 0);
  }

  61% {
    opacity: 0.4;
    clip-path: inset(0 0 35% 0);
    text-shadow: -6px 0 rgba(0, 255, 255, 0.6);
  }

  62% {
    opacity: 0.2;
    clip-path: inset(40% 0 0 0);
    text-shadow: 6px 0 rgba(0, 255, 255, 0.5);
  }

  63% {
    opacity: 0;
    clip-path: inset(0 0 50% 0);
    text-shadow: none;
  }

  75% {
    opacity: 0.35;
    clip-path: inset(10% 0 60% 0);
    text-shadow: -4px 0 rgba(0, 255, 255, 0.5);
  }

  76% {
    opacity: 0;
    clip-path: inset(0 0 50% 0);
    text-shadow: none;
  }
}

/* ----- Neon Strip ----- */
.cta-neon-strip {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 8px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, #00eaff, #00f6ff, transparent);
  filter: blur(6px);
  animation: neonPulse 3.5s infinite ease-in-out;
  z-index: 1;
}

@keyframes neonPulse {
  0% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.45;
  }
}

/* ----- Floating Particles ----- */
.cta-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.cta-particles::before,
.cta-particles::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle,
      rgba(0, 255, 255, 0.08) 0%,
      transparent 70%);
  animation: floatParticlesCTA 18s linear infinite;
}

.cta-particles::after {
  animation-duration: 24s;
  animation-direction: reverse;
  opacity: 0.4;
}

@keyframes floatParticlesCTA {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-60px, -40px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ----- Foreground Content ----- */
/* Foreground Content */
.cta-content {
  position: relative;
  z-index: 5;

  /* CENTER ITEMS PERFECTLY */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100%;
  text-align: center;
}


.cta-title {
  color: #e8ffff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-sub {
  color: #b9e8f2;
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* Button */
.cta-btn {
  padding: 12px 34px;
  background: linear-gradient(90deg, #00eaff, #0098ff);
  color: #001217;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
  transition: 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 200, 255, 0.7);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .cta-banner {
    padding: 90px 20px 90px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-sub {
    font-size: 16px;
  }

  .cta-ghost-text {
    font-size: 110px;
    opacity: 0.03;
  }

  .cta-neon-strip {
    height: 6px;
  }
}

/* ============================================================
   FAQ SECTION — Minimal Futuristic + AI Wave Background
============================================================ */

.faq-section {
  position: relative;
  width: 100%;
  padding: 140px 20px 130px;
  overflow: hidden;
  z-index: 4;
  background: radial-gradient(circle at top, rgba(0, 35, 50, 0.5), rgba(0, 12, 20, 0.9));
}


/* --------- ABSTRACT AI WAVES (ONLY EDGES) --------- */

.faq-wave {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

/* bottom wave */
.faq-wave--bottom {
  left: -10%;
  bottom: -80px;
  width: 140%;
  height: 260px;
  background: radial-gradient(ellipse at top,
      rgba(0, 255, 255, 0.18),
      rgba(0, 120, 160, 0.06),
      transparent 70%);
  opacity: 0.65;
  animation: faqWaveBottom 16s ease-in-out infinite alternate;
}

/* top wave */
.faq-wave--top {
  right: -20%;
  top: -140px;
  width: 80%;
  height: 220px;
  background: radial-gradient(ellipse at bottom,
      rgba(0, 255, 255, 0.16),
      rgba(0, 80, 130, 0.06),
      transparent 70%);
  opacity: 0.35;
  animation: faqWaveTop 20s ease-in-out infinite alternate;
}

@keyframes faqWaveBottom {
  0% {
    transform: translateX(0) skewX(-6deg);
  }

  100% {
    transform: translateX(40px) skewX(-2deg);
  }
}

@keyframes faqWaveTop {
  0% {
    transform: translateX(0) skewX(5deg);
  }

  100% {
    transform: translateX(-40px) skewX(0deg);
  }
}


/* --------- HEADING --------- */

.faq-heading {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #e8ffff;
  animation: faqHeadingSweep 6s ease-in-out infinite;
}

.faq-heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.5), rgba(0, 255, 255, 0));
  border-radius: 10px;
}

@keyframes faqHeadingSweep {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  }

  50% {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  }
}

/* --------- FAQ CONTAINER --------- */

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 20px;
  border-radius: 18px;
  background: rgba(0, 40, 50, 0.18);
  border: 1px solid rgba(0, 255, 255, 0.14);
  box-shadow:
    0 0 40px rgba(0, 255, 255, 0.08),
    inset 0 0 30px rgba(0, 255, 255, 0.05);
}

/* --------- FAQ ITEM --------- */

.faq-item {
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

/* left neon bar when open */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 3px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, #00eaff, rgba(0, 255, 255, 0.1));
  border-radius: 999px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-item.active {
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.18);
}

/* Question button */

.faq-question {
  width: 100%;
  padding: 20px 22px 20px 26px;
  background: none;
  border: none;
  color: #c7ffff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.faq-question:hover {
  background: rgba(0, 255, 255, 0.06);
  color: #00eaff;
}

/* Icon */

.faq-icon {
  font-size: 26px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #00f0ff;
}

/* Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px 0 26px;
}

.faq-answer p {
  padding: 14px 0 18px;
  color: #eaffff;
  line-height: 1.6;
  opacity: 0.9;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

/* --------- RESPONSIVE --------- */

@media (max-width: 820px) {
  .faq-ghost-text {
    font-size: 120px;
  }

  .faq-heading {
    font-size: 32px;
  }

  .faq-question {
    font-size: 18px;
  }
}
/* ===================== FOOTER ===================== */
.footer {
  background: url('cam footer.jpg') center right / cover no-repeat;
  padding: 60px 10px 30px 50px;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(0, 255, 255, 0.06);
  box-shadow: 0 -10px 40px rgba(0, 255, 255, 0.03);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  backdrop-filter: blur(4px);
  z-index: 1;
}

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

/* MAIN CONTAINER */
.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 120px;
  align-items: start;
}

/* LEFT COLUMN */
.footer-about-col {
  display: flex;
  flex-direction: column;
}

/* RIGHT WRAPPER (3 COLUMNS) */
.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

/* LOGO */
.footer-logo {
  width: 120px;
  margin-bottom: 10px;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.4));
}

/* ABOUT TEXT */
.footer-about {
  font-size: 18px;
  line-height: 1.6;
  color: #d3f4ff;
  max-width: 380px;
}

/* SOCIAL */
.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 22px;
  color: #baf8ff;
  transition: 0.25s;
  text-decoration: none;
}

.footer-social a:hover {
  color: #00eaff;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
  transform: translateY(-3px);
}

/* TITLES */
.footer-title {
  color: #eaffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #c9f8ff;
  font-size: 16px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #00eaff;
  transform: translateX(6px);
}

/* CONTACT */
.footer-contact {
  color: #bffaff;
  font-size: 16px;
  margin: 8px 0;
}

/* CTA */
.footer-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 15px 16px;
  background: linear-gradient(100deg, #00eaff, #00bcd4);
  color: #001015;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.28);
  transition: 0.25s;
}

.footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.5);
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 30px;
  padding-top: 25px;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 255, 0.08);
  color: #b7f4ff;
  font-size: 14px;
  opacity: 0.85;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr;
     gap: 50px;
  }
.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
  .footer-links-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .footer-links-wrapper {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 70px 25px;
  }
}

/* service page Ai-videos */
/* ==========================================================
   SERVICE PAGE – AI (spacing so hero touches navbar nicely)
   (Optional but recommended to remove extra gap at top)
========================================================== */
.service-page.service-ai {
  padding-top: 80px;
  /* match your fixed navbar height + a bit */
  background: radial-gradient(circle at 10% 0%, #021825 0%, #02060b 45%, #000307 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* soften ghost text for AI page */
.service-page.service-ai .ghost-text {
  opacity: 0.04;
}

/* ==========================================================
   AI HERO SECTION
========================================================== */

/* ----- Hero wrapper ----- */
.service-hero {
  position: relative;
  padding: 120px 0 80px;
  /* top reduced so no big empty gap */
  isolation: isolate;
  overflow: hidden;
}

/* animated glow + subtle grid in background */
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 255, 0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(0, 120, 180, 0.18), transparent 65%);
  opacity: 0.7;
  mix-blend-mode: screen;
  z-index: -2;
  animation: aiHeroGlow 18s ease-in-out infinite alternate;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px;
  opacity: 0.14;
  mix-blend-mode: screen;
  z-index: -1;
  animation: aiHeroGrid 20s linear infinite;
}

/* two-column layout */
.service-hero-inner {
  width: 85%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

/* ==========================================================
   LEFT SIDE – TEXT
========================================================== */

.service-hero-left {
  opacity: 0;
  transform: translateY(18px);
  animation: aiHeroFadeUp 0.8s ease-out forwards;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  border: 1px solid rgba(0, 255, 255, 0.45);
  color: #aef7ff;
  background: rgba(0, 26, 36, 0.9);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
}

.service-hero-title {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  color: #f3feff;
  margin-bottom: 16px;
}

.service-hero-highlight {
  display: inline-block;
  background: linear-gradient(90deg, #00f0ff, #72ffe7, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.35);
  background-size: 200% auto;
  animation: aiHeroGradientText 5s linear infinite alternate;
}

.service-hero-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: #cbefff;
  max-width: 560px;
  opacity: 0.9;
}

.service-hero-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* (btn-primary / btn-secondary are already defined in your main CSS) */

/* ==========================================================
   RIGHT SIDE – ORBIT VISUAL
========================================================== */

.service-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  /* decorative only */
}

.service-orbit {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer & inner rings */
.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.2);
}

.orbit-ring-1 {
  animation: aiOrbitSpin 22s linear infinite;
}

.orbit-ring-2 {
  inset: 18px;
  border-style: solid;
  border-color: rgba(0, 255, 255, 0.2);
  opacity: 0.9;
  animation: aiOrbitSpinReverse 28s linear infinite;
}

/* Core glowing AI cube/pill */
.orbit-core {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: linear-gradient(135deg, #00f0ff, #00a8d8);
  box-shadow:
    0 0 28px rgba(0, 255, 255, 0.7),
    0 0 80px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-core::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.orbit-core span {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.16em;
  color: #001219;
}

/* Capsules – perfectly aligned around the orbit */

.orbit-node {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  color: #c4faff;
  background: rgba(0, 22, 32, 0.98);
  border: 1px solid rgba(0, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
  transition: transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s;
}

/* Top center */
.orbit-node-1 {
  top: -12px;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Right center */
.orbit-node-2 {
  right: -12px;
  top: 50%;
  transform: translate(50%, -50%);
}

/* Bottom center */
.orbit-node-3 {
  bottom: -12px;
  left: 50%;
  transform: translate(-50%, 50%);
}

/* Left center */
.orbit-node-4 {
  left: -12px;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Hover glow on desktop only */
@media (hover: hover) {
  .orbit-node-1:hover {
    transform: translate(-50%, -50%) scale(1.04);
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
      0 0 40px rgba(0, 0, 0, 0.9);
  }

  .orbit-node-2:hover {
    transform: translate(50%, -50%) scale(1.04);
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
      0 0 40px rgba(0, 0, 0, 0.9);
  }

  .orbit-node-3:hover {
    transform: translate(-50%, 50%) scale(1.04);
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
      0 0 40px rgba(0, 0, 0, 0.9);
  }

  .orbit-node-4:hover {
    transform: translate(-50%, -50%) scale(1.04);
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
      0 0 40px rgba(0, 0, 0, 0.9);
  }
}

/* ==========================================================
   ANIMATIONS USED IN HERO
========================================================== */

@keyframes aiHeroGlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

@keyframes aiHeroGrid {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 80px 80px, 80px 80px;
  }
}

@keyframes aiHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aiHeroGradientText {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes aiOrbitSpin {
  from {
    transform: rotateZ(0deg);
  }

  to {
    transform: rotateZ(360deg);
  }
}

@keyframes aiOrbitSpinReverse {
  from {
    transform: rotateZ(0deg);
  }

  to {
    transform: rotateZ(-360deg);
  }
}

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

@media (max-width: 900px) {
  .service-hero-inner {
    width: 90%;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .service-hero-left {
    order: 1;
  }

  .service-hero-right {
    order: 2;
  }

  .service-hero-title {
    font-size: 30px;
  }

  .service-hero-subtext {
    font-size: 15px;
    max-width: 100%;
  }

  .service-orbit {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .service-hero-inner {
    width: 92%;
  }

  .service-hero-title {
    font-size: 26px;
  }

  .service-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= AI SUB SERVICES ================= */

.ai-subservices-section {
  position: relative;
  padding: 10px 20px 120px;
  overflow: hidden;
}

/* ghost background text */
.ai-subservices-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: 12px;
  color: rgba(0, 234, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* layout */
.ai-subservices-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* card */
.ai-sub-card {
  background: linear-gradient(145deg,
      rgba(3, 20, 30, 0.92),
      rgba(0, 10, 16, 0.96));
  border: 1px solid rgba(0, 234, 255, 0.15);
  border-radius: 22px;
  padding: 46px 38px;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* glow layer */
.ai-sub-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top left,
      rgba(0, 234, 255, 0.25),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* hover */
.ai-sub-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 90px rgba(0, 234, 255, 0.18);
}

.ai-sub-card:hover::before {
  opacity: 1;
}

/* text */
.ai-sub-card h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #eaffff;
}

.ai-sub-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #bfeff7;
  max-width: 420px;
  margin-bottom: 28px;
}

/* CTA */
.ai-sub-cta {
  background: linear-gradient(135deg, #00eaff, #00b4d8);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  color: #00191f;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(0, 234, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-sub-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 234, 255, 0.55);
}

/* responsive */
@media (max-width: 900px) {
  .ai-subservices-container {
    grid-template-columns: 1fr;
  }
}

/* ===================== WHAT'S INCLUDED ===================== */

.service-included {
  position: relative;
  padding: 50px 0px 50px;
}

.service-included-inner {
  width: 85%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
}

/* ---------- LEFT SIDE ---------- */

.included-left {
  flex: 1.1;
}

.service-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #eaffff;
  margin-bottom: 10px;
}

.service-section-sub {
  font-size: 15px;
  color: #bbf3ff;
  opacity: 0.9;
}

/* Bullet-style animated cards */

.included-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.included-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  color: #dffbff;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  box-shadow: 0px 4px 18px rgba(0, 255, 255, 0.15);
  transform: translateX(30px);
  opacity: 0;
  animation: includedSlideIn 0.8s ease forwards;
}

.included-card:nth-child(1) {
  animation-delay: .1s;
}

.included-card:nth-child(2) {
  animation-delay: .25s;
}

.included-card:nth-child(3) {
  animation-delay: .4s;
}

.included-card:nth-child(4) {
  animation-delay: .55s;
}

.included-card:nth-child(5) {
  animation-delay: .72s;
}

/* Hover glow */
@media (hover: hover) {
  .included-card:hover {
    transform: translateX(0px) scale(1.03);
    border-color: #00eaff;
    box-shadow: 0px 8px 28px rgba(0, 255, 255, 0.35);
  }
}

@keyframes includedSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* ---------- RIGHT SIDE (BIGGER VISUAL) ---------- */

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

.included-visual {
  width: 420px;
  /* ⬅ Bigger visual on desktop */
  height: 420px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(circle at 40% 0%, #063047, #01070f 70%);
  animation: visualFloat 10s ease-in-out infinite alternate;
}

.included-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  mix-blend-mode: screen;
}

.included-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.35);
}

.included-ring-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringSpin 22s linear infinite;
}

.included-ring-2 {
  width: 360px;
  height: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  opacity: .45;
  animation: ringSpinReverse 26s linear infinite;
}

.included-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 255, .25), transparent);
  animation: scanMove 5s linear infinite;
}

/* Animations */

@keyframes visualFloat {
  0% {
    transform: translateY(0px) rotateX(10deg);
  }

  100% {
    transform: translateY(-12px) rotateX(12deg);
  }
}

@keyframes ringSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ringSpinReverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes scanMove {
  0% {
    top: -50%;
  }

  100% {
    top: 100%;
  }
}

/* ---------- Mobile Layout ---------- */

@media (max-width: 900px) {

  .service-included-inner {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .included-right {
    order: 2;
    /* ⬅ Moves IMAGE AFTER text */
  }

  .included-visual {
    width: 280px;
    height: 280px;
  }

  .included-left {
    order: 1;
  }
}

/* ==========================================================
   AI SPLIT SECTION – IDEAL FOR + AI CORE + PROCESS
========================================================== */

.ai-split-section {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}

/* subtle background that still lets ghost-text show through */
.ai-split-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 255, 0.12), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(0, 120, 180, 0.12), transparent 65%);
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.ai-split-inner {
  width: 85%;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

/* Common column base */
.ai-col {
  position: relative;
}

/* ================= LEFT – IDEAL FOR ================= */

.ai-col-left .service-section-title {
  margin-bottom: 6px;
}

.ai-col-left .service-section-sub {
  margin-bottom: 18px;
  max-width: 360px;
}

/* chips/grid */
.ai-chip-grid {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 600px) {
 .ai-chip-grid {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}
}
.ai-chip {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: #c9f9ff;
  background: rgba(0, 20, 30, 0.95);
  border: 1px solid rgba(0, 255, 255, 0.35);
  box-shadow: 0 6px 18px rgba(0, 255, 255, 0.18);
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

@media (hover: hover) {
  .ai-chip:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 26px rgba(0, 255, 255, 0.35);
    border-color: #00f5ff;
  }
}

/* ================= MIDDLE – AI CORE ANIMATION ================= */

.ai-col-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-core {
  position: relative;
  width: 230px;
  height: 260px;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 0%, #063549, #01060e 70%);
  box-shadow:
    0 0 30px rgba(0, 255, 255, 0.4),
    0 26px 50px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: aiCoreFloat 10s ease-in-out infinite alternate;
}

/* vertical beam */
.ai-core-beam {
  position: absolute;
  inset: -20%;
  background: linear-gradient(90deg,
      rgba(0, 255, 255, 0) 0%,
      rgba(0, 255, 255, 0.18) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(0, 255, 255, 0.18) 60%,
      rgba(0, 255, 255, 0) 100%);
  opacity: 0.85;
  mix-blend-mode: screen;
  transform: translateX(-40%);
  animation: aiBeamSweep 4.8s linear infinite;
}

/* core pill */
.ai-core-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  background: linear-gradient(135deg, #00f0ff, #00a9d8);
  box-shadow:
    0 0 26px rgba(0, 255, 255, 0.75),
    0 0 80px rgba(0, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-core-node::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.ai-core-node span {
  font-size: 14px;
  font-weight: 600;
  color: #00141a;
}

/* orbit rings */
.ai-core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.35);
  opacity: 0.7;
}

.ai-core-ring-1 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aiRingSpin 20s linear infinite;
}

.ai-core-ring-2 {
  width: 210px;
  height: 210px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  animation: aiRingSpinReverse 26s linear infinite;
}

/* floating dots */
.ai-core-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a6ffff;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.9);
}

.ai-core-dot-1 {
  top: 18%;
  left: 22%;
  animation: aiDotFloat1 5s ease-in-out infinite;
}

.ai-core-dot-2 {
  bottom: 20%;
  right: 18%;
  animation: aiDotFloat2 6s ease-in-out infinite;
}

.ai-core-dot-3 {
  top: 68%;
  left: 28%;
  animation: aiDotFloat3 7s ease-in-out infinite;
}

/* ================= RIGHT – PROCESS ================= */

.ai-col-right .service-section-title {
  margin-bottom: 6px;
}

.ai-col-right .service-section-sub {
  margin-bottom: 18px;
  max-width: 380px;
}

/* timeline list */
.ai-process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(0, 255, 255, 0.26);
  margin-left: 14px;
}

.ai-process-step {
  position: relative;
  padding-left: 24px;
  padding-bottom: 18px;
  margin-bottom: 6px;
}

.ai-process-step:last-child {
  padding-bottom: 0;
}

.ai-step-badge {
  position: absolute;
  left: -16px;
  top: 4px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #00f0ff, #00a9d8);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #00141a;
}

.ai-step-body {
  background: rgba(0, 22, 32, 0.94);
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 255, 255, 0.18);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.85);
  transform: translateX(12px);
  opacity: 0;
  animation: aiStepIn 0.7s ease-out forwards;
}

/* stagger steps */
.ai-process-step:nth-child(1) .ai-step-body {
  animation-delay: 0.08s;
}

.ai-process-step:nth-child(2) .ai-step-body {
  animation-delay: 0.22s;
}

.ai-process-step:nth-child(3) .ai-step-body {
  animation-delay: 0.36s;
}

.ai-process-step:nth-child(4) .ai-step-body {
  animation-delay: 0.50s;
}

.ai-step-body h3 {
  font-size: 14px;
  color: #e3feff;
  margin-bottom: 4px;
}

.ai-step-body p {
  font-size: 13px;
  color: #c5f2ff;
  line-height: 1.6;
}

/* hover pop on desktop */
@media (hover: hover) {
  .ai-step-body:hover {
    transform: translateX(12px) translateY(-2px);
    border-color: #00f5ff;
    box-shadow: 0 12px 30px rgba(0, 255, 255, 0.3);
  }
}

/* ================= ANIMATIONS ================= */

@keyframes aiCoreFloat {
  0% {
    transform: translateY(0px) rotateX(10deg);
  }

  50% {
    transform: translateY(-10px) rotateX(12deg);
  }

  100% {
    transform: translateY(0px) rotateX(10deg);
  }
}

@keyframes aiBeamSweep {
  0% {
    transform: translateX(-60%);
  }

  100% {
    transform: translateX(60%);
  }
}

@keyframes aiRingSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes aiRingSpinReverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes aiDotFloat1 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(6px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes aiDotFloat2 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-8px, -8px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes aiDotFloat3 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(4px, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes aiStepIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(12px);
  }
}

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

@media (max-width: 1024px) {
  .ai-split-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .ai-col-middle {
    order: 2;
  }

  .ai-col-left {
    order: 1;
  }

  .ai-col-right {
    order: 3;
  }

  .ai-col-left .service-section-sub,
  .ai-col-right .service-section-sub {
    max-width: none;
  }

  .ai-core {
    width: 220px;
    height: 240px;
  }
}

@media (max-width: 600px) {
  .ai-split-section {
    padding: 54px 0 64px;
  }

  .ai-split-inner {
    width: 90%;
  }

  .ai-core {
    width: 200px;
    height: 220px;
  }

  .ai-process-list {
    margin-left: 20px;
  }

  .ai-step-body {
    padding: 9px 12px;
  }

  .ai-chip {
    font-size: 11px;
    padding: 5px 12px;
  }
}

/* =========================================
   WHY AI SECTION (Easein Studio Theme)
========================================= */

.why-ai-section {
  padding: 0px 0px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.why-ai-inner {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* title */
.why-ai-title {
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #eaffff;
  margin-bottom: 50px;
  text-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
  opacity: 0.95;
  animation: fadeSlideUp 1.2s ease forwards;
}

/* list layout */
.why-ai-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* each card */
.why-ai-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(0, 18, 24, 0.35);
  border: 1px solid rgba(0, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.9s ease forwards;
}

/* animation staggering for clean reveal */
.why-ai-card:nth-child(1) {
  animation-delay: .2s;
}

.why-ai-card:nth-child(2) {
  animation-delay: .35s;
}

.why-ai-card:nth-child(3) {
  animation-delay: .5s;
}

.why-ai-card:nth-child(4) {
  animation-delay: .65s;
}

/* hover glow */
.why-ai-card:hover {
  border-color: #00faff;
  background: rgba(0, 24, 32, 0.55);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
  transform: translateY(-4px);
}

/* icon style */
.why-ai-card .icon {
  font-size: 22px;
  color: #bffcff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

/* text */
.why-ai-card p {
  font-size: 16px;
  color: #dffeff;
  line-height: 1.4;
}

/* subtle fade-up motion */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {
  .why-ai-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
.why-ai-section {
  padding: 50px 0px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
  .why-ai-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-ai-card {
    padding: 16px 18px;
  }

  .why-ai-card p {
    font-size: 14px;
  }

  .why-ai-section {
    margin-top: -130px;
    margin-bottom: -50px;
  }
}

/* ==========================================================
   AI SAMPLE WORK SHOWCASE – 4 CARD AUTO CAROUSEL
========================================================== */

.ai-showcase {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}
.ai-showcase-mp {
  position: relative;
  padding: 10px 0 90px;
  overflow: hidden;
}

/* full-width background band */
.ai-showcase-bg-band {
  position: absolute;
  inset: 40px 0 0 0;
  opacity: 0.9;
  z-index: -1;
}

/* inner width matches other sections */
.ai-showcase-inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}

/* header spacing to match theme */
.ai-showcase-header {
  text-align: left;
  margin-bottom: 26px;
}

.ai-showcase-header .service-section-title {
  margin-bottom: 6px;
}

.ai-showcase-header .service-section-sub {
  opacity: 0.9;
}

/* glass window area */
.ai-showcase-window {
  border-radius: 24px;
  border: 1px solid rgba(0, 255, 255, 0.22);
  background: radial-gradient(circle at 20% 0%, rgba(0, 255, 255, 0.16), rgba(0, 6, 10, 0.96));
  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.07),
    0 30px 70px rgba(0, 0, 0, 0.95);
  padding: 20px 10px 24px;
  overflow: hidden;
}

/* track with cards side-by-side */
.ai-showcase-track {
  display: flex;
  gap: 0;
  /* important: no gap so 25% width lines up with transform */
  will-change: transform;
  transition: transform 0.7s cubic-bezier(.25, .85, .35, 1);
}

/* 4 cards visible on desktop */
.ai-showcase-card {
  flex: 0 0 25%;
  /* 4 cards in one frame */
  max-width: 33%;
  padding: 0 8px;
  /* visual gap */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.podcast-motion {
  flex: 0 0 25%;
  /* 4 cards in one frame */
  max-width: 33%;
  padding: 0 8px;
  /* visual gap */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* thumbnail container */
.ai-showcase-thumb {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.92);
  position: relative;
  cursor: pointer;
  background: #000;
}

/* 16:9 frame (YouTube style) */
.ai-showcase-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  filter: saturate(1.1);
  transition: transform .25s ease, filter .25s ease;
}

/* overlay with play icon */
.ai-showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.36), transparent 65%);
  pointer-events: none;
  transition: background .25s ease, opacity .25s ease;
}

.ai-showcase-overlay span {
  font-size: 30px;
  color: #eaffff;
  text-shadow: 0 0 18px rgba(0, 255, 255, 0.9);
  transform: scale(.95);
  transition: transform .25s ease;
}

/* hover (desktop only) */
@media (hover: hover) {
  .ai-showcase-thumb:hover .ai-showcase-video {
    transform: scale(1.04);
    filter: saturate(1.25) brightness(1.05);
  }

  .ai-showcase-thumb:hover .ai-showcase-overlay {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2), transparent 70%);
  }

  .ai-showcase-thumb:hover .ai-showcase-overlay span {
    transform: scale(1.08);
  }
}

/* when playing – overlay softens */
.ai-showcase-thumb.playing .ai-showcase-overlay {
  opacity: 0.25;
}

/* caption */
.ai-showcase-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #ccf9ff;
  text-align: center;
  opacity: 0.9;
}

/* CTA */
.ai-showcase-cta {
  margin-top: 28px;
  text-align: center;
}

.click-safe {
  position: relative;
  z-index: 999;
  pointer-events: auto;
}

.ai-showcase-btn {
  display: inline-block;
  padding: 12px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #001217;
  background: linear-gradient(110deg, #00eaff, #00bcd4);
  box-shadow: 0 0 22px rgba(0, 255, 255, 0.42);
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ai-showcase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 255, 255, 0.6);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  .ai-showcase-card {
    flex: 0 0 50%;
    /* 2 cards visible */
    max-width: 50%;
  }

  .ai-showcase-window {
    padding: 18px 6px 22px;
  }
}

@media (max-width: 600px) {
  .ai-showcase-inner {
    width: 92%;
  }

  .ai-showcase-header {
    text-align: center;
  }

  .ai-showcase-card {
    flex: 0 0 100%;
    /* 1 card visible */
    max-width: 100%;
  }

  .ai-showcase-window {
    padding: 16px 4px 20px;
  }
}

/* ============================================
   FIX CTA + FOOTER SIDE/BOTTOM MARGINS
   (place at very end of stylesheet)
============================================ */

/* Make sure there is zero default body margin */
html,
body {
  margin: 0;
  padding: 0;
}

/* CTA – full-width horizontally, keep top/bottom padding */
.cta-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  /* kills left gap */
  margin-right: -50vw;
  /* kills right gap */
  /* keep your existing vertical padding from earlier */
}

/* Footer – full-width + no space below */
footer.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  /* no left gap */
  margin-right: -50vw;
  /* no right gap */
  margin-bottom: -120px;
  /* no gap after footer */
}

/* Remove any extra bottom padding from the AI service main wrapper */
.service-page.service-ai {
  padding-bottom: 0;
}


/* ================= VIDEO MODAL ================= */
.ai-showcase-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block; /* 🔥 THIS FIXES THE GAP */
}

.ai-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ai-video-modal.active {
  display: block;
}

.ai-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.ai-video-modal-content {
  position: relative;
  max-width: 900px;
  width: 92%;
  margin: 6vh auto;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9);
}

.ai-video-modal video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
}

.ai-video-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

/* ================= MOBILE FULLSCREEN VIDEO MODAL ================= */

@media (max-width: 768px) {
  .ai-video-modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }

  .ai-showcase-image {
    height: 170px;
    width: 250px;
  }

  .ai-video-modal video {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    max-width: 100vw;
    object-fit: contain;
    /* default for landscape */
  }

  /* Portrait / reels video */
  .ai-video-modal video.portrait {
    object-fit: cover;
  }

  .ai-video-close {
    top: 14px;
    right: 14px;
    font-size: 22px;
    padding: 8px 12px;
  }
}
.ai-subservices-header{
  padding: 3rem;
}