File "about.php"
Full Path: /home/quiczmwg/lightspringdigitals.com/__MACOSX-20260115033236/about.php
File size: 3.81 KB
MIME-type: text/x-php
Charset: utf-8
<?php include "./include/header.php"; ?>
<?php
session_start();
$exploreLink = isset($_SESSION['userid']) ? 'dashboard/projects.php' : 'login.php';
?>
<?php
session_start();
$explore_link = isset($_SESSION['userid']) ? 'dashboard/projects.php' : 'signup.php';
?>
<!-- Page Header Start -->
<div class="container-fluid page-header py-5 mb-5 wow fadeIn" data-wow-delay="0.1s">
<div class="container text-center py-5">
<h1 class="display-2 text-white mb-4 animated slideInDown">About Us</h1>
<nav aria-label="breadcrumb animated slideInDown">
<ol class="breadcrumb justify-content-center mb-0">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Pages</a></li>
<li class="breadcrumb-item text-primary" aria-current="page">About</li>
</ol>
</nav>
</div>
</div>
<!-- Page Header End -->
<!-- About Start -->
<div class="container-xxl about mb-5" style="margin-top: 6rem;">
<div class="container">
<div class="row g-0">
<div class="col-lg-6">
<div class="h-100 d-flex align-items-center justify-content-center" style="min-height: 300px;">
<button type="button" class="btn-play" data-bs-toggle="modal" data-src="https://www.youtube.com/embed/Q96hPdHlTok" data-bs-target="#videoModal">
<span></span>
</button>
</div>
</div>
<div class="col-lg-6 pt-lg-5 wow fadeIn" data-wow-delay="0.5s">
<div class="bg-white rounded-top p-5 mt-lg-5">
<p class="fs-5 fw-medium text-primary">Who We Are</p>
<h1 class="display-6 mb-4">We Help Businesses Grow with Proven Digital Strategies</h1>
<p class="mb-4">We’re a results-driven digital marketing agency committed to helping brands increase visibility, generate leads, and grow revenue. From SEO and paid advertising to content and email marketing, we tailor strategies that drive measurable success.</p>
<div class="row g-5 pt-2 mb-5">
<div class="col-sm-6">
<img class="img-fluid mb-4" src="img/icon/icon-5.png" alt="Icon">
<h5 class="mb-3">Managed Services</h5>
<span>We handle your marketing so you can focus on your business.</span>
</div>
<div class="col-sm-6">
<img class="img-fluid mb-4" src="img/icon/icon-2.png" alt="Icon">
<h5 class="mb-3">Expert Team</h5>
<span>Work with certified professionals who care about your growth.</span>
</div>
</div>
<a class="btn btn-primary rounded-pill py-3 px-5" href="service.php">Explore Our Services</a>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Video Modal Start -->
<div class="modal modal-video fade" id="videoModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content rounded-0">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">Watch Our Story</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="ratio ratio-16x9">
<iframe class="embed-responsive-item" src="" id="video" allowfullscreen allowscriptaccess="always" allow="autoplay"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Video Modal End -->
<?php include "./include/footer.php"; ?>