:root{
  --bg: #f7f8fb;
  --surface: #ffffff;
  --muted: #586273;
  --accent: #0b6efd; /* primary */
  --accent-2: #0b9efd;
  --text: #0f1720;
  --radius: 12px;
  --gap: 1.25rem;
  --max-width: 1100px;
  --shadow: 0 6px 18px rgba(11, 6, 40, 0.06);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 16px;
  color: var(--text);
}




*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

/* Container */
h2{
  font-size: 1.5rem !important;
}
.container{
  width:calc(100% - 2rem);
  max-width: var(--max-width);
  margin:0 auto;
  padding: 0;
}

/* Video Background */


/* Background video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* Overlay to keep text readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 25, 79, 0.356); /* matches your white gradient style */
  z-index: -1;
}

/* Ensure text stays above video */
.hero-text {
  color:var(--surface);
  position: relative;
  z-index: 1;
}
/* card hover animation */
.card{
  border:2px solid #adadad;
  transition:transform .3s ease, border-color .3s ease;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.card:hover{
  transform:scale(1.05);
  border-color:#2563eb;
}

/* Header */
.site-header{
  background:linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(15,17,32,0.05);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:0.75rem 0;
}
.brand{
  font-weight:700;
  text-decoration:none;
  color:var(--text);
  font-size:1.05rem;
}
.nav{
  display:flex;
  gap:1rem;
  align-items:center;
}
.nav-link{
  text-decoration:none;
  padding:0.45rem 0.6rem;
  border-radius:8px;
  color:var(--muted);
}
.nav-link.active{ color:var(--text); font-weight:600; }
.nav-link.cta{
  background:var(--accent);
  color:#fff;
  box-shadow:var(--shadow);
  padding:0.5rem 0.85rem;
}
.mobile-menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:1.25rem;
}

/* Hero */
.hero{
  padding:3.25rem 0;
  text-align:center;
  height:70vh;
  position:relative;
  overflow:hidden;
}
.hero-text h1{
  text-align: center;
 
  font-size:3rem;
  line-height:1.05;
}
.hero-text p{
    font-size:1.125rem;
   color:var(--surface);
    margin:1.5rem auto;
     max-width:90ch; 
    }
.hero-ctas .btn{ 
  margin-top: 4rem;
  margin-right:0.5rem;
  border-radius: 5px;
 }

/* Buttons */
.btn{
  display:inline-block;
  text-decoration:none;
  padding:0.6rem 0.9rem;
  border-radius:10px;
  border:1px solid transparent;
  font-weight:600;
  cursor:pointer;
}
.btn-primary{ background:var(--accent); color:#fff; box-shadow: 0 8px 18px rgba(11,110,253,0.12); }
.btn-outline{ background:transparent; border:1px solid rgba(15,17,32,0.08); color:var(--text); }
.hero .btn-outline{ background:#0b70fd48; border:2px solid var(--accent); color:var(--surface); }
.btn-sm{ padding:0.45rem 0.6rem; border-radius:8px; font-size:0.9rem; }

/* Features */
.features .section-title, .highlight .section-title, .capabilities .section-title { margin-bottom:0.75rem; font-size:1.25rem; }
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:1rem; }
.feature{ background:var(--surface); padding:1rem; border-radius:12px; box-shadow:var(--shadow); }

/* Products preview */
.product-preview-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; margin-top:1rem; }
.product-card{ background:var(--surface); padding:1rem; border-radius:12px; box-shadow:var(--shadow);  }
.product-card.featured{
  border:2px solid var(--accent);
  transform:translateY(-6px);
}
.product-card .badge{ position:absolute; top:10px; right:10px; background:var(--accent); color:#fff; padding:0.25rem 0.5rem; border-radius:8px; font-size:0.8rem; }


/* products-box */
.products-box{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
 

/* product dimension table */
table {
        
        border-collapse: separate;
        border-spacing: 0;
        background: var(--surface);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    th {
        background: var(--accent);
        border: 1px solid #e1e4ea;
        text-align: center;
        padding: 5px;
        color: #fff;
        
        
       
    }

    td {
       
        border: 1px solid #e1e4ea;
        padding: 5px;
        color: var(--text);
    }

    tr:last-child td {
        border-bottom: none;
    }

    tr:nth-child(even) {
        background: #f0f4ff; /* light accent tint */
    }

   
/* page-hero  */
.page-hero {
 width: 90%;
  margin:0 auto; 
}
    
/* Large featured on products page */
.featured-lg{  
  border-left:6px solid var(--accent); 
  
  background:linear-gradient(180deg,#fff,#fbfdff); box-shadow:0 12px 30px rgba(11,6,40,0.08); 
  display: flex; 
  flex-direction: column;
  
  width: 90%;
  margin: auto;
}
.featured-lg .product-detail {
  display: grid;
  grid-template-columns: 1fr 1.5fr 2fr;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  gap: 10px;
  width: 100%;
}



/* Small screens (e.g. mobiles) */
@media (max-width: 990px) {
  .featured-lg .product-detail {
    grid-template-columns: 1fr; /* stack vertically */
  }
}
.featured-lg .product-detail div{
  
  padding:10px;
  

 
}
.featured-lg .product-detail h3,img{
  
  border-radius: 5px;
  margin-top:0;
 
}


/* Contact layout */
.contact-grid{ display:grid; grid-template-columns:1fr 320px; gap:1.5rem; align-items:start; }
.form-card{ background:var(--surface); padding:1.25rem; border-radius:12px; box-shadow:var(--shadow); border: 2px solid #0b70fd6f;}
.form-card h2{margin-top:0; }
.form-card label{ display:block; margin-bottom:0.8rem; font-size:0.95rem; color:var(--muted); }
.form-card input[type="text"], .form-card input[type="email"], .form-card input[type="tel"], .form-card select, .form-card textarea{
  width:100%; padding:0.6rem; border-radius:8px; border:1px solid rgba(15,17,32,0.08); margin-top:0.35rem;
}

/* Footer */
.site-footer{ padding:1.25rem 0; background:transparent; color:var(--muted); }
.footer-grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:1rem; align-items:start; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links a{ text-decoration:none; color:var(--muted); }
.copyright{ text-align:center; font-size:0.9rem; margin-top:1rem; border-top:1px solid rgba(15,17,32,0.05); padding-top:1rem; }
/* Misc */
.section-title{ font-weight:700; }
.subtitle{ color:var(--muted); margin-bottom:1rem; }
.card-actions{ margin-top:1rem; display:flex; gap:0.5rem; flex-wrap:wrap; }
.form-actions{ display:flex; gap:0.6rem; margin-top:0.5rem; }
.form-feedback{ margin-top:0.8rem; font-weight:600; }
.form-feedback.busy{ color:var(--muted); }
.form-feedback.success{ color:green; }
.form-feedback.error{ color:crimson; }

/* Responsive */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:1fr 1fr; }
  .cap-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .featured-lg{ grid-column:auto; }
}
@media (max-width:680px){
  .feature-grid{ grid-template-columns:1fr; }
  .cap-grid{ grid-template-columns:1fr; }
  .nav{ display:none; }
  .mobile-menu-toggle{ display:inline-block; }
  .nav.open{ display:flex; position:absolute; right:1rem; top:64px; background:white; padding:0.75rem; border-radius:8px; flex-direction:column; box-shadow:var(--shadow); }
  .container{ padding-left:1rem; padding-right:1rem; }
}

