180 lines
9.0 KiB
PHP
180 lines
9.0 KiB
PHP
<?php session_start(); ?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Medical Agency - Your Health is Our Priority</title>
|
|
<meta name="description" content="A leading medical agency providing top-tier health services, patient care, and treatment solutions.">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
<style>
|
|
:root {
|
|
--bs-primary-rgb: 13, 110, 253; /* Custom primary color */
|
|
}
|
|
.hero-section {
|
|
background: linear-gradient(rgba(13, 110, 253, 0.05), rgba(255, 255, 255, 0)), url('https://images.pexels.com/photos/4021775/pexels-photo-4021775.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center;
|
|
background-size: cover;
|
|
color: #333;
|
|
}
|
|
.section-icon {
|
|
font-size: 2.5rem;
|
|
color: var(--bs-primary);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand fw-bold" href="/">
|
|
<i class="bi bi-heart-pulse-fill text-primary"></i> MedAgency
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<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="/">Home</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="/contact.php">Contact</a></li>
|
|
<?php if (isset($_SESSION['user'])): ?>
|
|
<li class="nav-item"><a class="nav-link" href="/dashboard.php">Dashboard</a></li>
|
|
<li class="nav-item"><a class="btn btn-primary ms-lg-2" href="/logout.php">Logout</a></li>
|
|
<?php else: ?>
|
|
<li class="nav-item"><a class="nav-link" href="/registration.php">Register</a></li>
|
|
<li class="nav-item"><a class="btn btn-primary ms-lg-2" href="/login.php">Login</a></li>
|
|
<?php endif; ?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section -->
|
|
<header class="hero-section py-5">
|
|
<div class="container text-center py-5">
|
|
<h1 class="display-4 fw-bold">Compassionate Care, Advanced Solutions</h1>
|
|
<p class="lead col-lg-8 mx-auto">We connect you with world-class medical experts and facilities, ensuring a seamless journey to better health.</p>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<!-- Services Section -->
|
|
<section id="services" class="py-5 bg-light">
|
|
<div class="container">
|
|
<div class="text-center mb-5">
|
|
<h2 class="fw-bold">Our Services</h2>
|
|
<p class="text-muted">Comprehensive support for your medical needs.</p>
|
|
</div>
|
|
<div class="row">
|
|
<!-- Service Item 1 -->
|
|
<div class="col-md-4 mb-4">
|
|
<div class="card h-100 text-center p-4">
|
|
<i class="bi bi-person-check-fill section-icon mb-3"></i>
|
|
<div class="card-body">
|
|
<h5 class="card-title fw-bold">Personalized Treatment Plans</h5>
|
|
<p class="card-text">Tailored medical strategies designed by top specialists to meet your unique health requirements.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Service Item 2 -->
|
|
<div class="col-md-4 mb-4">
|
|
<div class="card h-100 text-center p-4">
|
|
<i class="bi bi-geo-alt-fill section-icon mb-3"></i>
|
|
<div class="card-body">
|
|
<h5 class="card-title fw-bold">International Client Services</h5>
|
|
<p class="card-text">Multi-language support and currency options for a hassle-free experience, no matter where you are.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Service Item 3 -->
|
|
<div class="col-md-4 mb-4">
|
|
<div class="card h-100 text-center p-4">
|
|
<i class="bi bi-shield-check section-icon mb-3"></i>
|
|
<div class="card-body">
|
|
<h5 class="card-title fw-bold">Patient Workflow Management</h5>
|
|
<p class="card-text">A dedicated CRM to manage your entire treatment journey, from consultation to recovery.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- About Section -->
|
|
<section id="about" class="py-5">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-6">
|
|
<img src="https://images.pexels.com/photos/5452292/pexels-photo-5452292.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" class="img-fluid rounded shadow" alt="About MedAgency">
|
|
</div>
|
|
<div class="col-lg-6 mt-4 mt-lg-0">
|
|
<h2 class="fw-bold">About MedAgency</h2>
|
|
<p class="text-muted">Founded on the principle of patient-centric care, MedAgency was created to bridge the gap between patients and high-quality medical services worldwide. Our team is dedicated to providing transparent, efficient, and compassionate support throughout your healthcare journey.</p>
|
|
<p>We leverage cutting-edge technology and a vast network of certified professionals to ensure you receive the best possible care.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Testimonials -->
|
|
<section id="testimonials" class="py-5 bg-light">
|
|
<div class="container">
|
|
<div class="text-center mb-5">
|
|
<h2 class="fw-bold">What Our Patients Say</h2>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6 col-lg-4 mb-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<p class="fst-italic">"The entire process was so smooth and professional. MedAgency took care of everything, and I could focus solely on my recovery."</p>
|
|
<footer class="blockquote-footer mt-2">John Doe</footer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6 col-lg-4 mb-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<p class="fst-italic">"I was amazed by the level of personalized care. The team was always there to answer my questions and support me."</p>
|
|
<footer class="blockquote-footer mt-2">Jane Smith</footer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-12 col-lg-4 mb-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<p class="fst-italic">"Navigating international healthcare seemed daunting, but MedAgency made it simple and stress-free."</p>
|
|
<footer class="blockquote-footer mt-2">Samuel Lee</footer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="bg-dark text-white py-4">
|
|
<div class="container text-center">
|
|
<p>© <?php echo date("Y"); ?> MedAgency. All Rights Reserved.</p>
|
|
<div>
|
|
<a href="#" class="text-white me-2"><i class="bi bi-twitter"></i></a>
|
|
<a href="#" class="text-white me-2"><i class="bi bi-facebook"></i></a>
|
|
<a href="#" class="text-white"><i class="bi bi-linkedin"></i></a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Scripts -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
</body>
|
|
</html>
|