 /* 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;
}

   video{
    width: 45%;
    
}


    .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;
    }
    .product {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      padding: 20px;
      text-align: center;
    }
    .product img {
      max-width: 100%;
      border-radius: 8px;
    }
    .product h3 {
      margin: 15px 0 10px;
    }
    .product p {
      font-size: 0.95rem;
    }
  
    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;
    }


 

    .hero {
      background: linear-gradient(to right, #1e8d4c, #49c16e);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }
    .hero h1 {
      font-size: 2.5em;
      margin-bottom: 10px;
    }
    .hero p {
      font-size: 1.2em;
      max-width: 700px;
      margin: 0 auto;
    }
    .section {
      padding: 40px 20px;
      max-width: 900px;
      margin: auto;
    }
    .section h2 {
      color: #1e8d4c;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .feature {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .cta {
      text-align: center;
      margin: 40px 0;
    }
    .cta a {
      background: #1e8d4c;
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }
    .cta a:hover {
      background: #146637;
    }

 
 /* 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: 30%;
      
  }
video{
    width: 45%;
    
}
}
  
  



