body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


.header {
    background: linear-gradient(135deg, #071507, #021b2f);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.logo {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navigation {
    text-align: justify;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    padding: 2px;
    background-color: rgba(4, 73, 86, 0.848);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 2px;
  }
  
  .navigation a:hover {
    background-color: rgba(8, 223, 101, 0.725);
  }
  

.header::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300%;
    height: 300px;
    background: radial-gradient(circle at top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    border-radius: 50%;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .logo {
        font-size: 24px;
    }
}

.headnav {
background-color: lightskyblue;
color: auto;
padding: 2px 5px;
border-radius: 5px;
text-decoration: none;
margin: 1px;
display: inline-block;
color: auto;
}

.headnav2 {
background-color: lightseagreen;
color: auto;
padding: 2px 5px;
border-radius: 5px;
text-decoration: none;
margin: 1px;
display: inline-block;
}
.user {
display: none;
align-items: center;
}
button {color: #846868;
margin-left: 10px; margin-right: 10px;
border-radius: 20px;

}
buttona {color: #846868;
    margin-left: 10px; margin-right: 10px;
    border-radius: 90%;
    height: 20px;
    border: none;
    }



.container {
  display: flex;
  justify-content: space-between;
}

.left-box1 {
  width: 20%; /* Adjust width as needed */
  border: 1px solid #cccccc00;
  margin-top: 2px;
  
}
.right-box1 {
  width: 80%; /* Adjust width as needed */
  border: 1px solid #cccccc00;
  margin-top: 2px;
}


 /* Product grid styles */
 .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px;
    padding: 1px;
    justify-items: center;
    margin-left: 2px;
    margin-right: 2px;
    
}

.product {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product li{
    font-size: 2vh;
}
.product h2 {
    font-size: medium;
}
.product h3 {
    font-size: small;
}
.product p{
    font-size: smaller;
    font-style: italic;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    max-width: 30px;
    max-height: 30px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.product-details {
    padding: 10px;
    text-align: left;
}

.product-title {
    margin-top: 0;
    font-size: smaller;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.product-price {
    font-size: smaller;
    color: #4caf50;
    margin-top: 5px;
}

.buy-now-btn {
    display: inline-block;
    background-color: #218124;
    color: #fff;
    padding: 3px 10px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin: 2px;
}

.buy-now-btn:hover {
    background-color: #45a097;
}

/* Footer styles */
footer {
    background-color: #044b43;
    color: #f3eeee;
    text-align: center;
    padding: 20px 0;
  }
  
  footer p {
    margin: 0;
    font-size: 14px;
  }
  img {
    max-height: 30px;
    max-width: 30px;
  }
/* CSS for the moving ribbon */
.moving-ribbon {
    position: relative;
    overflow: hidden;
    height: 100px; /* Adjust height as needed */
    margin: 0 auto;
    background: url(images/banner.jpg) center center no-repeat;
    background-size: cover;
}

.moving-ribbon .container-fluid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    animation: move 20s linear infinite;
}

.moving-ribbon .owl-carousel.clients {
    display: flex;
    animation: moveItems 20s linear infinite;
}

.moving-ribbon .owl-carousel.clients .item {
    margin-right: 20px;
}

/* Keyframe animations */
@keyframes move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes moveItems {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}