body {
    margin: 0;
    background: grey;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
  }
  
  header {
    width: 100%;
  }
/* Header Section */
 nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: black;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 40px;
  }
  

    .container {
      display: flex;
      height: 100vh;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .image-link {
      flex: 1;
      overflow: hidden;
      position: relative;
      display: block;
    }

    .image-link::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.25);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 2;
    }

    .image-link:hover::before {
      opacity: 1;
    }

    .image-link .bg-image {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.4s ease;
      grid-template-columns: repeat(auto, 1fr);
    }

    .image-link:hover .bg-image {
      transform: scale(1.1);
    }

    .motorcycle-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

   .logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  backdrop-filter: blur(10px);

  /* Add animation */
  animation: glowPulse 2.5s infinite alternate;
}

.logo-container img {
  width: 200px;
  height: auto;
}

/* Glow animation keyframes */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.2), 0 0 15px 5px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
  }
  100% {
    box-shadow: 0 0 20px 6px rgba(255, 255, 255, 0.6), 0 0 30px 15px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .image-link {
    width: 100%;
    height: 50%;
  }

  .logo-container {
    width: 120px;
    height: 120px;
  }

  .logo-container img {
    width: 90px;
  }
}

  /* Footer */
  .footer {
    background: #000000;
    color: #dbe7ff;
    padding: 80px 5% 30px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .footer-brand img {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: 1.3rem;
    margin-right: 14px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #ffffff;
  }
  
  /*****************************************************************************Mobile Responsive*******************************************************************************/
@media (max-width: 1024px){
}
@media (max-width: 540px) and (orientation: portrait) {
  body {
    margin: 0;
    background: grey;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
  }
  
  header {
    width: 100%;
  }
/* Header Section */
 nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: black;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 20px;
  }
}
