<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Connecticom Global Network Inc.</title>
  <link rel="stylesheet" href="style.css" />
</head>
<body>

<!-- Home Anchor Fix -->
  <div id="home"></div>
 
  <!-- Header -->
  <header>
    <div class="container nav-container">
      <a href="#" class="logo">
        <img src="logo.png" alt="Connecticom Global Network Logo" />
      </a>
      <nav>
        <a href="#home">Home</a>
        <a href="#about">About</a>
        <a href="#services">Services</a>
        <a href="#contact">Contact</a>
      </nav>
    </div>
  </header>

  <!-- Hero Section -->

<section class="hero">
  <div class="hero-content">
    <h1>BUILDING YOUR FUTURE</h1>
    <p>Reliable. Affordable. Professional Construction Solutions.</p>
    <a href="#contact" class="btn">Request a Quote</a>
  </div>
</section>


  <!-- About Section -->
<section id="about" class="about">
  <div class="container">
    <h2>About Us</h2>
    <p>
      Connecticom Global Network Inc. is a trusted design-and-build company based in Pasig City, Metro Manila.
      With over a decade of expertise, we specialize in general engineering, interior fit-out services,
      and electro-mechanical maintenance for both commercial and residential clients.
    </p>
    <br />
    <p>
      We take pride in delivering end-to-end construction solutions, from concept to completion, across the Philippines—serving areas like Manila, Bulacan, Cebu, Davao, Bacolod, and Clark.
      Our team is composed of dedicated professionals, including project architects, engineers, designers, and skilled tradespeople, committed to excellence in every project.
    </p>
    <br />
    <p>
      At Connecticom, our mission is to build better spaces for a better future—combining innovation, integrity, and performance in every project we handle.
    </p>
  </div>
</section>


<!-- Services Section -->
<section id="services" class="services">
  <div class="container">
    <h2>Our Services</h2>
    <div class="service-grid">

      <div class="service">
        <h3>Residential Construction</h3>
        <p>From foundation to finish, we bring dream homes to life.</p>
      </div>

      <div class="service">
        <h3>Commercial Projects</h3>
        <p>High-quality, large-scale commercial buildings done on time.</p>
      </div>

      <div class="service">
        <h3>Renovations</h3>
        <p>Modernize or restore your property with expert craftsmanship.</p>
      </div>

      <div class="service">
        <h3>Interior Fit-Out</h3>
        <p>Customized office, retail, and residential interiors tailored to your style and function.</p>
      </div>

      <div class="service">
        <h3>Design & Build</h3>
        <p>Integrated architectural design and construction services for seamless project delivery.</p>
      </div>

      <div class="service">
        <h3>Electro-Mechanical Maintenance</h3>
        <p>Preventive and corrective maintenance for electrical, HVAC, and other building systems.</p>
      </div>

      <div class="service">
        <h3>Project Management</h3>
        <p>End-to-end construction oversight ensuring quality, cost-efficiency, and deadlines are met.</p>
      </div>

      <div class="service">
        <h3>Site Development</h3>
        <p>Land preparation, grading, utilities, and structural groundwork for construction-ready sites.</p>
      </div>

    </div>
  </div>
</section>


  <!-- Contact Section -->
  <section id="contact" class="contact">
    <div class="container">
      <h2>Contact Us</h2>
      <p>Email: francis.manubay@connecticom.co | Phone: +63 912 345 6789</p>
    <form action="https://formsubmit.co/francis.manubay@connecticom.co" method="POST">
  <!-- Optional: Custom Subject, Captcha Off, and Template -->
  <input type="hidden" name="_subject" value="New message from Connecticom Website">
  <input type="hidden" name="_captcha" value="false">
  <input type="hidden" name="_template" value="table">

  <!-- Visible Inputs -->
  <input type="text" name="name" placeholder="Your Name" required />
  <input type="email" name="email" placeholder="Your Email" required />
  <textarea name="message" placeholder="Your Message" required></textarea>
  <button type="submit">Send Message</button>
</form>

    </div>
  </section>

  <!-- Footer -->
  <footer>
    <div class="container">
      <p>&copy; 2025 Connecticom Global Network Inc. All rights reserved.</p>
    </div>
  </footer>

</body>
</html>