.logos{
   font-size: 1.5rem;
  font-weight: bold;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.logos a{
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.logos img{
  height: 50px;
  border-radius: 50px;
}



nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;

}

nav ul li a:hover {
  color: #00ffff;
}


.navz {
  height:50px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
}

.nav-inside ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px; /* Space between menu items */
}

.nav-inside ul li a {
    text-decoration: none;
    color: #000; /* Change to your desired color */
    font-weight: bold;
}




.container-home {
  background: url('../IRONWILL-ASSETS/home-page-background.png') no-repeat center center/cover;
  padding: min(2.5rem,4rem, 8%);
  position: relative;
  overflow: hidden;
  z-index: 4;

}

.back-video{
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;

}


/* Hero Layout */
main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80vh;
  padding: 2rem 0;

}


/* Hero Text Center Left */
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  /* max-width: 550px; */
  max-width: 1000px;
  z-index: 10;
      color: white;

}

.hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  line-height: 1;
  letter-spacing: 5px;
      color: white;
}

.hero-text h2{
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
      color: white;

}

.hero-text p {
  font-size: 1.5rem;
  letter-spacing: 1px;
  max-width: 500px;
  margin: 12px 0;
  color: #cfcfcf;
  word-spacing: 2px;
}

.btn {
  background: #5100ff;
  color: #fff;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s ease;
  width: fit-content;
} 

.btn:hover {
  background: #7d33ff;
}


.robot-image {
  background: url('../IRONWILL-ASSETS/home-page-img.png') no-repeat center/cover;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  z-index: 0;
}

.product-shop-container{

  height: 300px;
  width: 400px;
  margin-bottom: 1rem;
}

.product-shop-container img{
  height: 100%;
}


/* #product-row{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

#get_product{
  padding: 1rem;
  margin: 1rem;
} */