:root {
  --primary-color: #CF1819;
}

.search-count-btn .count-label {
  letter-spacing: 0.6px;
}

.dark-mode .testimonial,
.dark-mode .process-step,
.dark-mode .brand-card,
.dark-mode .modal-content {
  background-color: #1e1e1e;
  color: #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.dark-mode .style-card:hover,
.dark-mode .service-card:hover,
.dark-mode .bike-card:hover,
.dark-mode .brand-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.dark-mode .nav-links a,
.dark-mode .mobile-menu .nav-links a {
  color: #e0e0e0;
}

.dark-mode .mobile-menu {
  background-color: #1e1e1e;
}

.dark-mode .footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.dark-mode .footer a {
  color: #bbbbbb;
}

.dark-mode .footer a:hover {
  color: #ffffff;
}

.dark-mode .floating-btn {
  background-color: #333;
  color: #e0e0e0;
}

.dark-mode .floating-btn:hover {
  background-color: #444;
}

.dark-mode .process-sections {
  background-color: #1e1e1e;
  max-width: 1400px;
  margin: 0 auto 80px;
  width: 100%;
}

.dark-mode .process-section h2 {
  color: white;
}

.dark-mode .process-section p {
  color: white;
}

.dark-mode .process-section h3 {
  color: white;
}

.gallery-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
  overflow: hidden;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.dark-mode .gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.dark-mode .gallery-section {
  padding: 60px 0;
  background-color: var(--secondary-color);
  text-align: center;
  overflow: hidden;
}

.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.gallery-track {
  display: flex;
  gap: 15px;
  animation: scroll 30s linear infinite;
  width: calc(250px * 12);
}

.gallery-track img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 6));

  }
}


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


@media (max-width: 768px) {
  .gallery-track {
    gap: 10px;
  }

  .gallery-track img {
    width: 200px;
    height: 140px;
  }

  @keyframes scroll {
    100% {
      transform: translateX(calc(-200px * 6));
    }
  }
}


@media (max-width: 768px) {
  .services-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 10px;
  }

  .services-container::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 90%;
    max-width: 90%;
    min-width: 260px;
    scroll-snap-align: start;
    margin: 0 auto;
    min-height: 320px;
  }


  .services-section h2 {
    font-size: 1.6rem;
  }


  .services-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    display: flex;
    gap: 8px;
    z-index: 5;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }

  .services-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.22s ease;
  }

  .services-dot.active {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(163, 41, 25, 0.08);
  }
}

@media (max-width: 480px) {
  .gallery-section h2 {
    font-size: 2rem;
  }

  .gallery-track img {
    width: 160px;
    height: 120px;
  }

  @keyframes scroll {
    100% {
      transform: translateX(calc(-160px * 6));
    }
  }
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 8% auto;
  padding: 20px 22px;
  border-radius: 12px;
  width: 90%;
  max-width: 520px;
  text-align: left;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform 240ms ease, opacity 240ms ease;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}


.modal {
  animation: modalFade 220ms ease forwards;
  backdrop-filter: blur(4px);
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  color: var(--primary-color, red);
  display: block;
  font-weight: 700;
}

.modal-content .close {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 22px;
  color: #666;
}

.modal-content form {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-content input[type="text"],
.modal-content textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  resize: vertical;
  background: #fff;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.modal-content input[type="text"]:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 0, 0.9);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.08);
}

.modal-content textarea {
  min-height: 110px;
}

.star-rating,
#starRating {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 4px 0 6px 0;
}

.star-rating .star,
#starRating .star {
  cursor: pointer;
  font-size: 1.35rem;
  color: #ddd;
  transition: transform 120ms ease, color 140ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.star-rating .star:hover,
#starRating .star:hover {
  transform: translateY(-3px);
  color: #ffca77;
}

.star-rating .star.selected i,
#starRating .star.selected i {
  color: #ffb400;
}

.star-rating .star i,
#starRating .star i {
  pointer-events: none;
}

.submit-btn {
  background: linear-gradient(90deg, var(--primary-color, red), #ff8a3a);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  align-self: flex-end;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.14);
}

.submit-btn:hover {
  transform: translateY(-2px);
}


@media (max-width: 520px) {
  .modal-content {
    margin: 6% 12px;
    padding: 16px;
  }

  .modal-content h3 {
    font-size: 1.05rem;
  }

  .star-rating {
    justify-content: center;
  }
}

.number-option {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.number-option:hover {
  background-color: #128c7e;
}

#callModal .number-option {
  background-color: #007bff;
}

#callModal .number-option:hover {
  background-color: #0056b3;
}

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  outline: none;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn i {
  font-size: 28px;
  color: white;
}

.whatsapp-btn {
  background-color: #25d366;
  text-decoration: none;
}

.call-btn {
  background-color: var(--primary-color);
  text-decoration: none;
}

.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-btn:hover::after {
  opacity: 1;
  right: 75px;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn i {
    font-size: 24px;
  }
}

.bike-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .bike-slider-container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .bike-slider-container {
    padding: 0 10px;
  }
}

.bike-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.bike-slider::-webkit-scrollbar {
  display: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #333;
}

.slider-nav:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.slider-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.bike-slider .bike-card {
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 280px;

  background: transparent;
  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark-mode .bike-slider .bike-card {
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 280px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid black;
}

.bike-slider .bike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.bike-slider .bike-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bike-slider .bike-card:hover img {
  transform: scale(1.05);
}

.bike-slider .card-content {
  padding: 20px;
}

.bike-slider .bike-card h3 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: #333;
}

body.dark-mode .bike-slider .bike-card h3 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: white;
}

.bike-slider .bike-card .model {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.bike-slider .bike-card .details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.bike-slider .bike-card .detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
}

.bike-slider .bike-card .detail-item i {
  color: var(--primary-color);
  font-size: 14px;
}

.bike-slider .bike-card .price-container {
  margin-top: 15px;
}

.bike-slider .bike-card .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.bike-slider .bike-card .emi {
  font-size: 0.8rem;
  color: #666;
  margin: 5px 0;
}

.bike-slider .bike-card .view-details-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.bike-slider .bike-card .view-details-btn:hover {
  background: #e05d00;
}

.bike-slider .bike-card .status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  z-index: 2;
}

.status-available {
  background-color: #28a745;
}

.status-sold {
  background-color: #dc3545;
}

.status-coming-soon {
  background-color: #ffc107;
  color: #000;
}


.category-filter-section {
  max-width: 1180px;
  margin: 28px auto;
  padding: 0 18px;
  position: relative;
  margin-top: -90px;
  max-height: none;
}

.category-tabs {
  position: absolute;
  top: -36px;
  left: 26px;
  display: flex;
  gap: 8px;
  z-index: -10;
}

.category-tabs .tab-btn {
  background: #fff;
  border: none;
  padding: 14px 44px;
  font-weight: 800;
  color: #222;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  position: relative;
}

.category-tabs .tab-btn.active {
  background: #072022;

  color: #fff;
}

.category-tabs .tab-btn.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid #ffffff;

  z-index: 7;
}

.filter-panel {
  background: #ffffff;
  border-radius: 14px;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 24px 48px rgba(22, 28, 36, 0.08);
  display: flex;
  align-items: center;
  gap: 18px;
}

.filter-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex: 1 1 auto;
  flex-wrap: nowrap;
}

.filter-card {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  flex: 0 0 220px;
}


.filter-row .filter-card:nth-child(1),
.filter-row .filter-card:nth-child(2),
.filter-row .filter-card:nth-child(3) {
  flex: 0 0 160px;
  min-width: 140px;
}

.filter-card label {
  font-size: 0.95rem;
  color: #333;
  font-weight: 700;
}

.filter-select,
.filter-input {
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  padding: 12px 14px;
  border: 2px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: all 0.18s ease;
  background: #fff;
  color: #333;
  cursor: pointer;
  border-radius: 2px;
}

.filter-select {
  appearance: none;
}

.filter-input::placeholder {
  color: #bdbdbd;
}

.filter-actions {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-left: 12px;
}

.filter-toggle-btn {
  width: 56px;
  height: 56px;
  background: #072022;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 30, 34, 0.12);
}

.search-count-btn {
  background: #d92b2b;
  color: #fff;
  padding: 14px 22px;
  border: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(217, 43, 43, 0.12);
}

.search-count-btn .count-label {
  letter-spacing: 0.6px;
}


@media (max-width: 980px) {
  .filter-card {
    flex: 0 0 45%;
  }

  .category-tabs {
    left: 12px;
    top: -36px;
  }
}



.bike-slider .bike-card .image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

@media (max-width: 1024px) {
  .bike-slider .bike-card {
    flex: 1 1 280px;
    max-width: 350px;
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .bike-slider .bike-card {
    flex: 1 1 260px;
    max-width: 320px;
    min-width: 240px;
  }

  .bike-slider .bike-card .image-container {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .bike-slider .bike-card {
    flex: 1 1 280px;
    max-width: 85%;
    min-width: 260px;
  }

  .section-header {
    flex-direction: column;
    align-items: center !important;
    gap: 10px;
  }

  .bike-slider .bike-card .image-container {
    height: 160px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Helvetica, sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  z-index: 1000;

  transition: box-shadow 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
  will-change: box-shadow, transform, background-color;
}


.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #d92b2b;
  color: #fff;
  z-index: 1100;
  height: 40px;
  display: flex;
  align-items: center;
}

.top-banner-container {
  width: 1180px;
  max-width: calc(100% - 36px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 14px;
}

.top-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-banner-right .social {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}

.top-banner .social i {
  font-size: 14px;
}


.top-banner+.site-header,
.top-banner~.site-header {
  top: 40px;
}

@media (max-width: 680px) {
  .top-banner-container {
    padding: 0 12px;
    font-size: 13px;
  }

  .top-banner {
    height: 36px;
  }

  .top-banner+.site-header,
  .top-banner~.site-header {
    top: 36px;
  }
}


.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto;
  padding: 2px 20px;
  border-radius: 10px;
  transform: translateY(-10px);
  background-color: #fff;
  transition: width 0.35s ease, padding 0.35s ease, border-radius 0.35s ease;
  will-change: width, padding;
}



.header-logo img {
  height: 75px;
  width: 180px;
}

@media (max-width: 480px) {
  .header-logo img {
    height: 50px;
    width: auto;
  }
}

.header-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-item {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--primary-color);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}


.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
}

.nav-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 9999;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #222;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--primary-color);
}


.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}


@media (max-width: 1024px) {
  .nav-dropdown {
    width: 100%;
  }

  /* animated mobile dropdown: keep block-level but collapse with max-height */
  .header-nav .nav-dropdown .dropdown-menu {
    position: static !important;
    transform: translateY(-6px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    padding-left: 0px !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 320ms cubic-bezier(.2, .9, .2, 1), opacity 220ms ease, transform 240ms ease;
  }

  .header-nav .nav-dropdown.open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: calc(100vh - 220px) !important;
    overflow: auto !important;
  }

  .nav-dropdown .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .dropdown-item {
    padding: 12px 32px;
    font-weight: 600;
    color: #fff;
  }
}

/* Mobile: make dropdown columns stack and items full-width */
@media (max-width: 1024px) {

  .dropdown-menu .dropdown-item {
    display: block;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
    box-sizing: border-box;
  }

  /* ensure the submenu appears under the toggle and doesn't float */
  .nav-dropdown .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  /* make nav links fill full width and look consistent on mobile */
  .header-nav a,
  .header-nav .nav-link {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    box-sizing: border-box;
  }

  /* nav-item wrapper (used for dropdown containers) should not add extra padding */
  .header-nav .nav-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* align caret to the far right inside the nav-link */
  .nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-dropdown .nav-link i {
    margin-left: 12px;
    opacity: 0.95;
    font-size: 14px;
  }

  /* dropdown items inside mobile nav should stack and scroll if needed */
  .nav-dropdown .dropdown-menu {
    display: none;
    padding-left: 12px;
    max-height: calc(100vh - 220px);
    overflow: auto;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  /* When mobile menu is opened */
  .header-nav.open {
    left: 0;
  }

  .header-nav.open .nav-item {
    color: #fff;
  }

  .header-nav .nav-item {
    padding: 16px 32px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-btn {
    display: block;
    background-color: transparent;
    border: transparent;
    font-size: 20px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 10px 20px;
  }

  .header-logo img {
    height: 38px;
  }

  .header-actions {
    gap: 12px;
  }
}


.hero-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-image: url('./assets/mail.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #000;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.hero-content {
  max-width: 650px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero-content h1 {
  margin: 0;
  line-height: 1.1;
}

.hero-title-line1 {
  display: block;
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero-title-line2 {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin: 0 0 32px 0;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    min-height: 450px;
  }

  .hero-container {
    padding: 0 24px;
  }

  .hero-title-line1 {
    font-size: 1.8rem;
  }

  .hero-title-line2 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-title-line1 {
    font-size: 1.4rem;
  }

  .hero-title-line2 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-label {
    font-size: 12px;
  }
}


.category-filter-section {
  background: transparent;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 1180px;
  position: relative;
  margin-top: -150px;
  max-height: none;
}

.dark-mode .category-filter-section {
  background: #1a1a1a;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.category-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.tab-btn {
  background: transparent;
  border: 2px solid #ddd;
  padding: 6px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
}

.dark-mode .tab-btn {
  color: #fff;
  border-color: #444;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}

.filter-card {
  display: flex;
  flex-direction: column;
}

.filter-card label {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.dark-mode .filter-card label {
  color: #fff;
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  background: #fff;
  color: #333;
  cursor: pointer;
}

.dark-mode .filter-select {
  background: #2a2a2a;
  color: #fff;
  border-color: #444;
}

.filter-select:focus {
  border-color: var(--primary-color);
}

@media (max-width: 1024px) {

  .filter-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {


  .category-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* mobile: make filter panel a vertical stack and let .filter-row create 2 columns */
  .filter-panel {
    display: block;
    padding: 18px;
    box-sizing: border-box;
  }

  .filter-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: start;
  }

  .filter-card {
    min-width: 0;
    width: 100%;
  }

  .filter-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 12px;
  }

  .filter-actions .search-count-btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .filter-actions .filter-toggle-btn {
    flex: 0 0 56px;
  }

}

@media (max-width: 480px) {
  .category-filter-section {
    padding: 0px 16px 28px;
    transform: none;
    background: transparent;
    margin: auto;
    position: relative;
    z-index: 10;
    max-width: 1180px;
    position: relative;
    margin-top: -70px;
    max-height: none;
  }

  .category-tabs .tab-btn {
    padding: 10px 25px;
    font-size: 11px;
  }

  /* tighten filter panel on smallest screens */
  .filter-panel {
    padding: 16px;
    box-shadow: 0 12px 28px rgba(22, 28, 36, 0.06);
    border-radius: 12px;
    transform: translateY(-5px);

  }

  .filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .filter-card {
    min-width: 10px !important;
    padding: 6px 4px;
    gap: 6px;
  }

  .filter-actions {
    margin-top: 12px;
    gap: 10px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .filter-input {
    width: 100%;

    box-sizing: border-box;
    height: 42px;
    padding: 12px 14px;
    border: 2px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: all 0.18s ease;
    background: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 2px;
  }

  .filter-actions .filter-toggle-btn {
    width: 40px !important;
    height: 48px !important;
    padding: 0;
    border-radius: 2px;
  }
}

@media (max-width: 360px) {
  .filter-row {
    grid-template-columns: 1fr;
  }
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 28px;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #c23320;
}

@media (max-width: 768px) {
  .cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: 10px 24px;
    font-size: 16px;
  }
}

@keyframes slideBikes {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

section {
  padding: 80px 5%;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color);
}

@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 5%;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}


.brands-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffaa17 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

body.dark-mode .brands-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(163, 41, 25, 0.1) 0%,
      transparent 70%);
  z-index: 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.brand-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1) invert(0);
  transition: all 0.3s ease;
}

.brand-card h3 {
  font-size: 1.1rem;
  margin: 0;
  color: rgb(0, 0, 0);
  font-weight: 500;
}

body.dark-mode .brand-card h3 {
  font-size: 1.1rem;
  margin: 0;
  color: white;
  font-weight: 500;
}


@media (max-width: 768px) {
  .brands-section {
    padding: 60px 5%;
  }

  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-card {
    padding: 15px;
  }

  .brand-card h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .brands-section {
    padding: 40px 5%;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-card {
    padding: 12px;
  }

  .brand-card h3 {
    font-size: 0.8rem;
  }
}

.process-steps {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.process-sections {
  background-color: white;
  padding: 80px 5%;
}

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

.process-section:last-child {
  margin-bottom: 0;
}

.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-header h2 {
  font-size: 2rem;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto;
}

.process-content {
  width: 100%;
}

.process-content p {
  color: rgba(5, 5, 5, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-step {
  flex: 1;
  width: 280px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.step-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.step-image-2 {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.step-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.process-step h3 {
  color: rgb(0, 0, 0);
  font-size: 1.3rem;
  margin: auto;
  margin-top: 20px;
  letter-spacing: 1px;
  text-align: center;
}

.process-step p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .process-sections {
    padding: 60px 5%;
  }

  .process-section {
    margin-bottom: 60px;
  }

  .process-header h2 {
    font-size: 1.6rem;
  }

  .process-content p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .process-step {
    min-width: 80%;
    padding: 25px;
  }
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.process-steps {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffaa17 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.dark-mode .stats-section {
  background: #1a1a1a;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 5%;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 5%;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-card {
    min-width: 130px;
    padding: 20px 10px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-image img {
    width: 70px;
    height: 70px;
  }
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(163, 41, 25, 0.1) 0%,
      transparent 70%);
  z-index: 0;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  flex: 1;
  min-width: 200px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: black;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  color: black;
  font-size: 1.1rem;
}

.stat-image {
  width: 100%;
  align-items: center;
}

.stat-image img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}


.hindi-font {
  font-family: "Noto Sans Devanagari", "Segoe UI", sans-serif;
}


.services-section {
  background-color: white;
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

body.dark-mode .services-section {
  background-color: #100f0f;
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.services-section h2 {
  color: var(--primary-color);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.services-container {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;

  margin: 0 auto;
  overflow: visible;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  flex: 0 0 260px;

  min-width: 220px;
  padding: 28px 20px;

  background: transparent;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 15px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  min-height: 260px;

  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), #CF1819);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  transition: transform 0.4s;
}

.service-card:hover i {
  transform: rotate(15deg) scale(1.2);
}

.service-card h3 {
  font-size: 1.4rem;
  margin: 20px 0 15px;
  color: rgb(0, 0, 0);
}

body.dark-mode .service-card h3 {
  font-size: 1.4rem;
  margin: 20px 0 15px;
  color: white;
}

.service-card p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 12px;
  text-align: justify;
  flex: 1 1 auto;

}

body.dark-mode .service-card p {
  color: white;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-align: justify;
}

.service-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s;
  margin-top: 12px;
}

.service-card a:hover {
  color: #CF1819;
}

.styles-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffaa17 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.styles-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(163, 41, 25, 0.1) 0%,
      transparent 70%);
  z-index: 0;
}

.styles-section h2 {
  text-align: center;
  padding: 60px 20px 40px;
  font-size: 2.5rem;
  color: white;
  margin: 0;
  position: relative;
  z-index: 1;
}

.styles-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
}

.style-card-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.style-card {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: none;
  border-radius: 0;
}

.style-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8);
}

.style-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.style-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: white;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.style-card:hover .style-content {
  padding-bottom: 50px;
}

.style-content h3 {
  font-size: 2.5rem;
  margin: 0 0 15px;
  color: white;
  font-weight: 700;
}

.style-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.style-content span {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  transition: all 0.3s;
}

.style-content i {
  transition: transform 0.3s ease;
}

.style-card:hover .style-content span {
  gap: 12px;
}

.style-card:hover .style-content i {
  transform: translateX(5px);
}


@media (max-width: 768px) {
  .styles-section h2 {
    font-size: 2rem;
    padding: 40px 20px 30px;
  }

  .styles-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .style-card {
    height: 400px;
  }

  .style-content {
    padding: 30px 20px;
  }

  .style-content h3 {
    font-size: 1.8rem;
  }

  .style-content p {
    font-size: 0.95rem;

  }

  .style-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .style-content span {
    margin-top: auto;
  }
}


@media (max-width: 768px) {
  .services-section {
    padding: 40px 5%;
  }

  .services-section h2 {
    font-size: 2rem;
  }

  .stat-card {
    min-width: 150px;
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .service-card,
  .style-card {
    min-width: 80%;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 30px 5%;
  }

  .services-section h2 {
    font-size: 1.6rem;
  }

  .service-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 24px 16px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 1rem;
  color: black;
  margin-top: 10px;
}

.dark-mode .section-subtitle {
  font-size: 1rem;
  color: white;
  margin-top: -40px;
}

.testimonials-section {
  background-color: white;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.dark-mode .testimonials-section {
  background-color: var(--secondary-color);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
  color: black;
}

.dark-mode .testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
  color: white;
}

.testimonials-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #CF1819);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 90%;
  height: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0) 50%);
  z-index: -1;
}

.testimonial:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.user-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
  margin-right: 20px;
  transition: all 0.3s ease;
}

.testimonial:hover .user-avatar {
  transform: scale(1.1);
  border-color: rgba(163, 41, 25, 0.5);
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  margin: 0 0 5px 0;
}

.dark-mode .user-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0 0 5px 0;
}

.rating {
  display: flex;
  margin: 5px 0 0 0;
}

.rating i {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-right: 3px;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

.quote {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  color: black;
  position: relative;
  padding-left: 20px;
}

.dark-mode .quote {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 20px;
}

.quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), #CF1819);
}

.filters-container {
  position: relative;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 12px;
  font-size: 0.85rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.filter-btn.active i {
  transform: rotate(180deg);
}

.filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  display: none;
}

.filter-dropdown.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

input[type="range"] {
  width: 50%;
  margin: 10px 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.section-header {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.section-header h2 {
  flex-direction: column;
  align-items: center;
  color: black;
  gap: 15px;
}

body.dark-mode .section-header h2 {
  flex-direction: column;
  align-items: center;
  color: white;
  gap: 15px;
}


@media (max-width: 768px) {
  .filters-container {
    position: relative;
    margin-bottom: 20px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .filter-dropdown {
    padding: 12px;
  }

  input[type="range"] {
    width: 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .section-subtitle {
    text-align: center;
    margin-top: -30px;
  }

  .dark-mode .section-subtitle {
    color: white;
  }
}



.filter-actions .filter-toggle-btn {
  width: 52px;
  padding: 0;
  border-radius: 2px;
}

.filter-actions .search-count-btn {
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 2px;
}


.filter-actions .search-count-btn {
  min-width: 210px;
  padding-left: 22px;
  padding-right: 22px;
}

@media (max-width: 680px) {

  .filter-actions .search-count-btn {
    height: 48px;
    min-height: 48px;
  }
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.testimonial-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}


.testimonial-slider {
  display: block;
  width: 100%;
}

.testimonial-slide {
  display: none;

  gap: 24px;
  justify-content: center;
  align-items: stretch;
  padding: 10px 0 30px;
}

.testimonial-slide .testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-controls button {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

.testimonial-controls button:hover {
  background: rgba(0, 0, 0, 0.02);
}


@media (max-width: 899px) {
  .testimonials-section {
    padding: 60px 5%;
  }

  .testimonial-slide {
    padding: 0 8px 20px;
  }

  .testimonial-slide .testimonial {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 5%;
  }

  .testimonials-section h2 {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }

  .testimonial {
    padding: 30px 20px;
    min-width: 100%;
  }

  .user-avatar {
    width: 50px;
    height: 50px;
  }

  .user-name {
    font-size: 1rem;
  }

  .quote {
    font-size: 0.9rem;
  }
}


.star.selected i,
.star-rating .star.selected i {
  color: #ffb400;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial {
  animation: fadeIn 0.6s ease forwards;
}

.testimonial:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial:nth-child(2) {
  animation-delay: 0.3s;
}

.testimonial:nth-child(3) {
  animation-delay: 0.5s;
}

.style-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.style-card {
  cursor: pointer;
}

.footer {
  background-color: black;
  color: white;
  padding: 60px 5% 20px;
}

.dark-mode .footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 5% 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: red;
}

.dark-mode .footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
}

.footer-section p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.dark-mode .footer-section p {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.dark-mode .footer-section ul li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--light-gray);
}

.dark-mode .footer-section ul li a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 5% 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-section {
    min-width: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 5% 15px;
  }

  .footer-section {
    min-width: 100%;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .social-icons {
    justify-content: center;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #b94918;

  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 5%;
  top: 25px;
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background-color: #fff;

  color: #000;
  z-index: 10000;
  transition: right 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  padding: 22px 18px 120px 18px;

  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.mobile-menu.active {
  right: 0;
}


.mobile-menu .close-btn {
  position: absolute;
  left: 18px;
  top: 18px;
  background: none;
  border: none;
  color: #ffb000;

  font-size: 1.9rem;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu .nav-links li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu .nav-links a {
  display: block;
  padding: 20px 10px;
  color: #000;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.mobile-menu .nav-links a .fa,
.mobile-menu .nav-links a i {
  color: #ffb000;
  margin-right: 12px;
  width: 22px;
}

.mobile-menu .login-btn {
  margin-top: 18px;
  width: 100%;
}


.mobile-menu .contact-bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 260px;
  text-align: right;
  color: #000;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.mobile-menu .contact-bottom .phone {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #000;
}

.mobile-menu .contact-bottom .phone i {
  color: #ffb000;
  font-size: 1.1rem;
}

.mobile-menu .contact-bottom .email i {
  color: #ffb000;
  font-size: 1.05rem;
}

.dropdown-column-title {
  font-weight: 800;
  margin: 0 0 8px 0;
  font-size: 13px;
  color: gray;
  margin-top: 20px;
}

/* ===== Prevent horizontal overflow and enforce responsive containers ===== */

/* ensure consistent box-sizing to avoid accidental overflow */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Make large fixed-width containers responsive and avoid forcing viewport width */
.top-banner-container,
.hero-container,
.bike-slider-container,
.brands-grid,
.footer-content {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.top-banner-container {
  /* override any hard-coded fixed width to prevent overflow on small screens */
  width: 100%;
}

/* Make media/content elements scale down rather than overflowing */
img {
  max-width: 100%;
  height: auto;
}

/* Reduce padding on narrow screens and ensure header stays within viewport */
@media (max-width: 768px) {

  .header-container,
  .top-banner-container,
  .hero-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* keep fixed site header from creating horizontal scroll */
  .site-header {
    left: 0;
    right: 0;
  }

  /* avoid unexpectedly wide elements inside sliders */
  .gallery-track,
  .bike-slider {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .top-banner-container,
  .hero-container {

    padding-left: 10px;
    padding-right: 10px;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    transform: translateY(-10px);
    background-color: #fff;
    border-radius: 0%;
  }

  .header-logo {
    width: 140px;
    margin-top: 10px;
    object-fit: cover;
  }

  .header-logo img {
    width: 100%;
    height: auto;
  }

  .filter-select {
    width: 80%;
    height: auto;
    padding: 10px 10px;
    border: 2px solid #ddd;
    font-size: 12px;
    outline: none;
    transition: all 0.3s;
    background: #fff;
    color: #333;
    cursor: pointer;
  }
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 10px;
  text-align: center;
}

.section-header p {
  font-size: 1.1rem;
  color: black;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-row {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #d92b2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.service-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background: #D92B2B;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px black;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .service-row {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}