Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Elegant Service Sections</title>
  7. <!-- Favicons -->
  8. <link href="assets/img/favicon.png" rel="icon">
  9. <link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
  10. <!-- Fonts -->
  11. <link href="https://fonts.googleapis.com" rel="preconnect">
  12. <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
  13. <link
  14. 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"
  15. rel="stylesheet">
  16. <link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
  17. <link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
  18. <link href="assets/css/main.css" rel="stylesheet">
  19. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
  20. <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
  21. <style>
  22. :root {
  23. --primary-color: #5048e5;
  24. --secondary-color: #f0f2f5;
  25. --dark-color: #1c1d24;
  26. --light-color: #f8f9fa;
  27. --text-color: #6b7280;
  28. }
  29. body {
  30. background-color: var(--light-color);
  31. font-family: 'Poppins', sans-serif;
  32. }
  33. .service-section {
  34. padding: 80px 0;
  35. }
  36. .service-card {
  37. background-color: white;
  38. border-radius: 16px;
  39. box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  40. padding: 40px;
  41. transition: transform 0.3s ease, box-shadow 0.3s ease;
  42. }
  43. .service-card:hover {
  44. transform: translateY(-5px);
  45. box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  46. }
  47. .service-badge {
  48. display: inline-block;
  49. background-color: var(--secondary-color);
  50. color: var(--primary-color);
  51. padding: 8px 16px;
  52. border-radius: 100px;
  53. font-size: 0.875rem;
  54. font-weight: 600;
  55. margin-bottom: 1.5rem;
  56. }
  57. .service-title {
  58. font-size: 2.5rem;
  59. font-weight: 700;
  60. color: var(--dark-color);
  61. margin-bottom: 1.5rem;
  62. }
  63. .service-description {
  64. color: var(--text-color);
  65. font-size: 1.1rem;
  66. line-height: 1.7;
  67. margin-bottom: 2rem;
  68. }
  69. .feature-list {
  70. list-style-type: none;
  71. padding: 0;
  72. margin: 0;
  73. }
  74. .feature-item {
  75. display: flex;
  76. align-items: center;
  77. margin-bottom: 1.25rem;
  78. }
  79. .feature-icon {
  80. width: 40px;
  81. height: 40px;
  82. background-color: var(--secondary-color);
  83. color: var(--primary-color);
  84. border-radius: 10px;
  85. display: flex;
  86. align-items: center;
  87. justify-content: center;
  88. margin-right: 1rem;
  89. flex-shrink: 0;
  90. }
  91. .feature-text {
  92. font-size: 1rem;
  93. font-weight: 500;
  94. color: var(--dark-color);
  95. }
  96. .cta-button {
  97. display: inline-flex;
  98. align-items: center;
  99. background-color: var(--primary-color);
  100. color: white;
  101. padding: 12px 24px;
  102. border-radius: 100px;
  103. font-size: 1rem;
  104. font-weight: 600;
  105. text-decoration: none;
  106. transition: background-color 0.3s ease;
  107. }
  108. .cta-button:hover {
  109. background-color: #3f3cc1;
  110. color: white;
  111. }
  112. .cta-button i {
  113. margin-left: 0.5rem;
  114. }
  115. @media (max-width: 768px) {
  116. .service-section {
  117. padding: 50px 0;
  118. }
  119. .service-card {
  120. padding: 30px;
  121. }
  122. .service-title {
  123. font-size: 2rem;
  124. }
  125. }
  126. </style>
  127. </head>
  128. <body>
  129. <header id="header" class="header d-flex align-items-center fixed-top">
  130. </header>
  131. <!-- Software Development Section -->
  132. <section class="service-section">
  133. <div class="container">
  134. <div class="row justify-content-center">
  135. <div class="col-lg-8">
  136. <div class="service-card">
  137. <span class="service-badge">Software Development</span>
  138. <h2 class="service-title">Small and Medium Businesses</h2>
  139. <p class="service-description">One application that provides complete business process. Fix
  140. series offers specially designed suits for Small & Medium Businesses with affordable pricing
  141. plans.</p>
  142. <ul class="feature-list">
  143. <li class="feature-item">
  144. <div class="feature-icon">
  145. <i class="fas fa-laptop-code"></i>
  146. </div>
  147. <div class="feature-text">Expertise in Technologies</div>
  148. </li>
  149. <li class="feature-item">
  150. <div class="feature-icon">
  151. <i class="fas fa-globe"></i>
  152. </div>
  153. <div class="feature-text">Nationwide Reach</div>
  154. </li>
  155. <li class="feature-item">
  156. <div class="feature-icon">
  157. <i class="fas fa-users-gear"></i>
  158. </div>
  159. <div class="feature-text">Customer-Centric Approach</div>
  160. </li>
  161. <li class="feature-item">
  162. <div class="feature-icon">
  163. <i class="fas fa-chart-line"></i>
  164. </div>
  165. <div class="feature-text">Proven Track Record</div>
  166. </li>
  167. </ul>
  168. <a href="#" class="cta-button">
  169. More Information
  170. <i class="fas fa-arrow-right"></i>
  171. </a>
  172. </div>
  173. </div>
  174. </div>
  175. </div>
  176. </section>
  177. <!-- Live Streaming Section -->
  178. <section class="service-section">
  179. <div class="container">
  180. <div class="row justify-content-center">
  181. <div class="col-lg-8">
  182. <div class="service-card">
  183. <span class="service-badge">Live Streaming</span>
  184. <h2 class="service-title">Analytics and Insights</h2>
  185. <p class="service-description">Advanced live streaming solutions with cutting-edge analytics
  186. including motion detection, facial recognition, and crowd analysis.</p>
  187. <ul class="feature-list">
  188. <li class="feature-item">
  189. <div class="feature-icon">
  190. <i class="fas fa-camera"></i>
  191. </div>
  192. <div class="feature-text">Real-time Detection</div>
  193. </li>
  194. <li class="feature-item">
  195. <div class="feature-icon">
  196. <i class="fas fa-chart-pie"></i>
  197. </div>
  198. <div class="feature-text">Analytics Dashboard</div>
  199. </li>
  200. <li class="feature-item">
  201. <div class="feature-icon">
  202. <i class="fas fa-shield-halved"></i>
  203. </div>
  204. <div class="feature-text">Security Features</div>
  205. </li>
  206. <li class="feature-item">
  207. <div class="feature-icon">
  208. <i class="fas fa-tachometer-alt"></i>
  209. </div>
  210. <div class="feature-text">Scalable Performance</div>
  211. </li>
  212. </ul>
  213. <a href="#" class="cta-button">
  214. Explore Features
  215. <i class="fas fa-arrow-right"></i>
  216. </a>
  217. </div>
  218. </div>
  219. </div>
  220. </div>
  221. </section>
  222. <footer id="footer" class="footer">
  223. </footer>
  224. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
  225. <!-- header and footer js files -->
  226. <script src="assets/js/navbar.js"></script>
  227. <script src="assets/js/footer.js"></script>
  228. </body>
  229. </html>