/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white url('../public/back.jpg') no-repeat center;
    background-size: cover;
    color: #333;
  padding-bottom: 60px; /* Add space for footer */
  }
  
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #dfe922;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .site-header .logo img {
    max-height: 50px;
  }
  
  .site-header .navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .site-header .navigation ul li {
    margin: 0 10px;
  }
  
  .site-header .navigation ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .company-info {
    text-align: center;
    padding: 20px;
  }
  
  .catalogue {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .catalogue .item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
  }
  
  .catalogue .item img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
/* Footer fixed to bottom of the page */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #dfe922;
  color: #555;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
  

  /* Frosted glass effect for company container */
.company-container {
  display: inline-block;
  padding: 20px 40px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.company-container h1 {
  font-size: 3rem; /* Increase font size */
  color: white; /* White text color */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Text shadow effect */
  margin: 0;
}

.i888{
  color: rgb(0, 0, 0);
}

.strip{
  background-color: #dfe922;
  width: 90vw;
}

.about {
  display: inline-block;
  padding: 20px 40px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: white;
  text-align:center;
}
