 :root {
   --primary: #1c2c7c;
   /* Deep navy */
   --accent: #f97316;
   /* Industrial orange */
   --text: #1a1a1a;
   --muted: #6b7280;
   --bg: #f9fafb;
   --white: #fff;
   --radius: 12px;
   --max-width: 1300px;
   --pad: 24px;
   font-family: "Segoe UI", Roboto, Arial, sans-serif;
 }

 * {
   box-sizing: border-box;
 }

 html,
 body {
   height: 100%;
   margin: 0;
   background: var(--bg);
   color: var(--text);
   -webkit-font-smoothing: antialiased
 }

 a {
   color: inherit;
   text-decoration: none
 }

 img {
   display: block;
   max-width: 100%
 }


 /* Header */
 header {
   background: var(--white);
   border-bottom: 1px solid #e5e7eb;
   position: sticky;
   top: 0;
   z-index: 60;
   box-shadow: 0 4px 18px rgba(16, 24, 40, 0.03);
 }

 .nav {
   max-width: var(--max-width);
   margin: 0 auto;
   /* padding: 12px var(--pad); */
   display: flex;
   align-items: center;
   gap: 20px
 }

 .logo {
   height: 60px;
   object-fit: cover;
   border-radius: 8px
 }

 .brand-title {
   display: flex;
   flex-direction: column;
    width: 60%;
 }

 .brand-title h1 {
   font-size: 16px;
   margin: 0
 }

 nav.nav-links {
   margin-left: auto;
   display: flex;
   gap: 12px;
   align-items: center
 }

 nav.nav-links a {
   padding: 8px 12px;
   border-radius: 8px;
   color: var(--muted);
   font-weight: 600
 }

 nav.nav-links a:hover {
   background: rgba(249, 115, 22, 0.08);
   color: var(--primary)
 }

 nav.nav-links a.active {
   background: rgba(28, 44, 124, 0.06);
   color: var(--accent);
   box-shadow: 0 8px 24px rgba(249, 115, 22, 0.06)
 }

 .mobile-btn {
   display: none;
   border: 0;
   background: transparent;
   font-size: 20px;
   margin-left: 12px;
   cursor: pointer
 }

 /* Page container */
 main#app-root {
   min-height: calc(100vh - 140px);
 }

 /* Basic hero, cards, features, grid (from your file) */
 /* .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px var(--pad);
      max-width: var(--max-width);
      margin: auto;
      gap: 40px;
    }

    .hero-text {
      flex: 1;
      color: "black"
    } */
 .hero {
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 100vh;
   /* full height section */
   /* color: white; */
   /* text visible on video */
   text-align: center;
 }

 .bg-video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   opacity: 0.8;
 }

 .hero-text {
   position: relative;
   z-index: 1;
   color: "black"
     /* keeps text above video */
 }


 .eyebrow {
   display: inline-block;
   padding: 6px 10px;
   background: rgba(249, 115, 22, 0.08);
   color: var(--accent);
   border-radius: 999px;
   font-weight: 700;
   font-size: 12px
 }

 .hero h1 {
   font-size: 40px;
   margin: 0 0 16px;
   color: var(--primary)
 }

 .hero p {
   font-size: 18px;
   color: black;
   margin: 0 0 22px
 }

 .cta {
   display: inline-block;
   padding: 12px 20px;
   border-radius: var(--radius);
   font-weight: 700;
   cursor: pointer
 }

 .cta.primary {
   background: var(--accent);
   color: #fff;
   border: 0
 }

 .cta.ghost {
   background: transparent;
   border: 2px solid var(--accent);
   color: var(--accent);
   margin-left: 12px
 }

 .mockup {
   max-width: 520px;
   border-radius: 14px;
   overflow: hidden;
   box-shadow: 0 12px 40px rgba(16, 24, 40, 0.08);
 }

 section {

   min-height: 85%;
   max-width: var(--max-width);
   margin: auto;
   padding: 0px var(--pad)
 }

 h2 {
   font-size: 32px;
   margin: 0 0 12px;
   color: var(--primary)
 }

 .grid {
   display: grid;
   gap: 20px
 }

 .products-grid {
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
 }

 .card {
   background: var(--white);
   border-radius: var(--radius);
   padding: 18px;
   box-shadow: 0 6px 20px rgba(16, 24, 40, 0.04);
   display: flex;
   flex-direction: column;
   gap: 12px;
   transition: transform .18s ease, box-shadow .18s ease
 }

 .card:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 50px rgba(16, 24, 40, 0.08)
 }

 .card img {
   border-radius: 10px;
   max-height: 160px;
   object-fit: cover
 }

 .features {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 36px;
   align-items: center
 }

 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 18px
 }

 .feature {
   display: flex;
   gap: 12px;
   align-items: flex-start
 }

 .feature-icon {
   width: 44px;
   height: 44px;
   border-radius: 10px;
   background: var(--accent);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700
 }

 /* contact */
 .contact-form {
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 640px
 }

 .input,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid #d1d5db;
   font-size: 14px
 }

 textarea {
   min-height: 140px;
   resize: vertical
 }

 .btn {
   padding: 12px;
   border-radius: 10px;
   border: 0;
   background: var(--accent);
   color: #fff;
   font-weight: 700;
   cursor: pointer
 }

 footer {
   background: var(--primary);
   color: var(--white);
   padding: 24px;
   text-align: center;
   position: relative;
   bottom: 0;
   width: 100%;
 }

 .footer ul li a {
   font-size: 17px;
   color: #333;

 }

 .contact-sec {
   display: grid;
   grid-template-columns: 1fr 360px;
   gap: 20px;
   margin-top: 16px
 }

 .product-part {
   display: inline-flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
 }

 .product-img {
   width: 50%;
 }

 .product-text {
   max-width: 50%;
   margin: 20px auto;
   padding: 20px;
   font: 400 16px/1.7 system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
   color: #333;
 }
 .leftAlign{
  text-align: left;
 }

 /* mobile */
 @media (max-width: 900px) {
   .hero {
     flex-direction: column;
     text-align: center;
     padding: 36px 18px
   }

   nav.nav-links {
     display: none
   }

   .mobile-btn {
     display: inline-block
   }

   .features {
     grid-template-columns: 1fr
   }

   .contact-sec {

     grid-template-columns: 1fr
   }

   .product-part {
     flex-direction: column;
   }

   .product-img {
     width: 100%;
   }
   .product-text {
   max-width: 100%;
 }

   /* section {
        padding: 28px 18px
      } */
 }

 .muted {
   color: var(--muted)
 }

 .center {
   text-align: center
 }