*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;

}

.bold{
    font-weight: bold;
}

a{
    text-decoration: none;
    color: black;
}

/* navbar styling-------------------- */

.navbar{
    display: flex;
    justify-content: space-between;
    padding: 8px 30px;
    background-color: #f2f2f2;
    border-bottom: 4px solid #fff;
    height: fit-content;
}

.logo-box{
    display: flex;
    align-items: center;
}

.logo{
    color: #4b0caf;
    font-weight: 600;
}

#select-option{
    padding: 5px;
    font-size: 14px;
    border: none;
    background-color: #f2f2f2;
}

.product-search-container{
    position: relative;
    
}

.product-search-input{
    padding: 5px;
    width: 40rem;
    height: 40px;
    border: 1px solid #000;
    border-radius: 5px;
}

.search-icon{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.select-location-container{
    padding-top: 10px;
}

.select-language-contaiiner{
    padding-top: 10px;
}

#select-language{
    padding: 5px;
    font-size: 14px;
    border: none;
    background-color: #f2f2f2;
}

.profile-img{
  font-size: 25px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 40px;
  color: blue;
  background-color: #fff;
  cursor: pointer;
}

.sell-product-btn{
    padding: 5px 20px;
    border: 5px solid #030303;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    border-color:  #70adc9;
    background: linear-gradient(109.6deg, rgb(204, 228, 247) 11.2%, rgb(237, 246, 250) 100.2%);
    color: #000;
}

.sell-product-btn:hover {
  background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); 
  transition: 0.6s;
}


.sell-icon{
    font-size: 20px;
    padding: 2px;
}



/* side-bar-stying ***********************************/

.sidedar-container{
  display: none;
}

.menu-icon {
  position: absolute; 
  top: 5px;          
  left: 15px;       
  font-size: 30px;
  cursor: pointer;
  z-index: 11;
}

.side-bar {
  height: 100%;
  width: 240px;
  background-color: #eeeeee;
  box-shadow: 1px 2px 20px 1px #8f8c8c;
  padding-top: 15px;
  position: fixed; 
  top: 0;
  left: -240px; 
  transition: left 0.3s ease;
  z-index: 10;
}

.side-bar.active {
  left: 0; 
}


.item {
  display: flex;
  align-items: center;
  padding: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  cursor: pointer;
}

#first-item {
  margin-top: 25px;
  padding-top: 20px;
}

.close-icon {
  font-size: 28px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.item:hover {
  border-radius: 7px;
  background-color: #c2baba;
  color: #000;
}

.icon-style {
  padding: 5px;
  padding-right: 12px;
  color: #2b2626;
  font-size: 18px;
}

.item-name {
  padding-top: 3px;
  color: #2b2626;
}

.menu-icon {
  padding: 15px;
  font-size: 30px;
  cursor: pointer;
}

/* sub-navbar------------------------------------------ */

.sub-navbar{
   width: 100%; 
   background-color: #fafafa;
}

.navbar-pages-container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%; 
    padding: 5px;
}


.enquiry-container{
    background-color: #ecf0f1;
    height: 60%;
    width: 70%;
    margin: 0px auto;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;

    border-radius: 15px;
}

.typeset{
   
    height: 450px;
    width: 430px;
    display: flex;
    flex-direction: row;
    position: relative;
    top: 40px;
}

.font-family{
    font-weight: bold;
    color: #2c3e50;
}
.text-centre{
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.input-typeset{
  
    height: 50%;
    width: 40%;
    display: block;
    margin-left: 30px;
    margin-top: 30px;
}

.name{
    height: 35px;
    width: 320px;
    color: black;
    background-color: white;
    border-style: none;
    border-radius: 4px;
    margin-bottom: 20px;
    
}

.message{
    height: 100px;
    width: 320px;
    color: black;
    background-color: white;
    border-style: none;
    border-radius: 4px;
    margin-bottom: 20px;
}

.submit-btn{
    width: 320px;
    padding: 10px;
    background-color:#a2baca;
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer; 
    margin-bottom: 30px;
}

.submit-btn:hover{
    background-color: #2c3e50;
    border-radius: 20px;
    transition: 0.5s;
    color: white;
}


.image-container{
  margin-left: 20px;
}

.icon-enquiry{
    height: 25px;
    width: 25px;
    position: relative;
    top: 8px;
}

.icon-enquiry1{
    height: 20px;
    width: 20px;
    position: relative;
    top: 8px;
}

.enquiry-text{
 margin-left: 10px;
 position: relative;
 top:-9px;   
}

.typeset-container{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    height: 300px;
}









footer{
    background-color:  #2c3e50;
  }

  .footer-section{
    display: flex;
    justify-content: space-around;
    background-color:  #2c3e50;
    padding: 15px 10px;
    padding-top: 35px;
  }

  .footer-anchor-style{
    display: flex;
    flex-direction: column;
    padding: 5px;
  }

 .anchor-style{
  text-decoration: none;
  color: #ccc;
  padding-bottom: 3px;
 }

 .footer-heading-style{
  
  color: #ffffff;

  }

 .anchor-style:hover{
  color: #ffffff;
 }

 .footer-icon-style{
  color: #ccc;
  padding: 4px;
  font-size: 25px;
  cursor: pointer;

 }
  
 .footer-icon-style:hover{
  color: #ffffff;
 }

 .copy-right{
  color: #ccc;
  text-align: center;
  padding: 4px;
 }



 @media (min-width: 1025px) {
    /* Styles for desktops and larger screens */
  
    .product-search-input{
      width: 25rem;
      height: 40px;
  }
  
  .sell-product-btn{
    padding: 5px 12px;
    border: 5px solid #70adc9;
  }
  
  }
  
  
  @media (min-width: 769px) and (max-width: 1024px) {
    /* Styles for tablets and small laptops */
     
    .sidedar-container{
      display: block;
    }
  
    .product-search-input{
      width: 20rem;
      height: 40px;
  }
  
  .in-product-style{
    display: none;
  }
  
  .sell-product-btn{
    padding: 5px 20px;
    border: 5px solid #030303;
    border-radius: 10px;
    font-size: 12px;
    display: none;
  }
  
  .select-language-contaiiner{
    display: none;
  }
  
  .select-location-container{
    display: none;
  }
  
  .navbar-pages-container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%; 
    padding: 5px;
  }
  
  }
  
  
  
   @media (max-width: 768px) {
      
    .sidedar-container{
      display: block;
    }
  
    .product-search-input{
      width: 17rem;
      height: 40px;
  }
  
    .sell-product-btn{
      display: none;
    }
  
    .sub-navbar{
      display: none;
    }
  
    
    .select-language-contaiiner{
      display: none;
    }
    
    .select-location-container{
      display: none;
    }
  
    .user-profile{
      display: none;
    }
  
    .logo{
      font-size: 20px;
      padding-left: 10px;
    }
  
    .product-search-input{
      width: 20rem;
      height: 40px;
      border: 1px solid #000;
      border-radius: 5px;
  }
  
  
  .slider-main{
    height: 200px;
    border-radius: 40px;
  }
    
  .slider-img{
    height: 300px;
    height: 300px;
  }
  
  
  .product-main-head{
    display: block;
  }
  
  .product-pages-container{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    
  }
  
  .product-head-style{
    height: 50px;
    width: 50px;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 8px;
    border-radius: 10px;
  }
  
  .sub-nav-anchor-product i{
    color: #000;
    font-size: 25px;
    cursor: pointer;
  }
      
    .footer-section {
      display: flex;
      flex-direction: column; 
      align-items: center;
      gap: 20px; 
    }
  
    .popular-locations, .trending-locations, .about-us {
      text-align: center; 
    }
  
    .footer-heading-style {
      font-size: 18px; 
      margin-bottom: 10px; 
    }
  
    .locations, .site-about {
      display: flex;
      flex-direction: column; 
      align-items: center; 
      gap: 10px; 
    }
  
    .anchor-style {
      font-size: 14px; 
      margin: 5px 0; 
    }
  
    .social-icons {
      display: flex;
      justify-content: center; 
      gap: 15px; 
      margin-top: 10px;
    }
  
    .footer-icon-style {
      font-size: 24px;
    }
  
    .plane-line {
      margin: 20px auto;
      width: 80%; 
    }
  
    .copy-right {
      text-align: center; 
      font-size: 12px; 
      margin-top: 15px;
    }
  
  
  }