112 lines
5.7 KiB
PHP
112 lines
5.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>Our Services | Flatlogic</title>
|
|
<meta name="description" content="Explore the services offered by Flatlogic, from web and mobile development to UI/UX design and project management.">
|
|
|
|
<!-- Bootstrap 5 -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- 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-dark">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="index.php">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="index.php#map-section">Global Reach</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="index.php#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="services.php">Services</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="team.php">Our Team</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="blog.php">Blog</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="index.php#contact">Contact</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Main Content -->
|
|
<main class="container mt-5 pt-5">
|
|
<section id="services" class="section">
|
|
<h1 class="section-title">Our Services</h1>
|
|
<p class="text-center text-secondary mb-5">We provide end-to-end solutions to bring your digital products to life.</p>
|
|
|
|
<div class="row g-4">
|
|
<div class="col-md-6">
|
|
<div class="card h-100">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Web Application Development</h5>
|
|
<p class="card-text">We build robust, scalable, and secure web applications tailored to your business needs. From complex enterprise solutions to sleek marketing sites, our team delivers high-quality code and a seamless user experience.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="card h-100">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Mobile Application Development</h5>
|
|
<p class="card-text">We create beautiful and intuitive mobile apps for iOS and Android. Our team can help you at any stage, from initial idea and prototyping to development, deployment, and maintenance.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="card h-100">
|
|
<div class="card-body">
|
|
<h5 class="card-title">UI/UX Design</h5>
|
|
<p class="card-text">Our design team creates engaging and user-friendly interfaces that not only look great but also drive user engagement and conversions. We focus on creating a seamless user journey that aligns with your brand identity.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="card h-100">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Project Management</h5>
|
|
<p class="card-text">With a certified Project Manager on board, we ensure your project is delivered on time and within budget. We use agile methodologies to adapt to changing requirements and provide full transparency throughout the development lifecycle.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-center mt-5">
|
|
<a href="index.php#contact" class="btn btn-primary btn-lg">Request a Quote</a>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer mt-5">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<p>© <?php echo date("Y"); ?> PM Global. All Rights Reserved.</p>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<h5>Stay Updated</h5>
|
|
<p>Subscribe to our newsletter for the latest insights.</p>
|
|
<form action="newsletter_signup.php" method="post">
|
|
<div class="input-group mb-3">
|
|
<input type="email" class="form-control" placeholder="Your Email" name="email" required>
|
|
<button class="btn btn-primary" type="submit">Subscribe</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap 5 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
</body>
|
|
</html>
|