No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

service-15.html 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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>Smart City 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: #f5f7fa;
  21. color: #333333;
  22. font-family: 'Arial', sans-serif;
  23. line-height: 1.6;
  24. }
  25. .hero-section {
  26. background: linear-gradient(to bottom right, #0056b3, #007bff), url('city-bg.jpg') no-repeat center center;
  27. background-size: cover;
  28. color: white;
  29. text-align: center;
  30. padding: 80px 20px;
  31. border-bottom: 4px solid #0056b3;
  32. border-radius: 0 0 25px 25px;
  33. }
  34. .hero-section h1 {
  35. font-size: 2.8rem;
  36. font-weight: bold;
  37. }
  38. .hero-section p {
  39. font-size: 1.2rem;
  40. margin-top: 15px;
  41. }
  42. .section-title {
  43. font-size: 2rem;
  44. font-weight: bold;
  45. margin-bottom: 20px;
  46. text-align: center;
  47. color: #0056b3;
  48. }
  49. .divider {
  50. width: 100px;
  51. height: 4px;
  52. background-color: #0056b3;
  53. margin: 10px auto 30px;
  54. border-radius: 2px;
  55. }
  56. .highlight-box {
  57. background-color: white;
  58. padding: 20px;
  59. border-radius: 15px;
  60. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  61. transition: all 0.3s ease;
  62. }
  63. .highlight-box:hover {
  64. transform: translateY(-5px);
  65. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  66. }
  67. .highlight-box h4 {
  68. color: #0056b3;
  69. font-size: 1.25rem;
  70. margin-bottom: 10px;
  71. }
  72. .highlight-box p {
  73. color: #666666;
  74. font-size: 0.95rem;
  75. }
  76. .icon-list {
  77. list-style: none;
  78. padding: 0;
  79. }
  80. .icon-list li {
  81. display: flex;
  82. align-items: center;
  83. gap: 10px;
  84. margin-bottom: 15px;
  85. }
  86. .icon-list li::before {
  87. content: '➔';
  88. color: #0056b3;
  89. font-weight: bold;
  90. }
  91. .image-box img {
  92. max-width: 100%;
  93. border-radius: 15px;
  94. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  95. }
  96. .cta-section {
  97. text-align: center;
  98. padding: 50px 20px;
  99. background: linear-gradient(to bottom right, #007bff, #0056b3);
  100. color: white;
  101. border-radius: 25px;
  102. }
  103. .cta-section h2 {
  104. font-size: 2rem;
  105. font-weight: bold;
  106. }
  107. .cta-section p {
  108. font-size: 1.1rem;
  109. margin-bottom: 20px;
  110. }
  111. .btn-primary {
  112. background-color: #ffffff;
  113. color: #0056b3;
  114. border: 2px solid white;
  115. padding: 12px 30px;
  116. font-size: 1.1rem;
  117. border-radius: 50px;
  118. transition: all 0.3s ease;
  119. }
  120. .btn-primary:hover {
  121. background-color: #0056b3;
  122. color: white;
  123. border-color: #ffffff;
  124. }
  125. </style>
  126. </head>
  127. <body>
  128. <header id="header" class="header d-flex align-items-center fixed-top">
  129. </header>
  130. <!-- Hero Section -->
  131. <div class="hero-section">
  132. <h1>Smart City Solutions</h1>
  133. <p>Shaping the future of urban innovation with sustainable, intelligent, and interconnected solutions for a better tomorrow.</p>
  134. </div>
  135. <!-- Introduction Section -->
  136. <div class="container py-5">
  137. <h2 class="section-title">What is a Smart City?</h2>
  138. <div class="divider"></div>
  139. <p class="text-center">A Smart City is an urban area that leverages IoT, AI, and data analytics to optimize infrastructure and deliver efficient, responsive, and sustainable services to citizens.</p>
  140. <ul class="icon-list">
  141. <li>Data-Driven Decision Making: Real-time insights for proactive governance.</li>
  142. <li>Sustainability: Efficient energy management and eco-friendly practices.</li>
  143. <li>Mobility: Intelligent transportation systems for reduced congestion.</li>
  144. <li>Safety: Real-time surveillance and emergency response systems.</li>
  145. <li>Citizen Engagement: Platforms for seamless interaction with authorities.</li>
  146. </ul>
  147. </div>
  148. <!-- Features Section -->
  149. <div class="container py-5">
  150. <h2 class="section-title">Comprehensive Smart City Solutions</h2>
  151. <div class="divider"></div>
  152. <div class="row g-4">
  153. <div class="col-md-4">
  154. <div class="highlight-box">
  155. <h4>IoT Infrastructure</h4>
  156. <p>The backbone of every Smart City, enabling real-time device communication and interconnected systems.</p>
  157. </div>
  158. </div>
  159. <div class="col-md-4">
  160. <div class="highlight-box">
  161. <h4>Smart Sensors</h4>
  162. <p>Monitors air quality, waste management, water supply, and energy usage with high precision.</p>
  163. </div>
  164. </div>
  165. <div class="col-md-4">
  166. <div class="highlight-box">
  167. <h4>Smart Street Lighting</h4>
  168. <p>Automated lighting systems improve energy efficiency and adapt to pedestrian and vehicular movement.</p>
  169. </div>
  170. </div>
  171. </div>
  172. </div>
  173. <!-- Image Section -->
  174. <div class="container py-5">
  175. <div class="row align-items-center">
  176. <div class="col-md-6 text-center">
  177. <div class="image-box">
  178. <img src="smart-city-visual.png" alt="Smart City Visualization">
  179. </div>
  180. </div>
  181. <div class="col-md-6">
  182. <h2 class="section-title">Smart Governance</h2>
  183. <div class="divider"></div>
  184. <p>Advanced systems for managing energy distribution, streamlining services, and minimizing downtime.</p>
  185. <ul class="icon-list">
  186. <li>Smart Grids for efficient power supply and minimal outages.</li>
  187. <li>E-Governance Platforms for faster access to municipal services.</li>
  188. </ul>
  189. </div>
  190. </div>
  191. </div>
  192. <!-- Call to Action Section -->
  193. <div class="cta-section">
  194. <h2>Transform Your City Today</h2>
  195. <p>Join the revolution in urban living with ADM's Smart City Solutions. Let's build a sustainable future together.</p>
  196. <button class="btn btn-primary">Get in Touch</button>
  197. </div>
  198. <footer id="footer" class="footer">
  199. </footer>
  200. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
  201. <!-- header and footer js files -->
  202. <script src="assets/js/navbar.js"></script>
  203. <script src="assets/js/footer.js"></script>
  204. </body>
  205. </html>