/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #00e5ff;
  --secondary: #00ff88;
  --accent: #7c4dff;
  --dark: #050a0e;
  --dark2: #0a1520;
  --dark3: #0f1f2e;
  --card-bg: #0d1b2a;
  --text: #f0f8ff;
  --text-muted: #9bbdd4;
  --border: rgba(0, 229, 255, 0.15);
  --glow: 0 0 20px rgba(0, 229, 255, 0.4);
  --glow2: 0 0 30px rgba(0, 255, 136, 0.3);
  --font: 'Rajdhani', sans-serif;
  --font2: 'Orbitron', sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark2);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ===== PER-SECTION PARTICLE CANVASES ===== */
.section-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Ensure all sections/divs that get canvases are position:relative overflow:hidden */
#hero,
#stats,
#about,
#ev-scooty,
#turning-points,
#post-demo,
#quick-commerce,
#lifestyle-effect,
#vehicles,
#features,
#charging,
#testimonials,
#contact,
footer {
  position: relative;
  overflow: hidden;
}

/* All direct content inside those containers sits above the canvas */
#hero > *:not(.section-particles),
#stats > *:not(.section-particles),
#about > *:not(.section-particles),
#ev-scooty > *:not(.section-particles),
#turning-points > *:not(.section-particles),
#post-demo > *:not(.section-particles),
#quick-commerce > *:not(.section-particles),
#lifestyle-effect > *:not(.section-particles),
#vehicles > *:not(.section-particles),
#features > *:not(.section-particles),
#charging > *:not(.section-particles),
#testimonials > *:not(.section-particles),
#contact > *:not(.section-particles),
footer > *:not(.section-particles) {
  position: relative;
  z-index: 1;
}

/* Decorative ::before / ::after pseudo-elements on sections
   must sit above the particle canvas (z-index 0) */
.ev-scooty-section::before,
.turning-points-section::before,
.post-demo-section::before,
.post-demo-section::after,
.qc-section::before,
.lifestyle-section::before {
  z-index: 1;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  width: 80px;
  animation: pulse-glow 1.2s ease-in-out infinite alternate;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark3);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  animation: load-bar 2s ease forwards;
}

@keyframes load-bar {
  to {
    width: 100%;
  }
}

@keyframes pulse-glow {
  from {
    filter: drop-shadow(0 0 8px var(--primary));
  }

  to {
    filter: drop-shadow(0 0 24px var(--secondary));
  }
}

/* ===== HEADER / NAVBAR ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 60px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 10, 14, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(5, 10, 14, 0.95);
  box-shadow: 0 4px 30px rgba(0, 229, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 68px;
}

.logo-text {
  font-family: var(--font2);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav ul li a {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #c8dff0;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover::after {
  width: 100%;
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000 !important;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  box-shadow: var(--glow);
  transition: all 0.3s ease !important;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.6) !important;
  color: #000 !important;
}

.btn-nav::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SLIDER ===== */
#hero {
  position: relative;
  width: 100%;
  margin-top: 75px;
  /* offset fixed header */
  overflow: hidden;
  z-index: 1;
  background: #050a0e;
  line-height: 0;
  /* remove any inline-block gap */
}

.slides-wrapper {
  position: relative;
  width: 100%;
  /* height is driven by the image aspect ratio naturally */
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.slide.active {
  position: relative;
  /* takes height from image */
  opacity: 1;
  pointer-events: all;
}

/* non-active slides sit on top absolutely */
.slide:not(.active) {
  position: absolute;
  inset: 0;
}

/* The banner image — full width, natural aspect ratio */
.slide-banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 90vh;
  object-fit: cover;
  object-position: center;
}

/* subtle bottom gradient to blend into site */
.slide-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #050a0e);
  pointer-events: none;
  z-index: 3;
}

/* slider dot controls — centered at bottom */
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary);
  width: 56px;
  box-shadow: var(--glow);
}

/* left/right arrows — vertically centered on slider */
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.6);
  background: rgba(5, 10, 14, 0.55);
  backdrop-filter: blur(6px);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
}

.arrow-btn:hover {
  background: var(--primary);
  color: #000;
  box-shadow: var(--glow);
  border-color: var(--primary);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.6);
  color: #000;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 13px 32px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--glow);
  color: var(--primary);
}

/* ===== SECTION COMMON ===== */
section {
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: 100px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.section-header h2 {
  font-family: var(--font2);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 16px auto 0;
  border-radius: 3px;
}

/* ===== STATS BAR ===== */
#stats {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--border);
}

.stat-number {
  font-family: var(--font2);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: #9bbdd4;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== PRODUCTS / VEHICLES ===== */
#vehicles {
  background: var(--dark);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vehicle-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  group: true;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.15);
}

.vehicle-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a, #0f2a3a);
}

.vehicle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.vehicle-card:hover .vehicle-img-wrap img {
  transform: scale(1.08);
}

.vehicle-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}

.vehicle-info {
  padding: 24px;
}

.vehicle-info h3 {
  font-family: var(--font2);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.vehicle-info .tagline {
  color: #9bbdd4;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.vehicle-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-val {
  font-family: var(--font2);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.spec-name {
  font-size: 0.78rem;
  color: #9bbdd4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.vehicle-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font2);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  color: #000;
}

/* ===== FEATURES ===== */
#features {
  background: var(--dark2);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-visual-inner {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, transparent 70%);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-ring 20s linear infinite;
  position: relative;
  overflow: hidden;
}

.features-visual-inner::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.2);
  animation: rotate-ring 12s linear infinite reverse;
}

.features-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
  filter: brightness(0.9) saturate(1.1);
}

.visual-icon {
  font-size: 5rem;
  filter: drop-shadow(0 0 20px var(--primary));
  animation: float 3s ease-in-out infinite;
}

@keyframes rotate-ring {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: var(--glow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-text h4 {
  font-family: var(--font2);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.feature-text p {
  color: #9bbdd4;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 500;
}

/* ===== CHARGING NETWORK ===== */
#charging {
  background:
    linear-gradient(
      135deg,
      rgba(5, 10, 14, 0.85) 0%,
      rgba(15, 31, 46, 0.80) 50%,
      rgba(5, 10, 14, 0.90) 100%
    ),
    url('../img/4.jpg') center center / cover no-repeat fixed;
  position: relative;
}

.charging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.charging-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.charging-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.charging-card:hover::before {
  opacity: 1;
}

.charging-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.12);
}

.charging-card .charging-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.charging-card:hover .charging-icon {
  background: rgba(0, 229, 255, 0.18);
  box-shadow: var(--glow);
}

.charging-card h3 {
  font-family: var(--font2);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.charging-card p {
  color: #9bbdd4;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 500;
}

.charging-map-banner {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(124, 77, 255, 0.08));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.map-text h3 {
  font-family: var(--font2);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.map-text h3 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.map-text p {
  color: #9bbdd4;
  max-width: 440px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--dark);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.1);
}

.stars {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #ddeeff;
  font-size: 0.97rem;
  margin-bottom: 24px;
  line-height: 1.75;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font2);
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.author-avatar-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--primary);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.author-info h5 {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-info span {
  color: var(--primary);
  font-size: 0.82rem;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

/* ===== CONTACT ===== */
#contact {
  background:
    linear-gradient(
      135deg,
      rgba(5, 10, 14, 0.88) 0%,
      rgba(10, 21, 32, 0.82) 50%,
      rgba(5, 10, 14, 0.92) 100%
    ),
    url('../img/5.jpg') center center / cover no-repeat fixed;
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font2);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

.contact-info p {
  color: #9bbdd4;
  margin-bottom: 36px;
  line-height: 1.85;
  font-size: 1rem;
  font-weight: 500;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-item .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.contact-detail-item span {
  color: #ddeeff;
  font-size: 0.97rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select option {
  background: var(--card-bg);
}

/* ===== FOOTER ===== */
footer {
  background:
    linear-gradient(
      180deg,
      rgba(5, 10, 14, 0.93) 0%,
      rgba(5, 10, 14, 0.97) 60%,
      rgba(5, 10, 14, 1) 100%
    ),
    url('../img/11.jpg') center top / cover no-repeat;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent) 1;
  padding: 0 0 0;
  position: relative;
}

/* Top glowing strip */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.5);
  z-index: 2;
}

/* Footer top CTA banner */
.footer-cta-band {
  background: linear-gradient(135deg, rgba(0,229,255,0.07) 0%, rgba(124,77,255,0.07) 100%);
  border-bottom: 1px solid var(--border);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-cta-band p {
  font-family: var(--font2);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-cta-band p span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-cta-band .footer-cta-socials {
  display: flex;
  gap: 10px;
}

/* Main footer body */
.footer-body {
  padding: 70px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Brand column */
.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand .logo img {
  height: 70px;
  filter: drop-shadow(0 0 10px rgba(0,229,255,0.3));
}

.footer-brand p {
    color: #cae8ff;
    font-size: 1.0rem;
    line-height: 1.9;
    max-width: 270px;
    font-weight: 500;
}

/* Glow divider under brand text */
.footer-brand-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 18px 0;
  box-shadow: 0 0 10px rgba(0,229,255,0.4);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(0,229,255,0.15);
  background: rgba(0,229,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #6a9ab8;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,229,255,0.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,229,255,0.2);
}

/* Footer columns */
.footer-col {
  padding-top: 4px;
}

.footer-col h4 {
  font-family: var(--font2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  color: #7a9db8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  box-shadow: 0 0 6px var(--primary);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(0,229,255,0.08);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  background: rgba(0,0,0,0.2);
}

.footer-bottom p {
    color: #ffffff;
    font-size: 1rem;
}
.footer-bottom p span {
  color: var(--primary);
  font-weight: 700;
}

.footer-bottom-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.footer-bottom-links a {
  color: #4a7a9b;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-bottom-links span {
  color: rgba(0,229,255,0.2);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.left {
  transform: translateX(-40px);
}

.reveal.right {
  transform: translateX(40px);
}

.reveal.scale {
  transform: scale(0.92);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: var(--glow);
}

#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
}

/* ===== ABOUT SECTION ===== */
#about {
  background: var(--dark3);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font2);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-text h2 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
    color: #9bbdd4;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 500;
    text-align: justify;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 36px;
}

.about-tag {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  z-index: -1;
  animation: border-glow 3s ease-in-out infinite alternate;
}

@keyframes border-glow {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.about-real-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ===== EV SCOOTY SECTION ===== */
.ev-scooty-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* subtle grid bg pattern */
.ev-scooty-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.ev-scooty-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Left: Text ---- */
.ev-scooty-title {
  font-family: var(--font2);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.ev-scooty-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ev-scooty-intro {
  color: #9bbdd4;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ev-scooty-intro strong {
  color: var(--secondary);
  font-weight: 700;
}

/* Three component cards */
.ev-scooty-parts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.ev-part-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ev-part-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ev-part-item:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.12);
}

.ev-part-item:hover::before {
  opacity: 1;
}

.ev-part-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: all 0.35s ease;
}

.ev-part-item:hover .ev-part-icon {
  background: rgba(0, 229, 255, 0.18);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.ev-part-text h4 {
  font-family: var(--font2);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.ev-part-text p {
  color: #9bbdd4;
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 500;
}

/* ---- Right: Image ---- */
.ev-scooty-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* animated glow ring behind scooty */
.ev-scooty-glow-ring {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
  border: 1px solid rgba(0, 229, 255, 0.1);
  animation: ev-ring-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

.ev-scooty-glow-ring::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.15);
  animation: rotate-ring 16s linear infinite;
}

@keyframes ev-ring-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

.ev-scooty-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 40px rgba(0, 229, 255, 0.25));
  animation: scooty-float 4s ease-in-out infinite;
}

@keyframes scooty-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* floating badge pills */
.ev-scooty-badge-float {
  position: absolute;
  background: rgba(5, 10, 14, 0.85);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 7px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 4;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
  animation: badge-bob 3s ease-in-out infinite;
}

.ev-badge-1 {
  top: 12%;
  left: -2%;
  animation-delay: 0s;
  color: var(--secondary);
  border-color: var(--secondary);
}

.ev-badge-2 {
  top: 44%;
  right: -2%;
  animation-delay: 0.8s;
}

.ev-badge-3 {
  bottom: 12%;
  left: 4%;
  animation-delay: 1.6s;
  color: #a78bff;
  border-color: #a78bff;
}

@keyframes badge-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .ev-scooty-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ev-scooty-img-wrap {
    order: -1;
  }

  .ev-scooty-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .ev-badge-1 {
    top: 8%;
    left: 2%;
  }

  .ev-badge-2 {
    top: 40%;
    right: 2%;
  }

  .ev-badge-3 {
    bottom: 8%;
    left: 6%;
  }
}

@media (max-width: 768px) {
  .ev-scooty-title {
    font-size: 1.8rem;
  }

  .ev-scooty-img {
    max-width: 300px;
  }

  .ev-scooty-badge-float {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
}

/* ===== TWO DEFINING TURNING POINTS ===== */
.turning-points-section {
  background:
    linear-gradient(
      135deg,
      rgba(5, 10, 14, 0.85) 0%,
      rgba(15, 31, 46, 0.80) 50%,
      rgba(5, 10, 14, 0.90) 100%
    ),
    url('../img/12.jpg') center center / cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

/* animated radial background glow */
.turning-points-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124, 77, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Header ---- */
.tp-header {
  text-align: center;
  margin-bottom: 60px;
}

.tp-main-title {
  font-family: var(--font2);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 0 0 40px rgba(124, 77, 255, 0.3);
}

.tp-main-title span {
  background: linear-gradient(135deg, var(--primary), #a78bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tp-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #9bbdd4;
  letter-spacing: 1px;
}

/* ---- Two-column grid ---- */
.tp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
}

/* ---- Individual Card ---- */
.tp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.tp-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 229, 255, 0.12);
}

/* top glowing border line on hover */
.tp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tp-card:hover::before {
  opacity: 1;
}

.tp-card-label {
  font-family: var(--font2);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  padding: 20px 26px 0;
  letter-spacing: 0.5px;
}

.tp-card-label span {
  color: var(--primary);
  font-weight: 600;
}

.tp-card-inner {
  padding: 20px 26px 26px;
}

/* ---- Visual area ---- */
.tp-card-visual {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

/* ---- Card image ---- */
.tp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* --- Demonetization visual --- */
.tp-card-demo {
  background: linear-gradient(135deg, #0b1628, #0d2040);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.tp-demo-note {
  position: relative;
  width: 120px;
  height: 70px;
  background: linear-gradient(135deg, #1a3a1a, #2a5a2a);
  border-radius: 8px;
  border: 2px solid rgba(0, 200, 80, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.tp-note-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-note-symbol {
  font-family: var(--font2);
  font-size: 1rem;
  color: #80ff80;
  font-weight: 700;
}

.tp-note-value {
  font-family: var(--font2);
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 900;
}

.tp-note-strip {
  height: 2px;
  background: rgba(0, 200, 80, 0.3);
  border-radius: 1px;
}

.tp-note-bottom {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.tp-note-ban {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255, 60, 60, 0.7);
  pointer-events: none;
}

.tp-arrow-right {
  font-size: 1.6rem;
  color: var(--primary);
  animation: arrow-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes arrow-pulse {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    transform: translateX(6px);
    opacity: 0.6;
  }
}

.tp-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tp-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 22px);
  grid-template-rows: repeat(3, 22px);
  gap: 3px;
}

.tp-qr-grid span {
  border-radius: 3px;
  background: var(--primary);
}

.tp-qr-grid span:nth-child(2),
.tp-qr-grid span:nth-child(4),
.tp-qr-grid span:nth-child(6),
.tp-qr-grid span:nth-child(8) {
  background: rgba(0, 229, 255, 0.25);
}

.tp-qr-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

/* --- Lockdown / Delivery visual --- */
.tp-card-lock {
  background: linear-gradient(135deg, #0d0620, #160832);
  border: 1px solid rgba(124, 77, 255, 0.15);
}

.tp-rider-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
}

.tp-city-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 0 16px;
}

.tp-building {
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.3), rgba(124, 77, 255, 0.08));
  flex: 1;
}

.tp-b1 {
  height: 55%;
}

.tp-b2 {
  height: 80%;
}

.tp-b3 {
  height: 65%;
}

.tp-road-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
}

.tp-rider {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: rider-move 3s ease-in-out infinite;
}

@keyframes rider-move {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.tp-rider-icon {
  font-size: 1.8rem;
  color: #a78bff;
}

.tp-scooty-icon {
  font-size: 2.4rem;
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

.tp-parcel {
  position: absolute;
  top: 6px;
  right: -18px;
  font-size: 1rem;
  color: #ffb347;
  filter: drop-shadow(0 0 6px rgba(255, 179, 71, 0.5));
}

/* ---- Card Description ---- */
.tp-card-desc p {
  color: #9bbdd4;
  font-size: 0.93rem;
  line-height: 1.7;
  font-weight: 500;
}

.tp-card-desc strong {
  color: #ffffff;
  font-weight: 700;
}

/* glow blob */
.tp-card-glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.tp-glow-purple {
  background: radial-gradient(circle, rgba(124, 77, 255, 0.1), transparent 70%);
}

/* ---- Bottom Tagline ---- */
.tp-tagline {
  text-align: center;
}

.tp-tagline-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 18px 36px;
  max-width: 780px;
}

.tp-tagline-inner i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  animation: bolt-flash 2s ease-in-out infinite;
}

@keyframes bolt-flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.tp-tagline-inner p {
  color: #9bbdd4;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.tp-tagline-inner p strong {
  color: #ffffff;
  font-weight: 700;
}

.tp-tagline-inner p span {
  color: var(--primary);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .tp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tp-tagline-inner {
    flex-direction: column;
    border-radius: 16px;
    padding: 20px 24px;
    gap: 10px;
  }

  .tp-main-title {
    letter-spacing: 0;
  }
}

/* ===== POST-DEMONETIZATION ===== */
.post-demo-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* animated top accent line */
.post-demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

/* deep purple ambient glow */
.post-demo-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0, 60, 120, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Header ---- */
.pd-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.pd-title {
  font-family: var(--font2);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-shadow: 0 0 50px rgba(0, 229, 255, 0.2);
}

.pd-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pd-tagline {
  color: #9bbdd4;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ---- Grid ---- */
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* ---- Card shell ---- */
.pd-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.12);
  background: linear-gradient(145deg, #0a1828, #0d2040);
  transition: all 0.4s ease;
  position: relative;
}

.pd-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 229, 255, 0.13);
}

.pd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.pd-card:hover::before {
  opacity: 1;
}

/* card top text */
.pd-card-top {
  padding: 26px 28px 18px;
}

.pd-card-top h3 {
  font-family: var(--font2);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.pd-card-top h3 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pd-card-sub {
  color: #9bbdd4;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---- Visual container ---- */
.pd-visual {
  margin: 0 20px 24px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* ---- Card image ---- */
.pd-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ===== Digital Ecosystem Visual ===== */
.pd-visual-digital {
  background: linear-gradient(135deg, #050f1e, #0a1e3a);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

/* circuit traces */
.pd-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pd-cline {
  position: absolute;
  background: rgba(0, 229, 255, 0.12);
  border-radius: 1px;
}

.pd-cl1 {
  width: 70%;
  height: 1px;
  top: 35%;
  left: 5%;
}

.pd-cl2 {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 35%;
}

.pd-cl3 {
  width: 50%;
  height: 1px;
  top: 65%;
  right: 5%;
}

.pd-cdot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary);
  animation: dot-blink 2s ease-in-out infinite;
}

.pd-cd1 {
  top: calc(35% - 2px);
  left: 35%;
  animation-delay: 0s;
}

.pd-cd2 {
  top: calc(65% - 2px);
  right: 35%;
  animation-delay: 0.6s;
}

.pd-cd3 {
  top: 20%;
  left: 5%;
  animation-delay: 1.2s;
}

@keyframes dot-blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.5);
  }
}

/* phone */
.pd-phone {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 104px;
  background: linear-gradient(180deg, #0d2a4a, #0a1e35);
  border: 2px solid rgba(0, 229, 255, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  flex-shrink: 0;
}

.pd-phone-screen {
  width: 44px;
  height: 72px;
  background: linear-gradient(135deg, #0a3060, #0d4080);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-rupee {
  font-family: var(--font2);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  filter: drop-shadow(0 0 8px var(--primary));
  animation: rupee-glow 2s ease-in-out infinite alternate;
}

@keyframes rupee-glow {
  from {
    filter: drop-shadow(0 0 6px var(--primary));
  }

  to {
    filter: drop-shadow(0 0 18px var(--primary));
  }
}

.pd-phone-beam {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  animation: beam-pulse 1.2s ease-in-out infinite;
}

@keyframes beam-pulse {

  0%,
  100% {
    opacity: 1;
    width: 14px;
  }

  50% {
    opacity: 0.3;
    width: 6px;
  }
}

/* QR codes */
.pd-qr-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.pd-qr {
  background: rgba(5, 15, 30, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 8px;
  padding: 6px;
}

.pd-qr-big {
  width: 76px;
  height: 76px;
}

.pd-qr-small {
  width: 52px;
  height: 52px;
}

.pd-qr-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background: rgba(0, 229, 255, 0.03);
  border-radius: 4px;
}

.pd-qr-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--primary);
}

.pd-qc-tl {
  top: 2px;
  left: 2px;
  border-right: none;
  border-bottom: none;
}

.pd-qc-tr {
  top: 2px;
  right: 2px;
  border-left: none;
  border-bottom: none;
}

.pd-qc-bl {
  bottom: 2px;
  left: 2px;
  border-right: none;
  border-top: none;
}

.pd-qr-dots {
  position: absolute;
  inset: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.pd-qd-on {
  background: var(--primary);
  border-radius: 1px;
}

.pd-qd-off {
  background: rgba(0, 229, 255, 0.12);
  border-radius: 1px;
}

/* ===== Unicorn Rise Visual ===== */
.pd-visual-unicorn {
  background: linear-gradient(135deg, #08041a, #130620);
  border: 1px solid rgba(124, 77, 255, 0.15);
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

/* city skyline */
.pd-city {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0 8px;
  pointer-events: none;
}

.pd-skyscraper {
  flex: 1;
  border-radius: 3px 3px 0 0;
}

.pd-sky1 {
  height: 60%;
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.35), rgba(124, 77, 255, 0.08));
}

.pd-sky2 {
  height: 85%;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.25), rgba(0, 229, 255, 0.05));
}

.pd-sky3 {
  height: 70%;
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.30), rgba(124, 77, 255, 0.06));
}

.pd-sky4 {
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.20), rgba(0, 229, 255, 0.04));
}

/* fintech logos row */
.pd-fintech-logos {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 3;
  align-self: flex-start;
}

.pd-ft-logo {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.pd-ft-paytm {
  background: #00baf2;
  color: #000;
}

.pd-ft-phonepe {
  background: #5f259f;
  color: #fff;
}

.pd-ft-gpay {
  background: #fff;
  color: #333;
}

/* unicorn + chart */
.pd-unicorn-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
  padding: 0 6px;
}

.pd-unicorn-icon {
  position: relative;
  font-size: 3.2rem;
  color: #a78bff;
  filter: drop-shadow(0 0 16px rgba(124, 77, 255, 0.7));
  animation: unicorn-glow 2.5s ease-in-out infinite alternate;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes unicorn-glow {
  from {
    filter: drop-shadow(0 0 10px rgba(124, 77, 255, 0.5));
  }

  to {
    filter: drop-shadow(0 0 28px rgba(124, 77, 255, 0.9));
  }
}

.pd-horn {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  font-size: 0.8rem;
  color: var(--secondary);
  text-shadow: 0 0 8px var(--secondary);
}

.pd-chart-line {
  flex: 1;
}

.pd-chart-line svg {
  width: 100%;
  height: 44px;
  display: block;
}

.pd-fintech-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .pd-grid {
    grid-template-columns: 1fr;
  }

  .pd-title {
    letter-spacing: 1px;
  }

  .pd-visual {
    height: 180px;
  }
}

/* ===== QUICK COMMERCE ===== */
.qc-section {
  background:
    linear-gradient(
      135deg,
      rgba(5, 10, 14, 0.87) 0%,
      rgba(10, 21, 32, 0.82) 50%,
      rgba(5, 10, 14, 0.90) 100%
    ),
    url('../img/13.jpg') center center / cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.qc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ---- Dual header ---- */
.qc-dual-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.qc-dh-left,
.qc-dh-right {
  flex: 1;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qc-dh-left {
  background: rgba(0, 229, 255, 0.06);
}

.qc-dh-right {
  background: rgba(124, 77, 255, 0.06);
}

.qc-dh-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--primary), var(--accent), transparent);
}

.qc-year-tag {
  font-family: var(--font2);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.qc-year-right {
  color: #a78bff;
}

/* ---- Grid ---- */
.qc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* ---- Shared card shell ---- */
.qc-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 255, 0.12);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.qc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.12);
}

.qc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.qc-card:hover::before {
  opacity: 1;
}

.qc-card-heading {
  padding: 22px 24px 14px;
  position: relative;
  z-index: 2;
}

.qc-card-heading h3 {
  font-family: var(--font2);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.qc-card-heading h3 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qc-card-sub {
  color: #9bbdd4;
  font-size: 0.88rem;
  font-weight: 500;
}

.qc-standard {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

/* ===== LEFT CARD — Platforms ===== */
.qc-card-left {
  background: linear-gradient(145deg, #06101e, #0a1a32);
  min-height: 380px;
}

.qc-platforms-grid {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* ---- Quick Commerce card image ---- */
.qc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.qc-platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.qc-row2 {
  gap: 8px;
}

.qc-row3 {
  gap: 10px;
}

/* rider icons */
.qc-rider {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.qc-rider-yellow {
  background: rgba(255, 208, 0, 0.15);
  color: #FFD000;
  border: 1px solid rgba(255, 208, 0, 0.3);
}

.qc-rider-purple {
  background: rgba(124, 77, 255, 0.15);
  color: #a78bff;
  border: 1px solid rgba(124, 77, 255, 0.3);
}

.qc-rider-red {
  background: rgba(255, 80, 60, 0.15);
  color: #ff5c3a;
  border: 1px solid rgba(255, 80, 60, 0.3);
}

.qc-rider-green {
  background: rgba(0, 200, 80, 0.15);
  color: #00c850;
  border: 1px solid rgba(0, 200, 80, 0.3);
}

/* logo badges */
.qc-logo-badge {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.qc-blinkit {
  background: #FFD000;
  color: #000;
}

.qc-swiggy {
  background: #FC8019;
  color: #fff;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}

.qc-instamart {
  background: #1BA462;
  color: #fff;
}

.qc-zepto {
  background: #7b2ff7;
  color: #fff;
}

.qc-bb {
  background: #E31E30;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.qc-bigbasket {
  background: #84BD00;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 6px 14px;
}

.qc-kisan {
  background: #2e7d32;
  color: #fff;
}

/* circuit overlay */
.qc-circuit-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.qc-cl {
  position: absolute;
  background: rgba(0, 229, 255, 0.07);
  border-radius: 1px;
}

.qc-cl1 {
  width: 80%;
  height: 1px;
  top: 28%;
  left: 0;
}

.qc-cl2 {
  width: 1px;
  height: 70%;
  top: 15%;
  left: 55%;
}

.qc-cl3 {
  width: 60%;
  height: 1px;
  bottom: 22%;
  right: 0;
}

/* ===== RIGHT CARD — Revolution ===== */
.qc-card-right {
  background: linear-gradient(145deg, #06040e, #0e0620);
  border-color: rgba(124, 77, 255, 0.15);
}

.qc-revolution-content {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* individual point row */
.qc-point {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.qc-point:hover {
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.04);
}

.qc-point-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.qc-icon-globe {
  background: rgba(0, 180, 255, 0.1);
  border-color: rgba(0, 180, 255, 0.2);
  color: #00b4ff;
}

.qc-icon-truck {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.2);
  color: var(--secondary);
}

.qc-point-text {
  color: #c8dff0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
}

.qc-point-text strong {
  color: #ffffff;
  font-weight: 700;
}

.qc-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 4px;
}

.qc-timer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255, 150, 0, 0.12);
  border: 1px solid rgba(255, 150, 0, 0.3);
  color: #ffaa00;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  text-align: center;
}

.qc-timer-badge i {
  font-size: 1rem;
}

/* E-Commerce → Quick Commerce transition bar */
.qc-transition-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 77, 255, 0.08);
  border: 1px solid rgba(124, 77, 255, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
}

.qc-tb-left {
  font-family: var(--font2);
  font-size: 0.78rem;
  font-weight: 800;
  color: #a78bff;
  background: rgba(124, 77, 255, 0.15);
  border: 1px solid rgba(124, 77, 255, 0.3);
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.qc-tb-arrows {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.9rem;
}

.qc-tb-arrows i:nth-child(1) {
  opacity: 0.4;
}

.qc-tb-arrows i:nth-child(2) {
  opacity: 0.7;
}

.qc-tb-arrows i:nth-child(3) {
  opacity: 1;
}

.qc-tb-right {
  font-family: var(--font2);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}

/* city bg on right card */
.qc-city-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 0 10px;
  opacity: 0.3;
  pointer-events: none;
}

.qc-building {
  flex: 1;
  border-radius: 3px 3px 0 0;
}

.qc-qb1 {
  height: 70%;
  background: linear-gradient(180deg, #7c4dff, transparent);
}

.qc-qb2 {
  height: 90%;
  background: linear-gradient(180deg, #00e5ff, transparent);
}

.qc-qb3 {
  height: 60%;
  background: linear-gradient(180deg, #7c4dff, transparent);
}

.qc-qb4 {
  height: 80%;
  background: linear-gradient(180deg, #00e5ff, transparent);
}

/* ---- Bottom label ---- */
.qc-bottom-label {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #9bbdd4;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
  .qc-grid {
    grid-template-columns: 1fr;
  }

  .qc-dual-header {
    flex-direction: column;
  }

  .qc-dh-divider {
    width: 80%;
    height: 2px;
  }
}

@media (max-width: 560px) {
  .qc-platform-item {
    gap: 6px;
  }

  .qc-logo-badge {
    font-size: 0.75rem;
    padding: 5px 9px;
  }
}

/* ===== EFFECT ON LIFESTYLE ===== */
.lifestyle-section {
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}

.lifestyle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(124, 77, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Layout ---- */
.ls-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- LEFT: Text ---- */
.ls-title-block {
  margin-bottom: 36px;
}

.ls-title {
  font-family: var(--font2);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.ls-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ls-year {
  font-family: var(--font2);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

.ls-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ls-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ls-bullet {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  color: var(--primary);
  margin-top: 2px;
}

.ls-point p {
  color: #c8dff0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

.ls-point p strong {
  color: #ffffff;
  font-weight: 700;
}

/* ---- RIGHT: Visual ---- */
.ls-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Lifestyle infographic image ---- */
.ls-visual-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* top/bottom chip rows */
.ls-chip-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.ls-chip {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ls-chip i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ls-chip span {
  line-height: 1.3;
}

.ls-chip-lockdown {
  background: rgba(124, 77, 255, 0.12);
  border-color: rgba(124, 77, 255, 0.35);
  color: #a78bff;
}

.ls-chip-ecom {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--primary);
}

.ls-chip-data {
  background: rgba(0, 229, 255, 0.07);
  border-color: rgba(0, 229, 255, 0.25);
  color: var(--primary);
}

.ls-chip-analytics {
  background: rgba(0, 255, 136, 0.07);
  border-color: rgba(0, 255, 136, 0.25);
  color: var(--secondary);
}

/* centre stage box */
.ls-center-stage {
  position: relative;
  background: linear-gradient(135deg, #060e1c, #0a1828);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 14px;
  padding: 20px;
  min-height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* isometric phone */
.ls-iso-phone {
  width: 110px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #0d2240, #0a1830);
  border: 2px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.ls-iso-screen {
  position: relative;
  background: linear-gradient(135deg, #041530, #0a2050);
  border-radius: 6px;
  height: 80px;
  overflow: hidden;
}

.ls-map-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding: 4px;
  height: 100%;
}

.ls-map-cell {
  background: rgba(0, 229, 255, 0.08);
  border-radius: 1px;
}

.ls-map-cell:nth-child(3n) {
  background: rgba(0, 229, 255, 0.16);
}

.ls-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px var(--primary));
  animation: pin-bounce 1.8s ease-in-out infinite;
}

@keyframes pin-bounce {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-5px);
  }
}

/* delivery rider */
.ls-rider-float {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: ls-float 3s ease-in-out infinite;
}

@keyframes ls-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.ls-rider-person {
  font-size: 1.8rem;
  color: #a78bff;
}

.ls-rider-bike {
  font-size: 2.2rem;
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

/* mini city towers */
.ls-mini-city {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 90px;
}

.ls-mc-tower {
  width: 18px;
  border-radius: 3px 3px 0 0;
}

.ls-mc-t1 {
  height: 55%;
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.5), rgba(124, 77, 255, 0.1));
}

.ls-mc-t2 {
  height: 85%;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.4), rgba(0, 229, 255, 0.08));
}

.ls-mc-t3 {
  height: 65%;
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.4), rgba(124, 77, 255, 0.08));
}

/* app chip badges floating */
.ls-app-chips {
  position: absolute;
  top: 8px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.ls-app-chip {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.ls-ac-bb {
  background: #E31E30;
  color: #fff;
}

.ls-ac-zepto {
  background: #7b2ff7;
  color: #fff;
  font-size: 0.85rem;
}

.ls-ac-zomato {
  background: #E23744;
  color: #fff;
}

.ls-ac-service {
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--primary);
  font-size: 0.68rem;
}

/* bottom sub-panels */
.ls-sub-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ls-sub-panel {
  background: linear-gradient(135deg, #060e1c, #0a1828);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
}

.ls-sp-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.ls-sp-rider {
  color: #a78bff;
}

.ls-sp-box {
  color: #ffaa00;
  font-size: 1rem;
}

.ls-sp-user {
  color: var(--secondary);
}

.ls-sp-labels {
  display: flex;
  justify-content: space-around;
}

.ls-sp-labels span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9bbdd4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ls-sp-ev-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.ls-ev-bike {
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.ls-ev-charger {
  color: var(--secondary);
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

/* glow aura behind visual */
.ls-glow-aura {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 60% 50%, rgba(124, 77, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Responsive */
@media (max-width: 1000px) {
  .ls-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ls-visual {
    order: -1;
  }
}

@media (max-width: 560px) {
  .ls-chip-row {
    flex-direction: column;
  }

  .ls-sub-panels {
    grid-template-columns: 1fr;
  }

  .ls-center-stage {
    flex-wrap: wrap;
    min-height: auto;
  }

  .ls-app-chips {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  header {
    padding: 0 30px;
  }

.section-pad {
        padding: 80px 12px;
    }

  #stats {
    padding: 50px 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-visual {
    display: none;
  }

  .charging-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    min-width: calc(50% - 15px);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

footer {
        padding: 55px 1px 5px;
    }



  .slider-arrows {
    right: 30px;
  }

  .slide {
    padding: 75px 50px 80px;
  }

  .charging-map-banner {
    flex-direction: column;
    padding: 36px;
  }
}

@media (max-width: 768px) {

  /* ---- HEADER ---- */
  header {
    padding: 0 20px;
  }

  /* ---- HAMBURGER → X animation ---- */
  .hamburger {
    display: flex;
    z-index: 1100;
    position: relative;
  }

  /* ---- FULLSCREEN OVERLAY NAV ---- */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 10, 14, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  /* Glowing top border line */
  nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
  }

  /* subtle grid bg pattern inside menu */
  nav::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }

  nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 229, 255, 0.06);
  }

  nav ul li:first-child {
    border-top: 1px solid rgba(0, 229, 255, 0.06);
  }

  nav ul li a {
    display: block;
    padding: 18px 30px;
    font-family: var(--font2);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8dff0;
    transition: all 0.25s ease;
    position: relative;
  }

  nav ul li a:hover,
  nav ul li a:active {
    color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
    text-shadow: 0 0 12px rgba(0,229,255,0.4);
  }

  nav ul li a::after {
    display: none;
  }

  /* Contact Us button — different style */
  nav ul li .btn-nav {
    display: inline-block;
    margin: 24px auto 0;
    padding: 12px 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #000 !important;
    border-radius: 6px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 0 24px rgba(0,229,255,0.35);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  /* ---- OTHER RESPONSIVE FIXES ---- */
  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .charging-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-body {
    padding: 50px 24px 30px;
  }

  .footer-cta-band {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide {
    padding: 0px 0px 0px!important;
  }
}


@media only screen and (min-width:100px) and (max-width:768px) {
  p{
    text-align: justify;
  }
}