Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  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>Software Solutions</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 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">
  14. <link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
  15. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
  16. <link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
  17. <link href="assets/css/main.css" rel="stylesheet">
  18. <style>
  19. body {
  20. background-color: #ffffff;
  21. color: #333333;
  22. font-family: 'Arial', sans-serif;
  23. }
  24. .header-section {
  25. text-align: center;
  26. padding: 50px 20px;
  27. background-color: #f8f9fa;
  28. border-bottom: 2px solid #eaeaea;
  29. }
  30. .header-section h1 {
  31. font-size: 2.5rem;
  32. color: #0056b3;
  33. font-weight: bold;
  34. }
  35. .header-section p {
  36. font-size: 1rem;
  37. color: #666666;
  38. margin-top: 20px;
  39. }
  40. .section-title {
  41. color: #0056b3;
  42. font-size: 2rem;
  43. font-weight: bold;
  44. margin-bottom: 20px;
  45. text-align: center;
  46. }
  47. .divider {
  48. width: 60px;
  49. height: 4px;
  50. background-color: #0056b3;
  51. margin: 0 auto 30px;
  52. }
  53. .icon-box {
  54. display: flex;
  55. align-items: flex-start;
  56. margin-bottom: 15px;
  57. }
  58. .icon-box .icon {
  59. color: #0056b3;
  60. font-size: 1.5rem;
  61. margin-right: 10px;
  62. }
  63. .feature-card {
  64. background-color: #f8f9fa;
  65. padding: 20px;
  66. border-radius: 8px;
  67. transition: all 0.3s ease-in-out;
  68. }
  69. .feature-card:hover {
  70. background-color: #e9ecef;
  71. box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  72. }
  73. .image-box img {
  74. max-width: 100%;
  75. border-radius: 10px;
  76. }
  77. .btn-primary {
  78. background-color: #0056b3;
  79. border-color: #0056b3;
  80. padding: 12px 25px;
  81. font-size: 1.1rem;
  82. transition: all 0.3s ease-in-out;
  83. }
  84. .btn-primary:hover {
  85. background-color: #003f88;
  86. border-color: #003f88;
  87. }
  88. </style>
  89. </head>
  90. <body>
  91. <header id="header" class="header d-flex align-items-center fixed-top">
  92. </header>
  93. <!-- Header Section -->
  94. <div class="header-section">
  95. <h1>Software Solutions by ADM Technologies</h1>
  96. <p>We offer a wide range of software solutions, from HRMS to visitor management and mobile software development, designed to streamline business operations and drive efficiency.</p>
  97. </div>
  98. <!-- HRMS Section -->
  99. <div class="container py-5">
  100. <h2 class="section-title">HRMS Software</h2>
  101. <div class="divider"></div>
  102. <p>Our HRMS software simplifies employee management by automating payroll, attendance tracking, and performance analysis. A robust system to streamline operations for better outcomes.</p>
  103. <div class="row align-items-center">
  104. <div class="col-md-6">
  105. <ul class="list-unstyled">
  106. <li class="icon-box">
  107. <span class="icon">✔️</span>
  108. <span>Integrated Payroll Management</span>
  109. </li>
  110. <li class="icon-box">
  111. <span class="icon">✔️</span>
  112. <span>Attendance Tracking</span>
  113. </li>
  114. <li class="icon-box">
  115. <span class="icon">✔️</span>
  116. <span>Performance Analysis</span>
  117. </li>
  118. <li class="icon-box">
  119. <span class="icon">✔️</span>
  120. <span>Comprehensive Employee Management</span>
  121. </li>
  122. </ul>
  123. </div>
  124. <div class="col-md-6 text-center">
  125. <div class="image-box">
  126. <img src="hrms-software.png" alt="HRMS Software">
  127. </div>
  128. </div>
  129. </div>
  130. </div>
  131. <!-- Payroll Management Section -->
  132. <div class="container py-5">
  133. <h2 class="section-title">Payroll Management System</h2>
  134. <div class="divider"></div>
  135. <p>Our payroll system automates complex calculations, reduces manual errors, and ensures compliance. Simplify your employee compensation processes with ease.</p>
  136. <div class="row">
  137. <div class="col-md-6 text-center">
  138. <div class="image-box">
  139. <img src="payroll-management.png" alt="Payroll Management System">
  140. </div>
  141. </div>
  142. <div class="col-md-6">
  143. <ul class="list-unstyled">
  144. <li class="icon-box">
  145. <span class="icon">✔️</span>
  146. <span>Automated Payroll Processing</span>
  147. </li>
  148. <li class="icon-box">
  149. <span class="icon">✔️</span>
  150. <span>Compliance with Regulations</span>
  151. </li>
  152. <li class="icon-box">
  153. <span class="icon">✔️</span>
  154. <span>Error-Free Tax Handling</span>
  155. </li>
  156. </ul>
  157. </div>
  158. </div>
  159. </div>
  160. <!-- Visitor Management Section -->
  161. <div class="container py-5">
  162. <h2 class="section-title">Visitor Management System</h2>
  163. <div class="divider"></div>
  164. <p>Enhance visitor experiences and improve security with our advanced Visitor Management System, which seamlessly integrates into your infrastructure.</p>
  165. <div class="row">
  166. <div class="col-md-6">
  167. <ul class="list-unstyled">
  168. <li class="icon-box">
  169. <span class="icon">✔️</span>
  170. <span>Real-Time Visitor Tracking</span>
  171. </li>
  172. <li class="icon-box">
  173. <span class="icon">✔️</span>
  174. <span>Customizable Badges</span>
  175. </li>
  176. <li class="icon-box">
  177. <span class="icon">✔️</span>
  178. <span>Integration with Security Systems</span>
  179. </li>
  180. </ul>
  181. </div>
  182. <div class="col-md-6 text-center">
  183. <div class="image-box">
  184. <img src="visitor-management.png" alt="Visitor Management">
  185. </div>
  186. </div>
  187. </div>
  188. </div>
  189. <!-- Custom Software Section -->
  190. <div class="container py-5">
  191. <h2 class="section-title">Custom Software Development</h2>
  192. <div class="divider"></div>
  193. <p>We specialize in tailored software solutions to meet your business needs, leveraging the latest technologies for high-quality software development.</p>
  194. <div class="row align-items-center">
  195. <div class="col-md-6 text-center">
  196. <div class="image-box">
  197. <img src="custom-software.png" alt="Custom Software Development">
  198. </div>
  199. </div>
  200. <div class="col-md-6">
  201. <ul class="list-unstyled">
  202. <li class="icon-box">
  203. <span class="icon">✔️</span>
  204. <span>Custom UI/UX Design</span>
  205. </li>
  206. <li class="icon-box">
  207. <span class="icon">✔️</span>
  208. <span>Seamless Integration</span>
  209. </li>
  210. <li class="icon-box">
  211. <span class="icon">✔️</span>
  212. <span>Maintenance and Support</span>
  213. </li>
  214. </ul>
  215. </div>
  216. </div>
  217. </div>
  218. <!-- Call to Action Section -->
  219. <div class="text-center py-5">
  220. <h2 class="section-title">Explore More Software Solutions</h2>
  221. <p>Contact us today to discover how our solutions can streamline your operations and improve efficiency.</p>
  222. <button class="btn btn-primary">Get Started</button>
  223. </div>
  224. <footer id="footer" class="footer">
  225. </footer>
  226. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
  227. <!-- header and footer js files -->
  228. <script src="assets/js/navbar.js"></script>
  229. <script src="assets/js/footer.js"></script>
  230. </body>
  231. </html>