  /* home Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
html{
  overflow-x: hidden; /* Prevent horizontal scrolling */

}
body {
    /* background: #191919;*/
    background: #060c21;
    color: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    

}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

}
.container-header {
    background: #000000;
    padding: 10px 20px; /* Adjust padding for spacing */
    display: flex;
    align-items: center;
    justify-content: space-between; 
  }
  
  .rgb-text {
    font-size: 2.5em;
    color: #d6171f;
    margin-top: 20px
  }
  
h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
/* background: linear-gradient(45deg, #6a11cb, #2575fc);*/
background:  black;
    color: #fff;
    display: none;
    justify-content: space-between; /* This will space out the content */
    position: relative; /* Ensures absolute positioning of logo */
    align-items: center;
    text-align: center;
    padding: 20px;
}
.hero h1 {
    font-size: 3rem;
}
.hero span {
    color: #ff69b4;
}
.hero p {
    margin: 10px 0 20px;
}
.hero .btn {
    padding: 10px 20px;
    background: #ff69b4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.hero .btn:hover {
    background: #ff3e88;
}
.hero .logo img {
    height: 70px;
    width: 180px;
    position: absolute;
    top: 12px;
    left: 15px;
}

/* Ensure other content is spaced out correctly */
.hero h1, .hero p, .hero .btn {
    margin-left: 80px; /* Create space for the logo */
    text-align: left; /* Align text to the left */
}

/* Navbar */
.navbar {
    background: #000000;
    padding: 10px 20px; /* Adjust padding for spacing */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Push logo and tabs to opposite ends */
  }
  .logo {
    width: 50px; /* Adjust the logo size */
    height: 50PX;
  }
  .navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    position: relative;
  }
  .navbar a:hover {
    color: #ff000d;
  }
  
/* Dropdown */
.navbar .dropdown {
    position: relative;
    display: inline-block;
}
.navbar .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 5px;
    text-align: left;
    z-index: 2;
}
.navbar .dropdown-content a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}
.navbar .dropdown-content a:hover {
  background-color:  #ff000d;
    /*background: linear-gradient(45deg, #6a11cb, #2575fc);*/
    color: #fff;
}
.navbar .dropdown:hover .dropdown-content {
    display: block;
}


.dropdown-submenu {
  position: relative;
}

.dropdown-content-right {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  top: 0;
  left: 100%;
  z-index: 1;
}

.dropdown-submenu:hover .dropdown-content-right {
  display: block;
}

/* Footer */
.footer {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, .9);
    text-align: center;
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity,1))
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Pushes elements to left and right */
  align-items: center; /* Align vertically centered */
  padding: 0 20px; /* Horizontal padding */
}

/* Left-aligned text */
.footer-text-left {
  color: #9ca3af; /* Gray color */
  font-size: 14px;
  margin: 0;
}

/* Right-aligned text */
.footer-text-right {
  color: #9ca3af; /* Gray color */
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease; /* Smooth hover transition */
  margin: 0;
}

.footer-text-right:hover {
  color: #a855f7; /* Purple hover effect */
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    color: #fff;
    padding: 10px;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 1000;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;

}
.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -100%; /* Hidden off-screen */
    width: 250px;
    height: 100vh;
    background: #333;
    border-radius: 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    text-align: left;
    padding: 10px;
    z-index: 999;
    transition: left 0.3s ease; /* Smooth slide effect */

  }

.mobile-nav.show {
    left: 0; /* Slide into view */
}

.mobile-nav a {
    display: block;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #444;
}
.mobile-nav a:last-child {
    border-bottom: none;
}
.mobile-nav a:hover {
    background: #ff69b4;
}


/* Effects */

#particles, #vignette {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    bottom: 0;
    right: 0;
    z-index: -2;

}

#vignette {
    box-shadow: 0 0 800px rgba(0,0,0,0.9) inset;
    z-index: -1;

}



.container-profile {
    color: #2b2c48;
    font-family: "Jost", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    justify-content: center; /* Centers horizontally */

  }


.box {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
    background: #060c21; /* Change */
    transition: .5s;
    
}

.box:hover {
    height: 400px;
}

.box .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.box .imgBx img {
    max-width: 100%;
    opacity: .3;
    transition: .5s; 
}

.box:hover .imgBx img {
    opacity: 1;  
}

.box:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -1;

}

.box:after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -2;
    filter: blur(40px);

}

.box:before,
.box:after   {  
    background: linear-gradient(235deg, #2196f3, #010615, #F00000);
}

.box:nth-child(2):before,
.box:nth-child(2):after   { /* not supported 😣 */
    background: linear-gradient(235deg, #2196f3, #010615, #F00000);
}

.box:nth-child(3):before,
.box:nth-child(3):after   { /* not supported 😣 */
    background: linear-gradient(235deg, #772aff, #010615, #2196f3);
}

.box .content {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 90px;
    background: rgba(0,0,0,.04);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
}


.box:hover .content {
    opacity: 1;
}

.box .content h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 500; /* just one style 😐 */
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Audiowide', cursive;

    
}

.box .content h2 span {
    font-size: 14px;
    color: #fff;
    font-weight: 200; /* just one style 😐 */
    font-family: 'Audiowide', cursive;

    letter-spacing: 2px;
}


/* Media Queries for Responsiveness */

@media (max-width: 1024px) {

  .info {
    padding: 0 20px;
  }

  .swiper {
    width: 100%;
    height: 350px;
  }

  .btn {
    width: 40%;
  }
}

@media (max-width: 768px) {
 

  .info p {
    font-size: 0.9rem;
  }

  .swiper {
    width: 80%;
    height: 300px;
  }

  .navbar {
    display: none;
}
.mobile-menu {
    display: block;
}

body {
  overflow-x: hidden; /* Reaffirm for mobile */
}
.container {
  padding: 0 15px; /* Add padding to prevent overflow */
}
.footer-container {
  max-width: 1200px;
  flex-direction: column; /* Stacked vertically by default */
  text-align: center;
}

.hero{
    display: flex;
  }

  .bike-card img {
    width: 340px !important;
    height: 220px !important;
    border-radius: 5px !important;
}

.PerformanceTabBg {
    width: 100% !important; 
    margin: 0 auto !important;
    text-align: center ; 
    padding: 0px !important; 
}

.tab-text {
    display: none;
  }

  .tab-button {
    margin-right: 20px !important; /* Adjust this value to add more space between tabs */
  }

}


.bike-card {
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}
.tabel-card {
    padding: 15px;
    box-sizing: border-box;
    text-align: left;
    margin: 0 auto;
    width: 100%; /* Makes the card take the full width */   
    display: flex;    
    flex-direction: column;    
    gap: 10px; /* Adds 10px gap between each item */
}
.tabel-card table {
    border-spacing: 10px;  /* Adds gap between table rows and columns */
}
.tabel-card td, .tabel-card th {
    padding: 5px; /* Optional: Add some padding for clarity */
}
.bike-card img {
    width:550px;
    height: 330px;
    border-radius: 5px;
}
h1 {
    text-align: center;
}
p {
    font-size: 16px;
    margin: 5px 0;
}
#bikeDetails {
    display: block;
}

     /* Nav Tab styles */
.tabs {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.tab-button {
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: fit-content;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid rgba(0, 0, 0, 0); /* Optional border */

}
.tab-button.active {
    background-color: #000000;
    color: white;
    border-color: #d6171f;
}
.tab-content {
    display: none;
    margin-top: 20px;
    font-size: 16px;
}
.tab-content.active {
    display: block;
}
.p1 {
    color: #D3D3D3;
}
.p2 {
    color: black;
}

.PerformanceTabBg {
    width: 50%; /* Adjust this value as needed */
    margin: 0 auto; /* Centers the div horizontally */
    text-align: center; /* Centers text/content inside the div */
}

.tabs-icon {
    width: 30px;
    height: 30px;
}


