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

:root {
  --paper:     #f8f7f4;
  --paper-mid: #efefec;
  --paper-dim: #e4e3df;
  --ink:       #0c0c0d;
  --ink-mid:   #2a2a2d;
  --ink-soft:  #5a5a60;
  --ink-dim:   #9a9aa0;
  --blue:      #1428A0;
  --blue-mid:  #1e3bbf;
  --blue-soft: rgba(20,40,160,.08);
  --blue-line: rgba(20,40,160,.18);
  --ice:       #2a4fbb;
  --line:      rgba(0,0,0,0.08);
  --line-mid:  rgba(0,0,0,0.12);
  --ease:      cubic-bezier(0.22,1,0.36,1);
  --cp-red: #e53935;
  --cp-overlay: rgba(0,0,0,0.55);
  --cp-radius: 18px;
  --cp-shadow: 0 24px 80px rgba(0,0,0,0.18);
  --blue:       #1428A0;
  --blue-mid:   #1e3bbf;
  --blue-dark:  #0d1c72;
  --gold:       #D4AF37;
  --gold-light: #FFE566;
  --ink:        #0c0c0d;
  --ink-soft:   #5a5a60;
  --paper:      #f8f7f4;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* CURSOR */
.c-dot { position:fixed; width:6px; height:6px; background:var(--ink); border-radius:50%; pointer-events:none;  z-index: 2147483647 !important; transform:translate(-50%,-50%); mix-blend-mode:multiply; }
.c-ring { position:fixed; width:32px; height:32px; border:1px solid rgba(0,0,0,.25); border-radius:50%; pointer-events:none;  z-index: 2147483647 !important; transform:translate(-50%,-50%); transition:width .4s var(--ease),height .4s var(--ease); mix-blend-mode:multiply; }

/* NAV */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 64px; height:68px;
  transition:background .5s, border-color .5s, backdrop-filter .5s;
  border-bottom:1px solid transparent;
}
.nav.scrolled { background:rgba(248,247,244,.92); backdrop-filter:blur(20px); border-color:var(--line); }
.nav-brand { font-size:15px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--ink); text-decoration:none; }
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a { font-size:11px; font-weight:400; letter-spacing:.08em; color:var(--ink-dim); text-decoration:none; text-transform:uppercase; transition:color .3s; }
.nav-links a:hover { color:var(--ink); }
.nav-right { display:flex; gap:12px; align-items:center; }
.nav-btn { font-size:11px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; padding:9px 22px; border-radius:2px; text-decoration:none; transition:all .3s; cursor:none; }
.nav-btn-ghost { color:var(--ink-soft); border:1px solid var(--line-mid); background:transparent; }
.nav-btn-ghost:hover { border-color:rgba(0,0,0,.3); color:var(--ink); }
.nav-btn-solid { background:var(--blue); color:#fff; border:1px solid var(--blue); }
.nav-btn-solid:hover { background:var(--blue-mid); }

/* HERO */
.hero {
  position:relative; height:100svh; min-height:700px;
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; overflow:hidden;
  background: var(--paper);
}
.hero-left { padding:160px 80px 100px; display:flex; flex-direction:column; justify-content:center; position:relative; z-index:2; }
.hero-tag { display:inline-flex; align-items:center; gap:10px; font-size:10px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--ice); margin-bottom:36px; opacity:0; transform:translateY(16px); animation:up .8s var(--ease) .1s forwards; }
.hero-tag::before { content:''; width:28px; height:1px; background:var(--ice); }
.hero-headline { font-family:'Cormorant Garamond',serif; font-size:clamp(68px,7.5vw,69px); font-weight:300; line-height:.92; letter-spacing:-.02em; color:var(--ink); opacity:0; transform:translateY(24px); animation:up .9s var(--ease) .25s forwards; }
.hero-headline em { font-style:italic; color:var(--ink-soft); }
.hero-divider { width:40px; height:1px; background:var(--ink-dim); margin:36px 0; opacity:0; animation:fadeIn .8s var(--ease) .5s forwards; }
.hero-body { font-size:14px; font-weight:300; line-height:1.85; color:var(--ink-soft); max-width:360px; opacity:0; transform:translateY(16px); animation:up .8s var(--ease) .55s forwards; }
.hero-actions { display:flex; gap:14px; align-items:center; margin-top:48px; opacity:0; animation:up .8s var(--ease) .7s forwards; }

.btn { display:inline-flex; align-items:center; gap:8px; font-family:'Outfit',sans-serif; font-size:11px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; text-decoration:none; padding:14px 32px; border-radius:2px; cursor:none; transition:all .35s var(--ease); }
.btn-primary { background:var(--blue); color:#fff; border:1px solid var(--blue); }
.btn-primary:hover { background:var(--blue-mid); transform:translateY(-2px); box-shadow:0 12px 40px rgba(20,40,160,.25); }
.btn-line { background:transparent; color:var(--ink-soft); border:1px solid var(--line-mid); }
.btn-line:hover { border-color:rgba(0,0,0,.3); color:var(--ink); transform:translateY(-2px); }
.arrow-icon { transition:transform .3s; }
.btn:hover .arrow-icon { transform:translateX(4px); }

.hero-right { position:relative; height:100%; display:flex; align-items:center; justify-content:center; }
.hero-bg-glow { position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle, rgba(20,40,160,.06) 0%, transparent 70%); pointer-events:none; }
.hero-phone-wrap { position:relative; z-index:2; opacity:0; animation:phoneReveal 1.4s var(--ease) .4s forwards; }
@keyframes phoneReveal { from{opacity:0;transform:translateY(40px) scale(.96)} to{opacity:1;transform:translateY(0) scale(1)} }
.phone-float { animation:float 7s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* SPECS BAR */
.specs-bar { border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:grid; grid-template-columns:repeat(5,1fr); background:var(--paper); }
.spec { display:flex; flex-direction:column; align-items:center; padding:36px 20px; border-right:1px solid var(--line); gap:6px; opacity:0; transform:translateY(12px); transition:opacity .6s var(--ease),transform .6s var(--ease); }
.spec:last-child { border-right:none; }
.spec.vis { opacity:1; transform:translateY(0); }
.spec-val { font-family:'Cormorant Garamond',serif; font-size:42px; font-weight:300; line-height:1; letter-spacing:-.02em; color:var(--ink); }
.spec-val sup { font-size:16px; vertical-align:super; font-weight:300; }
.spec-lbl { font-size:10px; font-weight:400; letter-spacing:.12em; color:var(--ink-dim); text-transform:uppercase; text-align:center; }

/* ===========================
   CAMERA / PLAYER SECTIONS
   =========================== */
.camera-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.camera-section:nth-child(even) {
  background: var(--paper-mid);
}

.camera-content {
  padding: 80px 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.camera-header {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--ice);
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 10px;
  flex-shrink: 0;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ice);
}

.camera-heading-group {
  display: flex;
  align-items: baseline;
  gap: 40px;
  flex-wrap: wrap;
}

.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
  white-space: nowrap;
}
.section-h em { font-style: italic; color: var(--ink-soft); }

.section-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 340px;
}

/* ===========================
   PLAYER CARDS GRID
   =========================== */
.camera-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* ---- PLAYER CARD ---- */
.cs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
}
.cs:hover {
  transform: translateY(-5px);
  border-color: rgba(20,40,160,0.22);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}
.cs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity .28s;
}
.cs:hover::before { opacity: 1; }

/* Photo */
.cs-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eef0f5;
  position: relative;
}
.cs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s var(--ease);
}
.cs:hover .cs-img img { transform: scale(1.05); }

/* TEAM LOGO BADGE â€” bottom-left of photo */
.team-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
  z-index: 2;
}
.team-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* RANK BADGE â€” top-right */
.rank-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
}

/* STAT BUBBLE â€” bottom-right of photo */
.stat-bubble {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--blue);
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
}
.stat-bubble span {
  font-size: 8px;
  display: block;
  text-align: center;
  opacity: .8;
  line-height: 1;
}

/* Card body */
.cs-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
}

.cs-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs-team-lbl {
  font-size: 10px;
  color: var(--blue);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}
.cs-num sup { font-size: 13px; vertical-align: super; }

.cs-lbl {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* Mini stats row */
.cs-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 4px;
}
.cs-mini-stats.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.ms {
  background: #f4f5f8;
  border-radius: 6px;
  padding: 5px 6px;
  text-align: center;
}
.ms-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.ms-lbl {
  font-size: 8px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* TEAM CARDS specific */
.cs-team-logo-wrap {
  width: 100%;
  padding: 28px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8f9fc;
  border-bottom: 1px solid var(--line);
}
.cs-team-logo-wrap img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.cs-team-fallback {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 500; color: var(--blue);
  display: none;
}

/* Score chip for team cards */
.score-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 4px;
}
.score-chip strong { font-size: 14px; font-weight: 600; }

/* cs-info (legacy, kept for fallback) */
.cs-info {
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ===========================
   FEATURES
   =========================== */
.features-section { background:var(--paper); border-bottom:1px solid var(--line); }
.features-header { padding:100px 80px 60px; display:flex; justify-content:space-between; align-items:flex-end; border-bottom:1px solid var(--line); }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); border-left:1px solid var(--line); }
.feat { padding:60px 56px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); position:relative; overflow:hidden; opacity:0; transform:translateY(20px); transition:opacity .7s var(--ease),transform .7s var(--ease),background .4s; }
.feat.vis { opacity:1; transform:translateY(0); }
.feat:hover { background:var(--paper-mid); }
.feat::after { content:''; position:absolute; bottom:0;left:0;right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(20,40,160,.4),transparent); transform:scaleX(0); transition:transform .5s var(--ease); }
.feat:hover::after { transform:scaleX(1); }
.feat-num { font-family:'Cormorant Garamond',serif; font-size:11px; font-weight:400; letter-spacing:.15em; color:var(--ink-dim); margin-bottom:40px; }
.feat-icon { margin-bottom:28px; width:40px;height:40px; display:flex; align-items:center; justify-content:center; border:1px solid var(--line-mid); border-radius:2px; background:var(--paper-dim); transition:border-color .3s,background .3s; }
.feat:hover .feat-icon { border-color:rgba(20,40,160,.3); background:var(--blue-soft); }
.feat-name { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:400; line-height:1.1; margin-bottom:16px; color:var(--ink); }
.feat-desc { font-size:13px; font-weight:300; line-height:1.8; color:var(--ink-soft); }
.feat-chip { display:inline-block; margin-top:24px; font-size:9px; font-weight:500; letter-spacing:.18em; text-transform:uppercase; color:var(--ice); border-top:1px solid var(--blue-line); padding-top:16px; width:100%; }

/* AI SECTION */
.ai-section { background:var(--paper-mid); border-bottom:1px solid var(--line); display:grid; grid-template-columns:1fr 1fr; min-height:75vh; }
.ai-left { padding:100px 80px; border-right:1px solid var(--line); display:flex; flex-direction:column; justify-content:center; }
.ai-list { margin-top:52px; list-style:none; display:flex; flex-direction:column; }
.ai-item { display:flex; gap:24px; align-items:flex-start; padding:28px 0; border-bottom:1px solid var(--line); opacity:0; transform:translateX(-16px); transition:opacity .6s var(--ease),transform .6s var(--ease); }
.ai-item.vis { opacity:1; transform:translateX(0); }
.ai-item:first-child { border-top:1px solid var(--line); }
.ai-idx { font-family:'Cormorant Garamond',serif; font-size:13px; color:var(--ink-dim); font-weight:300; min-width:24px; margin-top:3px; }
.ai-item-title { font-size:15px; font-weight:400; margin-bottom:6px; color:var(--ink); }
.ai-item-desc { font-size:13px; font-weight:300; color:var(--ink-soft); line-height:1.7; }
.ai-right { display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; padding:80px; background:var(--paper); }
.ai-orb { position:relative; width:320px; height:320px; }
.ai-orb-ring { position:absolute; border-radius:50%; border:1px solid; top:50%;left:50%; transform:translate(-50%,-50%); }
.aor-1 { width:320px;height:320px; border-color:rgba(0,0,0,.05); }
.aor-2 { width:240px;height:240px; border-color:rgba(20,40,160,.12); animation:spinSlow 20s linear infinite; }
.aor-3 { width:160px;height:160px; border-color:rgba(20,40,160,.18); animation:spinSlow 12s linear infinite reverse; }
.aor-4 { width:80px;height:80px; border-color:rgba(20,40,160,.3); }
.ai-core { position:absolute; top:50%;left:50%; transform:translate(-50%,-50%); width:52px;height:52px; border-radius:50%; background:radial-gradient(circle at 35% 35%,var(--blue-mid),#03061a); box-shadow:0 0 50px rgba(20,40,160,.3); display:flex; align-items:center; justify-content:center; }
.ai-core-dot { width:16px;height:16px; border-radius:50%; background:rgba(200,215,255,.9); box-shadow:0 0 12px rgba(143,174,207,.6); }
.orb-particle { position:absolute; border-radius:50%; background:rgba(20,40,160,.6); box-shadow:0 0 8px rgba(20,40,160,.3); top:50%;left:50%; }
.op1 { width:6px;height:6px; margin:-3px; animation:orbit1 8s linear infinite; }
.op2 { width:4px;height:4px; margin:-2px; animation:orbit2 14s linear infinite reverse; }
.op3 { width:5px;height:5px; margin:-2.5px; animation:orbit3 5s linear infinite; }
@keyframes orbit1 { from{transform:rotate(0deg) translateX(120px)} to{transform:rotate(360deg) translateX(120px)} }
@keyframes orbit2 { from{transform:rotate(0deg) translateX(80px)} to{transform:rotate(360deg) translateX(80px)} }
@keyframes orbit3 { from{transform:rotate(45deg) translateX(160px)} to{transform:rotate(405deg) translateX(160px)} }
@keyframes spinSlow { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

/* COLORS */
.colors-section { display:grid; grid-template-columns:1fr 1fr; border-bottom:1px solid var(--line); min-height:60vh; }
.colors-content { padding:100px 80px; border-right:1px solid var(--line); display:flex; flex-direction:column; justify-content:center; background:var(--paper); }
.swatches { display:flex; flex-direction:column; margin-top:52px; border-top:1px solid var(--line); }
.swatch-row { display:flex; align-items:center; gap:20px; padding:22px 0; border-bottom:1px solid var(--line); cursor:none; transition:padding-left .3s var(--ease); }
.swatch-row:hover { padding-left:12px; }
.swatch-circle { width:36px;height:36px; border-radius:50%; border:1px solid var(--line-mid); flex-shrink:0; transition:transform .3s var(--ease),box-shadow .3s; }
.swatch-row:hover .swatch-circle { transform:scale(1.2); box-shadow:0 4px 20px rgba(0,0,0,.12); }
.swatch-info { flex:1; }
.swatch-name { font-size:14px; font-weight:400; color:var(--ink); }
.swatch-note { font-size:11px; font-weight:300; color:var(--ink-dim); margin-top:2px; }
.swatch-arrow { color:var(--ink-dim); font-size:16px; opacity:0; transition:opacity .3s,transform .3s; transform:translateX(-6px); }
.swatch-row:hover .swatch-arrow { opacity:1; transform:translateX(0); }
.colors-visual { position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; background:var(--paper-mid); }
.cv-glow { position:absolute;inset:0; background:radial-gradient(ellipse 60% 50% at 50% 50%,rgba(20,40,160,.05),transparent); }

/* PRICE */
.price-section { padding:140px 80px; text-align:center; position:relative; overflow:hidden; border-bottom:1px solid var(--line); background:var(--paper); }
.price-bg { position:absolute;inset:0; background:radial-gradient(ellipse 50% 60% at 50% 50%,rgba(20,40,160,.05),transparent); pointer-events:none; }
.price-tag-line { font-size:10px; font-weight:500; letter-spacing:.22em; text-transform:uppercase; color:var(--ice); display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom:32px; }
.price-tag-line::before,.price-tag-line::after { content:''; flex:1; max-width:80px; height:1px; background:var(--ice); opacity:.4; }
.price-h { font-family:'Cormorant Garamond',serif; font-size:clamp(60px,9vw,130px); font-weight:300; letter-spacing:-.03em; line-height:.9; margin-bottom:8px; color:var(--ink); }
.price-h em { font-style:italic; color:var(--ink-soft); }
.price-amount { font-family:'Cormorant Garamond',serif; font-size:clamp(40px,5vw,68px); font-weight:300; color:var(--blue); letter-spacing:-.02em; margin:16px 0 8px; }
.price-note { font-size:11px; font-weight:300; color:var(--ink-dim); letter-spacing:.06em; margin-bottom:52px; }
.price-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* FOOTER */
footer { border-top:1px solid var(--line); padding:48px 80px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; background:var(--paper-mid); }
.footer-brand { font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:rgba(0,0,0,.3); }
.footer-links { display:flex; gap:28px; flex-wrap:wrap; }
.footer-links a { font-size:11px; font-weight:300; letter-spacing:.06em; color:rgba(0,0,0,.3); text-decoration:none; transition:color .3s; }
.footer-links a:hover { color:rgba(0,0,0,.6); }
.footer-copy { font-size:11px; font-weight:300; color:rgba(0,0,0,.2); letter-spacing:.04em; }

/* REVEAL */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .85s var(--ease),transform .85s var(--ease); }
.reveal.vis { opacity:1; transform:translateY(0); }

@keyframes up { to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { to{opacity:1} }

@media(max-width:960px){
  .nav{padding:0 24px;} .nav-links,.nav-btn-ghost{display:none;}
  .hero{grid-template-columns:1fr;height:auto;padding-top:80px;}
  .hero-left{padding:80px 24px 60px;}
  .hero-right{height:420px;border-left:none;border-top:1px solid var(--line);}
  .specs-bar{grid-template-columns:repeat(3,1fr);}
  .camera-section,.ai-section,.colors-section{grid-template-columns:1fr;}
  .camera-content,.ai-left,.colors-content{padding:80px 24px;border-right:none;}
  .camera-visual,.ai-right,.colors-visual{height:340px;}
  .features-header{padding:80px 24px 40px;flex-direction:column;gap:24px;}
  .features-grid{grid-template-columns:1fr;}
  .feat{padding:48px 24px;}
  .price-section{padding:80px 24px;}
  footer{padding:40px 24px;flex-direction:column;text-align:center;}
  .camera-stats { grid-template-columns: repeat(2,1fr); gap:10px; }
  .camera-content { padding:56px 24px 64px; gap:40px; }
  .camera-header { flex-direction:column; gap:20px; }
  .camera-heading-group { flex-direction:column; gap:12px; }
  .section-h { white-space:normal; font-size:clamp(36px,9vw,52px); }
}

/* cities popup css start */
.city-popup-overlay {
  position:fixed;inset:0;z-index:99999;
  background:var(--cp-overlay);
  display:flex;align-items:center;justify-content:center;
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  animation:cpFadeIn .3s ease;
  
}
.city-popup-overlay.cp-hidden{display:none}
@keyframes cpFadeIn{from{opacity:0}to{opacity:1}}

.city-popup {
  background:#fff;border-radius:var(--cp-radius);
  box-shadow:var(--cp-shadow);
  width:min(92vw,920px);max-height:98vh;
  overflow-y:auto;padding:51px 17px;
  animation:cpSlideUp .35s cubic-bezier(.22,.68,0,1.2);
  scrollbar-width:thin;scrollbar-color:#ddd transparent;
}
.city-popup::-webkit-scrollbar{width:4px}
.city-popup::-webkit-scrollbar-thumb{background:#ddd;border-radius:4px}
@keyframes cpSlideUp{
  from{opacity:0;transform:translateY(30px) scale(.97)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

/* Search */
.cp-search-wrap{
  display:flex;align-items:center;gap:12px;
  border:1.5px solid #e0e0e0;border-radius:10px;
  padding:13px 18px;transition:border-color .2s;
}
.cp-search-wrap:focus-within{border-color:var(--cp-red)}
.cp-search-input{
  border:none;outline:none;width:100%;
  font-size:15px;font-family:inherit;color:#333;background:transparent;
}
.cp-search-input::placeholder{color:#aaa}

/* Detect */
.cp-detect{
  display:flex;align-items:center;gap:10px;
  background:none;border:none;cursor:pointer;
  color:var(--cp-red);font-size:14px;font-weight:500;
  font-family:inherit;padding:14px 0 0;transition:opacity .2s;
}
.cp-detect:hover{opacity:.75}
.cp-detect svg{animation:cpPulse 2s ease-in-out infinite}
@keyframes cpPulse{
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.15);opacity:.8}
}

/* Divider */
.cp-divider{height:1px;background:#f0f0f0;margin:20px 0}

/* Section title */
.cp-section-title{
  text-align:center;font-size:15px;font-weight:600;
  color:#222;margin-bottom:20px;letter-spacing:.02em;
}

/* Popular grid */
.cp-popular{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(80px,1fr));
  gap:12px 8px;
}
@media(max-width:600px){.cp-popular{grid-template-columns:repeat(4,1fr)}}

.cp-city-card{
  display:flex;flex-direction:column;align-items:center;
  gap:8px;cursor:pointer;padding:10px 6px;
  border-radius:10px;transition:background .18s,transform .18s;
}
.cp-city-card:hover{background:#fff4f4;transform:translateY(-2px)}
.cp-city-card.active{background:#fff4f4;outline:2px solid var(--cp-red)}
.cp-city-icon{width:62px;height:62px;display:flex;align-items:center;justify-content:center}
.cp-city-icon svg,.cp-city-icon img{width:100%;height:100%;object-fit:contain}
/* new add for mobile view */
@media (max-width: 768px) {

  .cp-city-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* force 4 */
    gap: 6px; /* aur kam gap */
    padding: 0 6px; /* side padding kam */
  }

  .cp-city-item {
    text-align: center;
    padding: 4px 2px; /* extra padding hatao */
  }

  .cp-city-icon {
    width: 32px;  /* thoda aur small */
    height: 32px;
    margin: 0 auto 3px;
  }

  .cp-city-name {
    font-size: 9px; /* text small */
    line-height: 1.1;
  }
}
/* end */
.cp-city-name{font-size:12px;font-weight:500;color:#333;text-align:center;line-height:1.3}

/* View All btn */
.cp-view-all-btn{
  display:block;margin:24px auto 0;
  background:none;border:none;cursor:pointer;
  color:var(--cp-red);font-size:15px;font-weight:600;
  font-family:inherit;padding:8px 20px;
  position:relative;transition:opacity .2s;
}
.cp-view-all-btn::after{
  content:'';display:block;height:1.5px;
  background:var(--cp-red);transform:scaleX(0);
  transition:transform .2s;border-radius:2px;
}
.cp-view-all-btn:hover::after{transform:scaleX(1)}
.cp-view-all-btn:hover{opacity:.8}
.cp-view-all-btn.cp-gone{display:none}

/* Other cities */
.cp-other-wrap.cp-other-hidden{display:none}
.cp-other-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:4px 0;
}
@media(max-width:600px){.cp-other-grid{grid-template-columns:repeat(2,1fr)}}

.cp-other-city{
  font-size:13px;color:#666;padding:5px 6px;
  cursor:pointer;border-radius:5px;
  transition:color .15s,background .15s;
}
.cp-other-city:hover{color:var(--cp-red);background:#fff4f4}
.cp-other-city.cp-hidden-item{display:none}

/* Hide All btn */
.cp-hide-all-btn{
  display:block;margin:22px auto 0;
  background:none;border:1.5px solid #e0e0e0;
  cursor:pointer;color:var(--cp-red);
  font-size:14px;font-weight:600;font-family:inherit;
  padding:10px 28px;border-radius:8px;
  transition:background .18s,border-color .18s;
}
.cp-hide-all-btn:hover{background:#fff4f4;border-color:var(--cp-red)}

/* Search highlight */
.cp-highlight{background:#ffe5e5;border-radius:3px;padding:0 1px}
/* end */



/* ── Footer / Next Button ── */
.cp-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 0 2px 0;
  border-top: 1px solid #f0f0f3;
  margin-top: 10px;
}
.cp-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s, transform .15s, box-shadow .15s;
  outline: none;
}
.cp-next-btn:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.20);
}
.cp-next-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.cp-next-btn svg { flex-shrink: 0; }

/* other cities css start */
.cp-autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  z-index: 99999;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.cp-autocomplete-list.cp-ac-open { display: block; }
.cp-ac-item {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  color: #222;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .12s;
}
.cp-ac-item:last-child { border-bottom: none; }
.cp-ac-item:hover, .cp-ac-item.cp-ac-active { background: #f5f7ff; }

.cp-close {
  position: absolute;
  top: 10px;           /* Moved slightly up */
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #e53935;      /* Red color */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  font-size: 18px;
}
.cp-close:hover {
  background: #fee;
  transform: scale(1.05);
}

.cp-other-cities {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.cp-other-cities.show { display: block; }

.cp-other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #333;
}
.cp-city-link {
  cursor: pointer;
  padding: 4px 0;
  transition: color .2s;
}
.cp-city-link:hover {
  color: #e53935;
  text-decoration: underline;
}

.cp-show-all-wrap {
  text-align: center;
  margin: 20px 0 10px;
}
.cp-show-all-btn {
  background: none;
  border: none;
  color: #e53935;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}
/* Mobile view */
@media (max-width: 768px) {
  .cp-other-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 cities in one row */
    gap: 6px 10px; /* thoda gap kam */
  }

  .cp-city-link {
    font-size: 12px; /* text thoda compact */
  }
}

/* Agar 3 cities chahiye instead of 4, to ye use karo */
/*
@media (max-width: 768px) {
  .cp-other-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
*/
/* other cities end */


  
 @media (max-width: 768px) {
  #cpPopular {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 10px;
    overflow-x: hidden; /* remove horizontal scroll */
  }

  .cp-city-card {
    text-align: center;
  }

  .cp-city-icon svg {
    width: 100%;
    max-width: 45px; /* good size for 3 layout */
    height: auto;
  }

  .cp-city-name {
    font-size: 12px;
  }

  /* Default (Desktop) */
/* ── Base nav layout ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-desktop {
  display: flex;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 25px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #000;
  border-radius: 2px;
  display: block;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;              /* hidden by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 20px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;              /* shown when hamburger is clicked */
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

html, body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 30px 20px 40px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%) !important;
    min-height: auto;
  }

  /* Image block comes first */
  .hero-right {
    order: 1;
    width: 100%;
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Hide decorative labels and grid lines on mobile */
  .hero-right > div[style*="position:absolute"],
  .hero-right > div[style*="position: absolute"],
  .hero-bg-glow,
  .hero-right > svg {
    display: none !important;
  }

  /* Keep phone wrap visible and centered */
  .hero-phone-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
  }

  .phone-float {
    animation: floatPhone 3s ease-in-out infinite;
  }

  @keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
  }

  .hero-phone-wrap img {
    width: 180px;
    height: auto;
    margin-top: 0 !important;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  }

  /* Text block comes second */
  .hero-left {
    order: 2;
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-headline {
    font-size: 36px;
    line-height: 1.15;
    margin: 10px 0;
  }

  .hero-divider {
    margin: 14px auto;
  }

  .hero-body {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto 20px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 768px) {

  .hero-right {
    order: 1;
    width: 100%;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 60px;
    background: none;
    height: 150px;
  }

  /* Corner glow — strong at edges, fades toward center */
  .hero-right::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center,
      transparent 25%,
      rgba(212, 175, 55, 0.08) 45%,
      rgba(200, 160, 30, 0.14) 62%,
      rgba(180, 140, 20, 0.2)  78%,
      rgba(160, 120, 15, 0.28) 100%
    );
    z-index: 0;
    pointer-events: none;
  }

  /* Soft white clear zone right behind trophy */
  .hero-right::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.7)  25%,
      rgba(255, 252, 235, 0.3)  55%,
      transparent 75%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
  }

  /* No rings */
  .hero-phone-wrap::before,
  .hero-phone-wrap::after {
    display: none !important;
  }

  .hero-phone-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
  }

  .phone-float {
    position: relative;
    z-index: 2;
    animation: floatPhone 3s ease-in-out infinite;
  }

  @keyframes floatPhone {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
  }

  .hero-phone-wrap img {
    position: relative;
    z-index: 2;
    width: 190px;
    height: auto;
    margin-top: 0 !important;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(180, 140, 20, 0.2))
            drop-shadow(0 4px 14px rgba(0, 0, 0, 0.07));
  }

  /* Hide original decorative elements */
  .hero-bg-glow,
  .hero-right > svg,
  .hero-right > div[style*="position:absolute"],
  .hero-right > div[style*="position: absolute"] {
    display: none !important;
  }

  .hero-left {
    order: 2;
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #b8922a;
  }

  .hero-headline {
    font-size: 48px;
    line-height: 1.1;
    margin: 10px 0;
  }

  .hero-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #FFE566, #D4AF37);
    margin: 14px auto;
    border-radius: 2px;
  }

  .hero-body {
    font-size: 14px;
    line-height: 1.65;
    max-width: 320px;
    margin: 0 auto 22px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  @media (max-width: 768px) {

  /* Reduce the container height so top/bottom gap shrinks */
  .hero-right {
    min-height: 220px;    /* was 280px */
    padding: 10px 0;
  }

  /* Kill any top margin pushing image down */
  .hero-phone-wrap img {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Remove float animation extra space */
  .phone-float {
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Center the tag */
  .hero-tag {
    display: block;
    text-align: center;
  }

  }

  @media (max-width: 768px) {

  .features-header {
    text-align: center;
    flex-direction: column;   /* stack items */
    align-items: center;
  }

  .features-header p {
    max-width: 100%;
    text-align: center;
  }

 }
}

/* Override score-chip inside specs-bar — no border, no button look */
.specs-bar .score-chip {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 2.0rem;
  font-weight: 500;
  color: #1428A0;         /* same blue as pts */
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}

/* Make spec-val match same gold large style */
.specs-bar .spec-val {
  font-size: 2.0rem;
  font-weight: 500;
  color: #1428A0;         /* same gold */
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Superscripts inside spec-val stay proportional */
.specs-bar .spec-val sup {
  font-size: 0.55em;
  font-weight: 400;
  color: #1428A0;
}

/* Label stays muted below the number */
.specs-bar .spec-lbl {
  font-size: 11px;
  color: var(--color-text-secondary, #888);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
}

/* footer css start */
/* ═══════════════════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════════════════ */
.nl-sec {
  position: relative;
  padding: 100px 40px;
  background: var(--blue-dark);
  overflow: hidden;
  isolation: isolate;
}

/* Animated gradient orbs */
.nl-sec::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,140,255,0.22) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: nlOrb1 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
.nl-sec::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: nlOrb2 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes nlOrb1 { from{transform:translate(0,0) scale(1)} to{transform:translate(60px,40px) scale(1.15)} }
@keyframes nlOrb2 { from{transform:translate(0,0) scale(1)} to{transform:translate(-40px,-30px) scale(1.2)} }

/* Subtle grid overlay */
.nl-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

.nl-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Top badge */
.nl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 999px;
  background: rgba(212,175,55,0.08);
}
.nl-eyebrow::before,
.nl-eyebrow::after {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Icon */
.nl-icon {
  width: 80px; height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: nlIconFloat 4s ease-in-out infinite;
}
@keyframes nlIconFloat {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)}
}

.nl-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.nl-inner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.nl-inner p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 44px;
}

/* Form */
.nl-form-wrap {
  width: 100%;
  max-width: 540px;
  margin-bottom: 20px;
}

.nl-form {
  display: flex;
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.nl-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12), 0 8px 32px rgba(0,0,0,0.2);
}

.nl-form input[type="email"] {
  flex: 1;
  padding: 18px 22px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  min-width: 0;
}
.nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }

#submitBtn {
  padding: 18px 28px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0d1c72;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
#submitBtn:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

/* Alert */
#alertBox {
  margin-top: 12px;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
}

/* Note */
.nl-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Stat pills row */
.nl-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0;
}

.nl-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
}
.nl-stat:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.nl-stat-icon {
  font-size: 15px;
}
.nl-stat-count {
  font-weight: 700;
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 600px) {
  .nl-sec { padding: 70px 20px; }
  .nl-form { flex-direction: column; border-radius: 14px; }
  .nl-form input[type="email"] { border-radius: 12px 12px 0 0; }
  #submitBtn { border-radius: 0 0 12px 12px; padding: 16px; }
  .nl-stats { gap: 8px; }
  .nl-stat { font-size: 12px; padding: 8px 14px; }
}


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(160deg, #0a1560 0%, #0d1c72 35%, #111f80 65%, #0c1868 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

/* Diagonal lines texture */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    60deg,
    rgba(255,255,255,0.022) 0px,
    rgba(255,255,255,0.022) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
  z-index: 0;
}

/* Radial glow */
.site-footer::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,60,200,0.35) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── TOP ── */
.ft-top {
  display: grid;
  grid-template-columns: 340px 1fr 1fr 1fr;
  gap: 60px;
  padding: 64px 60px 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand block */
.ft-brand { display: flex; flex-direction: column; gap: 20px; }

.ft-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ft-logo-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.08));
  border: 1.5px solid rgba(212,175,55,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(212,175,55,0.15);
}

.ft-brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ft-brand-name strong {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ft-brand-name small {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.ft-tagline {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}

/* Divider line */
.ft-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* Social icons */
.ft-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ft-soc {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.ft-soc:hover {
  background: rgba(212,175,55,0.18);
  border-color: rgba(212,175,55,0.5);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.2);
  text-decoration: none;
}

/* Nav columns */
.ft-col { display: flex; flex-direction: column; }

.ft-col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  position: relative;
}
.ft-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-col ul li a {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s ease;
}
.ft-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease;
  flex-shrink: 0;
}
.ft-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
  text-decoration: none;
}
.ft-col ul li a:hover::before { width: 12px; }

/* ── MID STATS BAR ── */
.ft-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ft-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  gap: 4px;
  transition: background 0.2s;
}
.ft-stat-item:last-child { border-right: none; }
.ft-stat-item:hover { background: rgba(255,255,255,0.03); }

.ft-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ft-stat-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── BOTTOM BAR ── */
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  flex-wrap: wrap;
  gap: 14px;
}

.ft-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
}
.ft-copy span {
  color: var(--gold);
  font-weight: 600;
}

.ft-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.ft-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 300;
}
.ft-bottom-links a:hover { color: rgba(255,255,255,0.85); }

.ft-made {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ft-made span { color: rgba(212,175,55,0.6); font-size: 13px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .ft-top {
    grid-template-columns: 280px 1fr 1fr;
    gap: 40px;
    padding: 52px 40px 44px;
  }
  .ft-brand { grid-column: 1 / -1; }
  .ft-stats-bar { padding: 0 40px; }
  .ft-bottom { padding: 18px 40px; }
}

@media (max-width: 768px) {
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    padding: 40px 20px 32px;
  }
  .ft-brand { grid-column: 1 / -1; }
  .ft-tagline { max-width: 100%; font-size: 13px; }

  .ft-stats-bar {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .ft-stat-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 20px;
  }
  .ft-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .ft-stat-item:last-child { border-right: none; border-bottom: none; }
  .ft-stat-num { font-size: 26px; }

  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    gap: 12px;
  }
  .ft-bottom-links { gap: 12px; }
}

@media (max-width: 480px) {
  .ft-top {
    grid-template-columns: 1fr;
    padding: 28px 16px 24px;
    gap: 28px;
  }
  .ft-brand { grid-column: 1; }
  .ft-stat-item { flex: 0 0 50%; }
  .ft-stats-bar { padding: 0 16px; }
  .ft-bottom { padding: 14px 16px 20px; }
}
/* newsletter end */
/* next button css start */
.cp-autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  z-index: 99999;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.cp-autocomplete-list.cp-ac-open {
  display: block;
}
.cp-ac-item {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  color: #222;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .12s;
}
.cp-ac-item:last-child { border-bottom: none; }
.cp-ac-item:hover,
.cp-ac-item.cp-ac-active { background: #f5f7ff; }
.cp-ac-item svg { flex-shrink: 0; opacity: .45; }
.cp-ac-loader {
  padding: 12px 16px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
/* Make search wrap relative for absolute dropdown */
.cp-search-wrap { position: relative; }

.city-popup{
  position: relative;
}

/* .cp-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
} */

.cp-close{
  position: absolute;
  top: 4px;
  right: 9px;
  width: 38px;
  height: 38px;
  border-radius: 68%;
  border: none;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}

.cp-close:hover{
  background: #e0e0e0;
}

.cp-next-btn{
  opacity:.5;
  pointer-events:none;
  transition:.25s;
}

.cp-next-btn.cp-active{
  opacity:1;
  pointer-events:auto;
}
/* next button css */

/* about us css start */
/* about us  */

.sec {
  width: 100%;
  background: #f0f4f8;
  padding: 64px 24px 72px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.sec .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Badge tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #e8edf5;
  color: #3b4a6b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(30,58,138,0.12);
}

/* Section title */
.sec-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: #0d1b2a;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.sec-title .em {
  color: #1e3a8a;
}

/* Lead paragraph */
.sec-lead {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 48px;
}

/* Two-column grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* ── TIMELINE ── */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 28px;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #1e3a8a 0%, rgba(30,58,138,0.15) 100%);
}

.titem {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 28px;
  position: relative;
}

.titem:last-child {
  padding-bottom: 0;
}

/* Dot */
.titem::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.12);
  z-index: 1;
}

.t-year {
  font-size: 15px;
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: 0.02em;
}

.t-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.55;
  max-width: 480px;
}

/* ── FOUNDER CARD ── */
.founder-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid #e8edf5;
  position: sticky;
  top: 24px;
}

.fdr-av {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #3b5fcf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(30,58,138,0.25);
}

.fdr-name {
  font-size: 22px;
  font-weight: 900;
  color: #0d1b2a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.fdr-role {
  font-size: 11px;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.75;
}

.fdr-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fdr-badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 10px;
  background: #f4f7fb;
  border: 1px solid #e5e7eb;
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.fdr-badges .badge:hover {
  background: #eef2fb;
  border-color: rgba(30,58,138,0.2);
}

.fdr-badges .badge i {
  color: #1e3a8a;
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .sec {
    padding: 44px 16px 52px;
  }

  .sec-lead {
    font-size: 14px;
  }

  .fdr-name {
    font-size: 19px;
  }

  .founder-card {
    padding: 24px 20px;
  }
}
/* about us css end */

/* short clip css start */
/* ── SECTION ── */
    .clips-section {
      padding: 60px 24px;
      background: #fff;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      color:black;
      margin-bottom: 10px;
      letter-spacing: -0.5px;
    }

    .section-sub {
      font-size: 15px;
      color: #555;
      margin-bottom: 32px;
      max-width: 700px;
      line-height: 1.6;
    }

    .section-sub b {
      color: #111;
    }

    /* ── GRID ── */
    .clips-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    /* ── CARD ── */
    .clip-card {
      background: #111827;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .clip-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* ── THUMBNAIL ── */
    .thumb {
      position: relative;
      height: 180px;
      overflow: hidden;
      background: #0d1117;
    }

    .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .clip-card:hover .thumb img {
      transform: scale(1.08);
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.60);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      transition: background 0.2s;
    }

    .clip-card:hover .play-btn {
      background: rgba(0, 0, 0, 0.85);
    }

    /* ── CARD BODY ── */
    .card-body {
      padding: 12px 15px 16px;
    }

    .card-body h3 {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .card-tags {
      font-size: 13px;
      color: #f5a623;
    }

    /* ── MODAL BACKDROP ── */
    .video-modal {
      position: fixed;
      inset: 0;
      background: rgba(15, 15, 25, 0.90);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 20px;
    }

    .video-modal.active {
      display: flex;
    }

    /* ── MODAL BOX ── */
    .modal-content {
      position: relative;
      width: 100%;
      max-width: 900px;
      aspect-ratio: 16 / 9;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
    }

    .modal-content video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 16px;
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 14px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.65);
      color: #fff;
      font-size: 20px;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s;
    }

    .close-btn:hover {
      background: rgba(0, 0, 0, 0.9);
    }

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

    @media (max-width: 600px) {
      .clips-grid {
        grid-template-columns: 1fr;
      }
      .section-title {
        font-size: 24px;
      }
    }
/* short clip css end */

/* hero section banner start */
.pcl-hero-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 72px 64px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.pcl-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(20,40,160,0.03) 119px,
      rgba(20,40,160,0.03) 120px
    );
  pointer-events: none;
}

/* ── LEFT COLUMN ── */
.pcl-hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ── BADGE ── */
.pcl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--blue-line);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  width: fit-content;
}

.pcl-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pcl-pulse 2s ease-in-out infinite;
}

@keyframes pcl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ── HEADLINE ── */
.pcl-hero-headline {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 560px;
}

/* ── SUBTEXT ── */
.pcl-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 420px;
}

/* ── CTA ROW ── */
.pcl-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.pcl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  text-decoration: none;
  border: none;
  outline: none;
}

.pcl-btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(20,40,160,0.22);
}

.pcl-btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20,40,160,0.30);
}

.pcl-btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-mid);
}

.pcl-btn-outline:hover {
  background: var(--paper-mid);
  border-color: rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

/* ── RIGHT COLUMN ── */
.pcl-hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.pcl-video-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.pcl-video-card:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.pcl-video-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 16px 10px;
}

.pcl-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}

.pcl-thumb-s1 {
  background: linear-gradient(135deg, #0d1c72 0%, #1428A0 60%, #2a6dd9 100%);
}

.pcl-thumb-s2 {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 60%, #1428A0 100%);
}

.pcl-video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.12);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  font-family: 'Outfit', sans-serif;
}

.pcl-video-play-btn {
  position: absolute;
  bottom: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 12px 5px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.pcl-play-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pcl-play-icon svg {
  width: 8px;
  height: 8px;
  fill: var(--blue);
  margin-left: 1px;
}

.pcl-video-duration-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.2);
}

.pcl-video-duration-fill {
  height: 100%;
  width: 0%;
  background: #fff;
}

.pcl-video-card-caption {
  font-size: 12px;
  color: var(--ink-dim);
  padding: 8px 16px 14px;
}

.pcl-video-pcl-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(20,40,160,0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
  font-family: 'Outfit', sans-serif;
}

.pcl-video-live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Outfit', sans-serif;
}

/* ── FADE IN ANIMATION ── */
.pcl-hero-section .pcl-hero-left,
.pcl-hero-section .pcl-hero-right {
  animation: pcl-fadeUp 0.6s var(--ease) both;
}
.pcl-hero-section .pcl-hero-right { animation-delay: 0.1s; }

@keyframes pcl-fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pcl-hero-section {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }
}
/* end */
/* whatsapp */
.pcl-floating-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999; /* सबसे important */
}

.pcl-floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.pcl-floating-btn:hover {
  transform: scale(1.05);
}

.pcl-wa-label {
  font-size: 14px;
}

/* add new start*/
.cs-mini-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cs-mini-stats .ms {
  flex: 1;
  text-align: center;
}
.camera-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;                      /* ← reduce gap between button and heading */
  margin-bottom: 10px;
  margin-top: -10px;             /* ← lifts the whole header block up */
}

@media (min-width: 1024px) {
  .camera-header {
    align-items: flex-start;
    margin-top: -10px;           /* ← same lift on desktop */
  }
}

/* ── View More Button ── */
.view-more-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center; /* center text/icon */

  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1.5px solid var(--blue);
  background: transparent;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;

  margin: 20px auto; /* CENTER */
  width: fit-content; /* important for proper centering */
}

.view-more-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .view-more-btn {
    font-size: 11px;
    padding: 7px 14px;
    margin: 15px auto; /* slightly less spacing */
  }
}
/* end */
/* teaser css start */
/* PCL Carousel - Screenshot Style */
/* .pcl-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
} */

.pcl-slider-wrapper {
    position: relative;
    max-width: 99%;  /* ← 100% se 95% */
    margin: 0 auto;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 200, 0, 0.7);
    /* box-shadow: 0 0 10px rgba(255, 200, 0, 0.3); */
}

/* overflow ab inner div pe lagao */
#pclShowcase {
    overflow: hidden;
    border-radius: 7px;  /* wrapper se 1px kam */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

/* #pclShowcase {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
} */

/* Important fixes for Bootstrap 5 */
#pclShowcase .carousel-inner {
    position: relative;
    overflow: hidden;
    display: block !important;
}

#pclShowcase .carousel-item {
    position: relative;
    width: 100%;
    display: none !important;           /* initially hidden */
    transition: transform 0.8s ease-in-out;
}

#pclShowcase .carousel-item.active,
#pclShowcase .carousel-item-next,
#pclShowcase .carousel-item-prev {
    display: block !important;
}

/* Media */
#pclShowcase .carousel-item video,
#pclShowcase .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 420px;      /* Desktop */
    max-height: 650px;
    display: block;
}

/* Caption */
.carousel-caption {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 15px;
    color: #fff;
    max-width: 88%;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.carousel-caption small {
    font-weight: 500;
    letter-spacing: 0.6px;
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.carousel-control-prev { left: 15px; }
.carousel-control-next { right: 15px; }

/* Indicators */
.carousel-indicators {
    bottom: 18px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    margin: 0 6px;
    opacity: 1;
}

.carousel-indicators button.active {
    background-color: #00ff9d;
    width: 14px;
    height: 14px;
}

/* Mobile View */
@media (max-width: 768px) {
    #pclShowcase .carousel-item video,
    #pclShowcase .carousel-item img {
        min-height: 320px;
        max-height: 520px;
    }

    .carousel-caption {
        bottom: 8%;
        font-size: 13.5px;
        padding: 9px 20px;
        max-width: 92%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 42px;
        height: 42px;
    }
}
.section-card {
  display: none;
}

.section-card.active {
  display: block;
}
/* teaser css end */

/* Ecosystem section start */
.section{
  padding:40px 16px 0;
}

.container{
  max-width:1100px;
  margin:auto;
}

/* TOP STRIP */
.top-strip{
  background:linear-gradient(90deg,var(--navy),var(--blue));
  color:#1428a0;
  text-align:center;
  padding:12px 16px;
  font-weight:700;
  border-radius:10px;
  font-size:15px;
  margin-bottom:20px;
}

/* BRAND */
.brand{
  text-align:center;
  font-weight:800;
  font-family:'Montserrat';
  font-size:18px;
  margin-bottom:8px;
}

.brand span{
  color:var(--navy);
}

/* TITLE */
.title{
  text-align:center;
  font-family:'Montserrat';
  font-size:44px;
  font-weight:900;
  color:var(--blue);
  margin-bottom:24px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

/* CARD */
.card{
  border:1px solid #e6eefc;
  border-radius:16px;
  padding:22px;
  background:#fff;
  transition:.3s;
}

.card:hover{
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* LOGO */
.logo{
  text-align:center;
  margin-bottom:12px;
}

.logo img{
  max-height:90px;
}

/* TITLE */
.card h3{
  font-family:'Montserrat';
  font-size:20px;
  color:var(--navy);
  margin-bottom:10px;
}

/* TEXT */
.card p{
  font-size:14px;
  line-height:1.6;
  color:#374151;
}

/* NOTE */
.note{
  margin-top:22px;
  text-align:center;
  font-size:15px;
  line-height:1.7;
  color:#1e40af;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

/* BULLETS */
.note strong{
  display:block;
  font-size:18px;
  margin-bottom:8px;
  color:var(--navy);
}

.note ul{
  list-style:none;
  padding:0;
}

.note li{
  margin:4px 0;
}

/* BOTTOM */
.bottom{
  margin-top:26px;
  background:linear-gradient(90deg,#b88917,#d3a62d);
  color:#fff;
  text-align:center;
  padding:14px;
  font-size:14px;
  border-radius:14px 14px 0 0;
}

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

  .title{
    font-size:28px;
    margin-bottom:18px;
  }

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

  .card{
    padding:16px;
  }

  .logo img{
    max-height:70px;
  }

  .note{
    font-size:14px;
  }
}
/* end section */

/* brand sponsor start */
.bsp-section {
  background: #ffffff;
  padding: 60px 40px;
  font-family: 'Barlow', 'Outfit', sans-serif;
}

.bsp-inner {
  max-width: 1500px;
  margin: 0 auto;
}

/* Heading */
.bsp-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.bsp-title {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.bsp-year {
  font-size: 16px;
  color: #555;
  font-weight: 500;
  margin: 6px 0 0;
}

/* Grid */
.bsp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid #ddd;
}

.bsp-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  min-height: 110px;
  transition: background 0.2s;
  box-sizing: border-box;
}

.bsp-cell:hover {
  background: #f8f8f8;
}

/* Remove right border on every 4th cell */
.bsp-cell:nth-child(4n) {
  border-right: none;
}

/* Remove bottom border on last row */
.bsp-no-bottom {
  border-bottom: none;
}

/* Shared center utility */
.bsp-logo-center {
  text-align: center;
}

/* ── Hero ── */
.bsp-hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bsp-hero-icon {
  display: flex;
  gap: 3px;
  align-items: center;
}
.bsp-hero-bar {
  width: 10px;
  height: 36px;
  background: #e8001e;
}
.bsp-hero-tris {
  display: flex;
  flex-direction: column;
}
.bsp-hero-tri-top {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #e8001e;
}
.bsp-hero-tri-bot {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid #e8001e;
}
.bsp-hero-text {
  font-size: 15px;
  font-weight: 900;
  color: #e8001e;
  letter-spacing: 2px;
}

/* ── Yaris ── */
.bsp-yaris-name {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  letter-spacing: -1px;
  font-style: italic;
}
.bsp-toyota-sub {
  font-size: 10px;
  color: #e8001e;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 3px;
}

/* ── KEI ── */
.bsp-kei-name {
  font-size: 30px;
  font-weight: 900;
  color: #1a7cc7;
  line-height: 1;
}
.bsp-kei-sub {
  font-size: 9px;
  color: #444;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ── IFFCO ── */
.bsp-iffco-box {
  background: #1a8a3a;
  border-radius: 5px;
  padding: 8px 18px;
}
.bsp-iffco-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
}

/* ── Meinhardt ── */
.bsp-meinhardt-box {
  background: #1a4fa0;
  border-radius: 5px;
  padding: 8px 12px;
  text-align: center;
}
.bsp-meinhardt-name {
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
}
.bsp-meinhardt-sub {
  font-size: 7px;
  color: #99bde0;
  margin-top: 3px;
  line-height: 1.4;
}

/* ── Gaurs ── */
.bsp-gaurs-name {
  font-size: 26px;
  font-weight: 900;
  color: #111;
  letter-spacing: -1px;
}
.bsp-gaurs-tri {
  color: #4caf50;
}
.bsp-gaurs-sub {
  font-size: 9px;
  color: #888;
  margin-top: 2px;
}

/* ── Mahagun ── */
.bsp-mahagun-wave {
  color: #8fc6d8;
  font-size: 16px;
  letter-spacing: 4px;
}
.bsp-mahagun-name {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  letter-spacing: 3px;
  margin-top: 3px;
}

/* ── VI-John ── */
.bsp-vijohn-box {
  border: 2.5px solid #1a7cc7;
  border-radius: 5px;
  padding: 8px 14px;
  text-align: center;
}
.bsp-vijohn-name {
  font-size: 20px;
  font-weight: 900;
  color: #1a7cc7;
  letter-spacing: 1px;
}
.bsp-vijohn-sub {
  font-size: 9px;
  color: #444;
  margin-top: 2px;
}

/* ── Dafanews ── */
.bsp-dafa-box {
  background: #c0001e;
  border-radius: 5px;
  padding: 8px 16px;
}
.bsp-dafa-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}
.bsp-dafa-text span {
  font-weight: 900;
}

/* ── Monster ── */
.bsp-monster-name {
  font-size: 26px;
  font-weight: 900;
  color: #3a8c1c;
  font-family: serif;
  line-height: 1;
}
.bsp-monster-sub {
  font-size: 9px;
  color: #888;
  letter-spacing: 3px;
  margin-top: 2px;
}

/* ── SG ── */
.bsp-sg-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  border: 3px solid #c0001e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.bsp-sg-circle span {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}
.bsp-sg-tagline {
  font-size: 8px;
  color: #666;
  margin-top: 6px;
}

/* ── Max Protein ── */
.bsp-maxp-box {
  background: #f5d800;
  border-radius: 5px;
  padding: 6px 14px;
  text-align: center;
}
.bsp-maxp-explore {
  font-size: 8px;
  color: #555;
  font-style: italic;
}
.bsp-maxp-name {
  font-size: 17px;
  font-weight: 900;
  color: #222;
  line-height: 1.1;
}

/* ── Alcis ── */
.bsp-alcis-name {
  font-size: 24px;
  font-weight: 900;
  color: #8dc63f;
  letter-spacing: 1px;
}
.bsp-alcis-sub {
  font-size: 8px;
  color: #999;
  letter-spacing: 2px;
  margin-top: 3px;
}

/* ── Seven ── */
.bsp-seven-text {
  font-size: 26px;
  font-weight: 900;
  color: #111;
  letter-spacing: 3px;
}

/* ── Wild Stone ── */
.bsp-wildstone-text {
  font-size: 20px;
  font-weight: 900;
  color: #111;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.2;
}

/* ── Zeven ── */
.bsp-zeven-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bsp-zeven-star {
  color: #d45fa0;
  font-size: 22px;
  line-height: 1;
}
.bsp-zeven-name {
  font-size: 22px;
  font-weight: 700;
  color: #e85db0;
  letter-spacing: 1px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .bsp-section {
    padding: 40px 16px;
  }
  .bsp-title {
    font-size: 24px;
  }
  .bsp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bsp-cell:nth-child(4n) {
    border-right: 1px solid #ddd;
  }
  .bsp-cell:nth-child(2n) {
    border-right: none;
  }
  .bsp-no-bottom {
    border-bottom: 1px solid #ddd;
  }
  /* Last 2 cells remove bottom */
  .bsp-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .bsp-cell {
    padding: 1.2rem 0.6rem;
    min-height: 90px;
  }
  .bsp-yaris-name { font-size: 18px; }
  .bsp-kei-name   { font-size: 22px; }
  .bsp-gaurs-name { font-size: 20px; }
  .bsp-seven-text { font-size: 20px; }
}
/* end */