:root {
  color-scheme: dark;
  font-family: "Inter", system-ui, sans-serif;
  scroll-behavior: smooth;
}

/* Load your font properly */
/* ===== LOAD RACING FONT FOR NAVBAR ===== */
/* ===== FONT ===== */
@font-face {
  font-family: "Besport";
  src: url("../font/font2/Besport.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* ===== NAVBAR ===== */
.site-nav {
  font-family: "Besport", sans-serif;
  font-size: 8px;
  display: flex;
  align-items: center;
}

/* Navbar links */
.site-nav .nav-link {
  font-size: 8px; /* 🔥 increase from 9px (too small) */
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* Hover underline */
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ff3c00;
  transition: 0.3s;
}

.site-nav .nav-link:hover::after {
  width: 100%;
}

/* ===== DROPDOWN ===== */
.nav-item {
  position: relative;
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  gap: 10px;
  background: radial-gradient(circle at bottom, #0f172a, #020617);
  padding: 30px 40px;
  min-width: 450px;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* SHOW */
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 25px;
}

/* ===== LEFT SIDE ===== */
.menu-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 30px;
}

/* LEFT ITEMS */
.menu-item {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #bbb;
  font-size: 8px;
  font-weight: 500;

  text-decoration: none;
  transition: 0.3s;
}

.menu-item img {
  width: 25px;
}

/* ACTIVE + HOVER */
.menu-item.active,
.menu-item:hover {
  color: #fff;
}

/* ===== RIGHT SIDE ===== */
.menu-right {
  min-width: 160px;
}

/* CONTENT */
.menu-content {
  display: none;
}

.menu-content.active {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px 30px;
}

/* ITEMS */
.menu-content a {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  text-decoration: none;
  font-size: 8px;
  font-weight: 500;

  transition: 0.3s;
}

/* IMAGE */
.menu-img {
  width: 50px;
  border-radius: 6px;
}

/* HOVER EFFECT */
.menu-content a:hover {
  color: #c90f0f;
  transform: translateX(5px);
}


body {
  margin: 0;
  background: #0f1218;
  color: #f4f4f8;
}

main {
  padding-top: 45px;
}

section[id] {
  scroll-margin-top: 64px;
}

a {
  color: inherit;
  text-decoration: none;
}
.text-muted {
  color: white !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  width: 100%;
  background: rgba(167, 187, 227, 0.304);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  height: 60px;
}

.header-grid {
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

.brand img {
  height: 45px; /* base size (fits navbar) */
  width: auto;
  transform: scale(2.9); /* increase visual size */
  transform-origin: left center;
}

/* =========================================
   MOBILE GLASS HEADER
========================================= */
@media (max-width: 768px) {

  /* REMOVE OLD HEADER BACKGROUND */

  .site-header {

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    top: -3px;
    z-index: 9999;
  }

  /* REMOVE CONTAINER BACKGROUND */

  .site-header .container,
  .site-header .header-grid {

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* FLOATING GLASS BAR */

  .site-header .header-grid {

    position: fixed;

    top: 12px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 24px);
    max-width: 360px;

    height: 54px;

    padding: 0 16px;

    border-radius: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
      #090f21 !important;

    backdrop-filter: blur(10px);

    border:
      1px solid rgba(255,255,255,0.06);

    box-shadow:
      0 10px 25px rgba(0,0,0,0.22);

    overflow: hidden;
  }

  /* REMOVE ANY BEFORE/AFTER */

  .site-header::before,
  .site-header::after,
  .header-grid::before,
  .header-grid::after {
    display: none !important;
  }

  /* DESKTOP NAV */

  .site-nav {
    display: none !important;
  }

  /* LOGO */

  .brand {

    display: flex;
    align-items: left;

    flex-shrink: 0;
  }

  .brand img {

    width: 60px;
    height: auto;
    display: block;
  }

  /* RIGHT */

  .header-actions {

    margin-left: auto;

    display: flex;
    align-items: center;
  }

  /* BUTTON */

  .mobile-toggle {

    width: 34px;
    height: 34px;

    padding: 0;

    border: none;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ICON */

  .menu-icon {

    width: 22px;
    height: 22px;

    object-fit: contain;
  }

  /* SOCIAL */

  .social-links {
    display: none !important;
  }

}



.site-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.site-nav .nav-link {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
  transition: color 0.25s ease;
}

.site-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #e62d38;
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  transition: width 0.25s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #ffffff;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
  width: 100%;
}

.header-actions {
  justify-items: end;
}
/* SOCIAL ICON WRAPPER */
.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);

  overflow: hidden;

  transition: all 0.3s ease;
}

.social-icon img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

/* 🔥 Hover Effect */
.social-icon:hover {
  background: #e62d38;
  border-color: #2d46e6;
  transform: translateY(-3px) scale(1.08);

  box-shadow: 0 8px 20px rgba(230, 45, 56, 0.4);
}

.social-icon:hover img {
  transform: scale(1.15);
  animation: softBounce 0.6s ease;
}

/* Mobile menu section */

.mobile-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-toggle img,
.menu-icon {
  width: 30px;
  height: auto;
  display: block;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 85vw);
  z-index: 1100;
  background: #000;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 2rem;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}


.mobile-menu-header {
  display: flex;
  justify-content: flex-end;

}

.mobile-close {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.mobile-link span {
  color: #ffffff;
  font-size: 1.2rem;
}

.mobile-menu-info {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-section-title {
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mobile-menu-info p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0.55rem 0;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

/* for mobile dropdown */
/* Accordion container */
/* PANEL */
/* ===== GLASS EFFECT ===== */
.mobile-menu-overlay {
  backdrop-filter: blur(16px);
  background: radial-gradient(circle at bottom, #0f172a, #020617);
}

/* ===== PANEL ===== */
.submenu-panel {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, #0f172a, #020617);
  transform: translateX(100%);
  transition: 0.35s ease;
  padding: 20px;
}

/* ACTIVE */
.mobile-accordion.active .submenu-panel {
  transform: translateX(0);
}

/* HEADER */
.submenu-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 600;
}

/* BACK */
.back-btn {
  font-size: 20px;
  cursor: pointer;
}

/* GROUP */
.submenu-group {
  margin-bottom: 20px;
}

/* TITLE + ICON */
.submenu-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.submenu-title img {
  width: 50px;
}

/* ITEM */
.submenu-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

/* IMAGE */
.submenu-content a img {
  width: 40px;
  height: auto;
  border-radius: 6px;
}

/* HOVER */
.submenu-content a:hover {
  transform: translateX(5px);
  color: #ff0000;
;
}

/* mobile side menu bar end */

/* Desktop (no crop feel) */
.hero-section {
  height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 200px;

  background: url("../img/hero_img/img3.webp") center center no-repeat;
  background-size: cover;
}

/* =========================================
   MOBILE HERO SLIDER ONLY
========================================= */
@media (max-width: 768px) {

  .hero-section {

    height: 100vh !important;
    min-height: 100vh !important;
    margin-top: -45px !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    animation: mobileHeroSlider 20s infinite;
  }

  .hero-title {

    font-size: 52px;
    line-height: 1.1;
  }



  /* HIDE DOTS */

  .hero-dots {
    display: none !important;
  }

  @keyframes mobileHeroSlider {

    0% {
      background-image:
      url("../img/hero_img/mobileslider1.png");
    }

    33% {
      background-image:
      url("../img/hero_img/mobileslider2.png");
    }

    66% {
      background-image:
      url("../img/hero_img/mobileslider3.png");
    }

    100% {
      background-image:
      url("../img/hero_img/mobileslider1.png");
    }

  }

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 16, 30, 0.317), rgba(8, 10, 18, 0.249));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-top: 6rem;
}

.hero-title {
  font-size: 40px;
  line-height: 1.05;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  max-width: 640px;
  margin: 1rem auto 0;
  color: #0d6efd;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #ff0000;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-btn:hover {
  background: #0d6efd;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.hero-btn:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  padding: 0 1.5rem;
}

.hero-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 9, 15, 0.55);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-arrow:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.14);
}

.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.dot.active {
  background: #ffd75f;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff0000;
  font-size: x-large;
  font-weight: bold;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0d6efd;
  font-size: 1.20rem;
  font-weight: 700;
}



/*Desktop CARD */
.model-card {
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  position: relative;
  transition: 0.4s ease;
}

/* IMAGE WRAP */
.model-img {
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.model-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.model-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* CONTENT */
.model-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}

/* TITLE */
.model-content h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

/* TEXT */
.model-content p {
  font-size: 13px;
  opacity: 0.8;
}

/* HOVER EFFECT */
.model-card:hover img {
  transform: scale(1.1);
}

.model-card:hover {
  transform: translateY(-10px);
}

/* CAROUSEL SPACING */
.model-carousel .item {
  padding: 0 10px;
}
 /* for mobile card  */
@media (max-width: 768px) {
  .model-img img {
    height: 200px;
  }

  .model-content h5 {
    font-size: 16px;
  }

  .model-content p {
    font-size: 12px;
  }
}
/* for mobile card end */

.owl-carousel .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  line-height: 1;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.owl-carousel .owl-nav button:hover {
  transform: scale(1.05);
  background: #ffd75f;
  color: #0b0a08;
}

.owl-carousel .owl-dots {
  margin-top: 1.5rem;
}

.owl-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
}

.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot:hover span {
  background: #ffd75f;
}

.about-stats .col-6 {
  opacity: 0;
}

.stat-card {
  border: 1px solid rgba(24, 56, 131, 0.1);
}

.value-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.icon-large {
  font-size: 2.5rem;
}

.team-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid #183883;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #183883;
  box-shadow: 0 0 0 0.2rem rgba(24, 56, 131, 0.15);
}

.contact-form .btn-primary {
  background: #ff0000;
  border-color: #e62d38;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.contact-form .btn-primary:hover {
  background: #ff0000;
  border-color: #d12530;
}

.info-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hours-list div {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.hours-list div:last-child {
  margin-bottom: 0;
}

.location-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.menu-open {
  overflow: hidden;
}

.feature-list li {
  margin-bottom: 1rem;
  color: #e3e6ef;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #6b82ff;
  color: #fff;
  font-weight: 700;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stats h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991.98px) {
    .header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0.75rem 1rem;
    height: 64px;
  }

  /* PERFECT CENTER */
/* reserve equal space on left */
.header-grid::before {
  content: "";
  width: 75px; /* same as menu icon width */
}

  .header-actions {
    margin-left: auto;
  }

  .site-header {
    background: rgba(0, 0, 0, 0.32);
    height: auto;
  }

  .brand img {
    height: 40px;
    max-height: 40px;
  }

  .hero-section {
    height: auto;
    min-height: 75vh;
    margin-top: 0;
    padding-top: 64px;
  }

  .hero-inner {
    padding-top: 5rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-btn {
    padding: 0.95rem 2rem;
  }

  .hero-controls {
    display: none;
  }

  .mobile-menu-overlay {
    padding: 1.5rem 1rem 1.5rem;
  }

  .mobile-menu-links {
    margin-top: 3rem;
    gap: 1.25rem;
  }

  .mobile-link {
    font-size: 1rem;
    letter-spacing: 0.16em;
    padding: 0.75rem 0;
  }

  .mobile-close {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .header-grid {
    grid-template-columns: auto 1fr;
  }

  .hero-inner {
    padding-top: 4rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-subtitle {
    max-width: 90%;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-btn {
    width: auto;
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
  }

  .mobile-toggle span {
    width: 30px;
    height: 3px;
  }

  .mobile-menu-links {
    gap: 1rem;
  }

  .mobile-link {
    justify-content: space-between;
  }

  .feature-badge {
    width: 36px;
    height: 36px;
  }
}

section[id] {
  scroll-margin-top: 64px;
}


/* ===== BIKE SECTION ===== */
.bike-section {
  /* background: #262626; */
  /* background: #0f1218; */
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #ffffff;
  padding: 80px 0;
}

/* ===== HEADER ===== */
.bike-header {
  margin-bottom: 25px;
}

.bike-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 5px;
}

.bike-title {
  font-size: 38px;
  font-weight: 700;
  margin: 0;
}

/* ===== TABS ===== */
.bike-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid rgb(255, 255, 255);
  margin-bottom: 35px;
  overflow-x: auto;
}

.bike-tabs::-webkit-scrollbar {
  display: none;
}

.bike-tabs .tab {
  background: none;
  border: none;
  color: #d5d2d2cd;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  white-space: nowrap;
}

.bike-tabs .tab.active {
  color: #fff;
}

.bike-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: 	#ff0000;
}

/* ===== SLIDER (IMPORTANT FIX) ===== */
.bike-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.bike-slider::-webkit-scrollbar {
  display: none;
}

/* ===== CARD WRAPPER ===== */
.bike-card-wrapper {
  min-width: 320px;
  flex: 0 0 auto;
}

/* ===== CARD ===== */
.bike-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

.bike-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* ===== IMAGE ===== */
.bike-img-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.bike-card:hover .bike-img {
  transform: scale(1.1);
}

/* ===== TEXT ===== */
.bike-name {
  font-size: 18px;
  margin: 15px 0;
  font-weight: 600;
  color: black;
}

/* ===== SPECS ===== */
.bike-specs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
}

.bike-specs span {
  display: block;
  color: #37393e;
  font-size: 12px;
}

.bike-specs strong {
  font-size: 14px;
  color: #000000;
}

/* ===== PRICE ===== */
.bike-price {
  font-size: 14px;
  margin-bottom: 18px;
  color: #ff0000;
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.bike-buttons {
  display: flex;
  gap: 10px;
}

.btn-outline {
  flex: 1;
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn-outline:hover {
  background: #222fbc;
  color: #ffffff;
}

.btn-primary {
  flex: 1;
  background: 	#ff0000;
  border: none;
  color: #fff;
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn-primary:hover {
  background: #ff0000;
}

/* ===== NAV BUTTON ===== */
.bike-nav {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.187);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bike-nav:hover {
  background: 	#ff0000;
}

/* ===== DESKTOP GRID (OPTIONAL IMPROVEMENT) ===== */
@media (min-width: 992px) {
  .bike-card-wrapper {
    min-width: calc(33.33% - 14px);
  }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .bike-section {
    padding: 60px 0;
  }

  .bike-title {
    font-size: 28px;
  }

  .bike-tabs {
    gap: 15px;
  }

  .bike-card-wrapper {
    min-width: 85%;
  }

  .bike-specs {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .bike-buttons {
    flex-direction: column;
  }

  .bike-nav {
    width: 34px;
    height: 34px;
  }
}


/* smooth dragging */
.bike-slider {
  cursor: grab;
}

.bike-slider.dragging {
  cursor: grabbing;
  scroll-behavior: auto !important;
}

.bike-slider img {
  pointer-events: none;
}
/* ===== BIKE SECTION END ===== */

/* ===== POP UP TEST RIDE FORM MODAL BASE ===== */
.testride-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

/* SHOW */
.testride-modal.active {
  display: block;
}

/* OVERLAY */
.testride-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}

/* BOX */
.testride-box {
  position: relative;
  max-width: 420px;
  width: 90%;
  margin: 80px auto;
  background: #262626;
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  z-index: 2;
  animation: popupFade 0.3s ease;
}

/* ANIMATION */
@keyframes popupFade {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* CLOSE */
.testride-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* HEADER */
.testride-box h3 {
  margin-bottom: 5px;
}

.testride-box p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 20px;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
}

.form-group input::placeholder {
  color: #aaa;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  background: #ff0000;
  border: none;
  padding: 12px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #ff0000;
}

/* MOBILE */
@media (max-width: 480px) {
  .testride-box {
    padding: 20px;
  }
}

/* TEST RIDE FORM MODAL END  */

/* FOR GO TOP ARROW  */
/* ===== GO TO TOP BUTTON ===== */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(145deg, #121826, #0c111c);
  color: #fff;

  border: none;
  border-radius: 12px;

  font-size: 18px;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.4);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
  z-index: 999;
}

/* SHOW */
.go-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
.go-to-top:hover {
  background: #ff0000;
  transform: translateY(-4px);
}

/* ICON */
.go-to-top span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.go-to-top:hover span {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .go-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
/* ===== GO TO TOP BUTTON END ===== */

#models{
  background: radial-gradient(circle at bottom, #0f172a, #020617);
}

/* ===== ABOUT SECTION FOR HOME PAGE 1 ===== */
.about-section {
  /* background: #0b0f1a; */
  /* background: #0f1218; */
  background: radial-gradient(circle at right, #0f172a, #020617);
  color: #fff;
  padding: 100px 0;
  position: relative;
  margin-top: -100px;
}

/* IMAGES */
.about-images {
  position: relative;
}

.img-main {
  width: 80%;
  border-radius: 10px;
  margin-top: -50px;
}

.img-overlay {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 60%;
  border-radius: 10px;
  border: 2px solid #0b0f1a;
}

/* CONTENT */
.about-subtitle {
  color: #c1bfbf;
  margin-bottom: 10px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.about-title span {
  color: #ff0000;
}

.about-text {
  margin: 20px 0;
  color: #aaa;
}

.about-btn {
  display: inline-block;
  background: #ff0000;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #ff0000;
}

/* ===== STATS ===== */
.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-box {
  flex: 1;
  min-width: 150px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 28px;
  color: #ff0000;
}

.stat-box p {
  color: #aaa;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .about-images {
    position: relative;
    margin-bottom: 120px; /* 👈 important spacing for overlap */
  }

  /* MAIN IMAGE */
  .img-main {
    width: 100%;
    border-radius: 14px;
    position: relative;
    z-index: 1;
  }

  /* OVERLAY IMAGE (PROPER STACK) */
  .img-overlay {
    position: absolute;
    bottom: -80px;   /* 👈 push below main image */
    right: 10px;
    width: 70%;
    border-radius: 14px;
    z-index: 2;
  }

  /* ADD SHADOW FOR DEPTH */
  .img-main {
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }

  .img-overlay {
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  }

  /* TEXT SPACING FIX */
  .about-content {
    margin-top: 40px;
  }

}
/* ===== IMAGE ANIMATION FIX ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-120px);
}

.reveal.active.reveal-left {
  transform: translateX(0);
}
/* ===== ABOUT SECTION FOR HOME PAGE END 1===== */
/* ===== features card SECTION start ===== */
/* ===== SECTION ===== */
.af-section {
  /* background: #0b0f1a; */
  /* background: #0f1218; */
  background: radial-gradient(circle at center, #0f172a, #020617);
  padding: 100px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-top: -100px;
}

.af-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.af-subtitle {
  color: #aaa;
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== SLIDER ROW ===== */
.af-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 20px;
}

/* ── Viewport: clips everything outside 3 cards ── */
.af-track-wrapper {
  width: 960px;       /* ~3 cards × 280px + 2 gaps × 24px + breathing room */
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}

/* ── Moving strip: JS sets transform ── */
.af-track {
  display: flex;
  align-items: center;
  gap: 24px;
  /* transition added by JS when animating, removed for instant jumps */
  will-change: transform;
  padding: 24px 0;
}

/* ===== ITEM ===== */
.af-item {
  flex: 0 0 280px;
  width: 280px;
  opacity: 0.5;
  transform: scale(0.88);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.5s ease;
  cursor: pointer;
}

.af-item.af-active {
  opacity: 1;
  transform: scale(1.07);
  z-index: 2;
}

/* ===== CARD ===== */
.af-card {
  background: #f0eeee;
  color: #000;
  border-radius: 10px;
  padding: 28px 20px 72px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 30px rgba(0,0,0,0.45);
  transition: box-shadow 0.4s ease;
}

/* diagonal red slash */
.af-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(140deg, transparent 38%, rgba(200,38,38,0.1) 38%);
  pointer-events: none;
}

.af-item.af-active .af-card {
  box-shadow: 0 20px 60px rgba(0,0,0,0.7),
              0 4px 20px rgba(220,38,38,0.2);
}

/* IMAGE */
.af-card img {
  width: 80%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

.af-item.af-active .af-card img {
  transform: scale(1.07) translateY(-4px);
}

/* TEXT */
.af-card h5 {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: #111;
}

.af-card p {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* ===== NAV ===== */
.af-nav {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 20px;
  transition: color 0.25s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 10;
  user-select: none;
}
.af-nav:hover { color: #fff; transform: scale(1.2); }

/* ===== DOTS ===== */
.af-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.af-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.af-dot.active {
  background: #dc2626;
  width: 22px;
  border-radius: 4px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .af-section { padding: 60px 0 80px; }

  .af-slider { padding: 16px 0 10px; position: relative; }

  .af-track-wrapper { width: 100vw; max-width: 100vw; }

  /* 68vw card — side cards peek ~12vw on each side */
  .af-item { flex: 0 0 68vw; width: 68vw; }

  .af-card { padding: 20px 16px 64px; min-height: 240px; }
  .af-card img { max-height: 120px; }

  /* Arrows float on sides */
  .af-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 20; padding: 0;
    font-size: 1.8rem; color: rgba(255,255,255,0.5);
    width: 36px;
  }
  .af-prev { left: 4px; }
  .af-next { right: 4px; }
}
/* ===== features card SECTION end ===== */
/* ===== Offer card SECTION Start ===== */
.tvs-offer {
  /* background: #0b0f1a; */
  /* background: #0f1218; */
  background: radial-gradient(circle at center, #0f172a, #020617);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  margin-top: -110px;
}
.tvs-label{
  color: #ff0000;
  font-size: 30px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* margin-bottom: 10px; */
}
.tvs-title {
  font-size: 38px;
  margin-bottom: 50px;
}

/* GRID */
.tvs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.tvs-card {
  background: #111827;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;

  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;

  opacity: 0;
  transform: translateY(60px);
}

/* SHOW ANIMATION */
.tvs-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE */
.tvs-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* CONTENT */
.tvs-content {
  padding: 20px;
}

.tvs-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  /* position: relative; */
}

.tvs-content p {
  color: #aaa;
}

/* HOVER */
.tvs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ACTIVE POP */
.tvs-card.active {
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 90%;
  max-width: 420px;
  z-index: 100;

  box-shadow:
    0 60px 120px rgba(0,0,0,0.9),
    0 0 40px rgba(220,38,38,0.3);
}

/* OVERLAY */
.tvs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 50;
}

.tvs-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tvs-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Offer card SECTION End ===== */
/* About section 2 for home page start */
/* SECTION */
.tvs-about-hero {
  /* background: #000; */
  background: radial-gradient(circle at center, #0f172a, #020617);
  color: #fff;
  padding: 120px 5%;
  overflow: hidden;
  margin-top: -200px;
}

/* WRAPPER */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-label {
  font-size: 15px;
  letter-spacing: 2px;
  color: #ff0000;
  margin-bottom: 10px;
}

/* BIG TEXT */
.about-big {
  font-size: 40px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -2px;
}

.about-big span {
  color: #ff0000;
  font-size: 40px;
}

/* DESC */
.about-desc {
  margin-top: 20px;
  max-width: 400px;
  color: #aaa;
  line-height: 1.6;
}

/* RIGHT */
.about-right {
  flex: 1.5;
  position: relative;
  display: flex;
  gap: 20px;
}

/* BOXES (like reference panels) */
.about-box {
  width: 150px;
  height: 700px;
  border-radius: 5px;
  transition: 0.5s;

  /* 🔥 IMAGE + DARK OVERLAY */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* overlay effect */
  position: relative;
  overflow: hidden;
}

/* DARK GRADIENT OVER IMAGE */
.about-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* DIFFERENT HEIGHTS */
.box1 { height: 250px; }
.box2 { height: 400px; }
.box3 { height: 350px; }

/* 🔥 ASSIGN IMAGES */
.box1 {
  background-image: url('../img/Apache_RTX_300.jpg');
}

.box2 {
  background-image: url('../img/tvsrr310.jpg');
}

.box3 {
  background-image: url('../img/download6.jpg');
}



/* OPTIONAL: subtle zoom on hover */
.about-box:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.1), #020617);
}


/* HOVER EFFECT */
.about-box:hover {
  transform: translateY(-20px) scale(1.05);
}

/* SMALL TEXT */
.about-small-text {
  position: absolute;
  bottom: -60px;
  right: 0;
  max-width: 260px;
  font-size: 15px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-big {
    font-size: 60px;
  }

  .about-right {
    justify-content: center;
    gap: 0.1px;
  }

  .about-small-text {
    position: static;
    margin-top: 20px;
    text-align: end;
  }
}

@media (max-width: 600px) {
  .about-big {
    font-size: 42px;
  }

  .about-box {
    width: 100px;
    height: 200px;
    margin-left: 20px;
  }
}

/* About section 2 for home page End */
/* GET IN TOUCH SECTION (HOME PAGE 2) START */
/* SECTION */
.tvs-contact {
  background: radial-gradient(circle at top, #0f172a, #020617);
  padding: 100px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* TEXT */
.contact-label {
  color: #ff0000;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-desc {
  color: #9ca3af;
  margin-bottom: 25px;
}

/* INFO */
.contact-info p {
  margin-bottom: 8px;
  color: #cbd5f5;
}

/* GLOW EFFECT */
.contact-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(220,38,38,0.3), transparent);
  filter: blur(80px);
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 0;
}

/* FORM CARD */
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* INPUT GROUP */
.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #9ca3af;
}

/* INPUT */
.input-group input,
.input-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
  border-color: #dc2626;
  box-shadow: 0 0 10px rgba(220,38,38,0.3);
}

/* BUTTON */
.contact-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff0000, #991b1b);
  border: none;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

/* HOVER */
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220,38,38,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-card {
    padding: 20px;
  }
}
/* GET IN TOUCH SECTION (HOME PAGE 2) END */
/* For Footer Section Start */
/* =========================
   FOOTER
========================= */
.tvs-footer {
  /* background: #f5f5f5; */
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #111;
  padding: 100px 20px 40px;
  overflow: hidden;
  margin-top: -80px;
}

/* =========================
   CTA BOX
========================= */
.footer-cta {
  background: rgba(167, 187, 227, 0.304);
  border-radius: 10px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

/* glow */
.footer-cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,0,0,0.12);
  filter: blur(100px);
  right: -100px;
  top: -100px;
}

/* TEXT */
.footer-cta-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.footer-cta-content h2 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-cta-content p {
  color: #bbb;
  max-width: 500px;
  line-height: 1.7;
}

/* BUTTONS */
.footer-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.footer-btn {
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.primary-btn {
  background: #ff0000;
  color: #fff;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.footer-btn:hover {
  transform: translateY(-3px);
}

/* IMAGE */
.footer-bike-img {
  flex: 1;
  text-align: right;
  position: relative;
  z-index: 2;

}

.footer-bike-img img {
  width: 50%;
  max-width: 210px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* =========================
   FOOTER GRID
========================= */
.footer-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #c1c0c0;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ff0000;
  transform: translateX(5px);
}

/* =========================
   SUBSCRIBE
========================= */
.subscribe-col p {
  color: #aaa;
}

.subscribe-form {
  display: flex;
  margin-top: 20px;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.subscribe-form input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  outline: none;
}

.subscribe-form button {
  border: none;
  background: #ff0000;
  color: #fff;
  padding: 0 22px;
  font-weight: 600;
}

/* =========================
   BOTTOM
========================= */
.footer-bottom {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid #ddd;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  img{
    width: 200px;
    /* margin-right: 500px; */
  }
}

.footer-logo span {
  color: #ff0000;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #ff0000;
  color: #fff;
  transform: translateY(-5px);
}

/* COPYRIGHT */
.footer-copy {
  margin-top: 20px;
  color: #aaa;
  font-size: 14px;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

  .footer-cta {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }

  .footer-bike-img {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {

  .footer-cta-content h2 {
    font-size: 34px;
  }

  .footer-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 20px;
  }

  .subscribe-form button {
    padding: 14px;
  }
}
/* For Footer Section End */

/* =========================================
   VEHICLE DETAILS START
========================================= */

.vehicle-details-section {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, #15253d 0%, transparent 35%),
    radial-gradient(circle at bottom right, #0d1525 0%, transparent 35%),
    linear-gradient(135deg, #060b14, #0b1220);
}

/* BACKGROUND TEXT */

.vehicle-bg-text {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 170px;
  font-weight: 800;
  letter-spacing: 10px;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* WRAPPER */

.vehicle-details-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  padding: 70px;
  border-radius: 35px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(15px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}

/* LEFT */

.vehicle-content {
  flex: 1;
  max-width: 420px;
}

.vehicle-tag {
  display: inline-block;
  color: #ff0000;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.vehicle-title {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.vehicle-description {
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 35px;
  font-size: 15px;
}

/* BUTTONS */

.vehicle-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.vehicle-btn {
  padding: 16px 34px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.4s ease;
  text-decoration: none;
}

.primary-btn {
  background: #ff0000;
  color: #fff;
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px #b70f0f;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #111;
}

/* IMAGE */

.vehicle-image-area {
  flex: 1;
  position: relative;
}

.vehicle-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #b70f0f, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(20px);
}

.vehicle-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;

  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));

  animation: bikeFloat 4s ease-in-out infinite;
}

/* SPECS */

.vehicle-specs {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.spec-card {
  padding: 28px 25px;
  border-radius: 12px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.4s ease;
}

.spec-card:hover {
  transform: translateY(-8px);
  border-color: #b70f0f;
}

.spec-label {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.spec-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

/* FLOAT ANIMATION */

@keyframes bikeFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .vehicle-specs {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 991px) {

  .vehicle-details-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }

  .vehicle-content {
    max-width: 100%;
  }

  .vehicle-buttons {
    justify-content: center;
  }

  .vehicle-title {
    font-size: 42px;
  }

  .vehicle-count {
    font-size: 70px;
  }

  .vehicle-bg-text {
    font-size: 90px;
  }

}

@media (max-width: 768px) {

  .vehicle-details-section {
    padding: 100px 0 60px;
  }

  .vehicle-specs {
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-title {
    font-size: 34px;
  }

  .vehicle-count {
    font-size: 58px;
  }

  .vehicle-bg-text {
    font-size: 60px;
  }

}

@media (max-width: 576px) {

  .vehicle-details-wrapper {
    padding: 40px 20px;
  }

  .vehicle-specs {
    grid-template-columns: 1fr;
  }

  .vehicle-title {
    font-size: 28px;
  }

  .vehicle-count {
    font-size: 50px;
  }

  .vehicle-description {
    font-size: 14px;
  }

  .vehicle-btn {
    width: 100%;
    text-align: center;
  }

  .vehicle-bg-text {
    display: none;
  }

}

/* =========================================
   BIKE FEATURE TABS
========================================= */

/* =========================================
   PREMIUM FEATURE TABS
========================================= */

.bike-feature-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at top left,
      rgba(15,40,90,0.35),
      transparent 30%),

    radial-gradient(circle at bottom right,
      rgba(255,0,0,0.08),
      transparent 25%),

    linear-gradient(135deg,
      #050816 0%,
      #091224 100%);
}

/* TOP GLOW */

.bike-feature-section::before {
  content: "";

  position: absolute;
  top: -200px;
  right: -100px;

  width: 500px;
  height: 500px;

  background: radial-gradient(circle,
    rgba(255,0,0,0.12),
    transparent 70%);

  filter: blur(20px);
}

/* WRAPPER */

.bike-feature-wrapper {
  position: relative;
  z-index: 2;

  border-radius: 28px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.08);

  background: rgba(255,255,255,0.03);

  backdrop-filter: blur(15px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.35);
}

/* =========================================
   TABS
========================================= */

.bike-feature-tabs {
  display: flex;
  flex-wrap: wrap;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bike-tab {
  position: relative;

  padding: 26px 34px;

  background: transparent;
  border: none;

  color: rgba(255,255,255,0.7);

  font-size: 15px;
  font-weight: 600;

  letter-spacing: 0.5px;

  cursor: pointer;

  transition: 0.35s ease;
}

/* HOVER */

.bike-tab:hover {
  color: #fff;
}

/* ACTIVE TAB */

.bike-tab.active {
  color: #fff;
  background: rgba(255,255,255,0.03);
}

/* ACTIVE LINE */

.bike-tab.active::before {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg,
    #ff0000,
    #ff4d4d);
}

/* =========================================
   CONTENT
========================================= */

.bike-feature-content {
  padding: 65px;
}

/* SMALL LABEL */

.feature-subtitle {
  display: inline-block;

  color: #ff2b2b;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 4px;
  text-transform: uppercase;

  margin-bottom: 22px;
}

/* TITLE */

.bike-feature-content h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;

  color: #fff;

  margin-bottom: 30px;
}

/* TEXT */

.bike-feature-content p {
  max-width: 950px;

  color: rgba(255,255,255,0.72);

  font-size: 18px;
  line-height: 2;
}

/* SMOOTH ANIMATION */

#bikeFeatureTitle,
#bikeFeatureText {
  transition: 0.3s ease;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

  .bike-feature-content {
    padding: 45px;
  }

  .bike-feature-content h2 {
    font-size: 42px;
  }

  .bike-tab {
    padding: 22px 24px;
    font-size: 14px;
  }

}

@media(max-width:768px){

  .bike-feature-section {
    padding: 70px 0;
  }

  .bike-feature-tabs {
    flex-direction: column;
  }

  .bike-tab {
    width: 100%;
    text-align: left;

    border-bottom:
      1px solid rgba(255,255,255,0.05);
  }

  .bike-feature-content {
    padding: 35px 25px;
  }

  .bike-feature-content h2 {
    font-size: 32px;
  }

  .bike-feature-content p {
    font-size: 15px;
    line-height: 1.9;
  }

}
/* =========================================
   VEHICLE DETAILS END
========================================= */  
/* =========================================
   ENQUIRY MODAL
========================================= */

.enquiry-modal {

  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 999999;

}

/* ACTIVE */

.enquiry-modal.active {

  opacity: 1;

  visibility: visible;

}

/* OVERLAY */

.enquiry-overlay {

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.75);

  backdrop-filter: blur(8px);

  z-index: 1;

}

/* CARD */

.enquiry-card {

  position: relative;

  width: 92%;

  max-width: 460px;

  background:
    linear-gradient(
      145deg,
      rgba(24,24,24,0.96),
      rgba(12,12,12,0.96)
    );

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 24px;

  padding: 32px;

  overflow: hidden;

    z-index: 999999;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45);

  transform: translateY(40px) scale(0.96);

  transition: 0.35s ease;

}

/* CARD ACTIVE */

.enquiry-modal.active .enquiry-card {

  transform: translateY(0) scale(1);

}

/* CLOSE BUTTON */

.enquiry-close {

  position: absolute;

  top: 18px;

  right: 18px;

  width: 44px;

  height: 44px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.06);

  color: #fff;

  font-size: 24px;

  cursor: pointer;

  transition: 0.3s ease;

  z-index: 3;

}

.enquiry-close:hover {

  background: rgba(255,0,0,0.18);

  transform: rotate(90deg);

}

/* HEADER */

.enquiry-header span {

  display: inline-block;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 2px;

  color: #ff0000;

  margin-bottom: 12px;

}

.enquiry-header h2 {

  font-size: 25px;

  font-weight: 700;

  color: #fff;

  line-height: 1.1;

  margin-bottom: 10px;

}

.enquiry-header p {

  color: rgba(255,255,255,0.68);

  line-height: 1.7;

  font-size: 15px;

}

/* =========================================
   ENQUIRY FORM
========================================= */

.enquiry-form {

  margin-top: 20px;

}

/* FORM GROUP */

.enquiry-form .form-group {

  margin-bottom: 9px;

}

/* INPUTS */

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {

  width: 100%;

  padding: 16px 18px;

  border-radius: 16px;

  border: 1px solid rgba(255,255,255,0.08);

  background: rgba(255,255,255,0.03);

  color: #fff;

  font-size: 15px;

  outline: none;

  transition: 0.3s ease;

  backdrop-filter: blur(8px);

}

/* TEXTAREA */

.enquiry-form textarea {

  min-height: 100px;

  resize: none;

}

/* PLACEHOLDER */

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {

  color: rgba(255,255,255,0.5);

}

/* FOCUS */

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {

  border-color: rgba(255,0,0,0.65);

  box-shadow:
    0 0 0 4px rgba(255,0,0,0.12);

}

/* SELECT OPTION */

.enquiry-form select option {

  color: #000;

}

/* BUTTON */

.enquiry-submit {

  width: 100%;

  border: none;

  padding: 16px;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #ff0000,
      #d00000
    );

  color: #fff;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;

  margin-top: 10px;

}

.enquiry-submit:hover {

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(255,0,0,0.28);

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

  .enquiry-card {

    padding: 30px 24px;

    border-radius: 24px;

  }

  .enquiry-header h2 {

    font-size: 34px;

  }

}
@media (max-width: 768px) {

  .enquiryModal,
  .openEnquiry {

    touch-action: manipulation;

  }

}



/* mouse animation start  */
#cursor-glow {
  position: fixed;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  pointer-events: none;

  z-index: 999999999;

  top: 0;
  left: 0;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      rgba(255, 0, 0, 0.22) 0%,
      rgba(255, 0, 0, 0.10) 25%,
      rgba(0, 119, 255, 0.08) 45%,
      rgba(0, 0, 0, 0) 75%
    );

  filter: blur(45px);

  mix-blend-mode: screen;

  opacity: 0.9;

  transition:
    transform 0.08s linear,
    width 0.3s ease,
    height 0.3s ease,
    opacity 0.3s ease;
}

/* Hover interactive boost */
a:hover ~ #cursor-glow,
button:hover ~ #cursor-glow {
  width: 240px;
  height: 240px;
  opacity: 1;
}

/* Mobile OFF */
@media (max-width: 768px) {
  #cursor-glow {
    display: none;
  }
}