/* style.css */
html,body {
  margin: 0;
  background: linear-gradient(156deg, #0e0b01 0%, #130d01 25%, #020100 50%, #5e4c04 100%);
overflow-x: hidden;
 box-sizing: border-box;
max-width: 100%;
font-family: "poppins", sans-serif;
}
p, span, div {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
    /* NAVBAR STYLES STARTS HERE */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
     padding: 10px 20px;
      color: #fff;
      height: 50px;
      border: none;
    }

    .navbar .logo img {
      height: 30px;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      align-items: center;
    }

    .navbar ul li {
      margin: 0 15px;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #fff;
      transition: 0.3s;
    }

    .navbar ul li a:hover {
      color: #ff9800;
    }

    .signup-btn {
      padding: 8px 15px;
      background: #ff9800;
      border: none;
      border-radius: 4px;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .signup-btn:hover {
      background: #e68900;
    }

    /* Mobile styles */
    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;}

/* NAVBAR STYLES ENDS HERE */

/* HERO SECTION STYLES STARTS HERE */
.bubble-hero {
  max-width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(156deg, #0e0b01 0%, #130d01 25%, #020100 50%, #ffcc00 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  box-sizing:border-box;
  overflow-y:hidden;
}
  
    .hook-text {
  flex: 1;
  padding-right: 10px;
  color:white;
}

.hook-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color:white;
}

.hook-text p {
  font-size: 0.9rem;
  margin-bottom: 30px;
  color: white;
}

.cta-btn {
   background: linear-gradient(90deg, #ff9800, #ff9a3c);
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  width:200px;
  cursor: pointer;
   font-weight: 600;
  box-shadow: 0 4px 10px rgba(26, 23, 2, 0.582);
  transition: all 0.3s ease;
}

.hook-text .cta-btn:hover {
  background: #d97706;
}

.hook-image {
  flex: 1;
  margin-left:130px;

}

.hook-image img {
  max-width: 100%;
  border-radius: 12px;
}
/* ANIMATION EFFECT ON THE BUBBLE SECTION */
#particles{position:absolute;inset:0;z-index:1;  pointer-events: none; /* }
.bubble-hero::before {
  content: '';
  inset: 0;
  background: linear-gradient(135deg, #ffcc00 0%, #ffb300 25%, #ffc933 50%, #ffcc00 100%);
  mix-blend-mode: overlay;
  opacity: 0.08; /* slightly visible */
  animation: gradientMove 8s infinite alternate ease-in-out;
}

.bubble {
  position: absolute;
  bottom: -80px;
  background: radial-gradient(circle at 30% 30%, #ffe066, #ffb300);
  border-radius: 50%;
  animation: floatUp 8s linear infinite, shimmer 5s ease-in-out infinite;
  filter: blur(1px) drop-shadow(0 0 10px rgba(255,179,0,0.7));
  opacity: 0.9;
  z-index: 1;
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.6); opacity: 0.8; }
  50% { transform: translateY(-40vh) scale(0.8); opacity: 1; }
  100% { transform: translateY(-100vh) scale(0.6); opacity: 0; }
}

@keyframes shimmer {
  0%,100% { filter: blur(1px) drop-shadow(0 0 10px rgba(255,200,0,0.6)); }
  50% { filter: blur(2px) drop-shadow(0 0 20px rgba(255,230,100,0.9)); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.bubble:nth-child(odd) {
  animation-duration: 7s;
  mix-blend-mode: screen;
}
.bubble:nth-child(even) {
  animation-duration: 10s;
  mix-blend-mode: lighten;
}
/* ANIMATION EFFECT ON THE BUBBLE SECTION  ENDS*/

/* RESPONSIVE EFFECT OF THE NAVBAR AND HERO SECTION */
 @media (max-width: 800px) {
     .navbar ul {
        display: none;
        margin: 0 auto;
        background: #333;
        width: 100%;
        text-align: left;
        position: absolute;
        top: 65px;
        left: 0px;
        z-index: 1000;
        background: black;
        justify-content: center;
        height:100Vh;

      }

      .navbar ul li {
        margin: 15px 3px;
        display: block;
      }

      .menu-toggle {
        display: block;
      }
    .hook-text{
        max-width: 100%;
        display: block;
        text-align: center;
        color:white;
        margin: 0 auto;
      
      }
      /* the image in the hero section is hidden in mobile view*/
      .hook-image{
        display: none;
        margin-left:0px;
      }
      .hook-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: white;
  margin: 0 auto;
  padding:0px;
}
.bubble-hero {
  align-items: center;
  justify-content: center;
  align-content:center;
  margin: 0 auto;
    flex-direction: column;
    padding: 20px; /* smaller padding for mobile */
  }
       
}
.hook-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color:white;
}
 }
 /* RESPONSIVE EFFECT OF THE NAVBAR AND HERO SECTION */

   .lazy-content {
  opacity: 0; /* Initially hide the lazy content */
  transform: translateY(50px); /* Move it down a bit to create a fade-in effect */
 transition: opacity 0.5s, transform 0.7s;
}
 .lazy-contenz {
  opacity: 0; /* Initially hide the lazy content */
  transform: translateX(50px); /* Move it down a bit to create a fade-in effect */
 transition: opacity 0.5s, transform 0.9s;
}
.about-us{
  margin: 20px 0px;
  max-width:100%;
   height: auto;
   padding: 2px;
 

}
.about-container{
  display: flex;
    flex-wrap: wrap;
   gap:15px;
  justify-content: center;
  max-width: 100%;
  padding: 20px;
    }
    .about-content{
      flex : 1 1 400px;
      text-align: center;
      color:white;
      padding: 8px;
      margin: 0 auto;
    }
    .car{
  width:100%;
  aspect-ratio: 16/9;
}
/*======styles for how it works section=======*/
.product-container {
  display: flex;
  flex-wrap: wrap;
   gap:20px;
  justify-content: center;
  margin:0 auto;
  max-width: 100%;
  padding-left: 10px;
}

.product-card {
  background: #080303;
  border-radius: 16px;
  box-shadow: 0 4px 3px rgba(225, 179, 0),
              0 2px 2px rgba(225, 179, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  flex: 1 1 calc(25% - 1.5rem);
  max-width: calc(20% - 1.5rem);
  text-align: center;
  padding: 10px;
  color:white;
  margin: 0 auto;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25),
              0 6px 10px rgba(0, 0, 0, 0.10);
}

.product-card img {
  width: 80%;
  height: 80px;
  object-fit: contain;
  
}

.product-card h3 {
  margin: 1rem;
  font-size: 1.2rem;
  color: #746f6f;
  text-align: center;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .product-card {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
  }
}

@media (max-width: 600px) {
  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
 .lazy-content {
  opacity: 0; /* Initially hide the lazy content */
  transform: translateY(50px); /* Move it down a bit to create a fade-in effect */
 transition: opacity 0.5s, transform 0.7s;
}
.product-container{
justify-content: center;
text-align: center;

}
.works{
  max-width:100%;
   height: auto;
  background-color:  #f5f6fa;
  text-align: center;
  justify-content: center;
  padding: 15px;

}

/*key features stylez */
.brands{
  display: flex;
  flex-wrap: wrap;
   gap:20px;
  justify-content: center;
  margin:0 auto;
  max-width: 100%;
  padding: 10px;
}

.brand-child{
   background: black;
   flex:  1 1 250px;
   color:white;
  padding: 20px;
  text-align: center;
  max-width: 400px;
  height: 370px;
  border-radius: 12px;
 box-shadow:  0 4px 3px rgba(225, 179, 0),
              0 2px 2px rgba(225, 179, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   transition: transform 1s ease;
}
.brand-child:hover img {
  transform: scale(1.09);    /* zoom out slightly on hover */
}

.main{
  background: inherit;
  padding: 10px;
  margin-top: 20px;}
  .brand-child img{
    width:20%;
     max-width: 100%;
  }

.road-map{
  width:100%;
  height: 700px;
   transition: transform 0.4s 
  /*
  background-image: url('accessories/roadmap.jpg');
  aspect-ratio: 16/9;
  background-size: cover;

  background-repeat: no-repeat; */
}
.road-map img{
  max-width: 100%;
  aspect-ratio: 16/9;
}
.road-map:hover img {
  transform: scale(1.09);    /* zoom out slightly on hover */
}
/* footer */
.footer {
  background-color: black;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height:auto;
   max-width: 100%;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #374151;
  padding-bottom: 30px;
}

.footer-section {
  flex: 1 1 100px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f9fafb;
}

.footer-section p,
.footer-section a {
  margin: 5px 0;
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
}

.footer-section a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 20px;
  color: #d1d5db;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #60a5fa;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
.brand-child{
    height:auto;
    
}
  
.road-map{
  height: 250px;

}
  .footer-section {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-bottom {
    text-align: left;
  }
}
