vision-1

by velo_ninja

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>BBM Industrial Control Suite</title>
  <!-- Font Awesome for Professional Icons -->
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
  <style>
    @page {
      margin: 1.5cm;
      size: A4;
      @top-center { content: element(header); }
      @bottom-center { content: element(footer); }
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #fff;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }
    header#page-header {
      position: running(header);
      height: 60px;
      border-bottom: 3px solid #005A9E;
      color: #005A9E;
      display: flex;
      align-items: center;
      font-weight: bold;
      font-size: 12pt;
    }
    footer#page-footer {
      position: running(footer);
      text-align: center;
      font-size: 10pt;
      color: #666;
      border-top: 1px solid #ccc;
      padding-top: 5px;
    }
    .header-section {
      display: flex;
      align-items: center;
      background: #005A9E;
      color: white;
      padding: 20px;
      border-radius: 8px 8px 0 0;
      margin-bottom: 30px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .header-logo {
      width: 150px;
      height: 150px;
      object-fit: contain;
      margin-right: 20px;
      border-radius: 8px;
    }
    .header-text {
      flex: 1;
    }
    .header-text h1 {
      margin: 0;
      font-size: 1.8em;
      font-weight: 300;
    }
    .header-text p {
      margin: 10px 0 0;
      font-size: 1em;
      opacity: 0.9;
    }
    section {
      margin-bottom: 30px;
    }
    h2 {
      color: #005A9E;
  ...