/*add sky blue*/
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global Styles */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  /* Header Styles */
  header {
    background: #ffffff;
    border-bottom: 2px solid #4caf50;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  .logo h1 {
    color: #4caf50;
  }
  nav ul {
    list-style: none;
    display: flex;
  }
  nav ul li {
    margin-left: 20px;
  }
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  nav ul li a:hover {
    color: #4caf50;
  }
  
  /* Landing Section */
  /* #landing {
    background: url('images/Landing/land 2.jpeg') no-repeat center center/cover;
    color: #000;
    text-align: center;
    padding: 163px 20px;
  } */

  
  #landing {
    position: relative;
    height: 100vh;
    color: #000;
    text-align: center;
    padding: 163px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
  }
  

  .landing-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .landing-container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  .btn {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  .btn:hover {
    background: #45a049;
  }
  
  /* About Section */
  #about {
    background-color: #f9f9f9;
    text-align: center;
    padding: 163px 20px;
  }
  #about h2 {
    margin-bottom: 20px;
    color: #4caf50;
  }
  #about p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Products Section */
  #products {
    padding: 163px 20px;
    text-align: center;
  }
  #products h2 {
    margin-bottom: 40px;
    color: #4caf50;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .product-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 4px;
    transition: transform 0.3s ease;
  }
  .product-item:hover {
    transform: translateY(-5px);
  }
  .product-item img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
  }
  .product-item h3 {
    margin-bottom: 10px;
    color: #4caf50;
  }
  .product-item p {
    font-size: 0.9rem;
  }
  
  /* Contact Section */
  #contact {
    background-color: #f9f9f9;
    padding: 60px 20px;
  }
  #contact h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #4caf50;
  }
  #contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  #contact form label {
    margin: 10px 0 5px;
    font-weight: bold;
  }
  #contact form input,
  #contact form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
  }
  #contact form button {
    margin-top: 20px;
    padding: 10px;
    background: #4caf50;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  #contact form button:hover {
    background: #45a049;
  }
  #willow{
    padding-left: 15em;
  }
  
  /* Footer */
  footer {
    background: #4caf50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  footer p {
    margin: 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
    }
    
    nav ul {
      flex-direction: column;
      margin-top: 10px; 
      display: none; 
      gap: 10px;
    }
    
    nav ul li {
      margin: 10px 0;
    }

    nav ul.show {
      display: flex;
    }

    .landing-container h2 {
      font-size: 2rem;
    }
  
    .landing-container p {
      font-size: 1rem;
    }
  
    #about, #products, #landing {
      padding: 80px 15px;
    }
  
    .product-grid {
      grid-template-columns: 1fr;
    }
  
    #willow {
      padding-left: 0;
    }

    .menu-toggle {
      display: block;
    }

  }
  
  img {
    max-width:100%;
    height: auto;
  }


  /* Client Logos Section */
#client-logos {
  text-align: center;
  margin-top: 40px;
}

#client-logos h3 {
  font-size: 1.5rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.logo-gallery {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.logo-gallery img {
  max-width: 150px;
  height: auto;
  margin: 10px;
  transition: transform 0.3s ease-in-out;
}

.logo-gallery img:hover {
  transform: scale(1.1);
}
