35286-vm/index.php
Flatlogic Bot 6e132e0b38 0.2
2025-10-27 21:34:11 +00:00

118 lines
6.2 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SecureLife - Your Future, Secured.</title>
<meta name="description" content="SecureLife offers comprehensive and affordable insurance plans for car, health, life, and home. Get your free quote today.">
<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.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<header class="navbar navbar-expand-lg navbar-light bg-white shadow-sm sticky-top">
<div class="container">
<a class="navbar-brand" href="index.php" style="font-family: 'Inter', sans-serif; font-weight: 700; color: #0A2540;">SecureLife</a>
<a href="subscribe.php" class="btn btn-primary-modern d-none d-lg-inline-block">Get a Quote</a>
</div>
</header>
<!-- Hero Section -->
<section class="hero-section text-white text-center">
<div class="container">
<h1 class="display-3 fw-bold">Your Future, Secured.</h1>
<p class="lead my-4">Comprehensive and affordable insurance plans tailored for you.</p>
<a href="subscribe.php" class="btn btn-accent-modern btn-lg">Get Your Free Quote</a>
</div>
</section>
<main class="container my-5">
<!-- Services Section -->
<section id="services" class="py-5 text-center">
<h2 class="fw-bold">Comprehensive Coverage for Every Need</h2>
<p class="lead text-muted mb-5">Explore our insurance options designed to protect what matters most.</p>
<div class="row g-4">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch">
<div class="card service-card">
<div class="card-body">
<div class="icon-box"><i class="bi bi-car-front-fill"></i></div>
<h5 class="card-title">Car Insurance</h5>
<p class="card-text">Hit the road with confidence. Comprehensive coverage against accidents, theft, and damages.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch">
<div class="card service-card">
<div class="card-body">
<div class="icon-box"><i class="bi bi-heart-pulse-fill"></i></div>
<h5 class="card-title">Health Insurance</h5>
<p class="card-text">Your health is your wealth. Access a wide network of hospitals and specialists.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch">
<div class="card service-card">
<div class="card-body">
<div class="icon-box"><i class="bi bi-person-heart"></i></div>
<h5 class="card-title">Life Insurance</h5>
<p class="card-text">Secure your family's future. A financial safety net for your loved ones.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch">
<div class="card service-card">
<div class="card-body">
<div class="icon-box"><i class="bi bi-house-heart-fill"></i></div>
<h5 class="card-title">Home Insurance</h5>
<p class="card-text">Protect your biggest investment. Coverage from natural disasters to theft.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Us Section -->
<section id="why-choose-us" class="py-5 mt-5 bg-light-blue">
<div class="container text-center">
<h2 class="fw-bold">Why Choose SecureLife?</h2>
<p class="lead text-muted mb-5">We provide more than just insurance. We provide peace of mind.</p>
<div class="row g-4">
<div class="col-md-4">
<div class="feature-box">
<i class="bi bi-shield-check fs-1 text-primary-modern"></i>
<h4 class="mt-3">Trusted & Reliable</h4>
<p>With years of experience, we are a name you can trust.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-box">
<i class="bi bi-headset fs-1 text-primary-modern"></i>
<h4 class="mt-3">24/7 Support</h4>
<p>Our team is always here to help, any time of the day.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-box">
<i class="bi bi-file-earmark-text fs-1 text-primary-modern"></i>
<h4 class="mt-3">Easy Claims</h4>
<p>A hassle-free claims process to get you back on your feet.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="text-center py-4 mt-auto bg-dark text-white">
<p class="mb-0">&copy; <?php echo date("Y"); ?> SecureLife. All Rights Reserved.</p>
</footer>
<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>