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

body {
  font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 1px 15px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.sot {
    height: 80px;
    width: auto;
}

h2 {
  text-align: center;
}

.container {
  padding: 50px;
}

#nav-bar {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hero {
    padding-top: 100px; /* Space for fixed header */
}


.brand-logos{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.logo-honda {
  height: 80px;
  width: auto;
}

.logo-yamaha {
  height: 150px;
  width: auto;
}

.logo-kawasaki {
  height:100px;
  width: auto;
}

.logo-suzuki {
  height: 70px;
  width: auto;
}

.products {
  padding: 90px 20px;
  background: #f8f9fa;
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;

  .product-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #667eea;
}

.product-item p {
  color: #666;
  line-height: 1.6;
}

