289 rader
10 KiB
HTML
289 rader
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Service Sections - Modern Design</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="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">
|
|
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
|
<link href="assets/css/main.css" rel="stylesheet">
|
|
|
|
<style>
|
|
:root {
|
|
--primary-blue: #2563eb;
|
|
--secondary-blue: #e0e7ff;
|
|
--dark: #111827;
|
|
--gray: #6b7280;
|
|
}
|
|
|
|
body {
|
|
background-color: #f8fafc;
|
|
}
|
|
|
|
.service-card {
|
|
background: white;
|
|
border-radius: 24px;
|
|
padding: 3rem;
|
|
margin: 4rem 0;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.service-tag {
|
|
display: inline-block;
|
|
padding: 8px 16px;
|
|
background: var(--secondary-blue);
|
|
color: var(--primary-blue);
|
|
border-radius: 100px;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.service-title {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
color: var(--dark);
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.service-description {
|
|
color: var(--gray);
|
|
font-size: 1.1rem;
|
|
line-height: 1.7;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.feature-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.feature-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
background: var(--secondary-blue);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--primary-blue);
|
|
}
|
|
|
|
.feature-text {
|
|
font-weight: 500;
|
|
color: var(--dark);
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 12px 24px;
|
|
background: var(--primary-blue);
|
|
color: white;
|
|
border-radius: 12px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background: #1d4ed8;
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.illustration-area {
|
|
position: relative;
|
|
min-height: 300px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.illustration-area img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.floating-elements {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
}
|
|
|
|
.float-item {
|
|
position: absolute;
|
|
background: var(--secondary-blue);
|
|
border-radius: 8px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.float-1 { top: 10%; left: 10%; width: 40px; height: 40px; }
|
|
.float-2 { bottom: 20%; right: 15%; width: 30px; height: 30px; }
|
|
.float-3 { top: 50%; right: 25%; width: 25px; height: 25px; }
|
|
|
|
@media (max-width: 768px) {
|
|
.service-card {
|
|
padding: 2rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.service-title {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.feature-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header id="header" class="header d-flex align-items-center fixed-top">
|
|
</header>
|
|
<!-- Software Development Section -->
|
|
<div class="container">
|
|
<div class="service-card">
|
|
<div class="row gy-5">
|
|
<div class="col-lg-6">
|
|
<span class="service-tag">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. You can choose from our handpicked workflows as per your need offering you the most affordable pricing plans.</p>
|
|
|
|
<div class="feature-grid">
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-code"></i>
|
|
</div>
|
|
<span class="feature-text">Expertise in Technologies</span>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-map-marked-alt"></i>
|
|
</div>
|
|
<span class="feature-text">Nationwide Reach</span>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-users"></i>
|
|
</div>
|
|
<span class="feature-text">Customer-Centric</span>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-chart-line"></i>
|
|
</div>
|
|
<span class="feature-text">Proven Success</span>
|
|
</div>
|
|
</div>
|
|
|
|
<a href="#" class="cta-button">
|
|
More Information
|
|
<i class="fas fa-arrow-right"></i>
|
|
</a>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="illustration-area">
|
|
<div class="floating-elements">
|
|
<div class="float-item float-1"></div>
|
|
<div class="float-item float-2"></div>
|
|
<div class="float-item float-3"></div>
|
|
</div>
|
|
<img src="/api/placeholder/600/400" alt="Business Software">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Live Streaming Section -->
|
|
<div class="service-card">
|
|
<div class="row gy-5">
|
|
<div class="col-lg-6 order-lg-2">
|
|
<span class="service-tag">Extensive Experience</span>
|
|
<h2 class="service-title">Live Streaming with Analytics</h2>
|
|
<p class="service-description">Live streaming with analytics combines the power of real-time video broadcasting with advanced analytics like Motion Detection, Facial Recognition, Object Detection, and Crowd Analysis.</p>
|
|
|
|
<div class="feature-grid">
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-video"></i>
|
|
</div>
|
|
<span class="feature-text">Real-time Streaming</span>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-chart-bar"></i>
|
|
</div>
|
|
<span class="feature-text">Advanced Analytics</span>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-eye"></i>
|
|
</div>
|
|
<span class="feature-text">Object Detection</span>
|
|
</div>
|
|
<div class="feature-item">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-user-shield"></i>
|
|
</div>
|
|
<span class="feature-text">Security Features</span>
|
|
</div>
|
|
</div>
|
|
|
|
<a href="#" class="cta-button">
|
|
More Information
|
|
<i class="fas fa-arrow-right"></i>
|
|
</a>
|
|
</div>
|
|
<div class="col-lg-6 order-lg-1">
|
|
<div class="illustration-area">
|
|
<div class="floating-elements">
|
|
<div class="float-item float-1"></div>
|
|
<div class="float-item float-2"></div>
|
|
<div class="float-item float-3"></div>
|
|
</div>
|
|
<img src="/api/placeholder/600/400" alt="Live Streaming Analytics">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<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> |