34089-vm/index.php
Flatlogic Bot 5ba3cee529 1.3
2025-09-16 09:43:13 +00:00

132 lines
6.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Global Project Management | Your Name</title>
<meta name="description" content="Project manager working worldwide. No limits, only time zones and client needs. Let's build together.">
<!-- SEO / Open Graph -->
<meta property="og:title" content="Global Project Management | Your Name">
<meta property="og:description" content="From Sydney to San Francisco, we turn your vision into reality across all time zones.">
<meta property="og:image" content="https://picsum.photos/seed/luxury-abstract-dark/1200/600">
<meta property="og:url" content="">
<meta property="og:type" content="website">
<!-- Bootstrap 5 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-transparent position-absolute w-100" style="z-index: 100;">
<div class="container">
<a class="navbar-brand" href="#">PM Global</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#map-section">Global Reach</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="testimonials.php">Testimonials</a></li>
<li class="nav-item"><a class="nav-link" href="case-studies.php">Case Studies</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero">
<div class="container">
<h1 class="display-4">Global Project Management, Seamlessly Delivered</h1>
<p class="lead">From Sydney to San Francisco, we turn your vision into reality across all time zones. No limits, just solutions.</p>
<a href="#contact" class="btn btn-primary btn-lg">Book a Call</a>
</div>
</header>
<main>
<!-- Map Section -->
<section id="map-section" class="section">
<div class="container">
<h2 class="section-title">Our Global Footprint</h2>
<p class="text-center text-secondary mb-5">We connect with clients and projects all over the world. The sun never sets on our work.</p>
<div id="map"></div>
</div>
</section>
<!-- About Section -->
<section id="about" class="section section-bg">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h2 class="section-title text-start">Borderless Execution</h2>
<p class="text-secondary">Your project deserves a manager who operates on your time, wherever you are. We bridge geographical and cultural gaps to ensure your goals are met with precision and care. Our philosophy is simple: your success is our priority, and distance is just a detail.</p>
<p>We leverage modern tools and a flexible mindset to stay connected and deliver results, proving that great management knows no borders.</p>
</div>
<div class="col-lg-6 mt-4 mt-lg-0">
<img src="https://picsum.photos/seed/modern-boardroom/800/600" class="img-fluid shadow" alt="A modern boardroom with a large window overlooking a city, symbolizing strategic vision and success.">
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<div class="container">
<h2 class="section-title">Let's Build Together</h2>
<p class="text-center text-secondary mb-5">Have a project in mind? Let's talk. Fill out the form below to schedule a consultation.</p>
<div class="row justify-content-center">
<div class="col-lg-8">
<form id="contactForm" novalidate>
<div class="mb-3">
<label for="name" class="form-label visually-hidden">Name</label>
<input type="text" class="form-control" id="name" name="name" placeholder="Your Name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label visually-hidden">Email</label>
<input type="email" class="form-control" id="email" name="email" placeholder="Your Email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label visually-hidden">Message</label>
<textarea class="form-control" id="message" name="message" rows="5" placeholder="Tell us about your project" required></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>&copy; <?php echo date("Y"); ?> PM Global. All Rights Reserved.</p>
<p>Operatating worldwide to bring your ideas to life.</p>
</div>
</footer>
<!-- Toast Container -->
<div id="toast-container" class="toast-container"></div>
<!-- Bootstrap 5 JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Leaflet JS -->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<!-- Custom JS -->
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>