
  /* Inline CSS for demo; separate file recommended */
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background: #f2fdf9;
      color: #333;
    }
   
    .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  width: auto;
}

.header-text h1 {
  margin: 0;
  font-size: 2rem;
  color: #222;
}

.header-text p {
  margin: 5px 0 0;
  color: #222;
}

    
    nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #1e8d4c;
  padding: 10px 0;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Toggle button (mobile only) */
.nav-toggle {
  display: none;
  background: #1e8d4c;
  color: white;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
}

   
  img{
      width: 55%;
  }
    

    
    .hero {
      background: url('hero-image.jpg') no-repeat center center/cover;
      padding: 100px 20px;
      text-align: center;
      color: #222;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    .btn {
      background: #27ae60;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
    }
    
     video{
       width: 45%;
   }
   
   
    
    .section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }
    
    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    

    

.products-container {
  display: flex; /* Makes the container a flex container */
  flex-wrap: wrap; /* Allows items to wrap to the next line if space is limited */
  gap: 20px; /* Adds space between product boxes */
  justify-content: center; /* Centers the product boxes horizontally */
  align-items: stretch; /* This is key! It makes all flex items (product boxes) the same height */
}

.product {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  flex: 1 1 300px; /* Allows product boxes to grow, shrink, and sets a base width */
  display: flex; /* Makes the product itself a flex container */
  flex-direction: column; /* Stacks content vertically */
  justify-content: space-between; /* Pushes content apart, pushing the add-to-cart button to the bottom */
}

.product img {
  max-width: 100%;
  height: auto; /* Ensures aspect ratio is maintained */
  border-radius: 8px;
  object-fit: contain; /* Ensures the entire image is visible, scales down if needed */
  margin-bottom: 10px; /* Space below the product image */
}

.product h3 {
  margin: 15px 0 10px;
}

.product p {
  font-size: 0.95rem;
  flex-grow: 1; /* Allows the paragraph to take up available space, pushing subsequent elements down */
  display: flex; /* Added for vertical centering of text if needed within the paragraph's height */
  align-items: center; /* Vertically centers text within its allocated space */
  justify-content: center; /* Horizontally centers text within its allocated space */
  margin-bottom: 15px; /* Space below the paragraph before the button */
}
 
    
    
    

    footer {
      background: #222;
      color: #ccc;
      padding: 40px 20px;
      text-align: center;
    }
    .footer-links a {
      color: #ccc;
      margin: 0 10px;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }


  
 /* Responsive navigation layout for screens below 768px */
@media (max-width: 768px) {
  
   .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  nav.show {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }


   
  
  img{
      width: 55%;
      
  }
video{
    width: 45%;
    
}
}
  
  

 
    
  
