259 lines
9.4 KiB
HTML
259 lines
9.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Elegant Service Sections</title>
|
|
<!-- Favicons -->
|
|
<link href="assets/img/favicon.png" rel="icon">
|
|
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com" rel="preconnect">
|
|
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
|
|
rel="stylesheet">
|
|
|
|
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
|
|
|
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
|
<link href="assets/css/main.css" rel="stylesheet">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--primary-color: #5048e5;
|
|
--secondary-color: #f0f2f5;
|
|
--dark-color: #1c1d24;
|
|
--light-color: #f8f9fa;
|
|
--text-color: #6b7280;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--light-color);
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.service-section {
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.service-card {
|
|
background-color: white;
|
|
border-radius: 16px;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
|
|
padding: 40px;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.service-badge {
|
|
display: inline-block;
|
|
background-color: var(--secondary-color);
|
|
color: var(--primary-color);
|
|
padding: 8px 16px;
|
|
border-radius: 100px;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.service-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: var(--dark-color);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.service-description {
|
|
color: var(--text-color);
|
|
font-size: 1.1rem;
|
|
line-height: 1.7;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.feature-list {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: var(--secondary-color);
|
|
color: var(--primary-color);
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 1rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.feature-text {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
color: var(--dark-color);
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
padding: 12px 24px;
|
|
border-radius: 100px;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background-color: #3f3cc1;
|
|
color: white;
|
|
}
|
|
|
|
.cta-button i {
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.service-section {
|
|
padding: 50px 0;
|
|
}
|
|
|
|
.service-card {
|
|
padding: 30px;
|
|
}
|
|
|
|
.service-title {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<header id="header" class="header d-flex align-items-center fixed-top">
|
|
</header>
|
|
<!-- Software Development Section -->
|
|
<section class="service-section">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="service-card">
|
|
<span class="service-badge">Software Development</span>
|
|
<h2 class="service-title">Small and Medium Businesses</h2>
|
|
<p class="service-description">One application that provides complete business process. Fix
|
|
series offers specially designed suits for Small & Medium Businesses with affordable pricing
|
|
plans.</p>
|
|
|
|
<ul class="feature-list">
|
|
<li class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-laptop-code"></i>
|
|
</div>
|
|
<div class="feature-text">Expertise in Technologies</div>
|
|
</li>
|
|
<li class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-globe"></i>
|
|
</div>
|
|
<div class="feature-text">Nationwide Reach</div>
|
|
</li>
|
|
<li class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-users-gear"></i>
|
|
</div>
|
|
<div class="feature-text">Customer-Centric Approach</div>
|
|
</li>
|
|
<li class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-chart-line"></i>
|
|
</div>
|
|
<div class="feature-text">Proven Track Record</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<a href="#" class="cta-button">
|
|
More Information
|
|
<i class="fas fa-arrow-right"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Live Streaming Section -->
|
|
<section class="service-section">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="service-card">
|
|
<span class="service-badge">Live Streaming</span>
|
|
<h2 class="service-title">Analytics and Insights</h2>
|
|
<p class="service-description">Advanced live streaming solutions with cutting-edge analytics
|
|
including motion detection, facial recognition, and crowd analysis.</p>
|
|
|
|
<ul class="feature-list">
|
|
<li class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-camera"></i>
|
|
</div>
|
|
<div class="feature-text">Real-time Detection</div>
|
|
</li>
|
|
<li class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-chart-pie"></i>
|
|
</div>
|
|
<div class="feature-text">Analytics Dashboard</div>
|
|
</li>
|
|
<li class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-shield-halved"></i>
|
|
</div>
|
|
<div class="feature-text">Security Features</div>
|
|
</li>
|
|
<li class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-tachometer-alt"></i>
|
|
</div>
|
|
<div class="feature-text">Scalable Performance</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<a href="#" class="cta-button">
|
|
Explore Features
|
|
<i class="fas fa-arrow-right"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<footer id="footer" class="footer">
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- header and footer js files -->
|
|
<script src="assets/js/navbar.js"></script>
|
|
<script src="assets/js/footer.js"></script>
|
|
</body>
|
|
|
|
</html> |