
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #1d2939;
      background: #ffffff;
      line-height: 1.7;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 90%;
      max-width: 1280px;
      margin: auto;
    }

    header {
      background: #ffffff;
      border-bottom: 1px solid #e4e7ec;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }

    .logo {
      font-size: 28px;
      font-weight: 800;
      color: #0b1f3a;
    }

    .logo span {
      color: #2563eb;
    }

    .nav-links {
      display: flex;
      gap: 10px;
    }

    
    .nav-links a {
          font-size: 15px;
    font-weight: 500;
    color: #344054;
    padding: 5px 10px;
    }

    .nav-links a.active{
          background: #ebf2ff;
    border-radius: 6px;
    color: #2563eb;
    }

    .hero {
      background: linear-gradient(rgba(5, 23, 46, 0.78), rgba(5, 23, 46, 0.78)), url('/assets/images/home-bg.avif');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 140px 0;
    }

    .hero-content {
      max-width: 760px;
    }

    .hero h1 {
      font-size: 62px;
      line-height: 1.1;
      margin-bottom: 28px;
      font-weight: 800;
    }

    .hero p {
      font-size: 20px;
      color: #d0d5dd;
      margin-bottom: 38px;
    }

    .hero-buttons {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: #2563eb;
      color: white;
      padding: 15px 28px;
      border-radius: 8px;
      font-weight: 600;
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.4);
      color: white;
      padding: 15px 28px;
      border-radius: 8px;
      font-weight: 600;
    }

    section {
      padding: 90px 0;
    }

    .section-title {
      font-size: 42px;
      font-weight: 800;
      color: #0b1f3a;
      margin-bottom: 18px;
    }

    .section-subtitle {
      max-width: 760px;
      color: #667085;
      margin-bottom: 55px;
      font-size: 17px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .stat-card {
      background: #f8fafc;
      padding: 40px 30px;
      border-radius: 16px;
      border: 1px solid #e4e7ec;
    }

    .stat-card h3 {
      font-size: 42px;
      color: #2563eb;
      margin-bottom: 10px;
    }

    .stat-card p {
      color: #475467;
      font-weight: 500;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .about-grid img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
      height: 520px;
    }

    .about-content p {
      color: #475467;
      margin-bottom: 24px;
      font-size: 16px;
    }

    .products {
      background: #f8fafc;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .product-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #e4e7ec;
      transition: 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
    }

    .product-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .product-content {
      padding: 28px;
    }

    .product-content h3 {
      font-size: 24px;
      margin-bottom: 14px;
      color: #0b1f3a;
    }

    .product-content p {
      color: #667085;
      font-size: 15px;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .industry-card {
      background: #0b1f3a;
      color: white;
      padding: 40px;
      border-radius: 18px;
    }

    .industry-card h3 {
      margin-bottom: 14px;
      font-size: 24px;
    }

    .industry-card p {
      color: #d0d5dd;
    }

    .investor-section {
      background: linear-gradient(135deg, #0b1f3a, #102b52);
      color: white;
    }

    .investor-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 50px;
    }

    .investor-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 35px 25px;
      border-radius: 16px;
    }

    .investor-card h3 {
      margin-bottom: 12px;
      font-size: 22px;
    }

    .investor-card p {
      color: #d0d5dd;
      font-size: 15px;
    }

    .facility {
      background: #f8fafc;
    }

    .facility-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .facility-grid img {
      width: 100%;
      border-radius: 18px;
      height: 350px;
      object-fit: cover;
    }

    .board-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .board-card {
      text-align: center;
      background: white;
      border: 1px solid #e4e7ec;
      border-radius: 18px;
      overflow: hidden;
    }

    .board-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .board-content {
      padding: 25px;
    }

    .board-content h3 {
      font-size: 22px;
      margin-bottom: 6px;
      color: #0b1f3a;
    }

    .board-content p {
      color: #667085;
      font-size: 14px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .contact-card {
      background: #f8fafc;
      border-radius: 18px;
      padding: 40px;
      border: 1px solid #e4e7ec;
    }

    .contact-card h3 {
      margin-bottom: 20px;
      font-size: 28px;
      color: #0b1f3a;
    }

    .contact-card p {
      margin-bottom: 16px;
      color: #475467;
    }

    footer {
      background: #081423;
      color: white;
      padding: 70px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-grid h3 {
      margin-bottom: 20px;
      font-size: 18px;
    }

    .footer-grid p,
    .footer-grid li {
      color: #d0d5dd;
      margin-bottom: 12px;
      list-style: none;
      font-size: 15px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 25px;
      text-align: center;
      color: #98a2b3;
      font-size: 14px;
    }

    @media(max-width: 1024px) {
      .stats-grid,
      .product-grid,
      .industry-grid,
      .investor-grid,
      .board-grid,
      .footer-grid,
      .about-grid,
      .facility-grid,
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero h1 {
        font-size: 48px;
      }
    }

    @media(max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hero {
        padding: 100px 0;
      }

      .hero h1 {
        font-size: 38px;
      }

      .hero p {
        font-size: 17px;
      }

      .stats-grid,
      .product-grid,
      .industry-grid,
      .investor-grid,
      .board-grid,
      .footer-grid,
      .about-grid,
      .facility-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 32px;
      }
    }