<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Nexa Talent X</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background-color: #f9f9f9;
    }
    .container {
      padding: 20px;
    }
    header {
      text-align: center;
      padding: 20px 0;
    }
    header h1 {
      font-size: 2.5rem;
      font-weight: bold;
    }
    header p {
      color: #555;
    }
    .btn {
      display: inline-block;
      padding: 10px 20px;
      margin-top: 10px;
      color: #fff;
      background-color: #007bff;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      cursor: pointer;
    }
    .btn:hover {
      background-color: #0056b3;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 20px 0;
    }
    .card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .card h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    .cta {
      background-color: #f1f1f1;
      padding: 20px;
      text-align: center;
      border-radius: 10px;
      margin: 20px 0;
    }
    footer {
      text-align: center;
      padding: 10px 0;
      background: #333;
      color: #fff;
      margin-top: 20px;
    }
  </style>
</head>
<body>
  <div class="container">
    <!-- Header Section -->
    <header>
      <h1>Welcome to Nexa Talent X</h1>
      <p>Connecting global businesses with skilled workforce from emerging economies.</p>
      <a href="#" class="btn">Get Started</a>
    </header>

    <!-- Features Section -->
    <section class="grid">
      <div class="card">
        <h2>For Businesses</h2>
        <p>Access cost-effective, skilled talent to execute projects and optimize your business.</p>
        <a href="#" class="btn" style="background-color: #28a745;">Post a Project</a>
      </div>
      <div class="card">
        <h2>For Workforce</h2>
        <p>Showcase your skills and connect with global companies to secure projects.</p>
        <a href="#" class="btn">Create a Profile</a>
      </div>
      <div class="card">
        <h2>Why Choose Us</h2>
        <p>A trusted platform bridging companies in North America and Europe with talent from India and Mexico.</p>
      </div>
    </section>

    <!-- Call to Action Section -->
    <section class="cta">
      <h2>Ready to Transform Your Business?</h2>
      <p>Join Nexa Talent X today and start outsourcing smarter.</p>
      <a href="#" class="btn">Get Started as a Business</a>
      <a href="#" class="btn" style="background-color: #28a745;">Join as Workforce</a>
    </section>

    <!-- Footer Section -->
    <footer>
      <p>&copy; 2025 Nexa Talent X. All rights reserved.</p>
    </footer>
  </div>
</body>
</html>