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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  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>Service Sections - Creative Design</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. --gradient-1: linear-gradient(135deg, #6366f1, #8b5cf6);
  24. --gradient-2: linear-gradient(135deg, #3b82f6, #2dd4bf);
  25. --dark: #0f172a;
  26. --light: #f8fafc;
  27. }
  28. body {
  29. background-color: var(--light);
  30. }
  31. .service-section {
  32. padding: 6rem 0;
  33. position: relative;
  34. }
  35. .service-section::before {
  36. content: '';
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. right: 0;
  41. height: 60%;
  42. background: var(--dark);
  43. z-index: 0;
  44. }
  45. .service-container {
  46. position: relative;
  47. z-index: 1;
  48. }
  49. .service-badge {
  50. display: inline-block;
  51. padding: 0.5rem 1rem;
  52. background: rgba(255, 255, 255, 0.1);
  53. color: #fff;
  54. border-radius: 100px;
  55. font-size: 0.875rem;
  56. font-weight: 500;
  57. margin-bottom: 1.5rem;
  58. backdrop-filter: blur(10px);
  59. }
  60. .service-title {
  61. color: #fff;
  62. font-size: 3rem;
  63. font-weight: 800;
  64. margin-bottom: 1.5rem;
  65. line-height: 1.2;
  66. }
  67. .service-description {
  68. color: rgba(255, 255, 255, 0.9);
  69. font-size: 1.1rem;
  70. line-height: 1.7;
  71. margin-bottom: 2.5rem;
  72. }
  73. .feature-list {
  74. background: white;
  75. border-radius: 24px;
  76. padding: 2rem;
  77. box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  78. margin-bottom: 2rem;
  79. }
  80. .feature-item {
  81. display: flex;
  82. align-items: flex-start;
  83. gap: 1rem;
  84. padding: 1.5rem;
  85. border-bottom: 1px solid #e2e8f0;
  86. transition: all 0.3s ease;
  87. }
  88. .feature-item:last-child {
  89. border-bottom: none;
  90. }
  91. .feature-item:hover {
  92. background: #f8fafc;
  93. border-radius: 12px;
  94. }
  95. .feature-icon {
  96. width: 48px;
  97. height: 48px;
  98. border-radius: 12px;
  99. display: flex;
  100. align-items: center;
  101. justify-content: center;
  102. font-size: 1.25rem;
  103. color: white;
  104. flex-shrink: 0;
  105. }
  106. .feature-content h3 {
  107. font-size: 1.1rem;
  108. font-weight: 600;
  109. color: var(--dark);
  110. margin-bottom: 0.5rem;
  111. }
  112. .feature-content p {
  113. font-size: 0.95rem;
  114. color: #64748b;
  115. margin: 0;
  116. }
  117. .image-grid {
  118. display: grid;
  119. grid-template-columns: repeat(2, 1fr);
  120. gap: 1.5rem;
  121. margin-top: 4rem;
  122. }
  123. .image-item {
  124. position: relative;
  125. border-radius: 20px;
  126. overflow: hidden;
  127. aspect-ratio: 4/3;
  128. }
  129. .image-item img {
  130. width: 100%;
  131. height: 100%;
  132. object-fit: cover;
  133. transition: transform 0.5s ease;
  134. }
  135. .image-item:hover img {
  136. transform: scale(1.05);
  137. }
  138. .cta-button {
  139. display: inline-flex;
  140. align-items: center;
  141. gap: 0.75rem;
  142. padding: 1rem 2rem;
  143. background: white;
  144. color: var(--dark);
  145. border-radius: 100px;
  146. text-decoration: none;
  147. font-weight: 600;
  148. transition: all 0.3s ease;
  149. box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  150. }
  151. .cta-button:hover {
  152. transform: translateY(-2px);
  153. box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  154. color: var(--dark);
  155. }
  156. @media (max-width: 768px) {
  157. .service-section {
  158. padding: 4rem 0;
  159. }
  160. .service-title {
  161. font-size: 2.25rem;
  162. }
  163. .image-grid {
  164. grid-template-columns: 1fr;
  165. }
  166. }
  167. .icon-gradient-1 {
  168. background: var(--gradient-1);
  169. }
  170. .icon-gradient-2 {
  171. background: var(--gradient-2);
  172. }
  173. </style>
  174. </head>
  175. <body>
  176. <header id="header" class="header d-flex align-items-center fixed-top">
  177. </header>
  178. <!-- Software Development Section -->
  179. <section class="service-section">
  180. <div class="container service-container">
  181. <div class="row gy-5">
  182. <div class="col-lg-6">
  183. <span class="service-badge">Software Development</span>
  184. <h2 class="service-title">Small and Medium Businesses</h2>
  185. <p class="service-description">One application that provides complete business process. Fix series
  186. offers specially designed suits for Small & Medium Businesses with affordable pricing plans.</p>
  187. <div class="feature-list">
  188. <div class="feature-item">
  189. <div class="feature-icon icon-gradient-1">
  190. <i class="fas fa-laptop-code"></i>
  191. </div>
  192. <div class="feature-content">
  193. <h3>Expertise in Technologies</h3>
  194. <p>Leveraging cutting-edge technologies to deliver robust solutions</p>
  195. </div>
  196. </div>
  197. <div class="feature-item">
  198. <div class="feature-icon icon-gradient-1">
  199. <i class="fas fa-globe"></i>
  200. </div>
  201. <div class="feature-content">
  202. <h3>Nationwide Reach</h3>
  203. <p>Local presence with nationwide coverage for better service</p>
  204. </div>
  205. </div>
  206. <div class="feature-item">
  207. <div class="feature-icon icon-gradient-1">
  208. <i class="fas fa-users-gear"></i>
  209. </div>
  210. <div class="feature-content">
  211. <h3>Customer-Centric Approach</h3>
  212. <p>Focused on delivering value and exceptional user experience</p>
  213. </div>
  214. </div>
  215. </div>
  216. <a href="#" class="cta-button">
  217. Learn More
  218. <i class="fas fa-arrow-right"></i>
  219. </a>
  220. </div>
  221. <div class="col-lg-6">
  222. <div class="image-grid">
  223. <div class="image-item">
  224. <img src="/api/placeholder/400/300" alt="Business Software 1">
  225. </div>
  226. <div class="image-item">
  227. <img src="/api/placeholder/400/300" alt="Business Software 2">
  228. </div>
  229. <div class="image-item">
  230. <img src="/api/placeholder/400/300" alt="Business Software 3">
  231. </div>
  232. <div class="image-item">
  233. <img src="/api/placeholder/400/300" alt="Business Software 4">
  234. </div>
  235. </div>
  236. </div>
  237. </div>
  238. </div>
  239. </section>
  240. <!-- Live Streaming Section -->
  241. <section class="service-section">
  242. <div class="container service-container">
  243. <div class="row gy-5">
  244. <div class="col-lg-6 order-lg-2">
  245. <span class="service-badge">Live Streaming</span>
  246. <h2 class="service-title">Analytics and Insights</h2>
  247. <p class="service-description">Advanced live streaming solutions with cutting-edge analytics
  248. including motion detection, facial recognition, and crowd analysis.</p>
  249. <div class="feature-list">
  250. <div class="feature-item">
  251. <div class="feature-icon icon-gradient-2">
  252. <i class="fas fa-camera"></i>
  253. </div>
  254. <div class="feature-content">
  255. <h3>Real-time Detection</h3>
  256. <p>Advanced motion and object detection capabilities</p>
  257. </div>
  258. </div>
  259. <div class="feature-item">
  260. <div class="feature-icon icon-gradient-2">
  261. <i class="fas fa-chart-pie"></i>
  262. </div>
  263. <div class="feature-content">
  264. <h3>Analytics Dashboard</h3>
  265. <p>Comprehensive insights and reporting tools</p>
  266. </div>
  267. </div>
  268. <div class="feature-item">
  269. <div class="feature-icon icon-gradient-2">
  270. <i class="fas fa-shield-halved"></i>
  271. </div>
  272. <div class="feature-content">
  273. <h3>Security Features</h3>
  274. <p>Enhanced security with behavior detection</p>
  275. </div>
  276. </div>
  277. </div>
  278. <a href="#" class="cta-button">
  279. Explore Features
  280. <i class="fas fa-arrow-right"></i>
  281. </a>
  282. </div>
  283. <div class="col-lg-6 order-lg-1">
  284. <div class="image-grid">
  285. <div class="image-item">
  286. <img src="/api/placeholder/400/300" alt="Streaming Analytics 1">
  287. </div>
  288. <div class="image-item">
  289. <img src="/api/placeholder/400/300" alt="Streaming Analytics 2">
  290. </div>
  291. <div class="image-item">
  292. <img src="/api/placeholder/400/300" alt="Streaming Analytics 3">
  293. </div>
  294. <div class="image-item">
  295. <img src="/api/placeholder/400/300" alt="Streaming Analytics 4">
  296. </div>
  297. </div>
  298. </div>
  299. </div>
  300. </div>
  301. </section>
  302. <footer id="footer" class="footer">
  303. </footer>
  304. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
  305. <!-- header and footer js files -->
  306. <script src="assets/js/navbar.js"></script>
  307. <script src="assets/js/footer.js"></script>
  308. </body>
  309. </html>