/* ═══════════════════════════════════════
   SpeedoCharz India — Global Stylesheet
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --green: #00E676;
  --green-dim: #00C853;
  --green-glow: rgba(0,230,118,0.15);
  --dark: #050A0E;
  --dark2: #0A1018;
  --dark3: #0F1923;
  --card: #111C28;
  --border: rgba(0,230,118,0.15);
  --text: #E8F5E9;
  --muted: #F3F6F4;
  --accent: #FFD600;
  --wa: #25D366;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* noise */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px;
  height: 100px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,10,14,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img {
  max-height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-fallback {
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--green);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: grid; place-items: center;
  font-size: 16px; color: var(--dark); font-weight: 900;
}
.logo-text { font-family:'Bebas Neue',sans-serif; font-size:24px; letter-spacing:2px; color:var(--text); }
.logo-text span { color: var(--green); }

.nav-main { display:flex; align-items:center; gap:6px; }
.nav-main a {
  font-size:13px; font-weight:600; letter-spacing:1px;
  color:var(--muted); text-decoration:none; text-transform:uppercase;
  padding: 6px 14px;
  transition: color .2s;
  position: relative;
}
.nav-main a::after {
  content:''; position:absolute; bottom:-2px; left:14px; right:14px;
  height:2px; background:var(--green); transform:scaleX(0); transition:transform .2s;
}
.nav-main a:hover, .nav-main a.active { color:var(--green); }
.nav-main a:hover::after, .nav-main a.active::after { transform:scaleX(1); }

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

.btn-nav-contact {
  display:inline-flex; align-items:center; gap:7px;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 7px 18px;
  font-family:'Rajdhani',sans-serif;
  font-size:13px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; text-decoration:none;
  clip-path: polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%);
  transition: all .2s;
}
.btn-nav-contact:hover { background:var(--green-glow); }

.btn-nav-career {
  display:inline-flex; align-items:center; gap:7px;
  background: var(--accent);
  color: var(--dark);
  padding: 7px 18px;
  font-family:'Rajdhani',sans-serif;
  font-size:13px; font-weight:800; letter-spacing:1.5px;
  text-transform:uppercase; text-decoration:none;
  clip-path: polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%);
  transition: all .2s;
}
.btn-nav-career:hover { background:#e6c000; }

.hamburger { display:none; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--green); margin:5px 0; transition:all .3s; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waPop 0.5s 1s ease both;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.6); }
.wa-float svg { width:28px; height:28px; fill:white; }
@keyframes waPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.wa-pulse {
  position:absolute; inset:0; border-radius:50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform:scale(1); opacity:.7; }
  100% { transform:scale(1.7); opacity:0; }
}

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 60px 36px;
}
.footer-top {
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size:14px; color:var(--muted); line-height:1.7; margin-top:14px; max-width:240px; }
.footer-col h4 { font-size:11px; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:var(--green); margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a {
  font-size:14px; color:var(--muted); text-decoration:none;
  display:flex; align-items:center; gap:6px; transition:color .2s;
}
.footer-col ul li a::before { content:'›'; color:var(--green); font-weight:700; }
.footer-col ul li a:hover { color:var(--green); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:28px; font-size:12px; color:var(--muted);
}
.footer-bottom b { color:var(--green); }
.footer-badges { display:flex; gap:8px; }
.footer-badge {
  padding:3px 10px; border:1px solid var(--border);
  font-size:9px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--muted);
  clip-path: polygon(4px 0%,100% 0%,calc(100% - 4px) 100%,0% 100%);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 320px;
  display:flex; align-items:flex-end;
  padding: 120px 60px 56px;
  position: relative; overflow:hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #071510 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,230,118,0.06) 0%, transparent 70%),
    repeating-linear-gradient(rgba(0,230,118,0.03) 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(0,230,118,0.03) 1px, transparent 1px 60px);
}
.page-hero-content { position:relative; z-index:2; }
.page-tag { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--green); margin-bottom:12px; }
.page-tag::before { content:''; width:28px; height:2px; background:var(--green); }
.page-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(44px,7vw,80px); letter-spacing:3px; line-height:1; }
.page-title span { color:var(--green); }
.page-sub { font-size:16px; color:var(--muted); margin-top:12px; max-width:500px; line-height:1.6; }

/* ── SECTION ── */
.section { padding: 80px 60px; }
.section-alt { background: var(--dark2); }
.section-tag { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--green); margin-bottom:14px; }
.section-tag::before { content:''; width:28px; height:2px; background:var(--green); }
.section-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(32px,4vw,52px); letter-spacing:2px; line-height:1.05; margin-bottom:12px; }
.section-title span { color:var(--green); }
.section-sub { font-size:15px; color:var(--muted); line-height:1.7; max-width:520px; }

/* ── BUTTONS ── */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--green); color:var(--dark);
  padding:13px 28px;
  font-family:'Rajdhani',sans-serif; font-size:15px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; text-decoration:none;
  clip-path:polygon(9px 0%,100% 0%,calc(100% - 9px) 100%,0% 100%);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow:0 0 24px rgba(0,230,118,0.2);
  border:none; cursor:pointer;
}
.btn-primary:hover { background:var(--accent); transform:translateY(-2px); }
.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--green);
  border:1.5px solid var(--green); padding:12px 28px;
  font-family:'Rajdhani',sans-serif; font-size:15px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; text-decoration:none;
  clip-path:polygon(9px 0%,100% 0%,calc(100% - 9px) 100%,0% 100%);
  transition: all .2s; cursor:pointer;
}
.btn-outline:hover { background:var(--green-glow); transform:translateY(-2px); }

/* clip-corner card */
.clip-card {
  clip-path:polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));
}
.clip-sm {
  clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
}

/* animations */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.4); }
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-10px); }
}

/* reveal on scroll */
.reveal {
  opacity:0; transform:translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  nav { padding:0 20px; }
  .nav-main { display:none; flex-direction:column; position:fixed; top:70px; left:0; right:0; background:rgba(5,10,14,0.97); padding:24px 28px; border-bottom:1px solid var(--border); gap:16px; }
  .nav-main.open { display:flex; }
  .hamburger { display:block; }
  .page-hero, .section { padding-left:24px; padding-right:24px; }
  footer { padding:48px 24px 28px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
}
@media(max-width:640px) {
  .nav-actions { gap:6px; }
  .btn-nav-career { display:inline-block !important; }
  .footer-top { grid-template-columns:1fr; }
}

/* ── PRODUCT SPEC HIGHLIGHT ── */
.product-spec {
    color: var(--green);       /* bright green, matches accent */
    font-weight: 600;          /* slightly bolder */
}

/* --- NAVBAR CONTAINER --- */
#main-nav {
  height: 100px;                  /* taller navbar for bigger buttons */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px 0 30px; /* top, right, bottom, left */
  background: rgba(5,10,14,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: height 0.3s;
}

/* Push page content below navbar */
body {
  padding-top: 80px; /* same as navbar height */
}

/* --- NAVBAR BUTTONS / LINKS --- */
.nav-main a {
  font-size: 18px;       /* larger text */
  padding: 15px 25px;    /* bigger clickable area */
  min-width: 120px;      /* wider buttons */
  text-align: center;
  border-radius: 6px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

/* Hover effect */
.nav-main a:hover {
  background-color: #7A9BAA; /* muted blue */
  color: #fff;
  transform: scale(1.05);
}









/* VIDEO FULLSCREEN BEHIND CONTENT */
#bg-video {
  position: fixed;      /* stays in place */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* fills screen, maintains aspect ratio */
  z-index: 0;           /* behind everything except navbar */
  pointer-events: none; /* clicks pass through */
  opacity: 0.4;         /* transparent so text is visible */
}

/* NAVBAR ABOVE VIDEO */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;        /* stays on top of video */
  background: rgba(5,10,14,0.9); /* semi-transparent so video shows slightly */
}

/* HERO CONTENT ABOVE VIDEO */
#hero {
  position: relative;
  z-index: 1;           /* above video, below navbar if needed */
  color: white;         /* text visible */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
}
