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

html,
body {
  background-color: rgb(0, 0, 0);
  height: 100%;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  /* position: relative; */
  
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Honeycomb animation and styling */
#preloader {
  display: flex;
  gap: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 9999;
}
#preloader img
 {
  height: 8vw;
  width: 8vw;
}
#content {
  display: none; /* Hide the content initially */
}

@-webkit-keyframes honeycomb {
  0%, 20%, 80%, 100% {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  30%, 70% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

@keyframes honeycomb {
  0%, 20%, 80%, 100% {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  30%, 70% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

.honeycomb {
  height: 24px;
  position: relative;
  width: 24px;
}

.honeycomb div {
  -webkit-animation: honeycomb 2.1s infinite backwards;
  animation: honeycomb 2.1s infinite backwards;
  background: #1400cc;
  height: 12px;
  margin-top: 6px;
  position: absolute;
  width: 24px;
}

.honeycomb div:after,
.honeycomb div:before {
  content: '';
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
}

.honeycomb div:after {
  top: -6px;
  border-bottom: 6px solid #1400cc;
}

.honeycomb div:before {
  bottom: -6px;
  border-top: 6px solid #1400cc;
}

.honeycomb div:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  left: -28px;
  top: 0;
}

.honeycomb div:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  left: -14px;
  top: 22px;
}

.honeycomb div:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  left: 14px;
  top: 22px;
}

.honeycomb div:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  left: 28px;
  top: 0;
}

.honeycomb div:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  left: 14px;
  top: -22px;
}

.honeycomb div:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  left: -14px;
  top: -22px;
}

.honeycomb div:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  left: 0;
  top: 0;
}

/* Centering the honeycomb in the viewport */




.cursor {
  position: absolute;
  background-color: rgb(255, 0, 0);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  position: absolute;
  transition: all linear 0.2s;
  mix-blend-mode: difference;
  z-index: 2;
 
}

nav {
  font-family: sans-serif;
  z-index: 100;
  position: absolute;
  background-color: #00000000;
  height: 9vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 3vw;
}

nav img {
  padding: 9px;
  height: 9vh;
  width: 10vw;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.navlinks a {
  font-weight: 600;
  line-height: 2vh;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgb(255, 255, 255);
  max-height: 100%;
  color: rgb(255, 255, 255);
  transition: all ease-in-out 0.2s;
  padding: 1vw 2vw;
  text-decoration: none;
}

.navlinks i {
  align-self: center;
  color: #ffffff;
  display: none;
}

#testridebtn:hover {
  transition: all ease-in-out 0.2s;
  border: 1px solid rgba(240, 0, 0, 0.534);
}

.navlinks a:hover {
  border: 1px solid rgb(240, 0, 0, 0.534);

  background-color: #00000000;
  transition: all ease-in-out 0.2s;
}

/* ///////////////////////////////////////////// */
.popup-navlinks {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #3d359169;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup-navlinks a {
  height: 5%;
  width: 70%;
  display: block;
  margin: 2vw 0;
  padding: 3vw;
  background-color: #000000;
  color: white;
  text-align: center;
  text-decoration: none;
}

.popup-navlinks i {
  color: white;
  margin-top: 15rem;
  padding: 1vw 2vw;
  font-size: 10vw;
  display: inline;
}

.popup-navlinks a:hover {
  background-color: rgb(0, 0, 0);
}

.videosection {
  
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

video {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100%;
  width: auto;
  height: auto;
  transition: all ease-in-out 0.1ms;
  transform: translate(-50%, -50%);
}

main {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 3vw;
  background-color: rgba(0, 0, 0, 0.33);
  opacity: 0.6;
  height: 100vh;
  width: 100%;
  min-width: 100vw;
}

.box {
  margin-top: 120px;
  font-family: sans-serif;
  clip-path: polygon(10% 0%, 90% 0%, 100% 90%, 0% 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 9vw;
  width: 9vw;
  color: rgba(255, 255, 255, 0.729);
  border: 2px solid rgb(255, 255, 255);

  background-color: #00000000;
  border-radius: 50%;
}
.box:hover {
  clip-path: polygon(10% 0%, 90% 0%, 100% 90%, 0% 100%);
  border: 2px solid rgb(234, 10, 10);

  transition: all ease 0.2s;
  background-color: rgba(255, 0, 0, 0);
  color: #ffffff;
}

.box h2 {
  font-size: 7vw;
}

.tagline h1 {
  text-align: start;
  font-family: Yellowtail;
  /* color: rgb(227, 227, 234); */
  color: #ff0000a1;

  font-size: 8rem;
  font-weight: 100;
}

@media (max-width: 1200px) {
  /* .navlinks a {
      display: none;
  } */

  .box {
    height: 15vw;
    width: 15vw;
  }

  .box h2 {
    font-size: 5vw;
  }
}

@media (max-width: 992px) {
  .box {
    height: 12vw;
    width: 12vw;
  }

  nav img {
    height: 8vh;
    width: 15vw;
  }
  .box h2 {
    font-size: 4vw;
  }
}

@media (max-width: 768px) {
  .box {
    height: 8vw;
    width: 8vw;
  }

  nav img {
    height: 8vh;
    width: 17vw;
  }
  .box h2 {
    font-size: 3vw;
  }
}

@media (max-width: 490px) {
  nav {
    margin-top: 10px;
    max-width: 100vw;
    height: 7vh;
  }

  nav img {
    height: 8vh;
    width: 40vw;
  }

  .navlinks i {

    padding-bottom: 20px;
    font-size: 9vw;
    display: inline;
  }

  .navlinks a {
    display: none;
  }

  .box {
    border: 1px solid rgb(255, 255, 255);
    height: 13vw;
    width: 13vw;
  }

  .box h2 {
    font-size: 12vw;
  }

  .tagline {
    height: 50%;
    width: 100%;
  }

  .tagline h1 {
    font-size: 27vw;
  }

  .cursor{
    display: none;
  }
}
/* ************************************************** */



/* <!-- ****************************************** -->*/
.bike-collection {
  background-color: #4b39b5;
  min-height: 50vh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-x: auto;
  padding: 20px;

  white-space: wrap;
  scrollbar-width: none; 
 
}

.bike-collection h1 {
  padding: 16px;
  color: rgba(255, 255, 255, 0.348);
  font-size: 12vw;
  font-family: "Oswald", sans-serif;

  font-weight: 1000;
}

h1 i {
  border-radius: 50%;
  background-color: #4b39b5;
  border: 4px solid #FF0000;
  padding: 2vw;
  color: #8a7ecf;
}

h1 i:hover {
  /* clip-path: polygon(10% 0%, 90% 0%, 100% 90%, 0% 100%); */
  border: 4px solid rgba(0, 0, 0, 0.6);

  transition: all ease-in-out 0.3s;
  background-color: rgba(0, 0, 0, 0);
  color: #000000;
}

.bike-collection::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.bike-box {
  margin-top: 3vh;
  min-height: 30vh;

  background-color: #4b39b5;
  position: relative;
  max-width: 51vw;

  /* Ensure fixed width for each box */
  margin-right: 6px;
  overflow: hidden;
  flex-shrink: 0;
  /* Prevent flex items from shrinking */
}

.bike-box img {
  background-position: center;
  object-fit: cover;
  padding: 10px;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.bike-box .description {
  height: 100%;
  min-width: 100%;
  /* background-color: #1a1b2a; */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: 5vw;
}

.description p {
  font-size: 4vw;
  font-weight: 100;
  white-space: nowrap;
}
.description i {
  cursor: pointer;
  border-radius: 50%;
  background-color: #4b39b5;
  border: 2px solid rgba(187, 255, 0, 0.6);

  padding: 0.7vw;
  color: #8a7ecf;
  /* clip-path: polygon(10% 0%, 90% 0%, 100% 90%, 0% 100%); */
}

.description i:hover {
  clip-path: polygon(10% 0%, 90% 0%, 100% 90%, 0% 100%);
  border: 2px solid rgba(0, 0, 0, 0.6);
  transition: all ease-in-out 0.3s;
  background-color: rgba(0, 0, 0, 0);
  color: #000000;
}

.bike-box:hover {
  transition: all ease-in-out 0.3s;
  transform: scale(1.09);
}

.bike-box:hover .description {
  transition: all ease-in-out 0.3s;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .bike-box {
    min-width: 150px;
    /* Adjust size for smaller screens */
  }
}

@media (max-width: 480px) {
  .description p {
    opacity: 1;
    font-size: 9vw;
  }
  .bike-collection {
    flex-direction: column;

    min-height: fit-content;
  }
  .bike-box {
    /* border-bottom: 2px solid rgb(255, 255, 0); */
    min-height: 40vh;
    min-width: 100vw;
  }
  #thirdbike {
    border-bottom: 2px solid rgba(255, 255, 0, 0);
  }

  h1 {
    font-size: 2.5rem;
  }
  h1 i {
    font-size: 5rem;
    border: 2px solid yellow;
  }
}

/* <!-- ****************************************** --> */

.bike-listing-container {
  font-family: sans-serif;
  /* margin-top: 3%;
  margin-bottom: 3%; */
  position: relative;
  overflow: hidden;
  width: 100vw;
 margin-left: -20px;
  padding: 1rem;
  box-sizing: border-box;
}

.bike-cards {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
#listing-tagline {
  margin-top: 100px;
  font-size: 2.23rem;
  
  line-height: -25px;
  background-color: rgba(170, 15, 15, 0);
  color: #4b39b5;
}

#listing-tagline i {
  border: 4px solid #FF0000;
  border-radius: 50%;
  color: #50624580;
  font-size: 100px;
  font-weight: 500;
}
#listing-tagline i:hover {
  color: #5ff80072;
  border: 4px solid rgb(0, 0, 0);
}

.bike-cards::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.bike-card {
  overflow: hidden;
  width: 70vw;

  min-width: 350px;

  height: 72vh;
  /* 40% of viewport height */
  background-color: blue;

  border-radius: 24px;
  margin-right: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease-in-out;
} 

.bike-card p{
  padding-top: 20px;
  font: 900;
  font-size: 2rem;
color: #FF0000;
}

.bike-card p:hover{
  cursor: pointer;
  transition: all ease 0.3s;
  color: black;
}
.bike-image {
  width: 100%;
  height: 60%;
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 26px;
  margin-bottom: 1rem;
}

.bike-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bike-card h3 {
  font-size: 1.5rem;
  color: #1e90ff;
  /* Blue color */
  margin-bottom: 0.5rem;
}

.bike-card p {
  font-size: 1.2rem;
  color: #fff;
  /* White color */
}

.bike-card .rating {
  font-size: 1.2rem;
  color: #ffd700;
  /* Gold color */
  margin-top: 0.5rem;
}

.bike-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(207, 207, 207, 0.094);
  color: #fff;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.bike-nav-button:hover {
  background-color: rgba(25, 69, 172, 0.8);
}

.bike-prev {
  left: 0;
}

.bike-next {
  right: 0;
}
button i {
  font-size: 5vw;
}

@media (max-width: 768px) {
  .bike-card {
    background-color: #4b39b5;
  }
}

@media (max-width: 480px) {
  .bike-listing-container button {
   opacity: 0;

  }

  .bike-card:hover {
    background-color: rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
  }
}
/* ****************************************8 */

.containersOfManufacture {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  min-width: 100%;
  max-width: 100vw;
  width: 100%;

  --s: 60px;
  --c1: #180a22;
  /* --c2: #5b42f3; */
  --c2: #4b39b5;
  --_g: radial-gradient(
    25% 25% at 25% 25%,
    var(--c1) 99%,
    rgba(0, 0, 0, 0) 101%
  );
  background: var(--_g) var(--s) var(--s) / calc(2 * var(--s))
      calc(2 * var(--s)),
    var(--_g) 0 0 / calc(2 * var(--s)) calc(2 * var(--s)),
    radial-gradient(50% 50%, var(--c2) 98%, rgba(0, 0, 0, 0)) 0 0 / var(--s)
      var(--s),
    repeating-conic-gradient(var(--c2) 0 50%, var(--c1) 0 100%)
      calc(0.5 * var(--s)) 0 / calc(2 * var(--s)) var(--s);
}

/* ............................ */
.manufactor-container {
  font-family: poppins;
  padding:5vw 2vw;
  height: 100%;
  width: 100%;
  max-width: 95vw;
    /* background-color: #000000; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.5vw;
  animation: fadeIn 1s ease-in-out;
}

.manufactor-box {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.187);
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 1rem 1rem ;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.manufactor-box:hover {
  transform: translateY(-10px);
}



.heading1{
    font-size: 6rem;
    color: rgb(255, 255, 255);
    transition: transform 0.1s ease-in-out;
}



.manufactor-box p {
  font-weight: 300;
  font-size: 1rem;
  color: #d0d713;
}

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

/* Media Queries */
@media (max-width: 1200px) {
  .manufactor-box img {
      width: 12vw;
      height: 12vw;
  }
  .manufactor-box p {
      font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .manufactor-box {
      padding: 1.5rem;
  }
  .manufactor-box img {
      width: 15vw;
      height: 15vw;
  }
  .manufactor-box p {
      font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .manufactor-box {
      padding: 1rem;
  }
  .manufactor-box img {
      width: 20vw;
      height: 20vw;
  }
  .manufactor-box p {
      font-size: 0.8rem;
  }
}

/* Diwakar ride test */
.book-test-ride {
  min-width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #4b39b5;
  font-family: "Noto Sans", sans-serif;
  color: rgb(255, 255, 255);
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin: 0px 0px;
  padding: 0px;
  z-index: 0;
}

.book-test-ride img {
  margin-top: 80px;
  margin-bottom: 100px;
  padding: 5px;
  height: 90%;
  width: 50%;
}

.form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  padding: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 20px;
  position: relative;
  background-color: #1a1a1a51;
  color: #fff;
  border: 1px solid #ffffff;
}

.title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #00bfff;
}

.title::before {
  width: 18px;
  height: 18px;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #00bfff;
}

.message,
.signin {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
}

.signin {
  text-align: center;
}

.signin a:hover {
  text-decoration: underline royalblue;
}

.signin a {
  color: #00bfff;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
}

.form label .input {
  background-color: #000000;
  color: #fff;
  width: 100%;
  padding: 20px 05px 05px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 10px;
  top: 0px;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 12.5px;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  color: #00bfff;
  top: 0px;
  font-size: 0.7em;
  font-weight: 600;
}

.input {
  font-size: medium;
}

.submit {
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transform: 0.3s ease;
  background-color: #4b39b5;
}

.submit:hover {
  background-color: #000000;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
@media (max-width: 480px) {
  .book-test-ride img {
    margin-bottom: 50px;
    height: 70vw;

    width: 85vw;
  }

  .book-test-ride {
    padding: 10px;
    flex-direction: column;
    border-bottom: 2px solid black;
  }
}

/* ///////////////////////////////////////////////////// */

footer {
  
  width: 100%;
  max-width: 100vw;
  min-width: 90vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* padding: 2vw; */
  background-color: #000000;
}

.footer_branding{
  font-family: sans-serif;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 2px;
  color: white;
  
  background-color: rgb(0, 0, 0);
  min-height: 10vh;
  width: 100vw;
}
.footer_branding h1{
  color: #4B39B5;
  font-weight: 800;
  /* border-right: 2px solid yellow; */
  /* padding-right: 1vw; */
 
}
.footer_branding p{
  
  font-family: cursive;
  font-weight: 100;
  font-size:12px;
  color: #FB0506;
  padding-bottom: 16px;
  
  
}
.footerbox {
  border-top: 1px solid yellow;
  flex: 1 1 19vw;
  margin: 1vw;
  padding: 2vw;
  background-color: #000000;
  /* box-shadow: 0 7px 4px rgba(135, 255, 6, 0.357); */
  box-sizing: border-box;
}

.twisted-buttons {
  min-height: 50%;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.twisted-buttons button {
  margin-bottom: 5px;
  padding: 2px 4px;
  border: none;
  border-radius: 5px;
  background-color: #000000;
  color: rgb(255, 255, 255);
  font-size: 16px;
  cursor: pointer;

  transition: transform 0.3s ease;
}

.twisted-buttons button:hover {
  background-color: #000000;
  color: rgb(153, 255, 0);
}

footer h3 {
  
  box-shadow: 3px 3px #73ff00;
  color: #73ff00;
  border-radius: 20px;
  background-color: rgba(13, 59, 152, 0.73);
  padding: 10px 15px;
}

#socialsbox i {
  font-size: 39px;
  color: rgb(255, 255, 255);
}
#socialsbox  {
  border: none;
}

@media (max-width: 1024px) {
  .footerbox {
    flex: 1 1 45vw;
  }
}

@media (max-width: 768px) {
  .footerbox {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .footerbox {
    margin-top: 1.5rem;
    border-top: none;
    border-left: 3px solid rgb(246, 255, 0);
    /* border-bottom: 1px solid yellow; */

    padding: 2vw;
    margin-bottom: 8vw;
  }

  .twisted-buttons button {
    font-size: 12px;
  }

  footer h3 {
    font-size: 12px;
    /* background-color: blue; */
    padding: 8px 8px;
  }
}

.copyright {
  background-color: #000000;
  text-align: center;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgb(227, 0, 0);
  padding-bottom: 20px;
}
