<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>New Trust Solutions</title>
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-white text-gray-800 font-sans">

  <!-- Navbar -->
  <header class="bg-blue-900 text-white shadow">
    <div class="max-w-7xl mx-auto px-4 py-4 flex justify-between items-center">
      <h1 class="text-xl font-bold">New Trust Solutions</h1>
      <nav class="space-x-4">
        <a href="#about" class="hover:underline">About</a>
        <a href="#services" class="hover:underline">Services</a>
        <a href="#contact" class="hover:underline">Contact</a>
      </nav>
    </div>
  </header>

  <!-- Hero -->
  <section class="bg-blue-100 py-20 text-center">
    <h2 class="text-4xl font-bold mb-4">Empowering Trust Through Technology</h2>
    <p class="text-lg max-w-xl mx-auto">AI-powered title search solutions for Mortgage Lenders, Title Companies, Law Firms, and Real Estate Professionals.</p>
  </section>

  <!-- About -->
  <section id="about" class="max-w-5xl mx-auto px-4 py-16">
    <h3 class="text-2xl font-semibold mb-4">Who We Are</h3>
    <p class="mb-4">We at New Trust Solutions specialize in providing AI-powered Title searches. With years of expertise in the industry, we ensure accurate, efficient, and compliant title services to streamline your workflow.</p>

    <h4 class="text-xl font-semibold mt-6 mb-2">Our Mission</h4>
    <p class="mb-4">To simplify and accelerate title processing through innovative solutions, cost-effective outsourcing, and a commitment to accuracy and compliance.</p>

    <h4 class="text-xl font-semibold mt-6 mb-2">Our Story</h4>
    <p class="mb-4">Founded in 2025, NTS began with a mission to revolutionize title processing through accuracy, efficiency, and technology. From a small passionate team to a nationwide service provider, our growth reflects our dedication.</p>

    <h4 class="text-xl font-semibold mt-6 mb-2">Why Choose Us</h4>
    <ul class="list-disc pl-6">
      <li>Team of well-experienced professionals</li>
      <li>Shorter Turn times</li>
      <li>Unmatched quality on our deliverables</li>
      <li>Advanced InfoSec controls</li>
      <li>Cost-effective solutions</li>
    </ul>
  </section>

  <!-- Services -->
  <section id="services" class="bg-gray-100 py-16">
    <div class="max-w-5xl mx-auto px-4">
      <h3 class="text-2xl font-semibold mb-6">Our Services</h3>
      <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
        <div class="bg-white p-4 shadow rounded">Title Search & Examination</div>
        <div class="bg-white p-4 shadow rounded">Property Reports</div>
        <div class="bg-white p-4 shadow rounded">Property Tax Certs</div>
        <div class="bg-white p-4 shadow rounded">Mortgage & Lien Searches</div>
        <div class="bg-white p-4 shadow rounded">Policy Typing</div>
        <div class="bg-white p-4 shadow rounded">HOA Ordering / Verification</div>
      </div>
    </div>
  </section>

  <!-- Technology -->
  <section class="max-w-5xl mx-auto px-4 py-16">
    <h3 class="text-2xl font-semibold mb-4">Our Technology</h3>
    <ul class="list-disc pl-6">
      <li>AI and Machine Learning – Title and Tax search</li>
      <li>Cloud-based processing – Secure processing of reports</li>
      <li>API Integration – Integrates into all major platforms</li>
    </ul>
  </section>

  <!-- Contact -->
  <section id="contact" class="bg-blue-50 py-16">
    <div class="max-w-xl mx-auto px-4">
      <h3 class="text-2xl font-semibold mb-4 text-center">Contact Us</h3>
      <form class="bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4">
        <div class="mb-4">
          <label class="block text-gray-700 text-sm font-bold mb-2">Name</label>
          <input class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700" type="text" placeholder="Your Name">
        </div>
        <div class="mb-4">
          <label class="block text-gray-700 text-sm font-bold mb-2">Email</label>
          <input class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700" type="email" placeholder="you@example.com">
        </div>
        <div class="mb-6">
          <label class="block text-gray-700 text-sm font-bold mb-2">Message</label>
          <textarea class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700" rows="4" placeholder="Your message"></textarea>
        </div>
        <div class="flex items-center justify-center">
          <button class="bg-blue-900 text-white px-6 py-2 rounded hover:bg-blue-800" type="submit">Send</button>
        </div>
      </form>
    </div>
  </section>

  <!-- Footer -->
  <footer class="bg-blue-900 text-white text-center py-6">
    <p>&copy; 2025 New Trust Solutions. All rights reserved.</p>
  </footer>

</body>
</html>