*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.nav-bar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   /* position: fixed; */  
}


.nav-menu{
    display: flex;
    text-decoration: none;
    /* justify-content: center; */
    align-items: center;
    cursor: pointer;
    list-style: none;
   gap: 25px;
}



.nav-menu li a{
    text-decoration: none;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    
    
}


.nav-menu li a:hover{
 color: blue;
}


.nav-bar img{
    height: 40px;
    width: 40px;
    position: relative;
    top: 15px;
    left: 30px;
    
}

 .search{
 display: flex;
 align-items: center;
 
 }

 input{
    height: 40px;
    width: 450px;
    background-color:rgb(235,235,235) ;
    border: none;
 }

 input::placeholder {
    color: black; /* Placeholder text color */
}

 
 .action-container{
    display: flex;
    gap: 5px;
    margin-right: 60px;
    cursor: pointer;
 }

 .action-container img{
    height: 30px;
    width: 30px;
 }

.banner{
    display: flex;
    justify-content: center;
 margin-top: 130px;
}
 .banner img{
    width: 90%;
    height: 400px;
 }


 @keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
 }

.logos{
    padding: 45px 0;
    overflow: hidden;
      white-space: nowrap;
      position: relative;

}

.logos::before,
.logos::after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos::before{
  
    left: 0;
    background: linear-gradient(to left,rgba(255,255,255,0),white);
   
}

.logos::after{
  
    right: 0;
    background: linear-gradient(to right,rgba(255,255,255,0),white);
}




.logos-slide{
    display: inline-block;
    
    animation: 10s slide infinite linear;
}

 .logos-slide img{
    height: 60px;
    margin: 0 40px;
    
 }



 .items-container{
   margin: 50px 10%;
   width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;

 }

 .item-container{
     width: 250px;
     padding: 5px;
     
 }

 .item-image{
   width: 100%;
  
 }

 .rating{
    font-size: 12px;
    font-weight: 700;
 }

 .company-name{
    margin-top: 15px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #282c3f;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
 }


 .item-name{
    color: #535766;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0;
    margin-top: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    display: block ;
 }


.price{
    font-size: 14px;
    line-height: 15px;
    color:#282c3f; ;
}


.current-price{
    font-size: 14px;
    font-weight: 700;
    color: #282c3f;
}


.orignal-price{
    text-decoration: line-through;
    color: #7e818c;
    font-weight: 400;
    margin-left: 5px;
    font-size: 12px;
}


.discount{
    color: #ff905a;
    font-weight: 400;
    font-size: 12px;
    margin-left: 5px;
}


.btn-add-bag{
    margin-top: 8px;
    padding: 3px 0px;
    width: 100%;
    background-color: rgb(177,177,255);
    border: none;
    padding: 5px 15px;
    border-radius: 10px;
    color: black;
    cursor: pointer;
}

.btn-add-bag:hover {
    background: green;
    color: white;
}

.bag-item-count{
    background-color: #f16565;
    white-space: noWrap;
    text-align: center;
    line-height: 18px;
    padding: 0 6px;
    height: 18px;
    position: relative;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    left: 15px;
    top: 5px;
    font-weight: 700;
    cursor: pointer;

}


.footer_container {
    padding: 30px 0px 40px 0px;
    background: rgb(217,217,217);
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

.footer_column {
    display: flex;
    flex-direction: column;
}

.footer_column h3 {
    color: #282c3f;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer_column a {
    color: #696b79;
    font-size: 15px;
    text-decoration: none;
    padding-bottom: 5px;
}

.copyright {
    color: #94969f;
    text-align: end;
    padding: 15px;
}



 