
@import url('https://fonts.googlespis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing:border-box ;
  /*font-family: 'Spartan',sans-serif;*/
}


h1{
  font-size: 50px;
  line-height: 64px;
  color:#222;
}

h2{
  font-size: 46px;
  line-height: 54px;
  color:#222;
}

h4{
  font-size: 24px;
  color:#222;
}

h6{
  font-weight: 16px;
  font-size: 12px;
  color:#222;
}

p{
  font-size:16px;
  color:#465b52;
  margin:15px 0 20px 0;
}

#header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 20px 80px;
  background-color: rgb(5, 0, 0);
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar{
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li{
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a{
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color:#fff;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active{
  color: rgb(253, 4, 4);
}

#navbar li a.active::after,
#navbar li a:hover::after{
  content:"";
  width:30%;
  height: 2px;
  background-color: #ff0303;
  position: absolute;
  bottom:-4px;
  left: 20px;
}

#mobile{
  display: none;
  align-items: center;
}

#close{
  display:none;
}

.logo {
  width: 10%;
  transition: filter 0.3s ease;
}

#hero{
  background-image: url("images/b1.png");
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero h3{
  color: #c0b8b8;
  padding-bottom:5px ;
}

#hero h2{
  color: #c0b8b8;
}

.body{
  width:100%;
}


#banner{
  background-image: url("images/banners/b3.webp");
  width: 100%;
  height: 80vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 16px;
}

#about{
  text-align: center;
  padding: 50px 100px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#about h2{
  font-size: 34px;
  font-family:'Poppins',sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 50px 50px 10px;
  align-items: center;
}

#about p{
  font-size: 1 rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #000000;
}

#services{
  padding-bottom: 50px;
}
#services h3{
  font-size: 34px;
  font-family:'Poppins',sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 50px 50px 30px;
}

.services-list {
  list-style:none;
  padding-left: 0;
  max-width: 700px;
  margin: 1rem ;
  text-align: left;
  line-height: 1.8;
}

.services-list li {
  font-family: 'poppins',sans-serif;
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items:flex-start;
  margin-bottom: 0.8rem;
  font-size: 16px;
}

.services-list .icon {
  margin-right: 10px;
  color: hsl(0, 100%, 38%); /* Optional: match site red */
  font-size: 1.2rem;
}

footer{
  background-color:rgb(7, 7, 7);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer h3{
  font-family:'poppins',sans-serif;
  color: white;
  margin: 0 30px 30px 0;
  padding-top:20px ;
}

footer h4{
  font-family:'poppins',sans-serif;
  color: #fffaf9;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 5px;
}

footer p{
  font-family:'poppins',sans-serif;
  color: #c0b8b8;
  font-size: 16px;
  margin: 0 0 8px 0;
}

.copyright {
  padding-top: 5px;
  text-align: center;
  font-size: 0.9rem;
  background-color: #020202;
}


@media(max-width:799px){
   
  #navbar{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width:300px;
    background-color: rgb(10, 9, 9);
    box-shadow: 0 40px 60px rgba(0,0,0,0.02);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  } 

  #navbar.active{
    right:0px;
  }

  #navbar li{
    margin-bottom: 25px;
  }


  #mobile{
    display: flex;
    align-items: center;
  }

  #mobile i{
    color:#fff;
    font-size: 24px;
    padding-left: 20px ;
  }

  #close{
    display: initial;
    position:absolute;
    top:30px;
    left:30px;
    color:white;
    font-size: 24px;
  }

  #hero{
    height: 70vh;
    padding: 0 80px;
    background-position: 30% right 30%;
  }
 
  #hero h3{
    font-size: 22px;
    color: #c0b8b8;
    padding-bottom:5px ;
  }

  #hero h2{
    font-size: 24px;
    color: #c0b8b8;
    padding-bottom:5px ;
    justify-content: center;
    text-align: center;
  }



  #about{
    text-align: center;
    padding: 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

}

@media(max-width:477px){

  #header{
    padding: 10px 30px;
  }

  h1{
    font-size: 38px;
  }

  h2{
    font-size: 32px;
  }

  #banner{
    padding:0 20px;
    background-position: 55%;
    margin-top: 0%;
  }

  .controls {
    justify-content: flex-start;
  }

  .controls select {
    width: 140;
    box-sizing: border-box;
  }

  #product1 .pro{
    margin: 15px;
    justify-content: center;
    width:100%;
  }
  
  #product1 .pro-container{
    margin: 15px;
    justify-content: center;
  }


  #prodetails{
    display:flex;
    flex-direction: column;
  }

  #prodetails .single-pro-image{
    width:100%;
    margin-right:0px;
  }

  #prodetails .single-pro-details{
    width: 100%;
  }

  #product1 .sectionf1 h2{
    padding:40px 0 20px 0 ;
    font-size: 20;
  }
}