/* ═══════════════════════════════════════════════════════
   WAFTURE INFOTECH — THEME CSS
   Shared styles for all pages.
   getmeonlinebiz.in
   ═══════════════════════════════════════════════════════ */

/* ─── ROOT VARIABLES ──────────────────────────────────── */
:root {
  --red:      #1e3a8a;      /* primary navy (legacy name kept) */
  --red-l:    #2563eb;      /* bright blue */
  --red-d:    #172554;      /* deep navy */

  --accent:   #ff5a3c;      /* creative coral accent */
  --accent-d: #e8431f;
  --accent-2: #7c3aed;      /* violet secondary accent */

  --ink:      #0b1220;      /* near-black headings */
  --bg:       #f6f8ff;      /* light blue-tinted white */
  --bg2:      #eef2fb;      /* section alt bg */
  --card:     #ffffff;      /* white card */
  --card-h:   #f0f6ff;      /* card hover */
  --border:   rgba(30,58,138,.12);
  --border-h: rgba(30,58,138,.30);
  --muted:    #5a6b85;
  --subtle:   #94a3b8;

  --grad-hero: linear-gradient(120deg,#172554 0%,#1e3a8a 45%,#3b2c8f 100%);
  --shadow-lg: 0 30px 60px -20px rgba(15,23,42,.28);
}

/* ─── GLOBAL BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(1000px 600px at 85% -10%, rgba(30,58,138,.07), transparent 60%),
    radial-gradient(800px 500px at -10% 30%,  rgba(30,58,138,.04), transparent 70%);
  background-attachment: fixed;
  color: #0f172a;
  font-family: 'Rubik', sans-serif;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #e2e8f0; }
::-webkit-scrollbar-thumb { background: #1e3a8a; border-radius: 2px; }

/* ─── GRADIENT TEXT ────────────────────────────────────── */
.grad {
  background: linear-gradient(115deg, #2563eb 0%, #6d4aff 50%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-accent {
  background: linear-gradient(115deg, #ff7a45, #ff5a3c 55%, #e8431f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   FULL-WIDTH CREATIVE HQ HEADER
   ═══════════════════════════════════════════════════════ */
#siteHeader {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1050;
  width: 100%;
}

/* ── Top utility bar ── */
.topbar {
  background: var(--ink);
  color: #cbd5e1;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 8px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-left i, .topbar-right i { color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { color: #cbd5e1; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar-right a:hover { color: #fff; }
.topbar-socials { display: flex; align-items: center; gap: 12px; padding-left: 6px; border-left: 1px solid rgba(255,255,255,.12); }
.topbar-socials a { font-size: 14px; }

/* ── Main nav ── */
#navbar {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s, padding .3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 34px rgba(15,23,42,.10);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  transition: padding .3s;
}
#navbar.scrolled .nav-inner { padding: 9px 28px; }

/* Brand */
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-ico {
  width: 44px; height: 44px;
  background: var(--grad-hero);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #fff;
  box-shadow: 0 8px 20px -6px rgba(30,58,138,.6);
  position: relative; overflow: hidden;
}
.brand-ico::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,90,60,.55), transparent 60%);
}
.brand-name { font-weight: 800; font-size: 17px; color: var(--ink); line-height: 1.1; letter-spacing: -.01em; }
.brand-name span { color: var(--red-l); display: block; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #41506b; text-decoration: none;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 9px 16px; border-radius: 10px;
  position: relative;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); font-weight: 700; }

/* Right-side actions */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 11px;
  padding: 12px 22px;
  font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(255,90,60,.7);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.nav-cta:hover { background: var(--accent-d); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(255,90,60,.8); }

.nav-toggle {
  width: 44px; height: 44px;
  background: rgba(30,58,138,.07);
  border: 1px solid rgba(30,58,138,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #1e3a8a; cursor: pointer;
  transition: background .2s; flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(30,58,138,.14); }
.nav-toggle.open { background: rgba(30,58,138,.15); border-color: rgba(30,58,138,.35); }

/* Mobile dropdown menu */
#navMobile {
  display: none;
  position: fixed;
  top: 110px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 28px); max-width: 540px;
  background: rgba(255,255,255,.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  z-index: 1049;
  flex-direction: column; gap: 4px;
  animation: menuSlide .2s ease;
  box-shadow: var(--shadow-lg);
}
#navMobile.open { display: flex; }
@keyframes menuSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-m-link {
  color: #41506b; text-decoration: none;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 12px 16px; border-radius: 12px;
  transition: color .2s, background .2s;
}
.nav-m-link:hover { color: var(--ink); background: rgba(30,58,138,.06); }
.nav-m-link.active { color: var(--red); background: rgba(30,58,138,.08); }
.nav-m-divider { height: 1px; background: rgba(30,58,138,.1); margin: 6px 0; }
.nav-m-cta {
  display: block; text-align: center;
  background: var(--accent); color: #fff;
  border-radius: 12px; padding: 13px 20px;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none; margin-top: 6px;
  transition: background .2s;
}
.nav-m-cta:hover { background: var(--accent-d); color: #fff; }

/* Responsive */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .topbar-left span:nth-child(2) { display: none; }
}
@media (max-width: 640px) {
  .topbar-inner { padding: 7px 16px; font-size: 11.5px; }
  .topbar-left { display: none; }
  .topbar-right { width: 100%; justify-content: space-between; gap: 10px; }
  .nav-inner { padding: 12px 16px; }
}
@media (min-width: 992px) {
  .nav-toggle { display: none; }
  #navMobile  { display: none !important; }
}

/* ─── HOMEPAGE HERO (video background) ─────────────────── */
.hero {
  position: relative;
  padding: 200px 0 110px;
  overflow: hidden;
  background: #0b1220;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(11,18,32,.94) 0%, rgba(23,37,84,.82) 48%, rgba(124,58,237,.5) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 35% 35%, black 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 35% 35%, black 25%, transparent 78%);
}
/* white-on-video text */
.hero .hero-h1 { color: #fff; }
.hero .hero-sub { color: rgba(255,255,255,.84); }
.hero .trust-item { color: rgba(255,255,255,.88); }
.hero .hero-badge {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff; backdrop-filter: blur(6px); box-shadow: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; color: #41506b; margin-bottom: 26px;
  box-shadow: 0 6px 18px -8px rgba(30,58,138,.3);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,90,60,.18);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(.7)} }

.hero-h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -.025em; margin-bottom: 22px; color: var(--ink);
}
.hero-sub {
  font-size: 1.08rem; color: var(--muted);
  max-width: 540px; margin: 0 0 34px; line-height: 1.7;
}
.hero .trust-items { justify-content: flex-start; }
.trust-items { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 30px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #41506b; }
.trust-item i { color: #16a34a; font-size: 15px; }

/* Hero visual stack (right column) */
.hero-visual { position: relative; min-height: 440px; }
.hero-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
}
.hero-card-main {
  top: 20px; left: 8%; right: 8%;
  padding: 24px;
  border-radius: 22px;
}
.hero-card-main .hc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.hc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hc-bars { display: flex; gap: 7px; }
.hc-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--bg2); }
.hc-row:first-of-type { border-top: none; }
.hc-logo {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; flex-shrink: 0;
}
.hc-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.hc-meta { font-size: 11.5px; color: var(--subtle); }
.hc-val { margin-left: auto; font-size: 14px; font-weight: 800; color: #16a34a; }

.hero-card-float1 {
  bottom: 60px; left: -2%;
  display: flex; align-items: center; gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}
.hero-card-float2 {
  bottom: 0; right: 2%;
  display: flex; align-items: center; gap: 12px;
  animation: floatY 6s ease-in-out infinite .8s;
}
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hcf-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,90,60,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hcf-ico.blue { background: rgba(37,99,235,.12); color: var(--red-l); }
.hcf-num { font-size: 1.25rem; font-weight: 900; color: var(--ink); line-height: 1; }
.hcf-lbl { font-size: 11px; color: var(--muted); }

@media (max-width: 991px) {
  .hero { padding: 150px 0 70px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero .trust-items { justify-content: center; }
  .hero-visual { display: none; }
}

/* ─── STATS GRID (HOMEPAGE) ────────────────────────────── */
.stats-wrap {
  max-width: 1040px; margin: -40px auto 0; position: relative; z-index: 2;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px; padding: 30px 18px;
  box-shadow: var(--shadow-lg);
}
.stat-item { text-align: center; padding: 10px; position: relative; }
.stat-item::after { content: ''; position: absolute; right: 0; top: 18%; height: 64%; width: 1px; background: var(--border); }
.col-6:nth-child(2n) .stat-item::after,
.col-md-3:last-child .stat-item::after { display: none; }
.stat-ico {
  color: var(--red-l); font-size: 32px; display: inline-flex;
  width: 68px; height: 68px; align-items: center; justify-content: center;
  background: linear-gradient(150deg, rgba(37,99,235,.13), rgba(124,58,237,.13)); border-radius: 18px; margin-bottom: 14px;
}
.stat-num { font-size: 2.3rem; font-weight: 900; line-height: 1; margin-bottom: 4px; color: var(--ink); }
.stat-lbl { font-size: 12.5px; color: var(--muted); font-weight: 500; }
@media (max-width: 767px){ .stat-item::after{ display:none; } }

/* ─── INNER PAGE HERO (shared cinematic banner) ────────── */
.page-hero {
  padding: 188px 0 92px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(11,18,32,.94) 0%, rgba(23,37,84,.86) 48%, rgba(124,58,237,.6) 100%),
    url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920') center / cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 40%, black 22%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 75% at 50% 40%, black 22%, transparent 80%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 7px 16px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin-bottom: 20px; backdrop-filter: blur(6px);
}
.page-hero-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,90,60,.3); }
.page-h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px;
  color: #fff;
}
.page-sub { font-size: 1.05rem; color: rgba(255,255,255,.84); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ─── TRUSTED TICKER ───────────────────────────────────── */
.trusted-section { padding: 56px 0; overflow: hidden; }
.trusted-lbl {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--subtle); margin-bottom: 28px; text-transform: uppercase;
}
.trusted-lbl em { color: var(--accent-d); font-style: normal; }

.ticker-outer { position: relative; overflow: hidden; }
.ticker-outer::before, .ticker-outer::after {
  content: ''; position: absolute; top: 0; width: 140px; height: 100%; z-index: 2;
}
.ticker-outer::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.ticker-outer::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.ticker-track {
  display: flex; gap: 56px; width: max-content;
  animation: tickerAnim 22s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerAnim { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.ticker-name {
  font-size: 17px; font-weight: 700;
  color: rgba(15,23,42,.25); white-space: nowrap;
  transition: color .3s; cursor: default;
}
.ticker-name:hover { color: rgba(15,23,42,.55); }

/* ─── SECTION HELPERS ──────────────────────────────────── */
.sec { padding: 96px 0; }
.sec-alt { background: var(--bg2); }

.sec-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,60,.08);
  border: 1px solid rgba(255,90,60,.22);
  border-radius: 50px; padding: 6px 15px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-d); margin-bottom: 18px;
}
.sec-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 14px;
}
.sec-sub { font-size: .95rem; color: var(--muted); max-width: 500px; line-height: 1.7; }

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn-r {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  border: none; border-radius: 50px;
  padding: 14px 28px; font-weight: 700; font-size: 14.5px;
  text-decoration: none; transition: all .28s ease; cursor: pointer;
}
.btn-r:hover { background: var(--red-l); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,138,.4); }

.btn-o {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #0f172a;
  border: 1px solid rgba(15,23,42,.2);
  border-radius: 50px; padding: 14px 28px;
  font-weight: 700; font-size: 14.5px; text-decoration: none;
  transition: all .28s ease;
}
.btn-o:hover { color: #1e3a8a; border-color: #1e3a8a; background: rgba(30,58,138,.06); }

.view-all {
  display: inline-flex; align-items: center; gap: 8px;
  color: #0f172a; text-decoration: none;
  border: 1px solid rgba(15,23,42,.15);
  border-radius: 50px; padding: 12px 24px;
  font-size: 13.5px; font-weight: 600;
  transition: all .28s;
}
.view-all:hover { color: #1e3a8a; background: rgba(30,58,138,.06); border-color: #1e3a8a; }

/* ─── SERVICE CARD ─────────────────────────────────────── */
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 30px; height: 100%;
  display: flex; flex-direction: column;
  transition: all .28s ease;
}
.svc-card:hover { border-color: var(--border-h); background: var(--card-h); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(30,58,138,.1); }

.svc-ico-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(150deg, rgba(37,99,235,.15), rgba(124,58,237,.16));
  border: 1px solid rgba(30,58,138,.15);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px -16px rgba(30,58,138,.6);
  transition: transform .3s ease;
}
.svc-ico-wrap i { font-size: 34px; color: var(--red); }
.svc-card:hover .svc-ico-wrap { transform: translateY(-3px) rotate(-5deg); }

.svc-from { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--subtle); text-transform: uppercase; }
.svc-name { font-size: 1.08rem; font-weight: 700; margin: 12px 0 8px; }
.svc-desc { font-size: .86rem; color: var(--muted); line-height: 1.65; flex-grow: 1; margin-bottom: 20px; }
.svc-price { font-size: 1.45rem; font-weight: 900; color: var(--red); }
.svc-link {
  color: var(--red); text-decoration: none;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.svc-link:hover { gap: 9px; color: var(--red-l); }

/* Service category label */
.cat-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }

/* ─── FEATURE CARD ─────────────────────────────────────── */
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 30px; height: 100%;
  transition: all .28s ease;
}
.feat-card:hover { border-color: var(--border-h); background: var(--card-h); transform: translateY(-3px); }
.feat-card i {
  font-size: 32px; color: var(--red);
  width: 70px; height: 70px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, rgba(255,90,60,.12), rgba(124,58,237,.13));
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 18px;
  transition: transform .3s ease;
}
.feat-card:hover i { transform: scale(1.06) rotate(-5deg); }
.feat-card h4 { font-size: .98rem; font-weight: 700; margin-bottom: 6px; }
.feat-card p { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ─── ABOUT STAT BOX ───────────────────────────────────── */
.about-box {
  background: linear-gradient(145deg, #f8faff, #eef2fb);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.about-stat {
  padding: 26px 22px;
  border-bottom: 1px solid rgba(30,58,138,.08);
}
.about-stat:last-child { border-bottom: none; }
.about-stat i { font-size: 21px; color: var(--red); display: block; margin-bottom: 10px; }
.about-num { font-size: 2.1rem; font-weight: 900; line-height: 1; display: inline; color: #0f172a; }
.about-sfx { font-size: 1.4rem; font-weight: 900; color: #0f172a; }
.about-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Service / tech pills */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.pill {
  background: rgba(30,58,138,.07);
  border: 1px solid rgba(30,58,138,.18);
  border-radius: 50px; padding: 5px 13px;
  font-size: 12px; color: #172554; font-weight: 500;
}

/* ─── BRAND MARQUEE BANNER ─────────────────────────────── */
.red-banner {
  background: linear-gradient(130deg, #1e3a8a, #172554);
  padding: 13px 0; overflow: hidden; border-radius: 14px; margin-top: 20px;
}
.red-track {
  display: flex; gap: 44px; width: max-content;
  animation: tickerAnim 14s linear infinite;
}
.red-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; white-space: nowrap;
  color: rgba(255,255,255,.88);
}
.red-item i { font-size: 6px; }

/* ─── TECH PILLS ───────────────────────────────────────── */
.tech-pill {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 15px 28px;
  font-size: 16px; font-weight: 700; color: #0f172a;
  transition: all .28s;
  box-shadow: 0 2px 10px rgba(30,58,138,.07);
}
.tech-pill i { color: var(--red); font-size: 15px; }
.tech-pill img { width: 28px; height: 28px; object-fit: contain; display: block; }
.tech-pill:hover { background: #eff6ff; border-color: rgba(30,58,138,.3); transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 28px -12px rgba(30,58,138,.4); }

/* ─── PORTFOLIO CARD ───────────────────────────────────── */
.port-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; height: 100%;
  transition: all .28s ease;
}
.port-card:hover { border-color: var(--border-h); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(30,58,138,.08); }

.port-thumb {
  height: 210px;
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.port-thumb i { font-size: 54px; color: rgba(255,255,255,.92); transition: transform .3s; position: relative; z-index: 1; }
.port-card:hover .port-thumb i { transform: scale(1.15); }

.port-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(30,58,138,.06); opacity: 0; transition: opacity .3s;
}
.port-card:hover .port-thumb-overlay { opacity: 1; }

.port-body { padding: 22px; }
.port-tag { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--red); text-transform: uppercase; margin-bottom: 8px; }
.port-body h3 { font-size: 1.07rem; font-weight: 700; margin-bottom: 8px; }
.port-body p { font-size: .84rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.port-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.port-meta-tag {
  background: rgba(30,58,138,.07);
  border: 1px solid rgba(30,58,138,.16);
  border-radius: 50px; padding: 3px 10px; font-size: 11px; color: #475569;
}
.port-link {
  color: var(--red); text-decoration: none;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.port-link:hover { gap: 9px; color: var(--red-l); }

/* ─── PROCESS CARD ─────────────────────────────────────── */
.proc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  position: relative; overflow: hidden;
  transition: all .28s ease;
}
.proc-card:hover { border-color: var(--border-h); background: var(--card-h); }
.proc-num { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--red); margin-bottom: 12px; }
.proc-card h3 { font-size: 1.07rem; font-weight: 700; margin-bottom: 10px; }
.proc-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; margin: 0; }
.proc-bg {
  position: absolute; right: -8px; bottom: -18px;
  font-size: 6.5rem; font-weight: 900; line-height: 1;
  color: rgba(30,58,138,.055); pointer-events: none; letter-spacing: -.04em;
}

/* ─── TESTIMONIAL CARD ─────────────────────────────────── */
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px; height: 100%;
  transition: all .28s ease;
}
.testi-card:hover { border-color: var(--border-h); background: var(--card-h); }
.quote-ico {
  font-size: 30px; color: var(--accent);
  width: 62px; height: 62px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, rgba(255,90,60,.12), rgba(124,58,237,.12));
  border-radius: 16px; margin-bottom: 18px;
}
.testi-txt { font-size: .88rem; line-height: 1.75; color: #334155; margin-bottom: 18px; }
.testi-name { font-size: .9rem; font-weight: 700; }
.testi-role { font-size: .78rem; color: var(--muted); }
.stars { color: var(--red); font-size: 12px; letter-spacing: 1px; }

/* ─── FAQ ACCORDION ────────────────────────────────────── */
.faq-acc .accordion-item {
  background: var(--card);
  border: 1px solid var(--border) !important;
  border-radius: 14px !important; margin-bottom: 10px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(30,58,138,.05);
}
.faq-acc .accordion-button {
  background: var(--card); color: #0f172a;
  font-weight: 600; font-size: .94rem; padding: 18px 22px;
  box-shadow: none;
}
.faq-acc .accordion-button:not(.collapsed) { background: #eff6ff; color: #172554; box-shadow: none; }
.faq-acc .accordion-button::after { filter: none; }
.faq-acc .accordion-body { background: #eff6ff; color: var(--muted); font-size: .88rem; line-height: 1.72; padding: 0 22px 18px; }

/* ─── NEWSLETTER BOX ───────────────────────────────────── */
.nl-box {
  background: linear-gradient(145deg, #f0f6ff, #eef2fb);
  border: 1px solid rgba(30,58,138,.18);
  border-radius: 20px; padding: 36px 32px;
}
.nl-box input {
  background: #ffffff;
  border: 1px solid rgba(30,58,138,.2);
  color: #0f172a; border-radius: 50px; padding: 11px 18px; font-size: 14px;
}
.nl-box input::placeholder { color: #94a3b8; }
.nl-box input:focus { background: #fff; border-color: #1e3a8a; color: #0f172a; box-shadow: none; }

/* ─── CTA BOX ──────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(145deg, #172554, #1e3a8a);
  border: none;
  border-radius: 24px; padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  pointer-events: none;
}

/* ─── FOOTER ───────────────────────────────────────────── */
footer { background: #0f172a; border-top: none; padding: 60px 0 30px; }
.foot-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.foot-ico {
  width: 38px; height: 38px; background: #1e293b;
  border: 1px solid rgba(96,165,250,.3);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: #fff;
}
.foot-brand-name { font-weight: 700; font-size: 17px; color: #fff; }
.foot-brand-name span { color: #60a5fa; }
.foot-desc { font-size: .84rem; color: #94a3b8; line-height: 1.72; max-width: 270px; margin-bottom: 18px; }
.foot-contact {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: .82rem; color: #94a3b8; text-decoration: none; margin-bottom: 9px;
}
.foot-contact i { color: #60a5fa; margin-top: 2px; flex-shrink: 0; }
.foot-contact:hover { color: #fff; }
.foot-h { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.foot-link { display: block; font-size: 12.5px; color: #94a3b8; text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.foot-link:hover { color: #fff; }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.soc-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: #94a3b8; text-decoration: none; font-size: 14px; transition: all .2s;
}
.soc-btn:hover { background: rgba(96,165,250,.15); border-color: rgba(96,165,250,.3); color: #60a5fa; }
.foot-divider { border-color: rgba(255,255,255,.07); margin: 36px 0 20px; }
.foot-copy { font-size: 11.5px; color: #475569; }

/* ─── WHATSAPP FLOAT ───────────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 22px; right: 22px;
  width: 50px; height: 50px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; text-decoration: none;
  z-index: 1000; box-shadow: 0 4px 16px rgba(37,211,102,.38);
  transition: transform .2s;
}
.wa-btn:hover { transform: scale(1.12); color: #fff; }

/* ─── SCROLL ANIMATIONS ────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* ─── ABOUT PAGE: TIMELINE ─────────────────────────────── */
.timeline-item { display: flex; gap: 20px; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.tl-dot {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(30,58,138,.1);
  border: 1px solid rgba(30,58,138,.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: var(--red);
}
.tl-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.tl-body p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* About page: value cards */
.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 30px; height: 100%;
  transition: all .28s ease;
}
.value-card:hover { border-color: var(--border-h); background: var(--card-h); transform: translateY(-3px); }
.value-card i { font-size: 28px; color: var(--red); display: block; margin-bottom: 14px; }
.value-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: .86rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ─── PORTFOLIO PAGE: FILTER TABS ──────────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-tab {
  background: #ffffff;
  border: 1px solid rgba(30,58,138,.15);
  border-radius: 50px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: #64748b;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 1px 3px rgba(30,58,138,.05);
}
.filter-tab:hover, .filter-tab.active {
  background: rgba(30,58,138,.1);
  border-color: rgba(30,58,138,.3); color: #172554;
}

/* ─── CONTACT PAGE: FORM ───────────────────────────────── */
.form-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: 0 2px 12px rgba(30,58,138,.06); }
.form-label-c { font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 7px; }
.form-ctrl {
  width: 100%;
  background: #f8faff;
  border: 1px solid rgba(30,58,138,.18);
  border-radius: 12px; padding: 13px 16px;
  font-size: 14px; color: #0f172a; outline: none;
  font-family: 'Rubik', sans-serif; transition: border-color .2s;
}
.form-ctrl:focus { border-color: #1e3a8a; background: #eff6ff; }
.form-ctrl::placeholder { color: #94a3b8; }
select.form-ctrl option { background: #fff; color: #0f172a; }
textarea.form-ctrl { resize: vertical; min-height: 130px; }

/* Contact info cards */
.info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px; margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 14px; transition: border-color .25s;
}
.info-card:hover { border-color: var(--border-h); }
.info-ico {
  width: 42px; height: 42px;
  background: rgba(30,58,138,.1); border: 1px solid rgba(30,58,138,.2);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red); flex-shrink: 0;
}
.info-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-val { font-size: .88rem; color: #0f172a; font-weight: 600; text-decoration: none; }
.info-val:hover { color: var(--red); }
.info-sub { font-size: .78rem; color: var(--muted); margin-top: 2px; }

.map-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 14px; }
.map-inner { width: 100%; height: 220px; border: none; display: block; }

.success-banner {
  display: none;
  background: rgba(22,163,74,.12); border: 1px solid rgba(22,163,74,.35);
  border-radius: 14px; padding: 16px 20px;
  color: #4ade80; font-size: 14px; font-weight: 600; margin-top: 18px;
}

/* ─── POLICY PAGES ─────────────────────────────────────── */
.policy-wrap { background: var(--bg2); padding: 60px 0 80px; }
.policy-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 44px; }
.policy-content h3 {
  font-size: 1.07rem; font-weight: 700; color: #0f172a;
  margin-top: 32px; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(30,58,138,.1);
}
.policy-content h3:first-child { margin-top: 0; }
.policy-content p, .policy-content li { font-size: .88rem; color: #475569; line-height: 1.8; margin-bottom: 10px; }
.policy-content ul { padding-left: 20px; }
.policy-content a { color: var(--red); text-decoration: none; }
.policy-content a:hover { text-decoration: underline; }
.policy-meta { font-size: .82rem; color: var(--subtle); margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid rgba(30,58,138,.1); }

/* Policy page: table styles */
.policy-content table { width: 100%; border-collapse: collapse; font-size: .85rem; margin: 16px 0; }
.policy-content th { background: rgba(30,58,138,.08); color: #0f172a; font-weight: 700; padding: 10px 14px; text-align: left; border: 1px solid rgba(30,58,138,.18); }
.policy-content td { padding: 10px 14px; color: #475569; border: 1px solid rgba(30,58,138,.08); }
.policy-content tr:nth-child(even) td { background: rgba(30,58,138,.03); }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-h1 { font-size: 2.1rem; }
  .page-h1 { font-size: 2rem; }
  .sec-title { font-size: 1.75rem; }
  .cta-box { padding: 40px 20px; }
  .nl-box { padding: 24px 18px; }
  .form-wrap { padding: 24px 18px; }
  .policy-card { padding: 24px 18px; }
}

/* ═══════════════════════════════════════════════════════
   CREATIVE AGENCY — ADDED COMPONENTS
   ═══════════════════════════════════════════════════════ */

/* ─── MARKETPLACE WALL ─────────────────────────────────── */
.market-section { padding: 70px 0; }
.market-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.market-cell {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transition: all .28s ease;
  min-height: 92px;
}
.market-cell:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: 0 16px 34px -16px rgba(30,58,138,.35); }
.market-cell i { font-size: 24px; color: var(--red-l); }
.market-cell span { font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
@media (max-width: 991px){ .market-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 520px){ .market-grid{ grid-template-columns: repeat(2,1fr); } }

/* ─── SERVICE CARD (featured variant) ──────────────────── */
.svc-card.feat-svc { background: var(--grad-hero); border-color: transparent; color: #fff; }
.svc-card.feat-svc .svc-name,
.svc-card.feat-svc .svc-price { color: #fff; }
.svc-card.feat-svc .svc-desc { color: rgba(255,255,255,.82); }
.svc-card.feat-svc .svc-from { color: rgba(255,255,255,.6); }
.svc-card.feat-svc .svc-ico-wrap { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }
.svc-card.feat-svc .svc-ico-wrap i { color: #fff; }
.svc-card.feat-svc .svc-link { color: #ffd2c7; }
.svc-card.feat-svc:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -18px rgba(23,37,84,.7); }

/* ─── WORK / CASE STUDY SHOWCASE ───────────────────────── */
.work-card {
  position: relative;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  height: 100%;
  transition: all .3s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-h); }
.work-visual {
  height: 230px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.work-visual::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent);
}
.work-visual i { font-size: 58px; color: rgba(255,255,255,.92); position: relative; z-index: 1; }
.work-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 50px;
}
.work-metric {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: rgba(11,18,32,.78); color: #fff; backdrop-filter: blur(6px);
  font-size: 12px; font-weight: 800;
  padding: 6px 12px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 6px;
}
.work-metric i { font-size: 12px; color: #4ade80; }
.work-body { padding: 22px; }
.work-body h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 7px; color: var(--ink); }
.work-body p { font-size: .86rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.work-tag { font-size: 11px; font-weight: 600; color: #41506b; background: var(--bg2); border-radius: 50px; padding: 4px 11px; }

/* gradient backgrounds for work visuals */
.bg-grad-1 { background: linear-gradient(135deg,#1e3a8a,#3b2c8f); }
.bg-grad-2 { background: linear-gradient(135deg,#ff5a3c,#e8431f); }
.bg-grad-3 { background: linear-gradient(135deg,#2563eb,#0ea5e9); }
.bg-grad-4 { background: linear-gradient(135deg,#7c3aed,#db2777); }
.bg-grad-5 { background: linear-gradient(135deg,#0f766e,#16a34a); }
.bg-grad-6 { background: linear-gradient(135deg,#172554,#1e3a8a); }

/* ─── SECTION HEADER (centered eyebrow) ────────────────── */
.sec-head { max-width: 640px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── MARQUEE STRIP (accent) ───────────────────────────── */
.marquee-strip {
  background: var(--ink); color: #fff;
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 38px; width: max-content;
  animation: tickerAnim 26s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; white-space: nowrap;
  color: #fff;
}
.marquee-item i { color: var(--accent); font-size: 14px; }
.marquee-item.ghost { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════════
   MEDIA BANNERS — video, parallax & 1:1 tiles
   ═══════════════════════════════════════════════════════ */

/* ─── FULL-WIDTH CINEMATIC VIDEO BANNER ────────────────── */
.cine-banner {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  background: #0b1220;
}
.cine-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cine-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(115deg, rgba(11,18,32,.92) 0%, rgba(23,37,84,.78) 45%, rgba(124,58,237,.45) 100%);
}
.cine-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 50%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 70% 50%, black 20%, transparent 75%);
}
.cine-content { position: relative; z-index: 2; color: #fff; padding: 80px 0; }
.cine-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 8px 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.cine-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,90,60,.3); }
.cine-h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 900; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 18px; }
.cine-sub { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 540px; line-height: 1.7; margin-bottom: 30px; }
.cine-stats { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 38px; }
.cine-stat .n { font-size: 2.1rem; font-weight: 900; line-height: 1; }
.cine-stat .l { font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 4px; }
.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  border-radius: 12px; padding: 14px 26px;
  font-weight: 700; font-size: 14.5px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-light:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px; padding: 14px 26px;
  font-weight: 700; font-size: 14.5px; text-decoration: none;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }
@media (max-width: 575px){ .cine-banner{ min-height: 460px; } .cine-stats{ gap: 24px; } }

/* ─── FULL-WIDTH PARALLAX IMAGE BANNER ─────────────────── */
.img-banner {
  position: relative;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.img-banner-overlay {
  background: linear-gradient(115deg, rgba(11,18,32,.93), rgba(30,58,138,.72));
  padding: 90px 0;
}
.img-banner .pill-stat {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 10px 18px; color: #fff; font-weight: 600; font-size: 14px;
}
.img-banner .pill-stat i { color: var(--accent); font-size: 17px; }
@media (max-width: 991px){ .img-banner{ background-attachment: scroll; } }

/* ─── 1:1 SQUARE BANNER TILES ──────────────────────────── */
.sq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sq-banner {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  display: block; text-decoration: none;
}
.sq-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.sq-banner:hover img { transform: scale(1.09); }
.sq-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,18,32,.05) 30%, rgba(11,18,32,.85) 100%);
  transition: background .3s;
}
.sq-banner:hover .sq-overlay { background: linear-gradient(180deg, rgba(30,58,138,.25) 20%, rgba(11,18,32,.9) 100%); }
.sq-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px; color: #fff;
}
.sq-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; margin-bottom: auto;
}
.sq-tag { position: absolute; top: 18px; left: 18px; z-index: 2; }
.sq-content h3 { font-size: 1.12rem; font-weight: 800; margin: 0 0 5px; }
.sq-content p { font-size: .82rem; color: rgba(255,255,255,.8); margin: 0; }
.sq-content .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: #ffd2c7; }
.sq-banner:hover .sq-content .more { gap: 10px; }
@media (max-width: 991px){ .sq-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .sq-grid{ grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   CTA — REDESIGNED (high contrast)
   ═══════════════════════════════════════════════════════ */
.cta-pro {
  position: relative;
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(620px 320px at 12% 8%,  rgba(255,90,60,.40), transparent 60%),
    radial-gradient(680px 360px at 88% 92%, rgba(124,58,237,.55), transparent 62%),
    linear-gradient(135deg, #142057 0%, #1e3a8a 42%, #3b1f7a 100%);
  box-shadow: 0 40px 90px -34px rgba(23,37,84,.75);
}
/* grid texture */
.cta-pro::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 25%, transparent 80%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 25%, transparent 80%);
}
/* shine sweep */
.cta-pro::after {
  content: ''; position: absolute; top: -60%; left: -10%; z-index: -1;
  width: 50%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: rotate(18deg);
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 8px 18px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.cta-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,90,60,.35); }
.cta-h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.025em;
  margin: 0 auto 16px; max-width: 760px;
}
.cta-h2 .hl {
  background: linear-gradient(92deg, #ffd27a 0%, #ff8a4c 45%, #ff5a3c 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.02rem; line-height: 1.7;
  max-width: 520px; margin: 0 auto 36px;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-pro .btn-light { padding: 16px 30px; font-size: 15px; }
.cta-pro .btn-ghost { padding: 16px 30px; font-size: 15px; }
.cta-note {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px;
  margin-top: 30px;
}
.cta-note span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.78); font-weight: 500; }
.cta-note i { color: #4ade80; font-size: 15px; }
@media (max-width: 575px){ .cta-pro { padding: 52px 22px; border-radius: 22px; } }

/* ═══════════════════════════════════════════════════════
   THIN HEADINGS — lighter weights site-wide
   ═══════════════════════════════════════════════════════ */
/* Large display headings → light */
.hero-h1,
.page-h1,
.sec-title,
.cta-h2,
.cine-h2 {
  font-weight: 300;
  letter-spacing: -.015em;
}

/* Gradient / highlighted words stay a touch heavier for legibility */
.hero-h1 .grad, .hero-h1 .grad-accent,
.sec-title .grad, .sec-title .grad-accent,
.page-h1 .grad, .page-h1 .grad-accent,
.cta-h2 .hl,
.cine-h2 .grad-accent {
  font-weight: 500;
}

/* Card & sub-section headings → medium */
.svc-name,
.feat-card h4,
.port-body h3,
.proc-card h3,
.testi-name,
.work-body h3,
.sq-content h3,
.value-card h4,
.tl-body h5,
.policy-content h3 {
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   BRAND LOGOS (image)
   ═══════════════════════════════════════════════════════ */
.brand-logo {
  height: 46px; width: auto; display: block;
  transition: height .3s ease;
}
#navbar.scrolled .brand-logo { height: 38px; }
.foot-brand { align-items: center; }
.foot-logo { height: 52px; width: auto; display: block; }
@media (max-width: 575px){ .brand-logo { height: 38px; } }

/* Page-hero gradient word — bright on dark banner */
.page-h1 .grad,
.page-h1 .grad-accent {
  background: linear-gradient(92deg, #8fd3ff 0%, #b89bff 60%, #ff9a7a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — design polish
   ═══════════════════════════════════════════════════════ */
.form-wrap { position: relative; overflow: hidden; }
.form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 55%, var(--red-l));
}
.form-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.form-head .fh-ico {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255,90,60,.14), rgba(124,58,237,.16));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--accent-d);
}
.form-head h2 { margin: 0; font-size: 1.45rem; font-weight: 500; color: var(--ink); }
.form-head p { margin: 2px 0 0; color: var(--muted); font-size: .86rem; }

/* info cards (right column) */
.info-card {
  border-radius: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.info-card:hover { transform: translateY(-3px); border-color: var(--border-h); box-shadow: 0 16px 34px -18px rgba(30,58,138,.4); }
.info-ico {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(150deg, rgba(37,99,235,.13), rgba(124,58,237,.13));
  border: 1px solid rgba(30,58,138,.15);
  font-size: 20px;
}

/* aside intro card */
.contact-promise {
  background: var(--grad-hero);
  border-radius: 18px; padding: 24px;
  color: #fff; margin-bottom: 18px; position: relative; overflow: hidden;
}
.contact-promise::after {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,60,.4), transparent 70%);
}
.contact-promise h3 { font-size: 1.15rem; font-weight: 500; margin: 0 0 14px; position: relative; }
.cp-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.9); margin-bottom: 10px; position: relative; }
.cp-item:last-child { margin-bottom: 0; }
.cp-item i { color: #4ade80; font-size: 16px; }

/* map */
.map-inner { height: 240px; }
.map-full { line-height: 0; }
.map-full iframe {
  width: 100%; height: 460px; border: 0; display: block;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 575px){ .map-full iframe { height: 340px; } }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE — redesigned elements
   ═══════════════════════════════════════════════════════ */
/* Story visual */
.about-visual { position: relative; }
.about-visual img { width: 100%; border-radius: 24px; display: block; box-shadow: var(--shadow-lg); }
.about-visual .av-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(11,18,32,.7); color: #fff; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 50px;
}
.about-float {
  position: absolute; bottom: -28px; left: -20px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 18px 24px; box-shadow: var(--shadow-lg);
  display: flex; gap: 26px;
}
.af-stat .n { font-size: 1.7rem; font-weight: 500; color: var(--ink); line-height: 1; }
.af-stat .n span { color: var(--accent); }
.af-stat .l { font-size: 11px; color: var(--muted); margin-top: 4px; }
@media (max-width: 991px){
  .about-float { position: static; margin-top: 18px; left: 0; justify-content: space-around; }
}

/* Mission & Vision */
.mv-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 22px;
  padding: 38px 34px; height: 100%; position: relative; overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.mv-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-ico {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(150deg, rgba(255,90,60,.14), rgba(124,58,237,.16));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent-d); margin-bottom: 20px;
}
.mv-card h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; color: var(--ink); }
.mv-card p { color: var(--muted); line-height: 1.8; font-size: .92rem; margin: 0; }
.mv-bg {
  position: absolute; right: -10px; bottom: -24px;
  font-size: 7rem; line-height: 1; color: rgba(30,58,138,.05); pointer-events: none;
}

/* Value tiles (About) */
.value-tile {
  text-align: center; padding: 36px 24px;
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  height: 100%; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.value-tile:hover { transform: translateY(-5px); border-color: var(--border-h); box-shadow: var(--shadow-lg); }
.value-tile .vt-ico {
  width: 76px; height: 76px; border-radius: 22px; margin: 0 auto 20px;
  background: linear-gradient(150deg, rgba(37,99,235,.13), rgba(124,58,237,.14));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; color: var(--red); transition: transform .3s ease;
}
.value-tile:hover .vt-ico { transform: scale(1.08) rotate(-5deg); }
.value-tile h4 { font-size: 1.08rem; font-weight: 500; margin-bottom: 8px; color: var(--ink); }
.value-tile p { font-size: .85rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE — rich service cards
   ═══════════════════════════════════════════════════════ */
.cat-head { margin: 0 0 28px; }
.cat-head .cat-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-d); margin-bottom: 8px;
}
.cat-head .cat-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.cat-head h3 { font-size: 1.6rem; font-weight: 300; letter-spacing: -.01em; color: var(--ink); margin: 0 0 6px; }
.cat-head p { font-size: .92rem; color: var(--muted); margin: 0; max-width: 640px; line-height: 1.6; }

.svc-rich {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.svc-rich:hover { transform: translateY(-5px); border-color: var(--border-h); box-shadow: var(--shadow-lg); }
.svc-rich:hover .svc-media { transform: scale(1.06); }
.svc-media-wrap { position: relative; height: 168px; overflow: hidden; }
.svc-media {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.svc-media-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(23,37,84,.45), rgba(11,18,32,.8));
}
.svc-cat-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 50px;
}
.svc-ico-badge {
  position: absolute; left: 22px; bottom: -26px; z-index: 3;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad-hero); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 12px 26px -10px rgba(23,37,84,.8); border: 2px solid #fff;
}

.svc-rich-body { padding: 40px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-rich-body .svc-name { font-size: 1.12rem; font-weight: 500; margin-bottom: 8px; color: var(--ink); }
.svc-rich-body .svc-desc { font-size: .87rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.svc-features { list-style: none; padding: 0; margin: 0 0 18px; }
.svc-features li { font-size: .83rem; color: #41506b; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.svc-features li i { color: #16a34a; font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.svc-foot {
  margin-top: auto; display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--bg2);
}
.svc-foot .svc-from-lbl { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--subtle); display: block; }
.svc-foot .svc-price { font-size: 1.3rem; font-weight: 500; color: var(--red); line-height: 1.1; }
.svc-foot .svc-link { color: var(--accent-d); font-size: 13px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.svc-foot .svc-link:hover { gap: 9px; }

/* ═══════════════════════════════════════════════════════
   CAREERS PAGE
   ═══════════════════════════════════════════════════════ */
.perk-tile { text-align: center; padding: 30px 22px; }
.perk-tile .pt-ico {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 16px;
  background: linear-gradient(150deg, rgba(255,90,60,.13), rgba(124,58,237,.14));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--accent-d);
}
.perk-tile h4 { font-size: 1rem; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.perk-tile p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin: 0; }

.job-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 24px 26px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.job-card:hover { transform: translateY(-3px); border-color: var(--border-h); box-shadow: var(--shadow-lg); }
.job-ico {
  width: 60px; height: 60px; flex-shrink: 0; border-radius: 16px;
  background: var(--grad-hero); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 12px 26px -12px rgba(23,37,84,.7);
}
.job-main { flex: 1; min-width: 240px; }
.job-main h3 { font-size: 1.15rem; font-weight: 500; margin: 0 0 8px; color: var(--ink); }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-bottom: 10px; }
.job-tag {
  font-size: 11.5px; font-weight: 600; color: #41506b;
  background: var(--bg2); border-radius: 50px; padding: 4px 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.job-tag.hot { background: rgba(255,90,60,.1); color: var(--accent-d); }
.job-tag i { font-size: 12px; }
.job-main p { font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.6; }
.job-cta { flex-shrink: 0; }
@media (max-width: 575px){ .job-cta { width: 100%; } .job-cta .btn-r { width: 100%; justify-content: center; } }

/* ═══════════════════════════════════════════════════════
   PROJECT CARDS (real screenshots)
   ═══════════════════════════════════════════════════════ */
.proj-card {
  display: block; text-decoration: none; height: 100%;
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.proj-card:hover { transform: translateY(-6px); border-color: var(--border-h); box-shadow: var(--shadow-lg); }
.proj-shot { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg2); }
.proj-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 3.5s ease; }
.proj-card:hover .proj-shot img { object-position: bottom center; }
.proj-cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(11,18,32,.78); color: #fff; backdrop-filter: blur(6px);
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 50px;
}
.proj-shot::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 70%, rgba(11,18,32,.12));
  opacity: 0; transition: opacity .3s;
}
.proj-card:hover .proj-shot::after { opacity: 1; }
.proj-body { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.proj-body h3 { font-size: 1.02rem; font-weight: 500; margin: 0 0 2px; color: var(--ink); }
.proj-url { font-size: .78rem; color: var(--muted); }
.proj-go {
  font-size: 17px; color: var(--accent-d); flex-shrink: 0;
  transition: transform .25s ease;
}
.proj-card:hover .proj-go { transform: translate(2px,-2px); }
