123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- <!DOCTYPE html>
- <html lang="en">
-
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Service Sections - Creative 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="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 {
- --gradient-1: linear-gradient(135deg, #6366f1, #8b5cf6);
- --gradient-2: linear-gradient(135deg, #3b82f6, #2dd4bf);
- --dark: #0f172a;
- --light: #f8fafc;
- }
-
- body {
- background-color: var(--light);
- }
-
- .service-section {
- padding: 6rem 0;
- position: relative;
- }
-
- .service-section::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 60%;
- background: var(--dark);
- z-index: 0;
- }
-
- .service-container {
- position: relative;
- z-index: 1;
- }
-
- .service-badge {
- display: inline-block;
- padding: 0.5rem 1rem;
- background: rgba(255, 255, 255, 0.1);
- color: #fff;
- border-radius: 100px;
- font-size: 0.875rem;
- font-weight: 500;
- margin-bottom: 1.5rem;
- backdrop-filter: blur(10px);
- }
-
- .service-title {
- color: #fff;
- font-size: 3rem;
- font-weight: 800;
- margin-bottom: 1.5rem;
- line-height: 1.2;
- }
-
- .service-description {
- color: rgba(255, 255, 255, 0.9);
- font-size: 1.1rem;
- line-height: 1.7;
- margin-bottom: 2.5rem;
- }
-
- .feature-list {
- background: white;
- border-radius: 24px;
- padding: 2rem;
- box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
- margin-bottom: 2rem;
- }
-
- .feature-item {
- display: flex;
- align-items: flex-start;
- gap: 1rem;
- padding: 1.5rem;
- border-bottom: 1px solid #e2e8f0;
- transition: all 0.3s ease;
- }
-
- .feature-item:last-child {
- border-bottom: none;
- }
-
- .feature-item:hover {
- background: #f8fafc;
- border-radius: 12px;
- }
-
- .feature-icon {
- width: 48px;
- height: 48px;
- border-radius: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 1.25rem;
- color: white;
- flex-shrink: 0;
- }
-
- .feature-content h3 {
- font-size: 1.1rem;
- font-weight: 600;
- color: var(--dark);
- margin-bottom: 0.5rem;
- }
-
- .feature-content p {
- font-size: 0.95rem;
- color: #64748b;
- margin: 0;
- }
-
- .image-grid {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 1.5rem;
- margin-top: 4rem;
- }
-
- .image-item {
- position: relative;
- border-radius: 20px;
- overflow: hidden;
- aspect-ratio: 4/3;
- }
-
- .image-item img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- transition: transform 0.5s ease;
- }
-
- .image-item:hover img {
- transform: scale(1.05);
- }
-
- .cta-button {
- display: inline-flex;
- align-items: center;
- gap: 0.75rem;
- padding: 1rem 2rem;
- background: white;
- color: var(--dark);
- border-radius: 100px;
- text-decoration: none;
- font-weight: 600;
- transition: all 0.3s ease;
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
- }
-
- .cta-button:hover {
- transform: translateY(-2px);
- box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
- color: var(--dark);
- }
-
- @media (max-width: 768px) {
- .service-section {
- padding: 4rem 0;
- }
-
- .service-title {
- font-size: 2.25rem;
- }
-
- .image-grid {
- grid-template-columns: 1fr;
- }
- }
-
- .icon-gradient-1 {
- background: var(--gradient-1);
- }
-
- .icon-gradient-2 {
- background: var(--gradient-2);
- }
- </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 service-container">
- <div class="row gy-5">
- <div class="col-lg-6">
- <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>
-
- <div class="feature-list">
- <div class="feature-item">
- <div class="feature-icon icon-gradient-1">
- <i class="fas fa-laptop-code"></i>
- </div>
- <div class="feature-content">
- <h3>Expertise in Technologies</h3>
- <p>Leveraging cutting-edge technologies to deliver robust solutions</p>
- </div>
- </div>
- <div class="feature-item">
- <div class="feature-icon icon-gradient-1">
- <i class="fas fa-globe"></i>
- </div>
- <div class="feature-content">
- <h3>Nationwide Reach</h3>
- <p>Local presence with nationwide coverage for better service</p>
- </div>
- </div>
- <div class="feature-item">
- <div class="feature-icon icon-gradient-1">
- <i class="fas fa-users-gear"></i>
- </div>
- <div class="feature-content">
- <h3>Customer-Centric Approach</h3>
- <p>Focused on delivering value and exceptional user experience</p>
- </div>
- </div>
- </div>
-
- <a href="#" class="cta-button">
- Learn More
- <i class="fas fa-arrow-right"></i>
- </a>
- </div>
- <div class="col-lg-6">
- <div class="image-grid">
- <div class="image-item">
- <img src="/api/placeholder/400/300" alt="Business Software 1">
- </div>
- <div class="image-item">
- <img src="/api/placeholder/400/300" alt="Business Software 2">
- </div>
- <div class="image-item">
- <img src="/api/placeholder/400/300" alt="Business Software 3">
- </div>
- <div class="image-item">
- <img src="/api/placeholder/400/300" alt="Business Software 4">
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
-
- <!-- Live Streaming Section -->
- <section class="service-section">
- <div class="container service-container">
- <div class="row gy-5">
- <div class="col-lg-6 order-lg-2">
- <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>
-
- <div class="feature-list">
- <div class="feature-item">
- <div class="feature-icon icon-gradient-2">
- <i class="fas fa-camera"></i>
- </div>
- <div class="feature-content">
- <h3>Real-time Detection</h3>
- <p>Advanced motion and object detection capabilities</p>
- </div>
- </div>
- <div class="feature-item">
- <div class="feature-icon icon-gradient-2">
- <i class="fas fa-chart-pie"></i>
- </div>
- <div class="feature-content">
- <h3>Analytics Dashboard</h3>
- <p>Comprehensive insights and reporting tools</p>
- </div>
- </div>
- <div class="feature-item">
- <div class="feature-icon icon-gradient-2">
- <i class="fas fa-shield-halved"></i>
- </div>
- <div class="feature-content">
- <h3>Security Features</h3>
- <p>Enhanced security with behavior detection</p>
- </div>
- </div>
- </div>
-
- <a href="#" class="cta-button">
- Explore Features
- <i class="fas fa-arrow-right"></i>
- </a>
- </div>
- <div class="col-lg-6 order-lg-1">
- <div class="image-grid">
- <div class="image-item">
- <img src="/api/placeholder/400/300" alt="Streaming Analytics 1">
- </div>
- <div class="image-item">
- <img src="/api/placeholder/400/300" alt="Streaming Analytics 2">
- </div>
- <div class="image-item">
- <img src="/api/placeholder/400/300" alt="Streaming Analytics 3">
- </div>
- <div class="image-item">
- <img src="/api/placeholder/400/300" alt="Streaming Analytics 4">
- </div>
- </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>
|