body {
    margin: 0;
    background: #0b0b0b;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
  }
  
  header {
    width: 100%;
  }
  
  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.scrolled a{
    color: white;
  }
  
   #main-nav.scrolled a:hover{
    color: #f00;  
   }
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav :hover {
    color: #000000;
  }

  #main-nav .logo {
    height: 40px;
  }
  
  .find-your-dream-ride {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
  
  #background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 120%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
  }
  
  .find-your-dream-ride .content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
  }
  
  .main-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  }
  
  .explore-btn.slanted {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid white;
    background: transparent;
    overflow: hidden;
    transform: skew(-20deg);
    z-index: 1;
    transition: color 0.4s ease;
  }
  
  .explore-btn.slanted::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transition: left 0.4s ease;
  }
  
  .explore-btn.slanted:hover::before {
    left: 0;
  }
  
  .explore-btn.slanted:hover {
    color: #111;
  }

  .featured-model-section {
    background-color: #111;
    padding: 80px 20px;
    color: white;
    text-align: center;
  }
  
  .featured-model-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  }
  
  .featured-rotator {
    background-color: #111;
    padding: 80px 20px;
    color: white;
    text-align: center;
  }
  
  .featured-rotator h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  }

  #featured-model {
    background-color: #ffffff; /* Darker background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #featured-model h3 {
    color: rgb(0, 0, 0);
    font-size: 2rem; /* Title font size */
  }
  
  #featured-model p {
    color: rgb(0, 0, 0);
    font-size: 1.2rem; /* Paragraph font size */
  }
  

  
  .rotator-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20%;
  }
  
  .bike-display {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 950px;
    margin: 0 auto;
    display: block;
  }
  
  .bike-display img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    display: block;
  }
  
  /* Wrapper for both brand and model name */
  .bike-name-wrapper {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  #bike-brand {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: #111;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  #bike-model {
    font-size: 1.5rem;
    font-weight: 400;
    color: #222;
    opacity: 0.85;
    font-family: 'Oswald', sans-serif;
    margin: 0;
  }
  
  .divider-line {
    width: 60px;
    height: 3px;
    background: #999;
    border-radius: 5px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  }
  
  
  .arrow {
    background: rgba(200, 200, 200, 0.7); /* soft light gray */
    color: black;
    border: none;
    font-size: 2.5rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .arrow:hover {
    background: rgba(100, 100, 100, 0.9); /* darker gray on hover */
    color: white;
    transform: translateY(-50%) scale(1.1);
  }
  
  
  /* Make sure arrows are on the far left and right sides of the bike display */
  .rotate-left {
    left: -80px;
  }
  
  .rotate-right {
    right: -80px;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: rotateY(-30deg) scale(0.95); }
    to { opacity: 1; transform: rotateY(0deg) scale(1); }
  }

  .slanted-title {
    display: inline-block;
    transform: skew(-10deg);
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  }

  #news-events {
    padding: 80px 20px;
    background-color: #111;
    color: white;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
  }
  
  .event-card {
    width: 400px;
    height: 350px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  
  .event-card:hover {
    transform: scale(1.05);
  }
  
  .event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .event-desc {
    padding: 15px;
    font-size: 0.95rem;
    color: #ccc;
  }

  .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;
  }
  
       @keyframes enginePulse {
      0%, 100% { transform: scale(1) rotate(0deg); }
      25% { transform: scale(1.05) rotate(1deg); }
      50% { transform: scale(1.03) rotate(-1deg); }
      75% { transform: scale(1.05) rotate(1deg); }
    }

    @keyframes exhaustPulse {
      0% { transform: scale(0.5); opacity: 0; }
      50% { transform: scale(1.1); opacity: 0.8; }
      100% { transform: scale(0.5); opacity: 0; }
    }

    @keyframes indicatorGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(200, 60, 60, 0.4); }
      50% { box-shadow: 0 0 0 5px rgba(200, 60, 60, 0); }
    }

    .admin-btn-container {
      position: fixed;
      bottom: 40px;
      right: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 1000;
    }

    .admin-btn {
      width: 70px;
      height: 70px;
      background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
      border-radius: 50%;
      border: 2px solid #c83c3c;
      color: #c83c3c;
      font-size: 28px;
      cursor: pointer;
      box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      animation: enginePulse 3s infinite;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .admin-btn:hover {
      animation: none;
      transform: scale(1.1) rotate(5deg);
      border-color: #ff5252;
      color: #ff5252;
      box-shadow: 
        0 8px 25px rgba(200, 60, 60, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.1);
    }

    .admin-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        to bottom right,
        transparent,
        rgba(200, 60, 60, 0.1),
        transparent
      );
      transform: rotate(45deg);
      transition: all 0.6s;
    }

    .admin-btn:hover::before {
      transform: translateX(100%) rotate(45deg);
    }

    .exhaust {
      position: absolute;
      bottom: -15px;
      width: 100%;
      height: 20px;
      display: flex;
      justify-content: center;
      gap: 5px;
    }

    .exhaust-dot {
      width: 8px;
      height: 8px;
      background: #c83c3c;
      border-radius: 50%;
      opacity: 0;
    }

    .admin-btn:hover .exhaust-dot {
      animation: exhaustPulse 1.5s infinite;
    }

    .exhaust-dot:nth-child(1) { animation-delay: 0.1s; }
    .exhaust-dot:nth-child(2) { animation-delay: 0.3s; }
    .exhaust-dot:nth-child(3) { animation-delay: 0.5s; }

    .notification-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      width: 24px;
      height: 24px;
      background: #c83c3c;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
      animation: indicatorGlow 2s infinite;
    }

    .tooltip {
      position: absolute;
      right: 90px;
      background: #2a2a2a;
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 14px;
      font-family: 'Rajdhani', sans-serif;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s;
      pointer-events: none;
      border-left: 3px solid #c83c3c;
    }

    .admin-btn:hover + .tooltip {
      opacity: 1;
      transform: translateX(0);
    }
  /*********************************************************************************Mobile Responsive**************************************************************************/
  @media (max-width: 1024px){

  }
  @media(max-width: 540px) and (orientation:portrait) {
    body {
    margin: 0;
    background: #0b0b0b;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
  }
  
  header {
    width: 100%;
  }
  
  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;
  }
  
/* Parent section fix */
.find-your-dream-ride {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

/* Video fix */
#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
}

/* Optional: Ensure content is centered properly */
.find-your-dream-ride .content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}


  
  .main-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  }
  
  .explore-btn.slanted {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    font-size: .5rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid white;
    background: transparent;
    overflow: hidden;
    transform: skew(-20deg);
    z-index: 1;
    transition: color 0.4s ease;
  }
  
  .explore-btn.slanted::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
    transition: left 0.4s ease;
  }
  
  .explore-btn.slanted:hover::before {
    left: 0;
  }
  
  .explore-btn.slanted:hover {
    color: #111;
  }

  .featured-model-section {
    background-color: #111;
    padding: 40px 10px;
    color: white;
    text-align: center;
  }
  
  .featured-model-section h2 {
    font-size: .24rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }
  
  .featured-rotator {
    background-color: #111;
    padding: 40px 10px;
    color: white;
    text-align: center;
  }
  
  .featured-rotator h2 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }

  #featured-model {
    background-color: #ffffff; /* Darker background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #featured-model h3 {
    color: rgb(0, 0, 0);
    font-size: 1rem; /* Title font size */
  }
  
  #featured-model p {
    color: rgb(0, 0, 0);
    font-size: .6rem; /* Paragraph font size */
  }
  

  
  .rotator-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20%;
  }
  
  .bike-display {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 475px;
    margin: 0 auto;
    display: block;
  }
  
  .bike-display img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    display: block;
  }
  
  /* Wrapper for both brand and model name */
  .bike-name-wrapper {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  #bike-brand {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: #111;
    text-shadow: .5px .5px 2px rgba(0,0,0,0.1);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  #bike-model {
    font-size: .7rem;
    font-weight: 400;
    color: #222;
    opacity: 0.85;
    font-family: 'Oswald', sans-serif;
    margin: 0;
  }
  
  .divider-line {
    width: 30px;
    height: 1.5px;
    background: #999;
    border-radius: 2.5px;
  }
  
  .section-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 7.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  }
  
  
  .arrow {
    background: rgba(200, 200, 200, 0.7); /* soft light gray */
    color: black;
    border: none;
    font-size: 1.2rem;
    padding: 5px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
  }
  
  .arrow:hover {
    background: rgba(100, 100, 100, 0.9); /* darker gray on hover */
    color: white;
    transform: translateY(-50%) scale(1.1);
  }
  
  
  /* Make sure arrows are on the far left and right sides of the bike display */
  .rotate-left {
    left: -40px;
  }
  
  .rotate-right {
    right: -40px;
  }
  
  
  @keyframes fadeIn {
    from { opacity: 0; transform: rotateY(-30deg) scale(0.95); }
    to { opacity: 1; transform: rotateY(0deg) scale(1); }
  }

  .slanted-title {
    display: inline-block;
    transform: skew(-10deg);
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  }

  #news-events {
    padding: 40px 10px;
    background-color: #111;
    color: white;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
  }
  
  .event-card {
    width: 200px;
    height: 175px;
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  
  .event-card:hover {
    transform: scale(1.05);
  }
  
  .event-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }
  
  .event-desc {
    padding: 7.5px;
    font-size: .45rem;
    color: #ccc;
  }

  .footer {
    background: #000000;
    color: #dbe7ff;
    padding: 40px 5% 15px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: .6rem;
    color: #ffffff;
    margin-bottom: 7.5px;
  }
  
  .footer-brand img {
    max-width: 60px;
    margin-bottom: 10px;
  }
  
  .footer-brand p {
    font-size: .45rem;
    line-height: .7;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 4px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: .45rem;
    margin-bottom: 5px;
  }
  
  .footer-contact i {
    margin-right: 4px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: .6rem;
    margin-right: 7px;
    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: .5px solid #ffffff;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    font-size: .42;
    color: #ffffff;
  }
  .footer-links{
    display: none;
}
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
  }
  
    