<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Your Company Name</title>

  <style>

    body { font-family: Arial, sans-serif; margin:0; padding:0; line-height:1.6; }

    header { background:#004080; color:#fff; padding:20px 0; text-align:center; }

    nav { background:#003366; text-align:center; }

    nav a { color:#fff; padding:15px 20px; display:inline-block; text-decoration:none; }

    nav a:hover { background:#002244; }

    section { padding:50px 20px; max-width:1000px; margin:auto; }

    h1,h2,h3 { color:#004080; }

    .cta { display:inline-block; padding:10px 20px; background:#0080ff; color:#fff; text-decoration:none; margin-top:10px; }

    .cta:hover { background:#0059b3; }

    footer { background:#002244; color:#fff; text-align:center; padding:20px; }

    .services-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:20px; }

  </style>

</head>

<body>


<header>

  <h1>Your Company Name</h1>

  <p>Global Sourcing. Reliable Services. Sustainable Solutions.</p>

</header>


<nav>

  <a href="#home">Home</a>

  <a href="#about">About Us</a>

  <a href="#services">Services</a>

  <a href="#industries">Industries</a>

  <a href="#contact">Contact</a>

</nav>


<section id="home">

  <h2>Welcome</h2>

  <p>Since 2014, we have been a trusted partner in supplying raw materials, logistics solutions, and sustainable technologies to industries worldwide.</p>

  <a href="#contact" class="cta">Request Product or Machine Catalog</a>

</section>


<section id="about">

  <h2>About Us</h2>

  <p>Established in 2014, our company operates as part of a diversified group founded in 1988. We are known for integrity, reliability, and long-term partnerships.</p>

  <p><strong>Mission:</strong> To empower industries with reliable materials, innovative technologies, and sustainable solutions.</p>

  <p><strong>Vision:</strong> To be the preferred global partner for industrial supply, logistics, and renewable technologies.</p>

  <p><strong>Values:</strong> Integrity, Partnership, Sustainability, Excellence.</p>

</section>


<section id="services">

  <h2>Our Services</h2>

  <div class="services-grid">

    <div>

      <h3>Raw Materials Supply</h3>

      <p>We provide high-quality raw materials essential for textiles, carpets, plastics, and F&B industries.</p>

      <a href="#contact" class="cta">Request Full Product List</a>

    </div>

    <div>

      <h3>Freight & Logistics</h3>

      <p>End-to-end freight forwarding and shipping coordination to ensure seamless movement of goods globally.</p>

      <a href="#contact" class="cta">Get a Quote</a>

    </div>

    <div>

      <h3>Consulting Services</h3>

      <p>Advisory support in procurement, supply chain management, and operational efficiency.</p>

      <a href="#contact" class="cta">Get a Quote</a>

    </div>

    <div>

      <h3>Renewable Energy & Recycling Machines</h3>

      <p>Advanced machinery for sustainable production and energy efficiency, including recycling and renewable energy systems.</p>

      <a href="#contact" class="cta">Explore Our Machines Catalog</a>

    </div>

  </div>

</section>


<section id="industries">

  <h2>Industries & Clients Served</h2>

  <ul>

    <li><strong>Textile & Carpet:</strong> Fibers, yarns, dyes, and finishing materials for premium fabrics and carpets.</li>

    <li><strong>Plastics & Packaging:</strong> Polymers, resins, additives, and compounding solutions for versatile plastic products.</li>

    <li><strong>Food & Beverage:</strong> Food-grade ingredients, additives, and processing materials ensuring quality and compliance.</li>

    <li><strong>Recycling & Renewable Energy:</strong> Machinery, equipment, and materials enabling efficient waste processing and sustainable energy production.</li>

  </ul>

</section>


<section id="contact">

  <h2>Contact Us</h2>

  <p>Email: info@company.com</p>

  <p>Phone/WhatsApp: +XXX-XXXX-XXXX</p>

  <p>Address: Your Company HQ Address</p>

  <p><strong>Contact Form:</strong> Implement a form here or link to a service like Formspree/Google Forms.</p>

  <a href="#home" class="cta">Let’s Talk Business</a>

</section>


<footer>

  <p>Quick Links: Home | About | Services | Industries | Contact</p>

  <p>Part of [Group Name], established 1988</p>

  <p>Copyright © 2025 Your Company Name</p>

</footer>


</body>

</html>