/* ═══════════════════════════════════════════════════════
   DEVANSH TECHNOCOM — style.css  v5
   Dark default · Light via body.light · All fixes included
   ═══════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS imported in HTML ── */

/* ── DARK MODE (default) ── */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.096);
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --green: #00ff88;
  --orange: #ff6b00;
  --text: #e8f0fe;
  --muted: #6b7fa3;
  --r: 16px;
  --hud: rgba(0, 212, 255, 0.55);
  --hud-dim: rgba(0, 212, 255, 0.1);
  --scrollbar-thumb: rgb(255, 0, 0);
  --scrollbar-bg: rgb(0, 255, 136);
}

/* ── FORCE LIGHT THEME as default ── */
:root {
  --bg: #f0f4ff;
  --surface: #ffffff;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border2: #cbd5e1;
  --accent: #1a56db;
  --accent2: #6d28d9;
  --green: #059669;
  --orange: #d97706;
  --red: #dc2626;
  --text: #0f172a;
  --text2: #334155;
  --muted: #64748b;
  --muted2: #94a3b8;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* Dark mode only when .dark class on body */
body.dark {
  --bg: #0a0e1a;
  --surface: #111827;
  --card: #1a2235;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --text2: #cbd5e1;
  --muted: #64748b;
}

/* ── LIGHT MODE ── */
body.light {
  --bg: #f0f4ff;
  --surface: #ffffff;
  --card: #f8faff;
  --border: rgba(0, 0, 0, 0.08);
  --accent: #0056b3;
  --accent2: #6d28d9;
  --green: #00a854;
  --orange: #d95e00;
  --text: #0d1a2e;
  --muted: #5a6b8a;
  --hud: rgba(0, 86, 179, 0.5);
  --hud-dim: rgba(0, 86, 179, 0.08);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.4s, color 0.4s;
}

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.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

body.light::before {
  opacity: 0.1;
}

/* ==========================================
   THEME-COMPATIBLE SCROLLBAR (Add to style.css)
   ========================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb);
}






/* ============================================
===============================================
=================this is hero final eith rolls royce logo custom===========
=====================================================
====================================================*/
/* --- CUSTOM CURSOR --- */
@media (pointer: fine) {
    body {
        cursor: none; /* Hides default cursor on desktop */
    }
}
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid rgba(58, 54, 54, 0.8);
    border-radius: 50%;
    pointer-events: none; /* Clicks pass through it */
    z-index: 99999999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border 0.3s ease;
    mix-blend-mode: difference; /* Makes it visible on light and dark backgrounds */
}
.custom-cursor.cursor-grow {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

/* Slideshow - Prevents Mobile Suppression */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Key to preventing squishing */
    background-position: center; /* Keeps subject in the middle */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
}

/* Dark gradient so white text always pops */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.4) 100%);
    z-index: 2;
}

/* Content Layout */
.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-text-area {
    max-width: 700px;
    padding-bottom: 50px;
}

/* Typography & The Solid Line */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #d6e4e7, #b5aac7, #8ca5aa, #7d758b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.solid-line {
    display: inline-block;
    width: 60px;
    height: 8px;
    background: linear-gradient(135deg, #7ec3d1, #3a4153); /* Tech Accent Color */
    vertical-align: middle;
    margin: 0 15px 10px 0;
    border-radius: 4px;
}
.dynamic-word {
    color: #00d4ff;
    transition: opacity 0.5s ease;
}
.dynamic-word.fade-out {
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #d1d5db;
}

/* Buttons */
.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: #00d4ff;
    color: #030712;
}
.btn-primary:hover {
    background-color: #00e6ff;
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Bottom Features */
.hero-features {
    display: flex;
    gap: 30px;
    padding-bottom: 50px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
}
.feature-icon {
    font-size: 1.5rem;
}
.feature-text {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.3;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 100px;
    }
    .hero-features {
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .feature-item {
        border-left: none;
        padding-left: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 15px;
    }
}




/* ══════════════════════════════════════
   DARK / LIGHT TOGGLE — image-style pill
══════════════════════════════════════ */
.theme-pill {
  position: relative;
  width: 76px;
  height: 36px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--border), 0 0 12px rgba(0, 212, 255, 0.15);
  transition: box-shadow 0.3s;
}

.theme-pill:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 0 20px rgba(0, 212, 255, 0.35);
}

/* Background layers — day and night images */
.theme-pill-bg {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
}

.theme-pill-bg.day {
  background: linear-gradient(135deg, #87CEEB 0%, #FDB813 40%, #ff8c00 100%);
  opacity: 0;
}

.theme-pill-bg.night {
  background: linear-gradient(135deg, #0d1b4e 0%, #1a237e 40%, #0d47a1 100%);
  opacity: 1;
}

/* Stars on night bg */
.theme-pill-bg.night::after {
  content: '✦ · ✦ ·';
  position: absolute;
  top: 4px;
  left: 6px;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
}

/* Slider knob */
.theme-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff8dc, #ffd700);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

/* Light mode state — knob slides right, day bg shows */
body.light .theme-pill-bg.day {
  opacity: 1;
}

body.light .theme-pill-bg.night {
  opacity: 0;
}

body.light .theme-knob {
  transform: translateX(40px);
  background: radial-gradient(circle at 40% 35%, #e8f4ff, #b0d0ff);
  box-shadow: 0 0 10px rgba(100, 180, 255, 0.6), 0 2px 6px rgba(0, 0, 0, 0.2);
}


/* Circuit grid */
.circuit-bg {
  background-image: linear-gradient(var(--hud-dim) 1px, transparent 1px), linear-gradient(90deg, var(--hud-dim) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 6, 15, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

body.light nav {
  background: rgba(240, 244, 255, 0.92);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--hud-dim);
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #c7e1fd;
  line-height: 1.1;
}

.nav-logo-sub {
  color: var(--accent);
  display: block;
  font-size: 8px;
  letter-spacing: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: #cbd5e1;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-ham span:nth-child(3) {
  display: none;
}

.nav-ham.active span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-ham.active span:nth-child(2) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* nav mobile handled below in sidebar section */

/* ══════════════════════════════════════
   MOBILE MENU — slides DOWN from top
══════════════════════════════════════ */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 100vh;
  background: rgba(3, 6, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 2000;
  /* slide UP off screen by default */
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-top: 70px;
  /* clear the fixed nav bar */
}

#sidebar.open {
  transform: translateY(0);
}

body.light #sidebar {
  background: rgba(240, 244, 255, 0.97);
}

/* Sidebar header — hidden on top-drop style, nav handles top bar */
.sidebar-head {
  display: none;
}

/* Nav items — centered, vertical stack */
.sidebar-nav {
  padding: 24px 20px 16px;
  display: flex;
  background: linear-gradient(135deg, #455a68, #655dda);
  opacity: 1;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 3240px;
  padding: 14px 2400000 px;
  font-size: 16px;
  font-weight: 600;
  color: linear-gradient(135deg, #e9e51b, #007bff);
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid;
  border-color: linear-gradient(135deg, #f0ff1c, #3641e0, #7df72b, #ff4d4d);
  background: linear-gradient(120deg, #e4db66, #49d0e7);
  transition: all 0.2s;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
}

.sidebar-nav a:hover,
.sidebar-nav a:active {
  color: var(--accent);
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.s-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Footer inside menu */
.sidebar-foot {
  padding: 16px 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sidebar-theme {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.sidebar-book {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 32px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  width: 100%;
  max-width: 320px;
  display: block;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.sidebar-book:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Overlay behind the menu */
#sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  backdrop-filter: blur(2px);
}

#sidebar-overlay.show {
  display: block;
}

/* Hide on desktop */
@media(min-width:901px) {

  #sidebar,
  #sidebar-overlay {
    display: none !important;
  }
}

/* ── MOBILE NAV BAR — only logo + portal btn + hamburger ── */
@media(max-width:900px) {
  nav {
    padding: 10px 16px;
  }

  /* Hide theme pill and desktop CTA button from mobile nav bar */
  nav .theme-pill,
  nav .nav-cta {
    display: none !important;
  }

  /* Show portal/login button on mobile nav instead */
  .nav-portal-btn {
    display: flex !important;
    align-items: center;
    gap: 7px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--accent);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .nav-portal-btn:hover {
    background: rgba(0, 212, 255, 0.18);
  }

  .nav-logo-sub {
    display: none !important;
  }
}

/* Hidden on desktop by default */
.nav-portal-btn {
  display: none;
}

/* Hamburger → X animation */
.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-ham.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-ham.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

@media(max-width:900px) {
  nav {
    padding: 10px 16px;
  }

  .nav-links {
    display: none !important;
  }

  .nav-ham {
    display: flex;
  }
}


/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 1px;
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.marquee-item.hi {
  color: var(--accent);
}

/* ══════════════════════════════════════
   SHARED SECTION
══════════════════════════════════════ */
.section-pad {
  padding: 100px 40px;
}

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

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sec-tag::before {
  content: '//';
  opacity: 0.5;
}

h2.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

h2.sec-title .ac {
  color: var(--accent);
}

.sec-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

@media(max-width:600px) {
  .section-pad {
    padding: 70px 20px;
  }
}

/* ══════════════════════════════════════
   BENTO GRID
══════════════════════════════════════ */
.services-section {
  background: var(--surface);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 212, 255, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

.bento-card:hover::before {
  opacity: 1;
}

.bc1 {
  grid-column: span 5;
  grid-row: span 2;
}

.bc2 {
  grid-column: span 4;
}

.bc3 {
  grid-column: span 3;
}

.bc4 {
  grid-column: span 4;
}

.bc5 {
  grid-column: span 3;
}

.bc6 {
  grid-column: span 5;
}

.bc7 {
  grid-column: span 7;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.ico-blue {
  background: rgba(0, 212, 255, 0.12);
}

.ico-purple {
  background: rgba(124, 58, 237, 0.15);
}

.ico-green {
  background: rgba(0, 255, 136, 0.1);
}

.ico-orange {
  background: rgba(255, 107, 0, 0.12);
}

.bento-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.bento-tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--accent);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}

.bc1 .bento-big-num {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5,
  .bc6,
  .bc7 {
    grid-column: span 2;
    grid-row: span 1;
  }
}

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

  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5,
  .bc6,
  .bc7 {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.25);
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.feat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.feat-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process-section {
  background: var(--surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.step-card {
  text-align: center;
  padding: 0 20px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.step-card:hover .step-circle {
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
  color: var(--accent);
}

.step-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--muted);
}

@media(max-width:600px) {
  .process-steps::before {
    display: none;
  }

  .process-steps {
    gap: 32px;
  }
}

/* ══════════════════════════════════════
   BOOK A SERVICE FORM
══════════════════════════════════════ */
.form-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.form-bg-circuit {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--hud-dim) 1px, transparent 1px), linear-gradient(90deg, var(--hud-dim) 1px, transparent 1px);
  background-size: 40px 40px;
}

.form-section .section-center {
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}

.form-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.form-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.fi-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.fi-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fi-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fi-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.fi-text span {
  font-size: 12px;
  color: var(--muted);
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
  font-family: 'Space Grotesk', sans-serif;
}

.form-submit:hover {
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.5);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
}

.form-success.show {
  display: block;
}

.form-success h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 14px;
}

body.light .form-group input,
body.light .form-group select,
body.light .form-group textarea {
  background: white;
  border-color: rgba(0, 0, 0, 0.12);
}

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════════
   NEWSLETTER SECTION
══════════════════════════════════════ */
.newsletter-section {
  background: var(--surface);
}

.newsletter-inner {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.nl-text {
  flex: 1;
  min-width: 240px;
}

.nl-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.nl-text p {
  color: var(--muted);
  font-size: 14px;
}

.nl-form {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 300px;
}

.nl-input {
  flex: 1;
  padding: 13px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nl-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.nl-btn {
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.3);
  font-family: 'Space Grotesk', sans-serif;
}

.nl-btn:hover {
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.5);
  transform: translateY(-1px);
}

.nl-success {
  color: var(--green);
  font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
  display: none;
}

.nl-success.show {
  display: block;
}

@media(max-width:700px) {
  .newsletter-inner {
    flex-direction: column;
    padding: 36px 24px;
  }

  .nl-form {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-section {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.06), transparent 60%);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-type {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.price-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.price-val .cur {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  color: var(--accent);
}

.price-val .per {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.price-feat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.price-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}

.price-feat-item .chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

.btn-plan {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-plan-pri {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-plan-pri:hover {
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.5);
  transform: translateY(-1px);
}

.btn-plan-sec {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-plan-sec:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-section {
  overflow: hidden;
  background: var(--bg);
}

.reviews-section .hdr {
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.reviews-track-wrap {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviewScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.rev-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  width: 320px;
  flex-shrink: 0;
}

.rev-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 12px;
}

.rev-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rev-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.rev-name {
  font-weight: 600;
  font-size: 13px;
}

.rev-loc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-section {
  background: var(--surface);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.blog-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}

.blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5));
}

.blog-tag-over {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: white;
  background: rgba(0, 212, 255, 0.6);
  border-radius: 50px;
  padding: 3px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-date {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

.blog-read {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section {
  background: var(--bg);
}

.cta-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.cta-card>p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
}

.cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.cta-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
}

.cta-call:hover {
  border-color: var(--accent);
  color: var(--accent);
}

body.light .cta-card {
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.06), rgba(109, 40, 217, 0.08));
  border-color: rgba(0, 86, 179, 0.2);
}

@media(max-width:600px) {
  .cta-card {
    padding: 40px 24px;
  }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-logo img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 8px;
}

.foot-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.foot-logo-sub {
  color: var(--accent);
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
}

.foot-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 260px;
}

.foot-address {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 8px;
}

.foot-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
}

.foot-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--accent);
}

.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.foot-bottom p {
  font-size: 12px;
  color: var(--muted);
}

.foot-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.foot-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* Terms link in footer */
.terms-link {
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.2s;
}

.terms-link:hover {
  color: var(--accent);
}

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

  footer {
    padding: 50px 24px 24px;
  }
}

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

/* ══════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════ */

/* ── BACK TO TOP — LEFT side with fill border ── */
#back-top {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card);
  border: 2px solid var(--border);
  color: var(--accent);
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9997;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#back-top.show {
  display: flex;
}

#back-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 10px;
}

#back-top:hover::before {
  opacity: 1;
}

#back-top:hover {
  color: white;
  border-color: var(--accent);
}

#back-top span {
  position: relative;
  z-index: 1;
}

/* ── FLOATING ACTION BUTTONS ── */
.fab-group {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 9997;
}

/* WhatsApp FAB — real logo */
.fab-wa {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fabPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
  position: relative;
  right: 4px;
  bottom: 2px;
}

.fab-wa::before,
.fab-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: fabWave 2s ease-out infinite;
}

.fab-wa::after {
  animation-delay: 0.8s;
}

.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes fabPop {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes fabWave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Call FAB */
.fab-call {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #61f8cb, #243fd4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  animation: fabPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}

.fab-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.6);
}

/* Book FAB */
.fab-book {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.35);
  transition: all 0.3s;
  animation: fabPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
  font-size: 18px;
}

.fab-book:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 212, 255, 0.55);
}

/* FAB labels on hover */
.fab-label {
  position: absolute;
  right: 62px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  color: var(--text);
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fab-wa:hover .fab-label,
.fab-call:hover .fab-label,
.fab-book:hover .fab-label {
  opacity: 1;
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════════════════════════════════
   TERMS POPUP MODAL
══════════════════════════════════════ */
#terms-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#terms-modal.show {
  display: flex;
}

.terms-modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.terms-modal-head {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terms-modal-head h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.terms-modal-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s;
}

.terms-modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.terms-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}

.terms-modal-body h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--text);
}

.terms-modal-body h4:first-child {
  margin-top: 0;
}

.terms-modal-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.terms-modal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 16px;
}

.terms-modal-body ul li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.terms-modal-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.terms-modal-foot {
  padding: 16px 28px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.terms-agree {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
}

.terms-agree:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.terms-dismiss {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Space Grotesk', sans-serif;
}

.terms-dismiss:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ══════════════════════════════════════
   INNER PAGES
══════════════════════════════════════ */
.inner-hero {
  padding: 140px 40px 80px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.inner-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
}

.inner-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px auto 0;
}

.inner-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}

.inner-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 36px 0 14px;
}

.inner-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.inner-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.inner-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.inner-content ul li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

@media(max-width:600px) {
  .inner-hero {
    padding: 120px 20px 60px;
  }

  .inner-content {
    padding: 60px 20px;
  }
}

/* Blog post styles */
.blog-post-hero {
  padding: 140px 40px 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-post-hero .bp-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.blog-post-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  max-width: 800px;
  margin: 0 auto 16px;
}

.blog-post-hero .bp-meta {
  font-size: 13px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

.blog-post-hero-img {
  width: 100%;
  max-width: 800px;
  margin: 32px auto 0;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  height: 320px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px;
}

.blog-post-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 36px 0 14px;
}

.blog-post-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.blog-post-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}

.blog-post-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.blog-post-body ul li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
}

.blog-cta {
  background: var(--card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
  position: relative;
}

.blog-cta h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-cta p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

@media(max-width:600px) {
  .blog-post-body {
    padding: 60px 20px;
  }

  .blog-post-hero {
    padding: 120px 20px 50px;
  }

  .blog-post-hero-img {
    height: 200px;
  }
}

/* ══════════════════════════════════════
   INVOICE PORTAL STYLES
══════════════════════════════════════ */
.inv-hero {
  padding: 100px 40px 60px;
  min-height: 100vh;
  background: var(--bg);
}

.inv-login-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.inv-logo-row {
  text-align: center;
  margin-bottom: 32px;
}

.inv-logo-row img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.inv-logo-row h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.inv-logo-row p {
  color: var(--muted);
  font-size: 13px;
}

.inv-portal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px 60px;
}

.inv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.inv-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.inv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.inv-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}

.inv-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.inv-stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.inv-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inv-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transition: border-color 0.2s;
}

.inv-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
}

.inv-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent);
}

.inv-customer {
  font-weight: 600;
  font-size: 14px;
}

.inv-service {
  font-size: 13px;
  color: var(--muted);
}

.inv-date {
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

.inv-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
}

.inv-status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  font-family: 'JetBrains Mono', monospace;
}

.inv-status.paid {
  background: rgba(0, 255, 136, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.inv-status.pending {
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.inv-view-btn {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--accent);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
}

.inv-view-btn:hover {
  background: rgba(0, 212, 255, 0.2);
}

/* Invoice detail modal */
.inv-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.inv-modal.show {
  display: flex;
}

.inv-modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.inv-receipt {
  padding: 36px;
}

.inv-receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.inv-receipt-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inv-receipt-logo img {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.inv-receipt-co h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.inv-receipt-co p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 4px;
}

.inv-receipt-num {
  text-align: right;
}

.inv-receipt-num .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.inv-receipt-num .value {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.inv-receipt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.inv-receipt-section h4 {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.inv-receipt-section p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

.inv-items-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.inv-items-table th {
  background: var(--surface);
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.inv-items-table td {
  padding: 12px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.inv-items-table td:last-child {
  text-align: right;
  color: var(--text);
  font-weight: 600;
}

.inv-total-row {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding-top: 16px;
  border-top: 2px solid var(--border);
  margin-bottom: 28px;
}

.inv-total-label {
  font-size: 13px;
  color: var(--muted);
}

.inv-total-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.inv-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.inv-print-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s;
}

.inv-print-btn:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.inv-close-btn {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s;
}

.inv-close-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

@media print {

  .inv-actions,
  nav,
  .fab-wa,
  #back-top,
  #sidebar,
  #sidebar-overlay {
    display: none !important;
  }

  .inv-modal-box {
    box-shadow: none;
    border: none;
  }

  body {
    background: white;
    color: black;
  }
}

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

  .inv-portal {
    padding: 80px 20px 40px;
  }
}

/* ═══════════════════════════════════════════════════════════
   DEVANSH TECHNOCOM — style-additions.css
   ADD THESE RULES to the END of your existing style.css
   DO NOT replace existing rules — just append everything below
═══════════════════════════════════════════════════════════ */

/* ── DRAW SCRIBBLE ANIMATION ── */
@keyframes drawScribble {
  to {
    stroke-dashoffset: 0;
  }
}


/* The Container */
.reveal-section {
  position: relative;
  height: 200px;
  width: 80%;
  margin: 100px auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #222;
  border-radius: 10px;
}

/* The Hidden Headline */
.headline {
  position: absolute;
  width: 100%;
  font-size: 4rem;
  font-weight: bold;
  color: white;
  padding-left: 20px;
  /* This creates the curtain effect */
  clip-path: inset(0 calc(100% - var(--scroll-progress)) 0 0);
}

/* The Rolling Ball */
.ball-wrapper {
  position: absolute;
  left: var(--scroll-progress);
  transform: translateX(-50%);
  /* Center ball on the clip edge */
  width: 80px;
  height: 80px;
  transition: left 0.1s linear;
}

.ball-svg {
  width: 100%;
  height: 100%;
  /* Rotate based on movement */
  transform: rotate(calc(var(--scroll-progress) * 5));
}




.headline-container {
  position: relative;
  width: 80%;
  margin: 100px auto;
  overflow: hidden;
  background: #111;
  padding: 20px;
  display: flex;
  align-items: center;
}

.headline-text {
  font-size: 3rem;
  color: white;
  font-weight: bold;
  white-space: nowrap;
  /* Initial state: Hidden by clip-path */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.5s ease-out;
}

.ball-img {
  position: absolute;
  left: -100px;
  /* Start off-screen */
  width: 80px;
  height: 80px;
  z-index: 10;
  transition: left 2.5s ease-out, transform 3.5s ease-out;
}

/* When the 'active' class is added via JS */
.headline-container.active .headline-text {
  clip-path: inset(0 0 0 0);
}

.headline-container.active .ball-img {
  left: 100%;
  /* Roll all the way across */
  transform: rotate(720deg);
}




/* ═══════════════════════════════════
   HEADER — transparent until scroll
═══════════════════════════════════ */
nav {
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

nav.scrolled {
  background: rgba(3, 6, 15, 0.92) !important;
  border-bottom-color: var(--border) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(20px) !important;
}

body.light nav.scrolled {
  background: rgba(240, 244, 255, 0.95) !important;
}

/* ═══════════════════════════════════
   MOBILE SIDEBAR — slides from LEFT
   (replaces old top-slide)
═══════════════════════════════════ */
#sidebar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: 285px !important;
  height: 100vh !important;
  max-height: 100vh !important;
  transform: translateX(-100%) !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding-top: 0 !important;
  background: rgba(8, 13, 26, 0.97) !important;
  border-right: 1px solid rgba(0, 212, 255, 0.15) !important;
  border-bottom: none !important;
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.5) !important;
  overflow-y: auto !important;
  z-index: 2000 !important;
}

#sidebar.open {
  transform: translateX(0) !important;
}

body.light #sidebar {
  background: rgba(240, 244, 255, 0.98) !important;
  border-right-color: var(--border) !important;
}

/* Sidebar top brand area */
#sidebar::before {
  content: '';
  display: block;
  height: 64px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.15), rgba(124, 58, 237, 0.1));
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  margin-bottom: 8px;
}

/* Brand name inside sidebar */
#sidebar .sidebar-brand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 10px;
  z-index: 2;
}

#sidebar .sidebar-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

#sidebar .sidebar-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

/* Sidebar nav — left aligned items */
.sidebar-nav {
  padding: 8px 12px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 2px !important;
  background: transparent !important;
}

.sidebar-nav a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  width: 100% !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  border: none !important;
  background: transparent !important;
  transition: all 0.18s !important;
  text-align: left !important;
  font-family: 'Space Grotesk', sans-serif !important;
  opacity: 0.85;
}

.sidebar-nav a:hover,
.sidebar-nav a:active {
  color: var(--accent) !important;
  background: rgba(0, 212, 255, 0.08) !important;
  padding-left: 20px !important;
  opacity: 1;
}

/* Sidebar footer */
.sidebar-foot {
  padding: 12px 16px 24px !important;
  border-top: 1px solid var(--border) !important;
}

/* ═══════════════════════════════════
   BENTO V2 — Bytiq-style grid
═══════════════════════════════════ */
.bento-v2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
  margin-top: 52px;
}

.bv2-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.bv2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* Column spans */
.bv2-lg {
  grid-column: span 5;
  grid-row: span 2;
}

.bv2-md {
  grid-column: span 4;
}

.bv2-sm {
  grid-column: span 3;
}

.bv2-wide {
  grid-column: span 7;
}

/* Card themes */
.bv2-dark {
  background-size: cover !important;
  background-position: center !important;
  background-image: var(--card-img);
  color: white;
}

.bv2-accent {
  background: linear-gradient(135deg, #0d1525, #1a0a3d);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--text);
}

.bv2-bright {
  background: linear-gradient(135deg, #0d1525, #0a1e3d);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--text);
}

.bv2-green {
  background: linear-gradient(135deg, #031a0f, #062e18);
  border: 1px solid rgba(0, 255, 136, 0.15);
  color: var(--text);
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.bv2-orange {
  background: linear-gradient(135deg, #1a0d00, #2e1a00);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--text);
}

.bv2-blueprint {
  background: linear-gradient(135deg, #010d1f, #00224d);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--text);
}

.bv2-stat-card {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

/* Image overlay */
.bv2-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 6, 15, 0.82) 30%, rgba(3, 6, 15, 0.4) 100%);
}

/* Content inside card */
.bv2-content {
  position: relative;
  z-index: 2;
}

.bv2-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 12px 0 8px;
  color: var(--text);
}

.bv2-dark .bv2-content h3,
.bv2-stat-card h3 {
  color: white;
}

.bv2-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.bv2-dark .bv2-content p {
  color: rgba(255, 255, 255, 0.75);
}

.bv2-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bv2-tag {
  display: inline-block;
  margin-top: 14px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}

.bv2-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

/* IR indicator */
.bv2-ir-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
}

.bv2-ir-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444;
  animation: dotPulse 1.5s infinite;
}

.bv2-ir-indicator span {
  font-size: 11px;
  color: #ff8888;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}

/* Big stat in card */
.bv2-big-stat {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 212, 255, 0.2);
  line-height: 1;
  z-index: 1;
  user-select: none;
}

/* Stat card numbers */
.bv2-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.bv2-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  line-height: 1.5;
}

.bv2-scribble-arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 50px;
  height: 34px;
}

/* AMC price badge */
.bv2-price-badge {
  text-align: center;
  flex-shrink: 0;
}

.bv2-price-from {
  font-size: 9px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bv2-price-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.bv2-price-per {
  font-size: 12px;
  color: var(--muted);
}

/* Mini isometric camera illustration */
.bv2-iso-mini {
  width: 60px;
  height: 40px;
  position: relative;
  margin-bottom: 12px;
}

.iso-mini-body {
  width: 40px;
  height: 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(26, 86, 219, 0.5));
  border-radius: 6px;
  position: absolute;
  top: 8px;
  left: 0;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.iso-mini-arm {
  width: 14px;
  height: 8px;
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.2);
  position: absolute;
  top: 4px;
  left: 38px;
  border-radius: 0 4px 4px 0;
}

.iso-mini-lens {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #00d4ff, #0044aa);
  position: absolute;
  top: 14px;
  right: 6px;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Bento v2 responsive */
@media(max-width: 1100px) {
  .bv2-lg {
    grid-column: span 6;
  }

  .bv2-md {
    grid-column: span 6;
  }

  .bv2-sm {
    grid-column: span 6;
  }

  .bv2-wide {
    grid-column: span 12;
  }

  .bv2-stat-card {
    grid-column: span 6;
  }
}

@media(max-width: 700px) {
  .bento-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bv2-lg,
  .bv2-md,
  .bv2-sm,
  .bv2-wide,
  .bv2-stat-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .bv2-big-stat {
    font-size: 2.5rem;
  }
}

/* ═══════════════════════════════════
   PARALLAX EFFECT
═══════════════════════════════════ */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ═══════════════════════════════════
   EASTER EGG — Konami Code explosion
═══════════════════════════════════ */
.konami-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  display: none;
}

.konami-overlay.active {
  display: block;
}

.konami-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: konamiBurst 1.5s ease-out forwards;
}

@keyframes konamiBurst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* EASTER EGG — Mascot on anniversary */
.mascot-badge {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 9998;
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
  display: none;
  animation: mascotPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.mascot-badge.show {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes mascotPop {
  from {
    transform: scale(0) translateY(20px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

/* EASTER EGG — Hover reveal on word "experts" */
.hover-secret {
  position: relative;
  cursor: pointer;
}

.hover-secret::after {
  content: '👁️ Watching everything!';
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: var(--card);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  font-family: 'JetBrains Mono', monospace;
  z-index: 100;
}

.hover-secret:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ═══════════════════════════════════
   LIGHT MODE ADJUSTMENTS
═══════════════════════════════════ */
body.light .hero {
  background: #f0f4ff;
}

body.light .hero-slide::before {
  background: linear-gradient(to right, #f0f4ff 0%, transparent 30%, rgba(240, 244, 255, 0.2) 100%);
}

body.light .bv2-accent {
  background: linear-gradient(135deg, #f0f4ff, #ede9fe);
  border-color: rgba(109, 40, 217, 0.15);
}

body.light .bv2-bright {
  background: linear-gradient(135deg, #f0f4ff, #e6f4ff);
  border-color: rgba(26, 86, 219, 0.15);
}

body.light .bv2-green {
  background: linear-gradient(135deg, #f0fff8, #e6fff4);
  border-color: rgba(5, 150, 105, 0.15);
}

body.light .bv2-orange {
  background: linear-gradient(135deg, #fffbf0, #fff3e6);
  border-color: rgba(217, 119, 6, 0.2);
}

body.light .bv2-blueprint {
  background: linear-gradient(135deg, #f0f8ff, #e0f0ff);
}

body.light .bv2-content h3,
body.light .bv2-content p {
  color: var(--text);
}





/* ── TRANSPARENT NAV until scroll ── */
nav {
  background: transparent !important;
  border-bottom-color: transparent !important;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s !important;
}

nav.scrolled {
  background: rgba(3, 6, 15, 0.92) !important;
  border-bottom-color: var(--border) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(20px) !important;
}

body.light nav.scrolled {
  background: rgba(240, 244, 255, 0.95) !important;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADINGS — Animated text effects
   Apply to all h2.sec-title elements
═══════════════════════════════════════════════════════ */

/* Base: headings start hidden, effect triggers on .animated class */
h2.sec-title {
  position: relative;
  overflow: visible;
}

/* EFFECT 1: Glint Reveal — spark moves left→right */
h2.sec-title.effect-glint {
  color: transparent;
  background: linear-gradient(90deg,
      var(--text) 0%,
      var(--text) var(--glint-pos, 0%),
      transparent calc(var(--glint-pos, 0%) + 0%),
      var(--text) calc(var(--glint-pos, 0%) + 0%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.sec-title.effect-glint.animated::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), white, rgba(0, 212, 255, 0.8), transparent);
  animation: glintMove 1.2s ease forwards;
  z-index: 10;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

h2.sec-title.effect-glint.animated {
  -webkit-text-fill-color: var(--text) !important;
  animation: glintReveal 1.2s ease forwards;
}

@keyframes glintMove {
  from {
    left: -80px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  to {
    left: 110%;
    opacity: 0;
  }
}

@keyframes glintReveal {
  from {
    opacity: 0.2;
  }

  to {
    opacity: 1;
  }
}

/* EFFECT 2: Liquid Fill — letters fill bottom-to-top */
h2.sec-title.effect-liquid {
  position: relative;
  color: transparent;
}

h2.sec-title.effect-liquid::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      var(--accent) 0%,
      var(--accent2) 50%,
      var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0s;
}

h2.sec-title.effect-liquid::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--border2);
  -webkit-text-stroke: 1px var(--border2);
  -webkit-text-fill-color: transparent;
}

h2.sec-title.effect-liquid.animated::before {
  animation: liquidFill 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes liquidFill {
  from {
    clip-path: inset(100% 0 0 0);
  }

  to {
    clip-path: inset(0% 0 0 0);
  }
}

/* EFFECT 3: Masked Gradient — color wave sweeps across */
h2.sec-title.effect-gradient {
  background: linear-gradient(90deg,
      var(--text) 0%,
      var(--accent) 30%,
      var(--accent2) 60%,
      var(--green) 80%,
      var(--text) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.sec-title.effect-gradient.animated {
  animation: gradientWave 2s ease forwards;
}

@keyframes gradientWave {
  from {
    background-position: 200% center;
  }

  to {
    background-position: -50% center;
  }
}

/* ═══════════════════════════════════════════════════════
   SIDEBAR — Left slide, like phone image
═══════════════════════════════════════════════════════ */
#sidebar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: 280px !important;
  height: 100vh !important;
  max-height: 100vh !important;
  transform: translateX(-100%) !important;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding-top: 0 !important;
  background: rgba(10, 14, 26, 0.97) !important;
  border-right: 1px solid rgba(0, 212, 255, 0.1) !important;
  border-bottom: none !important;
  box-shadow: 4px 0 40px rgba(0, 0, 0, 0.5) !important;
  z-index: 2000 !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

#sidebar.open {
  transform: translateX(0) !important;
}

body.light #sidebar {
  background: rgba(248, 250, 255, 0.98) !important;
  border-right-color: rgba(59, 130, 246, 0.12) !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12) !important;
}

/* Brand header at top of sidebar */
.sidebar-brand-header {
  padding: 22px 18px 16px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.12), rgba(124, 58, 237, 0.08));
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sidebar-brand-header img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
}

.sidebar-brand-header .sb-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.sidebar-brand-header .sb-sub {
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 2px;
  font-family: 'JetBrains Mono', monospace;
  display: block;
}

/* Quick 2×2 grid inside sidebar */
.sidebar-quick-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  padding: 12px !important;
  border-bottom: 1px solid var(--border) !important;
  background: transparent !important;
}

.sidebar-quick-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 14px 8px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--text2) !important;
}

.sidebar-quick-btn:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: rgba(0, 212, 255, 0.06) !important;
}

.sidebar-quick-icon {
  font-size: 22px;
}

/* Sidebar nav section */
.sidebar-section-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: var(--muted2) !important;
  padding: 14px 18px 5px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-family: 'JetBrains Mono', monospace !important;
}

.sidebar-nav {
  padding: 6px 10px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 1px !important;
  background: transparent !important;
}

.sidebar-nav a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 11px 12px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--text2) !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  transition: all 0.15s !important;
  width: 100% !important;
  max-width: none !important;
  text-align: left !important;
  justify-content: flex-start !important;
  font-family: 'Space Grotesk', sans-serif !important;
}

.sidebar-nav a:hover,
.sidebar-nav a:active {
  color: var(--accent) !important;
  background: rgba(0, 212, 255, 0.07) !important;
  border-color: rgba(0, 212, 255, 0.15) !important;
  padding-left: 16px !important;
}

.sidebar-foot {
  padding: 12px 14px 20px !important;
  border-top: 1px solid var(--border) !important;
}

.sidebar-book {
  width: 100% !important;
}

/* ═══════════════════════════════════════════════════════
   EASTER EGG EFFECTS
═══════════════════════════════════════════════════════ */
/* Matrix rain egg */
#egg-matrix-canvas {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  display: none;
  opacity: 0.85;
}

#egg-matrix-canvas.active {
  display: block;
}

/* Camera flash egg */
.egg-flash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: white;
  pointer-events: none;
  animation: flashOut 0.6s ease forwards;
}

@keyframes flashOut {
  from {
    opacity: 0.9;
  }

  to {
    opacity: 0;
  }
}

/* Toast egg notification */
.egg-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(13, 21, 37, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent);
  border-radius: 50px;
  padding: 12px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  z-index: 99997;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.egg-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Secret cursor */
body.egg-cursor * {
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='24' font-size='24'>📷</text></svg>") 16 16, auto !important;
}

/* Konami burst */
.konami-burst {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
  overflow: hidden;
}

.k-particle {
  position: absolute;
  font-size: 24px;
  animation: kBurst var(--dur, 1.5s) ease-out var(--delay, 0s) forwards;
  opacity: 0;
}

@keyframes kBurst {
  0% {
    transform: translate(0, 0) scale(0) rotate(0deg);
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(var(--tx), var(--ty)) scale(1.2) rotate(var(--rot, 360deg));
    opacity: 0;
  }
}

/* Special day badge */
.special-day-badge {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9998;
  background: linear-gradient(135deg, rgba(13, 21, 37, 0.95), rgba(26, 86, 219, 0.2));
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 14px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.25);
  display: none;
  align-items: center;
  gap: 10px;
  animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  cursor: pointer;
}

.special-day-badge.show {
  display: flex;
}

@keyframes badgePop {
  from {
    transform: scale(0) translateY(-20px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}








/* ═══════════════════════════════════════════════════════════
   DEVANSH TECHNOCOM — mobile-fixes.css

═══════════════════════════════════════════════════════════ */

/* ── GLOBAL OVERFLOW FIX ── */
html,
body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

/* ── NAV: Login button → bust icon circle ── */
.nav-portal-btn {
  /* Replace text with icon */
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: none;
  /* shown only on mobile via media query below */
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 212, 255, 0.08) !important;
  border: 1.5px solid rgba(0, 212, 255, 0.3) !important;
  color: var(--accent) !important;
  flex-shrink: 0 !important;
  font-size: 0 !important;
  /* hide text */
  position: relative;
}

.nav-portal-btn::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Ccircle cx='18' cy='18' r='18' fill='rgba(0%2C212%2C255%2C0.08)'/%3E%3Ccircle cx='18' cy='14' r='5' fill='none' stroke='%2300d4ff' stroke-width='1.5'/%3E%3Cpath d='M9 28c0-5 4-8 9-8s9 3 9 8' fill='none' stroke='%2300d4ff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/cover no-repeat;
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.nav-portal-btn svg {
  display: none;
}

/* hide the inline SVG we injected before */

/* ── MOBILE MEDIA QUERY ── */
@media (max-width: 900px) {

  /* GLOBAL: prevent any child from overflowing */
  * {
    max-width: 100% !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* NAV */
  nav {
    padding: 10px 14px !important;
    gap: 8px !important;
  }

  .nav-portal-btn {
    display: flex !important;
  }

  .nav-logo-sub {
    display: none !important;
  }

  /* HERO — stack vertically on mobile */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    gap: 0 !important;
  }

 


  /* MARQUEE — contained */
  .marquee-wrap {
    overflow: hidden !important;
  }

  .marquee-track {
    gap: 40px !important;
  }

  .marquee-item {
    font-size: 11px !important;
  }

  /* SECTIONS */
  .section-pad {
    padding: 50px 18px !important;
  }

  .section-center {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* BENTO grid */
  .bento,
  .bento-v2 {
    grid-template-columns: 1fr !important;
  }

  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5,
  .bc6,
  .bc7 {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .bv2-lg,
  .bv2-md,
  .bv2-sm,
  .bv2-wide {
    grid-column: 1 !important;
  }

  /* FORM GRID */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .form-group.full {
    grid-column: 1 !important;
  }

  /* PRICING GRID */
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  /* BLOG GRID */
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  /* FEATURES GRID */
  .features-grid {
    grid-template-columns: 1fr !important;
  }

  /* PROCESS steps */
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .process-steps::before {
    display: none !important;
  }

  /* FOOTER */
  .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  footer {
    padding: 40px 18px 20px !important;
  }

  /* NEWSLETTER */
  .newsletter-inner {
    flex-direction: column !important;
    padding: 28px 18px !important;
  }

  .nl-form {
    flex-direction: column !important;
  }

  /* CTA */
  .cta-card {
    padding: 36px 20px !important;
  }

  .cta-btns {
    flex-direction: column !important;
  }

  .cta-wa,
  .cta-call {
    width: 100% !important;
    justify-content: center !important;
  }

  /* REVIEWS */
  .rev-card {
    width: 280px !important;
  }

  /* Sidebar open doesn't cause overflow */
  #sidebar {
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.5) !important;
  }

  /* AMC cards don't overflow */
  .price-card {
    margin: 0 !important;
  }

  /* Stats section */
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}


  nav {
    padding: 8px 12px !important;
  }

  .section-pad {
    padding: 40px 14px !important;
  }






/* ══════════════════════════════════════════════════════
   SERVICE BOOKING POPUP (overlay)
   Opens from any CTA, pre-fills service
══════════════════════════════════════════════════════ */
.svc-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.svc-popup-overlay.show {
  display: flex;
}

.svc-popup {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: popupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popupIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.svc-popup-hd {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-popup-hd h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.svc-popup-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s;
}

.svc-popup-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.svc-popup-sub {
  padding: 6px 24px 16px;
  font-size: 13px;
  color: #64748b;
}

/* Problem grid inside popup */
.svc-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 20px 20px;
}

.svc-popup-card {
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.svc-popup-card:hover {
  border-color: #1a56db;
  background: #eff6ff;
  transform: translateY(-2px);
}

.svc-popup-card.selected {
  border-color: #1a56db;
  background: #dbeafe;
}

.svc-popup-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-popup-card-icon svg {
  width: 28px;
  height: 28px;
}

.svc-popup-card-title {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.svc-popup-card-sub {
  font-size: 10px;
  color: #64748b;
  line-height: 1.4;
}

/* Popup form fields */
.svc-popup-form {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-popup-form input,
.svc-popup-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #f8faff;
  outline: none;
  transition: border-color 0.2s;
}

.svc-popup-form input:focus,
.svc-popup-form select:focus {
  border-color: #1a56db;
  background: white;
}

.svc-popup-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1a56db, #6d28d9);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}

.svc-popup-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.svc-popup-note {
  padding: 0 20px 20px;
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.6;
}

/* Scroll fix on body when popup open */
body.popup-open {
  overflow: hidden;
}



/* Custom Modern Side Scroller */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 4px;
}

/* Mobile View Optimizations (Max Width 768px) */
@media (max-width: 768px) {
  /* Forces Hero to take exactly 2/3rd height of mobile screen */
  .hero {
    height: 66.66vh !important;
    min-height: 400px;
    padding: 24px 16px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Keeps slide background images perfectly inside aspect ratio without cutting */
  .hero .slide-bg {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
  }

  /* Fixes text going upside, overlapping, or cutting off */
  .hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    margin-top: 0 !important;
    padding-top: 10px;
  }
  
  .hero p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
  }

  /* Fixes slow marquee/rolls on mobile devices */
  .marquee-wrapper, .reviews-roll, .brands-roll {
    animation-duration: 8s !important; /* Speeds up the travel rate */
  }
}

/* UI Elements for Slideshow Navigation Dots */
.hero-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  width: 24px;
  border-radius: 5px;
}



/* ==========================================
   MOBILE HERO & RATIO FIX (Add to bottom of style.css)
   ========================================== */
@media (max-width: 768px) {
  /* Force the main hero container to exactly 2/3 of viewport height */
  .hero-section {
    height: 66.66vh !important;
    min-height: 420px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  /* Prevent slide background images from stretching incorrectly or cutting off */
  .hero-slideshow .slide, 
  .hero-slideshow .slide-bg {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    height: 100% !important;
  }
  
  /* Stop header text overlapping on small aspect ratios */
  .hero-h-line1, .hero-h-line2, .hero-h-line3 {
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }
}