:root {
  --main-color1: #f11010;
  --main-color2: #0c0c0c;
  --font-color: white;
}

.body-bg {
  background-color: var(--main-color2) !important;
}

.main-font-color {
  color: var(--font-color) !important;
}

.sub-font-color {
  color: var(--main-color1) !important;
}

/* main nav */
.site-title-wrapper {
  display: inline-block;
  text-align: left;
}

.nav-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-title {
  display: inline-flex;
  font-family: 'Fredoka', 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.text-shadow-white {
  text-shadow: 2px 2px 0 #FFFFFF,
    -2px -2px 0 #FFFFFF,
    -2px 2px 0 #FFFFFF,
    2px -2px 0 #FFFFFF;
}

.text-border-white {
  -webkit-text-stroke: 1px white;
}

.site-title span {
  display: inline-block;
  line-height: 1;
  padding: 0 2px;
  /* text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF; White Border Effect */
}

.site-sub-title {
  font-family: 'Fredoka', 'Poppins', sans-serif;
  font-size: 35px;
  font-weight: 900;
  color: #243D8F;
  text-align: left;
}

.dropdown-item {
  background-color: var(--main-color1) !important;
}

.dropdown-item:hover {
  background-color: var(--main-color2) !important;
}

.navbar-nav .nav-link:hover,
.dropdown-item:hover {
  color: var(--main-color1) !important;
}


/* mobile nav css start*/
.mobile-nav {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1050;
}

.mobile-nav.active {
  transform: translateX(0);
  display: block;

}

.social-icons a {
  color: var(--main-color1);
  margin-right: 15px;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 8px;
}

.social-icons a:hover {
  color: var(--main-color2);
  transform: scale(1.2);
}

/* Menu Items Styling */
.mobile-nav a {
  padding: 15px 10px;
  color: var(--font-color);
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--main-color1);
  border-radius: 5px;
}

#overlay {
  display: none;
  z-index: 1040;
}

#overlay.active {
  display: block;
  opacity: 50%;
}

#menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}


#menu:target {
  transform: translateX(0);
}

#menu:target~#overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .site-title-wrapper {
    justify-content: flex-start;
  }

  .site-title {
    font-size: 20px !important;
  }

  .navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .col-md-2 {
    flex: 1 1 48%;
    /* For smaller screens, cards will take up 48% of the width */
  }
}
@media (max-width: 480px) {
  .col-md-2 {
    flex: 1 1 100%;
    /* For mobile screens, each card will take up the full width */
  }
  .site-title {
      display: block;
      white-space: normal;
      max-width: 200px; /* Adjust width to force a line break */
      text-align: center;
  }
}

/* mobile nav css end*/
.btn-outline-primary {
  color: var(--main-color1);
  border-color: var(--main-color1);
}

.image-overlay {
  width: 150px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(53%) sepia(69%) saturate(543%) hue-rotate(89deg) brightness(92%) contrast(97%);
}

.navbar-brand-img {
  width: 80px;
  height: auto;
  padding-right: 10px;
}

.font-color-change:hover {
  color: var(--main-color2) !important;
}

.site-main-name-font {
  color: var(--main-color1);
}

.site-sub-name-color {
  color: var(--main-color2);
}

.sub-menu {
  background-color: #efcaf7;
}

.main-bg {
  background-color: var(--main-color1);
}

.desktop-nav .nav-link {
  font-weight: 500;
}

.custom-font {
  font-family: "Roboto", sans-serif;
}

.main-bg-color {
  background-color: var(--main-color1);
}

.sub-bg-color {
  background-color: var(--main-color2);
}

.text-shadow {
  text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.8);
}

.fade-in-text span {
  opacity: 0;
  display: inline-block;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Welcome section */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.8;
}

.welcome-section {
  background-size: cover;
  background-position: center;
  /* padding: 10px 50px; */
  position: relative;
}

.welcome-content {
  max-width: 300px;
}

.welcome-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--main-color1);
  margin-bottom: 15px;
}

.custom-title {
  font-size: 3rem;
  font-weight: bold;
}

.custom-highlight {
  color: var(--main-color1);
}

.custom-btn {
  background-color: var(--main-color1) !important;
  border: none !important;
  color: white !important;
  border-radius: 5px;
  /* Rounded edges */
  padding: 10px 20px;
}

.custom-btn:hover {
  background-color: var(--main-color1);
}

/* brand cards*/
.custom-heading {
  font-size: 2.5rem;
  font-weight: bold;
}

/* infor-cards */
.feature-card {
  background-color: white;
  color: var(--main-color2);
  border: 2px solid var(--main-color2);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  justify-content: space-between;
  flex-direction: column;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  object-fit: cover;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(245, 177, 177, 0.2);
  background-color: rgb(243, 124, 124) !important;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-box {
  background-color: white;
  color:var(--main-color2);
  padding: 30px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  color: gray;
  margin-bottom: 10px;
}

.divider {
  height: 60px;
  width: 1px;
  background-color: lightgray;
}

/* news cards */
.card-img-top {
  width: 100%;
  /* Ensures the image stretches to fit the card width */
  height: 200px;
  /* Set a fixed height */
  object-fit: cover;
  /* Ensures the image fills the area without distortion */
  border-radius: 8px;
  /* Optional: adds rounded corners */
}

.card-img-container {
  position: relative;
  width: 100%;
  height: 250px;
  /* Adjust height as needed */
  overflow: hidden;
  padding-top: 20px;
  /* Add padding to the top */
}

.card-img-top,
.hover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  padding-top: 20px;
  /* Add padding to both images */
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.card:hover .card-img-top {
  opacity: 0;
}

.card:hover .hover-img {
  opacity: 1;
}

.card-body {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  text-align: center;
}

.btn-danger {
  width: 100%;
}

/* Custom styles for the row to accommodate 5 cards */
.card-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Adjust card width */
.col-md-2 {
  flex: 1 1 18%;
  /* This will give each card a more controlled width */
  margin: 10px;
  /* Add space between cards */
}

/* Custom Heading Styles */
.custom-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

/* home-intro */
/* FIRST SECTION - WITH "INTERIOR" BACKGROUND TEXT */
.hero-section {
  background-color: var(--main-color2);
  color: white;
  /* padding: 100px 0; */
  position: relative;
  overflow: hidden;
}

.background-text {
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  top: 5%;
  left: 10%;
  /* Aligns it to the left */
  white-space: nowrap;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
}

/* ALIGNING TEXT WITH "INTERIOR" */
.new-design {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  top: 15%;
  /* Moves it slightly down */
  left: 8.5%;
  z-index: 2;
}

.main-title {
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: 23%;
  left: 8.5%;
  z-index: 2;
}

.btn-custom {
  background-color: var(--main-color1);
  color: white;
  border-radius: 5px;
  padding: 12px 24px;
  border: none;
  font-weight: bold;
}

.btn-custom:hover {
  background-color: #555;
}

.icon-circle {
  font-size: 30px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 10px;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-image img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* SECOND SECTION - NO "INTERIOR" BACKGROUND */
.section-dark {
  background-color: var(--main-color2);
  color: white;
  /* padding: 100px 0; */
}

/* best selling section */
/* /* Best-selling section background and clip-path */
.best-selling-section {
  background: url('assets/images/your-background-image.jpg') center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
  position: relative;
  color: var(--main-color2); /* Ensure text stands out against background */
}

/* Apply clip-path to give a creative edge */
.best-selling-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /* Adjust height as needed */
  background: white;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: -1; /* Place it behind the content */
}

/* Adjusting the logo and text to make sure they work well on top of the background */
.best-selling-section .logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.best-selling-section .tagline {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  color:var(--main-color1);
  margin-bottom: 10px;
}

.best-selling-section .title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color:var(--main-color2);
  margin-bottom: 15px;
}

.best-selling-section .description {
  font-family: 'Arial', sans-serif;
  font-weight: 300;
  color:var(--main-color2);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  /* Ensures all images fit the container */
  height: 200px;
  /* Set a fixed height */
  object-fit: cover;
  /* Ensures the image fills the area without distortion */
  border-radius: 10px;
  /* Optional: Adds rounded corners */
}

.price {
  color: var(--main-color1);
  font-weight: bold;
  font-size: 1.5rem;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--font-color);
  font-weight: bold;
  background-color: #7a7979;
}

.download-link i {
  margin-right: 5px;
}

.feature-list {
  text-align: left;
  margin-top: 10px;
}

.feature-list li {
  list-style: none;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.feature-list li i {
  margin-right: 8px;
  color: var(--main-color2);
}

/* stats section */
.stats-section {
  background: url('assets/images/bg-image.png') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
}

.stats-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.stats-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border: 2px solid  var(--main-color1);
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.stats-box i {
  font-size: 40px;
  color: var(--main-color1);
  margin-bottom: 10px;
}

.stats-box h2 {
  font-size: 28px;
  font-weight: bold;
}

.stats-box p {
  font-size: 16px;
  color: #ddd;
}
/* product page */
/* Video Section */
.video-section {
  position: relative;
  max-width: 100%;
  text-align: center;
}

.video-section img {
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 15px 20px;
  color:var(--main-color1);
  font-size: 30px;
}

.play-button:hover {
  color: #fff;
}

/* Technical Specifications */
.specs-section {
  margin-top: 50px;
}

.specs-box {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.specs-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.specs-item i {
  color:var(--main-color1);
}

/* Color Options */
.color-options {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.color-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #ccc;
}

.color-gray {
  background: gray;
}

.color-white {
  background: white;
  border: 1px solidvar(--main-color2);
}

.color-blue {
  background: blue;
}

.color-red {
  background: red;
}

.special-features {
  margin: 50px auto;
  max-width: 800px;
}

.product-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-list {
  list-style-type: none;
  padding: 0;
}

.product-item {
  margin-bottom: 10px;
}

.product-icon {
  color: var(--main-color1);
  margin-right: 8px;
}

/* product cards effects and plus button */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: inline-block;
}

.bike-image {
  width: 100%;
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
}

.image-container:hover .bike-image {
  transform: scale(1.1);
}

.plus-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  color: #000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-container:hover .plus-button {
  opacity: 1;
}

/* Feature list with vertical aligned colons */
.feature-list {
  list-style-type: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px; /* Add spacing */
}

.feature-list li i {
  color: var(--main-color1);
  margin-right: 8px;
}

.feature-list strong {
  flex: 1; /* Ensures text aligns properly */
  text-align: left;
}

.colon {
  flex: 0; /* Keeps colons in place */
  width: 10px; /* Adjust for perfect alignment */
  text-align: center;
}

.feature-list .value {
  flex: 2; /* Ensures left alignment */
  text-align: left;
}
/* footer */
.footer {
  background-color: #ffffff;
  padding: 60px 0;
  color: var(--main-color2);
}

.footer-brand-img {
  width: 150px;
  height: auto;
  padding-right: 10px;
}

.footer .logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color1);
  display: flex;
  align-items: center;
}

.footer .logo img {
  height: 40px;
  margin-right: 10px;
}

.footer .social-icons a {
  color: var(--main-color1);
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
}

.footer h5 {
  font-weight: bold;
  margin-bottom: 20px;
}

.footer a {
  color: var(--main-color2);
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: var(--main-color1);
}

.footer .contact-info p {
  margin: 0;
  font-size: 14px;
}

.footer .instagram img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

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

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  /* Distance from bottom */
  right: 20px;
  /* Distance from left */
  width: 50px;
  /* Small size */
  height: 50px;
  border-radius: 50%;
  /* Make it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.aboutUs-para {
  background-color:  rgb(88 1 1);
  color: var(--font-color);
}
/* loader */
#loader {
  transition: opacity 0.3s ease;
}
#loader.hidden {
  opacity: 0;
  pointer-events: none;
}
/* products */
.product-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: opacity 0.4s ease;
}
.hover-img {
  opacity: 0;
  z-index: 1;
}
.image-wrapper:hover .hover-img {
  opacity: 1;
}
.image-wrapper:hover .primary-img {
  opacity: 0;
}
.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  cursor: pointer;
}
.color-dot.selected {
  border-color: #000;
  border-width: 2.5px;
}
.name-3lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}
/* cart */
.cart-popup {
  position: fixed;
  margin-top: 5.4rem;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  background-color: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
}

.cart-popup.show {
  opacity: 1;
  transform: translateX(0);
}

.qty-box {
  width: 40px;
  text-align: center;
}

.checkout-bar {
  background-color: #1f1f1f;
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 20px;
}
/* item */
.custom-tab {
  border: none;
  background: transparent;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 1rem 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
}
.custom-tab.active {
  border-bottom: 3px solid #000;
}
.col-md-6::-webkit-scrollbar {
  display: none;
}
.nav.justify-content-center {
  justify-content: flex-start !important;
}
.tab-content.text-center {
  text-align: left !important;
}
.custom-tab {
  border: none;
  background: transparent;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 1rem 0.5rem;
  transition: all 0.3s ease;
  text-align: left;
}
.custom-tab.active {
  border-bottom: 3px solid #000;
}
.spec-toggle {
  background-color: #e6e6e6;
}
.spec-toggle:hover {
  background-color: #dcdcdc;
}
.chevron-icon {
  transition: transform 0.3s ease;
}
.collapsed .chevron-icon {
  transform: rotate(180deg);
}
.table td {
  vertical-align: middle;
}

.zoom-container {
position: relative;
overflow: hidden;
}

.zoom-container img {
width: 100%;
display: block;
}

.zoom-overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-repeat: no-repeat;
background-size: 200% 200%;
pointer-events: none;
display: none;
z-index: 10;
}

/* news page css */
.card-link {
  text-decoration: none !important;
  /* No underline at any time */
  color: #6c2eb9;
  /* Default text color */
  font-weight: bold;
  /* Optional: makes title bold */
  transition: color 0.3s ease-in-out;
}

.card-link:hover {
  color: #9a42d0;
  /* Slightly lighter shade on hover */
  text-decoration: none !important;
  /* Ensures underline never appears */
}

/* pagination */
.page-link {
  width: 45px;
  /* Circle size */
  height: 45px;
  display: flex;
  align-items: center;
  /* Vertically center */
  justify-content: center;
  /* Horizontally center */
  text-align: center;
  border-radius: 50% !important;
  /* Perfect circle */
  margin: 0 10px;
  /* Spacing between buttons */
  color: #6c2eb9;
  font-weight: bold;
  font-size: 18px;
  /* Bigger number */
  transition: background-color 0.3s, color 0.3s;
  border: 2px solid #6c2eb9;
  /* Optional: Clean border */
}

.page-link:hover {
  background-color: #6c2eb9;
  color: white;
}

.page-item.active .page-link {
  background-color: #6c2eb9;
  color: white;
}



