/* Gilroy loaded via cdnfonts above */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #08071A;
  --bg-soft:   #0D0B24;
  --bg-card:   #110F2E;
  --border:    rgba(138,92,246,0.18);
  --border-dark: rgba(138,92,246,0.35);
  --orange:    #ff7e00;
  --orange-lt: #ff9a2e;
  --orange-bg: rgba(255,126,0,0.10);
  --orange-bd: rgba(255,126,0,0.30);
  --black:     #F0EEFF;
  --dark:      #D4CCFF;
  --mid:       #9B93C8;
  --light:     #6B6394;
  --xlight:    #4A4470;
  --gilroy:    'Gilroy', 'Nunito', system-ui, sans-serif;
  --body:      'Gilroy', 'Nunito', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: #08071A; color: var(--black); font-family: var(--body); overflow-x: hidden; max-width: 100vw; }

/* ─────────────────── NAV ─────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(8,7,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--gilroy); font-weight: 900; font-size: 1.3rem;
  letter-spacing: -0.02em; color: var(--black); text-decoration: none;
}
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--gilroy); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: #fff; padding: 10px 24px; border-radius: 6px;
  text-decoration: none; font-family: var(--gilroy); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange-lt); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; display: block; transition: transform 0.25s ease, opacity 0.25s ease; }

/* ─────────────────── HERO ─────────────────── */
.hero {
  display: flex; align-items: center;
  padding: 100px 5% 80px; background: var(--bg);
  position: relative; overflow: hidden;
}
/* hero canvas overlay */
.hero::before { display: none; }
.hero::after  { display: none; }

/* ── HERO CANVAS ── */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1200px; width: 100%; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange-bg); border: 1px solid var(--orange-bd);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }
.hero-eyebrow span {
  font-family: var(--gilroy); font-size: 0.72rem; font-weight: 700;
  color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase;
}
/* h1 replaced by .hero-headline */
/* ── HERO HEADLINE ── */
.hero-headline {
  font-family: var(--gilroy);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.hl-static {
  color: var(--black);
  display: block;
}
.hl-rotate-wrap {
  display: block;
  height: 1.08em;
  overflow: hidden;
  position: relative;
}
.hl-rotate {
  display: block;
  position: absolute;
  top: 0; left: 0;
  animation: hlSlide 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
}
.hl-word {
  display: block;
  height: 1.08em;
  line-height: 1.08;
  color: var(--orange);
  white-space: nowrap;
}
@keyframes hlSlide {
  0%,  18% { transform: translateY(0)      }
  22%,  38% { transform: translateY(-20%)  }
  42%,  58% { transform: translateY(-40%)  }
  62%,  78% { transform: translateY(-60%)  }
  82%, 100% { transform: translateY(-80%)  }
}
.hero-sub {
  font-family: var(--body); font-size: 1.0rem; line-height: 1.75;
  color: var(--mid); max-width: 480px; margin: 22px 0 34px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: #fff; padding: 14px 28px; border-radius: 7px;
  text-decoration: none; font-family: var(--gilroy); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(138,92,246,0.35);
}
.btn-primary:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(138,92,246,0.5); }
.btn-outline {
  border: 1.5px solid var(--border-dark); color: var(--dark); padding: 14px 28px; border-radius: 7px;
  text-decoration: none; font-family: var(--gilroy); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.05em; text-transform: uppercase; background: var(--bg);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-bg); }

/* hero right card */
.hero-visual { position: relative; z-index: 1; }
.hero-big-card {
  background: rgba(17,15,46,0.8); border: 1.5px solid rgba(138,92,246,0.25); border-radius: 16px; padding: 36px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 40px rgba(100,50,255,0.15), 0 1px 4px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.hero-big-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt), transparent);
}
.hbc-tag {
  font-family: var(--gilroy); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 24px;
}
.hbc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-num {
  font-family: var(--gilroy); font-size: 3rem; font-weight: 900;
  color: var(--black); line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.72rem; font-weight: 600; color: #7B6FA8; margin-top: 5px; text-transform: uppercase; letter-spacing: 0.07em; }
.floating-badge {
  position: absolute; bottom: 0; right: 0;
  background: linear-gradient(135deg, #cc6500, var(--orange)); border-radius: 12px; padding: 14px 20px; text-align: center;
  box-shadow: 0 10px 36px rgba(138,92,246,0.45);
  z-index: 10;
}
.fb-num { font-family: var(--gilroy); font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; white-space: nowrap; }
.fb-label { font-size: 0.58rem; color: rgba(255,255,255,0.88); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; white-space: nowrap; }

/* ─────────────────── TRUSTED ─────────────────── */
.trusted {
  padding: 52px 5%;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted-inner { max-width: 1200px; margin: 0 auto; }
.trusted-label {
  text-align: center; font-family: var(--gilroy); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--xlight); margin-bottom: 28px;
}
.brand-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
.brand-chip {
  background: rgba(17,15,46,0.6); border: 1.5px solid rgba(138,92,246,0.18); padding: 11px 22px; border-radius: 7px;
  font-family: var(--gilroy); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.04em;
  color: rgba(196,184,255,0.7); text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s; backdrop-filter: blur(6px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.brand-chip:hover { color: var(--orange); border-color: rgba(138,92,246,0.45); box-shadow: 0 3px 12px rgba(138,92,246,0.18); }

/* ─────────────────── SECTION COMMONS ─────────────────── */
section { padding: 96px 5%; position: relative; max-width: 100%; overflow-x: hidden; }

/* ── ANIMATED BACKGROUND CANVAS ── */
#bg-anim {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100vw; overflow: hidden;
}
body > * { position: relative; z-index: 1; }
nav { z-index: 200 !important; }
.mobile-nav { z-index: 199 !important; }
#progress-bar { z-index: 9999 !important; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.section-tag::before { content: ''; display: block; width: 26px; height: 2.5px; background: linear-gradient(90deg, var(--orange), var(--orange-lt)); border-radius: 2px; }
.section-tag span {
  font-family: var(--gilroy); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange);
}
h2 {
  font-family: var(--gilroy); font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 18px; color: var(--black);
}
.section-desc { color: var(--mid); line-height: 1.75; font-size: 0.95rem; max-width: 540px; }

/* ─────────────────── ABOUT ─────────────────── */
.about { background: var(--bg); position: relative; overflow: hidden; }

/* ambient glow orbs */
.about::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(138,92,246,0.07), transparent 65%);
  pointer-events: none;
}
.about::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,126,0,0.06), transparent 65%);
  pointer-events: none;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}

/* ── LEFT SIDE ── */
.about-left-content { position: relative; }

/* heading word-by-word reveal */
.about-left-content h2 .word {
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1), transform 0.5s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--wd, 0s);
}
.reveal-left.visible .about-left-content h2 .word {
  opacity: 1; transform: translateY(0);
}

/* description line */
.about-left-content .section-desc {
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
.reveal-left.visible .about-left-content .section-desc {
  opacity: 1; transform: translateX(0);
}

/* ── PILLS ── */
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill {
  background: rgba(138,92,246,0.08);
  border: 1.5px solid rgba(138,92,246,0.2);
  padding: 9px 18px; border-radius: 100px;
  font-family: var(--gilroy); font-size: 0.78rem; font-weight: 700; color: #C4B8FF;
  cursor: default; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(0.9);
  transition: opacity 0.4s cubic-bezier(.22,1,.36,1),
              transform 0.4s cubic-bezier(.22,1,.36,1),
              border-color 0.25s, color 0.25s, box-shadow 0.25s,
              background 0.25s;
  transition-delay: var(--pd, 0s);
}
.reveal-left.visible .pill { opacity: 1; transform: translateY(0) scale(1); }
.pill::after {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,126,0,0.12), rgba(138,92,246,0.12));
  opacity: 0; transition: opacity 0.3s;
}
.pill:hover {
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,126,0,0.2);
  transform: translateY(-3px) scale(1.04);
}
.pill:hover::after { opacity: 1; }

/* ── QUOTE CARD ── */
.about-quote-card {
  background: rgba(17,15,46,0.75);
  border: 1.5px solid rgba(138,92,246,0.2);
  border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(100,50,255,0.1);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1),
              border-color 0.35s, box-shadow 0.35s;
}
.about-quote-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--orange), var(--orange-lt));
  transition: width 0.35s;
}
.about-quote-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255,126,0,0.35);
  box-shadow: 0 20px 60px rgba(255,126,0,0.12), 0 0 0 1px rgba(255,126,0,0.1);
}
.about-quote-card:hover::before { width: 5px; }

/* shimmer sweep on hover */
.about-quote-card::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-20deg); pointer-events: none;
  transition: left 0.65s ease;
}
.about-quote-card:hover::after { left: 160%; }

.quote-mark {
  font-family: var(--gilroy); font-size: 5rem; font-weight: 900;
  color: var(--orange); line-height: 0.6; margin-bottom: 18px; opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
}
.about-quote-card:hover .quote-mark { opacity: 0.9; transform: scale(1.1) rotate(-5deg); }

.quote-body {
  font-family: var(--body); font-size: 1.0rem; line-height: 1.85;
  color: rgba(196,184,255,0.7); font-style: italic;
}

/* scroll reveal for right side */
.reveal-right { opacity: 0; transform: translateX(48px) scale(0.97); }
.reveal-right.visible {
  opacity: 1; transform: translateX(0) scale(1);
  transition: opacity 0.85s cubic-bezier(.22,1,.36,1) 0.2s,
              transform 0.85s cubic-bezier(.22,1,.36,1) 0.2s;
}

/* ─────────────────── SERVICES ─────────────────── */
.services { background: var(--bg-soft); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }

/* card base */
.service-card {
  background: rgba(17,15,46,0.6); border: 1.5px solid rgba(138,92,246,0.15); border-radius: 12px; padding: 26px 22px;
  cursor: default; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2); backdrop-filter: blur(8px);
  /* entrance: start hidden */
  opacity: 0; transform: translateY(28px);
}
/* when JS adds .svc-visible, animate in */
.service-card.svc-visible {
  animation: svcIn 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes svcIn {
  to { opacity: 1; transform: translateY(0); }
}

/* shimmer sweep on hover */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(138,92,246,0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.service-card:hover::before { left: 160%; }

/* orange bottom bar */
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, #cc6500, var(--orange), var(--orange-lt));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.service-card:hover {
  border-color: var(--orange-bd);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(255,92,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
}
.service-card:hover::after { transform: scaleX(1); }

/* icon */
.service-icon {
  font-size: 1.7rem; margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .service-icon {
  transform: scale(1.25) rotate(-6deg);
}

/* icon bg circle that grows on hover */
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(138,92,246,0.08); border: 1.5px solid rgba(138,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(138,92,246,0.18);
  border-color: rgba(138,92,246,0.5);
  transform: scale(1.08);
}

.service-name {
  font-family: var(--gilroy); font-size: 1.0rem; font-weight: 800;
  color: var(--black); margin-bottom: 7px;
  transition: color 0.2s;
}
.service-card:hover .service-name { color: var(--orange); }
.service-desc { font-size: 0.8rem; color: var(--mid); line-height: 1.6; }

/* ─────────────────── PROJECTS ─────────────────── */
.projects { background: var(--bg); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.project-card {
  background: rgba(17,15,46,0.7); border: 1.5px solid rgba(138,92,246,0.15); border-radius: 14px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.project-card:hover { transform: translateY(-4px); border-color: rgba(138,92,246,0.45); box-shadow: 0 10px 36px rgba(138,92,246,0.18); }
.project-img {
  height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.project-img.rice    { background: linear-gradient(135deg, #1a1040, #2d1d6e); }
.project-img.fashion { background: linear-gradient(135deg, #200d40, #3d1680); }
.project-img.food    { background: linear-gradient(135deg, #160e38, #2a1860); }
.project-body { padding: 24px; }
.project-client {
  font-family: var(--gilroy); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 7px;
}
.project-name {
  font-family: var(--gilroy); font-size: 1.2rem; font-weight: 900; color: var(--black); margin-bottom: 14px;
}
.project-row { display: flex; flex-direction: column; gap: 8px; }
.project-item { display: flex; gap: 10px; }
.pi-label {
  font-family: var(--gilroy); font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--light); min-width: 68px; padding-top: 1px;
}
.pi-val { font-size: 0.8rem; color: var(--dark); line-height: 1.55; }
.project-result {
  margin-top: 14px; background: rgba(138,92,246,0.1); border: 1px solid rgba(138,92,246,0.25);
  border-radius: 8px; padding: 12px 14px;
}
.project-result-label {
  font-family: var(--gilroy); font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px;
}
.project-result-val { font-family: var(--gilroy); font-size: 1.0rem; font-weight: 900; color: var(--black); }

/* ─────────────────── WHY ─────────────────── */
.why { background: var(--bg-soft); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 48px; }
.why-card {
  background: rgba(17,15,46,0.6); border: 1.5px solid rgba(138,92,246,0.15); border-radius: 12px; padding: 26px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2); backdrop-filter: blur(8px);
}
.why-card:hover { border-color: rgba(138,92,246,0.4); box-shadow: 0 6px 24px rgba(138,92,246,0.15); transform: translateY(-2px); }
.why-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(138,92,246,0.12); border: 1px solid rgba(138,92,246,0.28);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.why-text h3 { font-family: var(--gilroy); font-size: 0.98rem; font-weight: 800; margin-bottom: 7px; color: var(--black); }
.why-text p { font-size: 0.8rem; color: var(--mid); line-height: 1.65; }

/* ─────────────────── INDUSTRIES ─────────────────── */
.industries { background: var(--bg); }
.industries-grid { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 40px; }
.industry-tag {
  background: rgba(17,15,46,0.5); border: 1.5px solid rgba(138,92,246,0.15); padding: 12px 20px; border-radius: 8px;
  font-family: var(--gilroy); font-size: 0.84rem; font-weight: 600; color: rgba(196,184,255,0.75);
  display: flex; align-items: center; gap: 9px; cursor: default; backdrop-filter: blur(6px);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}
.industry-tag:hover { color: var(--orange); border-color: rgba(138,92,246,0.45); background: rgba(138,92,246,0.1); transform: translateY(-1px); }
.industry-tag span:first-child { font-size: 1.1rem; }

/* ─────────────────── TESTIMONIALS ─────────────────── */
.testimonials { background: var(--bg-soft); }


.testi-card:hover { border-color: rgba(138,92,246,0.4); box-shadow: 0 6px 28px rgba(138,92,246,0.15); transform: translateY(-2px); }

.testi-stars span { color: var(--orange); font-size: 0.88rem; }






/* ─────────────────── FAQ ─────────────────── */
.faq { background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-left h2 { margin-bottom: 14px; }
.faq-left p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(138,92,246,0.15); }
.faq-item:first-child { border-top: 1px solid rgba(138,92,246,0.15); }
.faq-q {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--gilroy); font-weight: 700; font-size: 0.93rem;
  color: var(--black); list-style: none; transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-q::after {
  content: '+'; font-size: 1.3rem; color: var(--orange); font-weight: 300;
  flex-shrink: 0; margin-left: 16px; transition: transform 0.3s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 20px; font-size: 0.86rem; color: var(--mid); line-height: 1.78; }

/* ─────────────────── CONTACT ─────────────────── */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(17,15,46,0.6); border: 1.5px solid rgba(138,92,246,0.15); border-radius: 12px; padding: 18px 20px;
  text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; backdrop-filter: blur(8px);
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.contact-item:hover { border-color: rgba(138,92,246,0.4); box-shadow: 0 4px 18px rgba(138,92,246,0.15); }
.ci-icon {
  width: 44px; height: 44px; background: var(--orange-bg); border: 1px solid var(--orange-bd);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-label {
  font-family: var(--gilroy); font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 4px;
}
.ci-val { font-family: var(--gilroy); font-size: 0.92rem; font-weight: 700; color: var(--black); }
.contact-cta-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.cta-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff; padding: 15px 28px; border-radius: 8px;
  text-decoration: none; font-family: var(--gilroy); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.05em; box-shadow: 0 4px 18px rgba(37,211,102,0.2);
  transition: opacity 0.2s, transform 0.15s;
}
.cta-whatsapp:hover { opacity: 0.9; transform: translateY(-1px); }
.cta-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange); color: #fff; padding: 15px 28px; border-radius: 8px;
  text-decoration: none; font-family: var(--gilroy); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.05em; box-shadow: 0 4px 18px rgba(138,92,246,0.35);
  transition: background 0.2s, transform 0.15s;
}
.cta-call:hover { background: var(--orange-lt); transform: translateY(-1px); }
.map-container { border-radius: 14px; overflow: hidden; border: 1.5px solid rgba(138,92,246,0.2); height: 380px; box-shadow: 0 2px 16px rgba(138,92,246,0.1); }
.map-container iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(200deg) saturate(0.5) brightness(0.75); }

/* ─────────────────── FOOTER ─────────────────── */
footer {
  text-align: center;
  background: #04030F; border-top: 1px solid rgba(138,92,246,0.15);
  padding: 36px 5%; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: var(--gilroy); font-weight: 900; font-size: 1.15rem; color: #E8E0FF; }
.footer-logo span { color: var(--orange); }
.footer-copy { font-size: 0.76rem; color: rgba(180,160,255,0.4); }
.footer-links, .flinks { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; align-items: center; }
.footer-links a, .flinks a { font-size: 0.76rem; color: rgba(255,255,255,0.35); text-decoration: none; font-family: var(--gilroy); font-weight: 600; transition: color 0.2s; }
.footer-links a:hover, .flinks a:hover { color: var(--orange); }

/* ─────────────────── DIVIDER ─────────────────── */
.divider { width: 100%; height: 1px; background: var(--border); }

/* ─────────────────── SCROLL ANIMATIONS ─────────────────── */

/* Base: fade up (default) */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Fade left */
.reveal-left {
  opacity: 0; transform: translateX(-48px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Fade right */
.reveal-right {
  opacity: 0; transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale up */
.reveal-scale {
  opacity: 0; transform: scale(0.88);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Flip in (cards) */
.reveal-flip {
  opacity: 0; transform: perspective(600px) rotateX(10deg) translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal-flip.visible { opacity: 1; transform: perspective(600px) rotateX(0deg) translateY(0); }

/* Glow pulse on entry */
@keyframes glowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(138,92,246,0); }
  40%  { box-shadow: 0 0 32px 8px rgba(138,92,246,0.25); }
  100% { box-shadow: 0 0 0 0 rgba(138,92,246,0); }
}
.reveal-glow.visible { animation: glowPulse 1.2s ease forwards; }

/* Section heading line — always visible, no draw animation */

/* Stagger delay helpers */
.d1 { transition-delay: 0.08s !important; }
.d2 { transition-delay: 0.16s !important; }
.d3 { transition-delay: 0.24s !important; }
.d4 { transition-delay: 0.32s !important; }
.d5 { transition-delay: 0.40s !important; }
.d6 { transition-delay: 0.48s !important; }

/* Purple line sweep on section enter */
.section-sweep {
  position: relative; overflow: hidden;
}
.section-sweep::after {
  content: '';
  position: absolute; top: 0; left: -100%; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(138,92,246,0.04), transparent);
  transition: left 1.2s ease;
  pointer-events: none; z-index: 0;
}
.section-sweep.visible::after { left: 100%; }

/* Why / testi card glow on entry */
.why-card.reveal-flip.visible,
.testi-card.reveal-flip.visible {
  animation: cardGlow 1s ease 0.3s forwards;
}
@keyframes cardGlow {
  0%   { border-color: rgba(138,92,246,0.5); }
  100% { border-color: rgba(138,92,246,0.15); }
}

/* ─────────────────── PROGRESS ─────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, #cc6500, var(--orange), var(--orange-lt));
  z-index: 9999; width: 0%; transition: width 0.08s linear;
}

/* ─────────────────── MOBILE MENU ─────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: rgba(8,7,26,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 5% 28px;
  flex-direction: column; gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-nav.open {
  display: flex; opacity: 1; transform: translateY(0);
}
.mobile-nav a {
  font-family: var(--gilroy); font-weight: 700; font-size: 1.0rem;
  color: #C4B8FF; text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid rgba(138,92,246,0.15);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .mob-cta {
  margin-top: 12px; background: var(--orange); color: #fff;
  padding: 14px; border-radius: 8px; text-align: center;
  font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  border-bottom: none !important;
  box-shadow: 0 4px 16px rgba(255,92,0,0.25);
}
/* hamburger animation */
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-hamburger span { transition: transform 0.25s ease, opacity 0.25s ease; }

/* ─────────────────── HERO CARD WRAPPER ─────────────────── */
.hero-card-wrapper { padding-right: 20px; }
@media (max-width: 900px) { .hero-card-wrapper { padding-right: 2px; } }

/* ─────────────────── COUNTER NUMS ─────────────────── */
.stat-num[data-target], .hbc-stats .stat-num {
  transition: color 0.2s;
}

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid, .faq-inner { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  /* hero visual: show as full-width strip on mobile */
  .hero-visual { display: block; }
  .hero-big-card { border-radius: 12px; padding: 24px 20px; }
  .hbc-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 0.6rem; }
  .floating-badge { bottom: 0; right: 0; padding: 8px 12px; border-radius: 8px; }
  .fb-num { font-size: 0.95rem; }
  .fb-label { font-size: 0.5rem; margin-top: 2px; }
}
@media (max-width: 768px) {
  nav { padding: 0 5%; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 70px 5%; }
  .footer-links, .flinks { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero { padding: 90px 5% 6px; min-height: 85vh; }
  .hero-grid { gap: 32px; }
}

/* ─────────────────── VIDEO SECTION ─────────────────── */
.video-section {
  padding: 10px 20px 50px 20px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.video-section-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.video-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,126,0,0.10); border: 1px solid rgba(255,126,0,0.28);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 20px;
}
.video-eyebrow span {
  font-family: var(--gilroy); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange);
}
.video-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
.video-title {
  font-family: var(--gilroy); font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900; letter-spacing: -0.02em; color: #F0EEFF; margin-bottom: 12px;
}
.video-title span { color: var(--orange); }
.video-sub {
  font-size: 0.92rem; color: rgba(196,184,255,0.65); line-height: 1.7;
  max-width: 520px; margin: 0 auto 36px;
}

/* video frame wrapper */
.video-frame-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(138,92,246,0.25),
    0 8px 48px rgba(100,40,255,0.25),
    0 32px 80px rgba(0,0,0,0.5);
  background: #0a0820;
}
/* animated glow border */
.video-frame-wrap::before {
  content: '';
  position: absolute; inset: -2px; border-radius: 22px; z-index: -1;
  background: linear-gradient(135deg, rgba(255,126,0,0.6), rgba(138,92,246,0.5), rgba(255,126,0,0.4), rgba(138,92,246,0.6));
  background-size: 300% 300%;
  animation: borderRotate 4s ease infinite;
}
@keyframes borderRotate {
  0%   { background-position: 0% 50%   }
  50%  { background-position: 100% 50% }
  100% { background-position: 0% 50%   }
}

/* 16:9 ratio */
.video-ratio {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
}
.video-ratio iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}

/* play overlay — shown before user clicks */
.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(8,7,26,0.75), rgba(30,10,80,0.6));
  cursor: pointer; z-index: 5;
  transition: opacity 0.4s ease;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(255,126,0,0.5);
  animation: playPulse 2s ease infinite;
  transition: transform 0.2s, background 0.2s;
  margin-bottom: 16px;
}
.play-btn:hover { transform: scale(1.10); background: var(--orange-lt); }
@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,126,0,0.5); }
  70%  { box-shadow: 0 0 0 22px rgba(255,126,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,126,0,0); }
}
.play-btn svg { margin-left: 5px; }
.play-label {
  font-family: var(--gilroy); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85);
}

/* bottom stats strip */
.video-stats {
  display: flex; justify-content: center; gap: 0; margin-top: 32px;
  flex-wrap: wrap;
}
.vs-item {
  padding: 18px 36px; text-align: center;
  border-right: 1px solid rgba(138,92,246,0.18);
}
.vs-item:last-child { border-right: none; }
.vs-num {
  font-family: var(--gilroy); font-size: 1.8rem; font-weight: 900;
  color: #F0EEFF; line-height: 1;
}
.vs-num span { color: var(--orange); }
.vs-lbl {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(196,184,255,0.5); margin-top: 5px;
}

@media (max-width: 600px) {
  .vs-item { padding: 14px 20px; }
  .vs-num { font-size: 1.4rem; }
  .play-btn { width: 60px; height: 60px; }
  .video-frame-wrap { border-radius: 12px; }
}

/* ─── SECTION GRADIENT OVERLAYS ─── */
.about   { background: linear-gradient(160deg, rgba(20,8,60,0.6) 0%, rgba(8,7,26,0.95) 100%); }
.services{ background: linear-gradient(200deg, rgba(8,7,26,0.98) 0%, rgba(25,10,70,0.7) 100%); }
.projects{ background: linear-gradient(140deg, rgba(15,5,45,0.8) 0%, rgba(8,7,26,0.98) 100%); }
.why     { background: linear-gradient(180deg, rgba(8,7,26,0.95) 0%, rgba(20,8,60,0.65) 100%); }
.industries { background: linear-gradient(160deg, rgba(12,6,40,0.85) 0%, rgba(8,7,26,0.98) 100%); }
.testimonials { background: linear-gradient(200deg, rgba(8,7,26,0.98) 0%, rgba(18,7,55,0.75) 100%); }
.faq     { background: linear-gradient(155deg, rgba(15,6,50,0.8) 0%, rgba(8,7,26,0.98) 100%); }
.contact { background: linear-gradient(170deg, rgba(8,7,26,0.98) 0%, rgba(22,8,65,0.7) 100%); }

.video-section { background: linear-gradient(180deg, rgba(8,7,26,0.98) 0%, rgba(15,6,50,0.9) 100%); }

/* ─────────────────── MARQUEE ─────────────────── */
.marquee-section {
  overflow: hidden;
  max-width: 100%;
  position: relative;
  background: linear-gradient(180deg, rgba(10,5,32,0.98) 0%, rgba(14,6,44,0.98) 100%);
  border-top: 1px solid rgba(138,92,246,0.15);
  border-bottom: 1px solid rgba(138,92,246,0.15);
}

/* fade edges — apply to whole section */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, rgba(10,5,32,1), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(-90deg, rgba(10,5,32,1), transparent); }

/* ── TEXT ROW ── */
.marquee-text-row {
  padding: 40px 0;
  overflow: hidden;
}
.marquee-track { display: flex; width: 100%; overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0;
  animation: marqueeScroll 35s linear infinite;
  will-change: transform;
}
.marquee-inner span:not(.dot) {
  font-family: var(--gilroy); font-weight: 800;
  font-size: 2.4rem; letter-spacing: 0.10em;
  text-transform: uppercase; color: #E8E0FF;
  padding: 0 30px;
}
.marquee-inner .dot {
  color: var(--orange); font-size: 1.1rem; padding: 0; flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-section:hover .marquee-inner,
.marquee-section:hover .logo-marquee-inner { animation-play-state: paused; }

/* ── SEPARATOR ── */
.marquee-separator {
  display: flex; align-items: center; gap: 16px;
  padding: 0 5%; margin: 0;
}
.sep-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,92,246,0.35), rgba(255,126,0,0.35), transparent);
}
.sep-diamond {
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--orange);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(255,126,0,0.5);
  flex-shrink: 0;
}

/* ── LOGO ROW ── */
.logo-marquee-wrap {
  padding: 50px 0 50px;
}
.brands-heading-wrap {
  text-align: center; margin-bottom: 24px;
}
.brands-eyebrow {
  font-family: var(--gilroy); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(196,184,255,0.35); margin-bottom: 10px;
}
.brands-heading {
  font-family: var(--gilroy); font-weight: 900;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #FFFFFF; line-height: 1.1;
}
.bh-trust {
  position: relative; display: inline-block;
  background: linear-gradient(135deg, var(--orange), #ffb347);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bh-trust::after {
  content: '';
  position: absolute; left: 0; bottom: -4px; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: underlineGrow 1s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

.logo-track { overflow: hidden; }
.logo-marquee-inner {
  display: flex; align-items: center; gap: 18px;
  animation: marqueeScroll 40s linear infinite;
}
.m-logo-box {
  flex-shrink: 0;
  width: 200px; height: 120px; border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}
.m-logo-box:hover {
  border-color: rgba(255,126,0,0.45);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 6px 24px rgba(255,126,0,0.12);
  transform: translateY(-3px);
}
.m-logo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.logo-img-wrap { font-size: 1.5rem; opacity: 0.2; }
.m-logo-placeholder span {
  font-family: var(--gilroy); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(196,184,255,0.2);
}
.m-logo-box img {
  width: 100%; height: 100%; object-fit: contain; padding: 14px;
  filter: none;
  transition: filter 0.3s;
}
.m-logo-box:hover img { filter: none; }

@media (max-width: 600px) {
  .marquee-inner span:not(.dot) { font-size: 1.8rem; padding: 0 22px; }
  .m-logo-box { width: 208px; height: 120px; border-radius: 10px; }
  .logo-marquee-inner { gap: 12px; }
  .marquee-section::before, .marquee-section::after { width: 60px; }
}





/* ═══════════════════════════
   IMAGE GALLERY — 3D Coverflow
═══════════════════════════ */
.img-gallery-section {
  position: relative; overflow: visible;
  background: linear-gradient(160deg, rgba(12,5,38,0.98) 0%, rgba(8,4,26,0.98) 100%);
  padding: 0;
  z-index: 99;
}
.img-gallery-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(138,92,246,0.1), transparent 60%);
  pointer-events: none;
}
.igs-stage-wrap {
  position: relative; max-width: 1200px;
  margin: 0 auto; z-index: 2; overflow: visible;
}
.igs-stage {
  position: relative;
  height: 320px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  user-select: none;
  overflow: visible;
}
.igs-card {
  position: absolute;
  width: 270px;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transition: transform .55s cubic-bezier(.22,1,.36,1),
              opacity .55s ease,
              filter .55s ease;
  will-change: transform;
  flex-shrink: 0;
}
.igs-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none;
}
.igs-card .igs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.3) 100%);
}
.igs-card.is-center {
  z-index: 30;
  box-shadow: 0 30px 80px rgba(138,92,246,0.35);
}
.igs-card.is-center .igs-overlay { opacity: 0.3; }
.igs-card:not(.is-center) { filter: brightness(0.75); }
.igs-card:not(.is-center):hover { filter: brightness(0.95); }

/* shimmer on entry */
.igs-card::after {
  content: ''; position: absolute; top: 0; left: -160%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), rgba(138,92,246,0.5), transparent);
  transform: skewX(-20deg); z-index: 3;
  pointer-events: none; mix-blend-mode: screen;
}
.igs-stage-wrap.in .igs-card::after {
  animation: igsShimmer 1.8s cubic-bezier(.22,1,.36,1) var(--igs-delay, 0.4s) 1 both;
}
@keyframes igsShimmer { 0%{left:-160%} 100%{left:160%} }
.igs-stage-wrap.in .igs-card {
  animation: igsGlow 1.6s ease-out var(--igs-delay, 0.2s) 1 both;
}
@keyframes igsGlow {
  0%   { box-shadow: 0 25px 60px rgba(0,0,0,0.6); }
  35%  { box-shadow: 0 0 70px rgba(138,92,246,0.85), 0 25px 60px rgba(255,126,0,0.4); }
  100% { box-shadow: 0 25px 60px rgba(0,0,0,0.6); }
}

/* nav */
.igs-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; margin-top: 20px; padding: 0 5%;
}
.igs-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.igs-arrow:hover { background: rgba(138,92,246,0.2); border-color: rgba(138,92,246,0.5); }
.igs-arrow:active { transform: scale(0.92); }
.igs-arrow svg { width: 18px; height: 18px; fill: #fff; }
.igs-dots { display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; }
.igs-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s; cursor: pointer;
}
.igs-dot.active { background: var(--orange); width: 22px; border-radius: 3px; }

/* lightbox */
.igs-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center; padding: 24px;
  touch-action: none;
  overflow: hidden;
}
.igs-lightbox.open { display: flex; }
.igs-lightbox img {
  max-width: 100%; max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(138,92,246,0.35);
}
.igs-lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; font-size: 20px;
  transition: background 0.25s;
}
.igs-lb-close:hover { background: rgba(239,68,68,0.5); }

@media (max-width: 900px) {
  .igs-stage { height: 440px; }
  .igs-card { width: 240px; }
}
@media (max-width: 560px) {
  .igs-stage { height: 400px; }
  .igs-card { width: 260px; }
}



/* ═══════════════════════
   REELS — Coverflow
═══════════════════════ */
.reels-section {
  position: relative; overflow: visible;
  background: linear-gradient(180deg, rgba(8,7,26,0.98) 0%, rgba(16,6,50,0.9) 100%);
  padding: 0 0 30px;
}
.reels-stage-wrap {
  position: relative; max-width: 1300px;
  margin: 0 auto; z-index: 2; overflow: visible;
}
.reels-stage {
  position: relative; height: 520px;
  perspective: 1200px;
  display: flex; align-items: center; justify-content: center;
  touch-action: pan-y; user-select: none; overflow: visible;
}
.reel-card {
  position: absolute;
  width: 260px; aspect-ratio: 9/16;
  border-radius: 16px; overflow: hidden;
  cursor: pointer; background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
  transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .55s ease, filter .55s ease;
  will-change: transform;
}
.reel-card.is-center {
  z-index: 30;
  box-shadow: 0 0 60px rgba(138,92,246,0.4), 0 30px 80px rgba(0,0,0,0.6);
}
.reel-card:not(.is-center) { filter: brightness(0.65); }
.reel-card:not(.is-center):hover { filter: brightness(0.85); }

/* thumbnail */
.reel-thumb {
  position: relative; width: 100%; height: 100%;
}
.reel-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
}
.reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.25) 100%);
}
.reel-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 3; transition: background 0.25s, transform 0.25s;
  animation: reelPulse 2.5s ease infinite;
}
.reel-play-btn svg { width: 22px; height: 22px; margin-left: 4px; }
.reel-thumb:hover .reel-play-btn {
  background: var(--orange);
  border-color: var(--orange);
  transform: translate(-50%,-50%) scale(1.1);
}
@keyframes reelPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50%      { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
}
.reel-iframe-wrap {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.reel-iframe-wrap iframe,
.reel-iframe-wrap video {
  width: 100%; height: 100%; border: 0; object-fit: cover;
}
.reel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 14px 16px;
  font-family: var(--gilroy); font-size: 0.82rem; font-weight: 700;
  color: #fff; z-index: 4;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* shimmer on scroll */
.reel-card::after {
  content: ''; position: absolute; top: 0; left: -160%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.22), rgba(138,92,246,0.45), transparent);
  transform: skewX(-20deg); z-index: 5; pointer-events: none; mix-blend-mode: screen;
}
.reels-stage-wrap.in .reel-card::after {
  animation: reelShimmer 1.8s cubic-bezier(.22,1,.36,1) var(--reel-delay,0.3s) 1 both;
}
@keyframes reelShimmer { 0%{left:-160%} 100%{left:160%} }
.reels-stage-wrap.in .reel-card {
  animation: reelGlow 1.6s ease-out var(--reel-delay,0.2s) 1 both;
}
@keyframes reelGlow {
  0%   { box-shadow: 0 25px 60px rgba(0,0,0,0.7); }
  35%  { box-shadow: 0 0 70px rgba(138,92,246,0.9), 0 25px 60px rgba(255,126,0,0.5); }
  100% { box-shadow: 0 25px 60px rgba(0,0,0,0.7); }
}

/* nav */
.reels-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; margin-top: 24px; padding: 0 5%;
}
.reels-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.reels-arrow:hover { background: rgba(138,92,246,0.2); border-color: rgba(138,92,246,0.5); }
.reels-arrow:active { transform: scale(0.92); }
.reels-arrow svg { width: 18px; height: 18px; }
.reels-dots { display: flex; gap: 8px; align-items: center; justify-content: center; }
.reels-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); transition: all 0.3s; cursor: pointer;
}
.reels-dot.active { background: var(--orange); width: 22px; border-radius: 3px; }

@media (max-width: 900px) {
  .reels-stage { height: 450px; }
  .reel-card { width: 210px; }
}
@media (max-width: 560px) {
  .reels-stage { height: 420px; }
  .reel-card { width: 220px; }
}

/* ═══════════════════════════
   ENQUIRY FORM — Single Column
═══════════════════════════ */
.enquiry-section {
  background: linear-gradient(145deg, rgba(10,4,32,1) 0%, rgba(16,6,50,0.98) 50%, rgba(8,3,25,1) 100%);
  padding: 90px 5%;
  position: relative; overflow: hidden;
}
.enquiry-section::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,126,0,0.07), transparent 65%);
  pointer-events: none;
}
.enq-center {
  max-width: 680px; margin: 0 auto;
}
.enq-error {
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25);
  color: #fca5a5; padding: 13px 16px; border-radius: 10px;
  font-size: 0.85rem; margin-bottom: 20px;
}
.enq-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(138,92,246,0.2);
  border-radius: 20px; padding: 40px 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.enq-form::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-lt), transparent);
}

/* blocks */
.enq-block { margin-bottom: 28px; }
.enq-block-title {
  font-family: var(--gilroy); font-size: 1.0rem; font-weight: 800;
  color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.enq-block-title::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: rgba(255,255,255,0.3); flex-shrink: 0;
}
.enq-hint {
  font-size: 0.8rem; color: rgba(196,184,255,0.45);
  margin-bottom: 16px; line-height: 1.5;
}

/* row */
.enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* field */
.enq-field { display: flex; flex-direction: column; gap: 8px; }
.enq-field label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(196,184,255,0.55);
}
.enq-field label em { color: rgba(196,184,255,0.35); font-style: normal; margin-left: 6px; }
.enq-field input,
.enq-field textarea {
  background: rgba(255,255,255,0.05);
  border: none; border-bottom: 1px solid rgba(138,92,246,0.25);
  border-radius: 0; padding: 12px 4px;
  font-family: var(--gilroy); font-size: 0.9rem; font-weight: 500;
  color: #E8E0FF; outline: none; width: 100%;
  transition: border-color 0.25s, background 0.25s;
}
.enq-field input:focus,
.enq-field textarea:focus {
  border-bottom-color: var(--orange);
  background: rgba(255,126,0,0.03);
}
.enq-field input::placeholder,
.enq-field textarea::placeholder { color: rgba(196,184,255,0.18); }
.enq-field textarea { resize: none; min-height: 90px; }

/* checkboxes */
.enq-checks {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.enq-check {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.enq-check:hover { border-color: rgba(138,92,246,0.4); background: rgba(138,92,246,0.05); }
.enq-check input[type=checkbox] { display: none; }
.enq-check-box {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.enq-check input:checked ~ .enq-check-box {
  background: var(--orange); border-color: var(--orange);
}
.enq-check input:checked ~ .enq-check-box::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
.enq-check-label {
  font-family: var(--gilroy); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.07em; color: rgba(196,184,255,0.75);
  transition: color 0.2s;
}
.enq-check:has(input:checked) {
  border-color: rgba(255,126,0,0.45);
  background: rgba(255,126,0,0.06);
}
.enq-check:has(input:checked) .enq-check-label { color: #fff; }

/* submit */
.enq-submit {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, #7B2FBE, #A855F7, #C026D3);
  background-size: 200% 200%; animation: enqBtnGrad 3s ease infinite;
  color: #fff; border: none; border-radius: 8px; cursor: pointer;
  font-family: var(--gilroy); font-size: 0.88rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 6px 28px rgba(168,85,247,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
}
@keyframes enqBtnGrad {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.enq-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(168,85,247,0.55); }
.enq-submit:active { transform: translateY(0); }

@media (max-width: 600px) {
  .enq-form { padding: 28px 20px; }
  .enq-row { grid-template-columns: 1fr; }
  .enq-checks { gap: 10px; }
  .enq-check { padding: 8px 12px; }
  .enq-check-label { font-size: 0.68rem; }
}

/* ═══════════════════════════
   TESTIMONIALS — Enhanced
═══════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px; margin-top: 48px;
}
.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(138,92,246,0.15);
  border-radius: 18px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1),
              border-color 0.35s, box-shadow 0.35s;
  cursor: default;
  animation-delay: var(--td, 0s);
}
.testi-card::before {
  content: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,126,0,0.3);
  box-shadow: 0 20px 60px rgba(255,126,0,0.1), 0 0 0 1px rgba(255,126,0,0.1);
}
/* shimmer sweep on hover */
.testi-card::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.testi-card:hover::after { left: 160%; }

/* Stars */
.testi-stars-wrap {
  display: flex; gap: 4px; align-items: center;
}
.testi-star {
  font-size: 1.1rem; color: rgba(255,255,255,0.15);
  display: inline-block;
  transition: transform 0.3s, color 0.3s;
}
.testi-star.filled {
  color: #FFB800;
  filter: drop-shadow(0 0 4px rgba(255,184,0,0.5));
}
/* scroll-in animation for stars — bounce in one by one */
.testi-card.in .testi-star.filled {
  animation: starPop 0.5s cubic-bezier(.22,1,.36,1) calc(var(--si) * 0.08s) both;
}
@keyframes starPop {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  60%  { transform: scale(1.3) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
/* hover — stars bounce */
.testi-card:hover .testi-star.filled {
  animation: starBounce 0.4s ease calc(var(--si) * 0.05s) both;
}
@keyframes starBounce {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.35) rotate(8deg); }
}

.testi-text {
  font-size: 0.88rem; color: rgba(196,184,255,0.7);
  line-height: 1.8; flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px; border-top: 1px solid rgba(138,92,246,0.12);
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,126,0,0.3), rgba(138,92,246,0.3));
  border: 1px solid rgba(255,126,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--gilroy); font-weight: 900; font-size: 0.88rem;
  color: #fff; flex-shrink: 0;
  transition: transform 0.3s;
}
.testi-card:hover .testi-avatar { transform: scale(1.1) rotate(-5deg); }
.testi-name {
  font-family: var(--gilroy); font-weight: 800;
  font-size: 0.9rem; color: #F0EEFF;
}
.testi-role {
  font-size: 0.75rem; color: rgba(196,184,255,0.45);
  margin-top: 2px; font-weight: 500;
}

@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-card { padding: 22px 18px; }
}

/* Testimonial avatar image */
.testi-avatar-img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; object-position: center;
  border: 2px solid rgba(255,126,0,0.4);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.testi-card:hover .testi-avatar-img { transform: scale(1.1) rotate(-5deg); }

/* Reel modal */
#reelModal { touch-action: none; }
#reelModal.open { display: flex !important; }
body.scroll-locked { overflow: hidden !important; }

/* ── Publicity Gallery Card ── */
.pub-card {
  position: absolute;
  width: 260px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .55s ease, filter .55s ease;
  will-change: transform;
}
.pub-card img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.pub-card .igs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.3) 100%);
}
.pub-card.is-center {
  z-index: 30;
  box-shadow: 0 30px 80px rgba(138,92,246,0.35);
}
.pub-card:not(.is-center) { filter: brightness(0.75); }
.pub-card:not(.is-center):hover { filter: brightness(0.95); }

/* shimmer on scroll */
.pub-card::after {
  content: ''; position: absolute; top: 0; left: -160%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), rgba(138,92,246,0.5), transparent);
  transform: skewX(-20deg); z-index: 3;
  pointer-events: none; mix-blend-mode: screen;
}
.igs-stage-wrap.in .pub-card::after {
  animation: igsShimmer 1.8s cubic-bezier(.22,1,.36,1) var(--igs-delay, 0.4s) 1 both;
}
.igs-stage-wrap.in .pub-card {
  animation: igsGlow 1.6s ease-out var(--igs-delay, 0.2s) 1 both;
}

@media (max-width: 768px) { .pub-card { width: 200px; } }
@media (max-width: 480px) { .pub-card { width: 220px; } }

/* Pub card landscape fix */
#pubStage { height: 300px; }
#pubStage .pub-card { width: 360px; aspect-ratio: unset; height: 220px; }
#pubStage .pub-card img { height: 100%; width: 100%; object-fit: contain; }

@media(max-width:768px){
  #pubStage { height: 220px; }
  #pubStage .pub-card { width: 260px; height: 160px; }
}
@media(max-width:480px){
  #pubStage { height: 200px; }
  #pubStage .pub-card { width: 240px; height: 150px; }
}