* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    background-color: #1a1a1a;
    overflow-x: hidden;
  }
  header {
    width: 100%;
    height: 80px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cursor {
    width: 20px;
    height: 20px;
    position: fixed;
    background-color: gray;
    border-radius: 50%;
    z-index: 2;
  }
  
  .logo img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    margin-left: 15px;
  }
  
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
  }
  ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  ul li {
    list-style-type: none;
  }
  ul a {
    text-decoration: none;
    margin-right: 30px;
    color: white;
    text-transform: uppercase;
    position: relative;
  }
  ul a::after {
    position: absolute;
    content: " ";
    bottom: -5px;
    height: 2px;
    left: 0;
    width: 0;
    background-color: white;
    transition: 0.3s;
  }
  ul a:hover::after {
    width: 100%;
  }
  
  .btn {
    background-color: rgb(8, 8, 31);
    padding: 10px;
    border-radius: 100px;
    color: white;
    text-wrap: nowrap;
    border-color: transparent;
    cursor: pointer;
    margin-right: 40px
  }
  
  .btn a {
    text-decoration: none;
    color: white;
  }
  
  .bar {
    display: none;
  }
  
  .close-icon {
    display: none;
  }
  
  .sign-up a {
    color: white;
    border-radius: 50%;
    border: 1px solid white;
    padding: 12px;
    margin: 15px;
  }
  
  @media screen and (max-width: 1024px) {
    .cursor {
      display: none;
    }
    .navlinks {
      display: block;
      position: absolute;
      top: 80px;
      right: 0;
      width: 100%;
      height: 90vh;
      background-color: rgba(0, 0, 0);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 999;
    }
    ul li {
      padding: 20px 0;
    }
    .bar {
      display: block;
      color: white;
      font-size: 30px;
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 20px;
    }
    .close-icon {
      font-size: 30px;
      position: absolute;
      right: 20px;
      top: 20px;
      cursor: pointer;
      color: white;
    }
    .navlinks.active {
      display: flex;
    }
    ul li {
      margin-bottom: 20px;
    }
    .sign-up {
      margin-right: 30px;
    }
  }

.bike-page-heading {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}
.bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.bike-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}
.bike-card:hover {
    transform: scale(1.05);
}
.bike-card img {
    max-width: 100%;
    height: auto;
}
.price {
    color: #ff5722;
    font-weight: bold;
}
.add-to-cart {
    display: inline-block;
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.add-to-cart:hover {
    background-color: #218838;
}
.quantity-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}
.quantity {
    width: 50px;
    text-align: center;
    margin: 0 5px;
}
.btn-quantity {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}
.btn-quantity:hover {
    background-color: #0056b3;
}
#cart-summary {
    margin-top: 30px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ccc;
}
.cart-item {
    margin: 5px 0;
}
.remove-item {
    color: red;
    cursor: pointer;
    margin-left: 10px;
}
.notification {
    display: none;
    background: #28a745;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
}
.clear-cart {
    background: #dc3545;
}
.clear-cart:hover {
    background: #c82333;
}
.buy-now {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}
.buy-now:hover {
    background-color: #0056b3;
}

footer {
    background-color: #393a3a; 
    padding: 40px 20px;
    position: relative;
    margin-top: 50px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    gap: 20px; /* Adds space between sections */
  }
  
  .footer-section {
    flex-basis: 30%; 
  }
  
  .about {
    max-width: 100%; 
  }
  .contact p{
    text-align: center;
    margin: 5px;
    }
  .footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;}
  
  .footer-section p, .footer-section ul {
    font-size: 14px;
    color: #ffffff;
  }
  
  .footer-section ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li {
    padding: 5px 0;
    margin-bottom: 5px; /* Adds spacing between links */
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
    margin: 0;
    padding: 0;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    padding-top: 30px; /* Margin from the top */
    border-top: 1px solid #000000; /* 1px border */
    position: relative;
  }
  
  
  
  /* Media Queries for smaller screens */
  @media screen and (max-width: 768px) {
    .about p{
  max-width: 70%;
  margin: auto;
  text-align: center;
    }
    .footer-section ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section ul li {
      margin: 0;
      padding: 0px;
      text-align: center; 
      padding-right: 0;
    }
  
    .footer-section ul li a {
      display: block; 
      text-align: center;
      margin: 2px;
    }
  
  
    .footer-content {
      display: block;
      justify-content: none;
      flex-wrap: nowrap;
      gap: 20px;
    }
  
    .contact,
    .links {
      margin-top: 15px;
    }
  
    .contact p {
      text-align: center;
      margin: 5px;
    }
  }