@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600;700&family=Sora:wght@400;600;700&display=swap');

:root {
  --bg: #0a0f18;
  --ink: #e7effc;
  --muted: #a3b4c9;
  --black: #05070c;
  --blue: #4da3ff;
  --blue-dark: #1a66c7;
  --lime: #63f0b2;
  --accent: #4da3ff;
  --accent-2: #63f0b2;
  --card: rgba(18, 28, 44, 0.62);
  --stroke: rgba(130, 170, 220, 0.22);
  --shadow: 0 22px 50px rgba(3, 8, 18, 0.55);
  --glass: rgba(16, 26, 40, 0.55);
  --glass-strong: rgba(10, 18, 30, 0.85);
  --radius: 18px;
  --radius-sm: 12px;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Hind Siliguri", "Sora", sans-serif;
  position: relative;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(77, 163, 255, 0.35), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(0, 220, 190, 0.22), transparent 55%),
    radial-gradient(700px 700px at 50% 100%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0a0f18 50%, #080c12 100%);
}

html[lang="bn"] body,
body [data-lang="bn"] {
  font-family: "Hind Siliguri", "Sora", sans-serif;
}

body.drawer-open {
  overflow: hidden;
}

body.search-open {
  overflow: hidden;
}

.page {
  min-height: 100vh;
  padding-bottom: 90px;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--glass-strong);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(120, 160, 220, 0.2);
  box-shadow: 0 16px 40px rgba(3, 8, 18, 0.4);
  backdrop-filter: blur(18px);
}

.top-bar > .icon-btn {
  justify-self: start;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
  color: inherit;
  text-decoration: none;
}

.logo-wrap {
  width: 156px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  padding: 6px 10px;
  background: linear-gradient(135deg, #0a1b37, #0e2e5f 55%, #08162c);
  border: 1px solid rgba(96, 141, 255, 0.6);
  box-shadow:
    0 0 18px rgba(73, 128, 255, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.35),
    inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2c7bff 0%, #0c2c6d 45%, #05070c 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  box-shadow: inset 0 0 12px rgba(41, 140, 255, 0.8), 0 8px 14px rgba(0, 0, 0, 0.4);
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px dashed rgba(126, 195, 255, 0.8);
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8dd7ff, transparent);
  box-shadow: 0 -8px 0 rgba(126, 195, 255, 0.8), 0 8px 0 rgba(126, 195, 255, 0.8);
}

.logo-mark .node {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c2e2ff;
  box-shadow: 0 0 6px rgba(126, 195, 255, 0.9);
}

.logo-mark .n1 { top: 9px; left: 22px; }
.logo-mark .n2 { bottom: 9px; left: 12px; }
.logo-mark .n3 { bottom: 12px; right: 12px; }

.brand-text {
  display: grid;
  line-height: 1;
  gap: 2px;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 20px;
  background: linear-gradient(90deg, #6fb4ff, #ffffff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 18px rgba(31, 111, 255, 0.35);
}

.brand-tagline {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.8px;
  font-weight: 600;
}

.brand-sub {
  font-size: 11px;
  color: #c7d4e2;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  background: rgba(77, 163, 255, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.icon-btn {
  background: transparent;
  border: none;
  color: inherit;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  content: "";
  position: relative;
}

.hamburger::before { top: -6px; position: absolute; }
.hamburger::after { top: 6px; position: absolute; }

.search::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  left: 1px;
  top: 1px;
}

.search::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  right: 1px;
  bottom: 1px;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  top: 2px;
}

.heart::before { left: 2px; transform: rotate(-45deg); }
.heart::after { right: 2px; transform: rotate(45deg); }

.close::before,
.close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  top: 9px;
  left: 0;
}

.close::before { transform: rotate(45deg); }
.close::after { transform: rotate(-45deg); }

.badge {
  position: absolute;
  top: 4px;
  right: 6px;
  background: #ff3d67;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 18, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: var(--glass-strong);
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 30;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 16px 0;
  box-shadow: 12px 0 30px rgba(0, 0, 0, 0.35);
  border-right: 1px solid rgba(120, 160, 220, 0.2);
  backdrop-filter: blur(18px);
}

.drawer-open .drawer {
  transform: translateX(0);
}

.drawer-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 12px;
  border-bottom: 1px solid rgba(140, 180, 230, 0.18);
}

.drawer-brand {
  display: grid;
  place-items: center;
  padding: 10px 18px 12px;
  border-bottom: 1px solid rgba(140, 180, 230, 0.18);
}

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

.drawer-nav {
  display: grid;
  gap: 6px;
  padding: 8px 0;
}

.drawer-item {
  background: transparent;
  border: none;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 0.35px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}

.drawer-item.is-home {
  grid-template-columns: auto;
  justify-content: center;
}

.drawer-logo {
  width: 180px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  padding: 6px 10px;
  background: linear-gradient(135deg, #0a1b37, #0e2e5f 55%, #08162c);
  border: 1px solid rgba(96, 141, 255, 0.55);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 12px rgba(73, 128, 255, 0.45),
    inset 0 0 8px rgba(255, 255, 255, 0.08);
}

.drawer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.drawer-label {
  display: grid;
  gap: 2px;
  justify-self: start;
}

.drawer-plus {
  font-size: 20px;
  color: var(--accent-2);
  justify-self: end;
}

.search-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 70;
}

.search-overlay.is-open {
  display: grid;
  place-items: start center;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.72);
}

.search-card {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  width: min(600px, 92vw);
  background: var(--glass-strong);
  border: 1px solid rgba(120, 160, 220, 0.25);
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 22px 50px rgba(3, 8, 18, 0.6);
  backdrop-filter: blur(18px);
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.search-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.search-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(12, 20, 34, 0.9);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 14px;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #c9d4e2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(140, 180, 230, 0.28);
}

main {
  display: grid;
  gap: 26px;
  padding: 22px 18px 40px;
}

.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(77, 163, 255, 0.25), transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(0, 220, 190, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(24, 36, 56, 0.75), rgba(10, 18, 32, 0.85));
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(120, 160, 220, 0.25);
  backdrop-filter: blur(18px);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.hero-slide {
  display: grid;
  gap: 20px;
  align-items: center;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  position: absolute;
  inset: 0;
  padding: 8px 6px 6px;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  animation: slideIn 0.6s ease;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 24px rgba(22, 90, 170, 0.45);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  color: var(--ink);
}

.btn.mini {
  padding: 8px 14px;
  font-size: 12px;
  background: var(--blue);
  color: #fff;
}

.btn.neon-border {
  border: 1px solid #6ff6ff;
  box-shadow:
    0 0 12px rgba(111, 246, 255, 0.7),
    0 0 28px rgba(111, 246, 255, 0.45);
}

.hero-art {
  position: relative;
  min-height: 180px;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.45));
  border: 1px solid rgba(120, 160, 220, 0.22);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.35);
}

.hero-media.is-empty {
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.7), rgba(10, 18, 30, 0.9));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-ring {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border: 2px solid rgba(77, 163, 255, 0.35);
}

.hero-card {
  position: absolute;
  right: 24px;
  bottom: 12px;
  background: var(--glass);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 160, 220, 0.22);
  text-align: center;
  color: var(--ink);
}

.hero-stat {
  font-size: 36px;
  font-family: "Sora", sans-serif;
  color: var(--accent, #ff4d6d);
}

.hero-stat-sub {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 120px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  text-align: center;
}

.hero-chip {
  position: absolute;
  inset: 20px;
  border-radius: 18px;
  border: 2px solid rgba(43, 144, 255, 0.6);
  background: linear-gradient(135deg, rgba(43, 144, 255, 0.1), rgba(43, 144, 255, 0.4));
  box-shadow: inset 0 0 30px rgba(43, 144, 255, 0.4);
}

.hero-chip::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.6);
}

.delivery-card {
  position: absolute;
  inset: 30px 20px;
  background: var(--glass);
  border: 1px solid rgba(120, 160, 220, 0.22);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: center;
  box-shadow: var(--shadow);
}

.delivery-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00c389, #00e1a7);
  position: relative;
}

.delivery-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 12px;
  border: 2px solid #fff;
  border-left: none;
  border-radius: 0 6px 6px 0;
  left: 10px;
  top: 12px;
}

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

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dot {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.dot.is-active {
  background: var(--blue);
}

.promo-grid {
  display: grid;
  gap: 16px;
}

.promo-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 160, 220, 0.22);
  backdrop-filter: blur(16px);
}

.promo-card.blue {
  background: linear-gradient(135deg, #0b2b62, #1f6fff);
  color: #fff;
}

.promo-card.dark {
  background: linear-gradient(135deg, #0f1117, #1a2435);
  color: #fff;
}

.promo-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  margin-bottom: 6px;
}

.promo-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.promo-list {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 4px;
  font-size: 12px;
}

.promo-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.promo-image.has-image {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.promo-image.avatar {
  background: radial-gradient(circle at 30% 30%, #a7d4ff, rgba(255, 255, 255, 0));
}

.promo-image.ssd {
  background: linear-gradient(135deg, rgba(255, 200, 50, 0.25), rgba(255, 255, 255, 0));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 160, 220, 0.18);
  backdrop-filter: blur(12px);
}

.service-card h4 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
}

.service-card p {
  font-size: 12px;
  color: #ffffff;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.95), rgba(99, 240, 178, 0.85));
  position: relative;
  justify-self: end;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.service-icon.phone::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 4px;
  top: 12px;
  left: 16px;
}

.service-icon.support::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 12px;
  left: 13px;
}

.service-icon.card::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 4px;
  top: 15px;
  left: 11px;
}

.service-icon.truck::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 2px;
  top: 16px;
  left: 12px;
}

.service-icon.car::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 18px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 6px;
}

.service-icon.car::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 14px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 6px 6px 0 0;
}

.service-icon.service::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 4px;
  top: 13px;
  left: 13px;
  transform: rotate(45deg);
}

.service-icon.service::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #fff;
  top: 23px;
  left: 18px;
  transform: rotate(45deg);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.section-title {
  background: var(--glass-strong);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 999px 999px 0;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  border: 1px solid rgba(120, 160, 220, 0.22);
}

.section-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}

.section-track {
  position: relative;
  flex: 1;
  min-width: 160px;
  height: 32px;
  margin: 0 12px;
  overflow: hidden;
}

.car-runner {
  position: absolute;
  top: 50%;
  left: -140px;
  width: 130px;
  height: 36px;
  transform: translateY(-50%);
  animation: carDrive 10.5s linear infinite;
}

.car-shadow {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 6px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 70%);
  filter: blur(2px);
  opacity: 0.55;
}

.car-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 20px;
  border-radius: 12px 26px 10px 10px;
  background:
    linear-gradient(180deg, #f3f7ff 0%, #9ec0ff 45%, #4f74d6 100%),
    linear-gradient(
      90deg,
      transparent 0 38%,
      rgba(6, 18, 40, 0.18) 38% 39%,
      transparent 39% 70%,
      rgba(6, 18, 40, 0.16) 70% 71%,
      transparent 71% 100%
    );
  background-blend-mode: normal;
  box-shadow:
    0 10px 18px rgba(10, 18, 30, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -2px 4px rgba(10, 18, 30, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.car-body::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 24px;
  width: 66px;
  height: 15px;
  border-radius: 12px 14px 6px 6px;
  background: linear-gradient(135deg, #e9f1ff, #6e93e8);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.car-body::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 36px;
  width: 42px;
  height: 9px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(210, 230, 255, 0.75), rgba(120, 150, 210, 0.2));
  opacity: 0.95;
}

.car-wheel {
  position: absolute;
  bottom: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #e7effc;
  background:
    radial-gradient(circle at center, #e7effc 0 2px, transparent 2px),
    conic-gradient(
      from 0deg,
      #cfd9e6 0 20deg,
      transparent 20deg 45deg,
      #cfd9e6 45deg 65deg,
      transparent 65deg 90deg,
      #cfd9e6 90deg 110deg,
      transparent 110deg 135deg,
      #cfd9e6 135deg 155deg,
      transparent 155deg 180deg,
      #cfd9e6 180deg 200deg,
      transparent 200deg 225deg,
      #cfd9e6 225deg 245deg,
      transparent 245deg 270deg,
      #cfd9e6 270deg 290deg,
      transparent 290deg 315deg,
      #cfd9e6 315deg 335deg,
      transparent 335deg 360deg
    );
  background-color: #0b0f18;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  animation: wheelSpin 1.1s linear infinite;
}

.wheel-rear { left: 20px; }
.wheel-front { right: 20px; }

.car-smoke {
  position: absolute;
  left: -10px;
  bottom: 8px;
  width: 34px;
  height: 12px;
  background:
    radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.3), transparent 70%),
    radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.2), transparent 70%),
    radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.15), transparent 70%);
  filter: blur(1.6px);
  opacity: 0.65;
  animation: smokeTrail 1.4s ease-out infinite;
}

.car-light {
  position: absolute;
  bottom: 12px;
  width: 9px;
  height: 6px;
  border-radius: 3px;
}

.car-light.headlight {
  right: -2px;
  background: linear-gradient(90deg, rgba(255, 244, 200, 0.9), rgba(255, 244, 200, 0.15));
  box-shadow: 0 0 10px rgba(255, 240, 190, 0.8);
}

.car-light.taillight {
  left: -1px;
  background: linear-gradient(90deg, #ff3b3b, rgba(255, 59, 59, 0.2));
  box-shadow: 0 0 8px rgba(255, 60, 60, 0.75);
}

@keyframes carDrive {
  0% { left: -140px; }
  100% { left: calc(100% + 140px); }
}

@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}

@keyframes smokeTrail {
  0% { opacity: 0; transform: translateX(0) scale(0.7); }
  35% { opacity: 0.6; transform: translateX(-6px) scale(1); }
  100% { opacity: 0; transform: translateX(-18px) scale(1.2); }
}

.categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category {
  background: var(--card);
  border-radius: 14px;
  padding: 12px 8px;
  display: grid;
  gap: 8px;
  place-items: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 160, 220, 0.18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  text-align: center;
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(77, 163, 255, 0.15);
  display: grid;
  place-items: center;
}

.category-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
}

.collections {
  display: grid;
  gap: 14px;
}

.collection-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 160, 220, 0.2);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 8px;
}

.collection-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}

.collection-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

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

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.products#services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(120, 160, 220, 0.18);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 10px;
  text-align: center;
}

.product-card.service-card {
  text-align: left;
  padding: 16px;
  grid-template-columns: minmax(0, 170px) 1fr;
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas:
    "image category"
    "image name"
    "image price"
    "image save";
  gap: 6px 14px;
  align-items: start;
  border-radius: 20px;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  padding: 8px;
}

.product-card.service-card .product-image {
  grid-area: image;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 20, 34, 0.9), rgba(8, 12, 20, 0.95));
  border: 1px solid rgba(130, 170, 220, 0.3);
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.35);
}

.product-card.service-card .product-image img {
  object-fit: cover;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-card.service-card .product-category {
  grid-area: category;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.product-category {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.product-card.service-card .product-name {
  grid-area: name;
  font-size: 13px;
  color: var(--muted);
  min-height: 0;
}

.product-name {
  font-size: 12px;
  color: var(--muted);
  min-height: 34px;
}

.product-card.service-card .product-price {
  grid-area: price;
  justify-self: end;
  align-self: end;
  font-size: 18px;
}

.product-price {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.product-card.service-card .product-save {
  grid-area: save;
  font-size: 12px;
  color: #6fffd1;
  font-weight: 700;
}

.product-save {
  font-size: 12px;
  color: #6fffd1;
  font-weight: 600;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 110px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 22, 38, 0.95), rgba(9, 16, 28, 0.9));
  border: 1px solid rgba(120, 160, 220, 0.3);
  box-shadow:
    0 16px 36px rgba(4, 8, 16, 0.55),
    0 0 18px rgba(77, 163, 255, 0.35);
  backdrop-filter: blur(14px);
  z-index: 5;
  color: #fff;
  text-decoration: none;
}

.whatsapp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #22c97b, #4da3ff);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.25), 0 6px 14px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.whatsapp-logo {
  width: 18px;
  height: 18px;
  display: block;
}

.whatsapp-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #e7effc;
  white-space: nowrap;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-strong);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 10px 6px 14px;
  gap: 6px;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(120, 160, 220, 0.2);
  backdrop-filter: blur(18px);
  z-index: 6;
}

.nav-item {
  background: transparent;
  border: none;
  color: inherit;
  display: grid;
  gap: 4px;
  place-items: center;
  font-size: 10px;
  cursor: pointer;
  text-decoration: none;
}

.nav-item.is-active {
  color: var(--accent-2);
}

.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 18px auto 26px;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
}

.footer-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 12px;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copy {
  white-space: nowrap;
}

.nav-icon {
  width: 22px;
  height: 22px;
  position: relative;
}

.nav-icon.home::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.nav-icon.home::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 2px;
  height: 10px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: skewY(-15deg);
}

.nav-icon.car::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 10px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 6px;
}

.nav-icon.car::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 6px 6px 0 0;
}

.nav-icon.service::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 4px;
  top: 4px;
  left: 4px;
  transform: rotate(45deg);
}

.nav-icon.service::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #fff;
  top: 10px;
  left: 6px;
  transform: rotate(45deg);
}

.nav-icon.screen::before {
  content: "";
  position: absolute;
  inset: 2px 1px 6px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.nav-icon.tag::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 4px 4px 4px 0;
  top: 2px;
  left: 3px;
  transform: rotate(-12deg);
}

.nav-icon.cart::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 2px;
  top: 6px;
  left: 3px;
}

.nav-icon.compare::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 2px;
  top: 3px;
  left: 4px;
}

.nav-icon.compare::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 2px;
  top: 5px;
  right: 4px;
}

.nav-icon.user::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 2px;
  left: 6px;
}

.nav-icon.user::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-radius: 0 0 10px 10px;
  bottom: 2px;
  left: 3px;
}

body [data-lang="en"],
body [data-lang="bn"] {
  display: none;
}

html[data-lang="bn"] body [data-lang="bn"],
html[data-lang="en"] body [data-lang="en"] {
  display: revert;
}

.lang-btn.is-next {
  display: inline-flex;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 520px) {
  .top-bar {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px;
  }

  .brand {
    justify-self: start;
    gap: 8px;
    min-width: 0;
  }

  .brand-text { min-width: 0; }

  .brand-name {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 48vw;
  }
  .brand-tagline {
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 48vw;
  }

  .brand-sub {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    letter-spacing: 1.6px;
    max-width: 48vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-wrap { width: 124px; height: 44px; padding: 4px 8px; }

  .top-actions { gap: 6px; }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .lang-switch { padding: 3px; }
  .lang-btn { padding: 5px 10px; font-size: 11px; }

  .whatsapp {
    right: 14px;
    bottom: 90px;
    padding: 7px 10px 7px 8px;
    gap: 8px;
  }

  .whatsapp-icon {
    width: 32px;
    height: 32px;
  }

  .whatsapp-text {
    font-size: 11px;
  }

  .search-card {
    margin-top: 70px;
    padding: 14px 14px 16px;
  }

  main { padding: 18px 16px 36px; }

  .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .section-link {
    width: 100%;
  }

  .section-track {
    order: 3;
    width: 100%;
    margin: 6px 0 0;
  }

  .promo-card {
    grid-template-columns: 1fr;
  }

  .promo-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .products#services-grid {
    grid-template-columns: 1fr;
  }

  .product-card.service-card {
    grid-template-columns: minmax(0, 140px) 1fr;
  }
}

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

  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .top-bar {
    padding: 18px 48px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 13px; }

  main {
    padding: 30px 48px 60px;
    gap: 30px;
  }

  .hero {
    padding: 24px;
  }

  .hero-slide {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .categories {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .collections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bottom-nav {
    position: static;
    border-radius: var(--radius);
    margin: 0 48px 40px;
  }

  .site-footer {
    padding: 0 48px;
  }

  .page {
    padding-bottom: 0;
  }
}
