:root{
  --bg:#6a6b6b;
  --white:#374151;
  --muted:#ffffff;
  --accent: #003581;       /* navy blue */
  --accent-600:#00143a;   /* darker navy */
  --card:#1f2937;
  --radius:12px;
  --container:1100px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color: var(--muted); /* Light text color to contrast with dark background */;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:16px;
}
/* Make containers use more of the screen */
.container {
  max-width: 1400px;  /* was likely 1100px or smaller */
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;   /* reduce side padding */
}


/* Header */
.site-header{
  background-color: #0f172a; /* dark navy/gray background */
  border-bottom: 1px solid #1f2937; /* subtle border */
  background:linear-gradient(180deg, rgba(0, 53, 129, 0.8), rgba(0, 53, 129, 0.6));
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(15,20,25,0.04);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  height:72px;
  justify-content:space-between;
}

/* Brand */
.brand img{height:40px; display:block;}

/* Nav */
.nav{display:block}
.nav ul{list-style:none; display:flex; gap:18px; margin:0; padding:0; align-items:center}
.nav a{color:var(--muted); text-decoration:none; font-weight:600; padding:8px 6px; transition:color .18s}
.nav a:hover{color:var(--accent)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.6rem 1rem;
  border-radius:8px;
  border:0;
  cursor:pointer;
  font-weight:700;
  text-decoration:none;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 6px 18px rgba(15,98,254,0.12);
}
.btn-ghost{background:transparent; color:var(--accent); border:1px solid rgba(15,98,254,0.08)}
.btn-outline{background:transparent; border:1px solid rgba(0,0,0,0.06); color:var(--muted)}

/* Mobile nav toggle */
.nav-toggle{display:none; background:transparent; border:0; font-size:18px; color:var(--muted)}

/* Hero Layout */
/* Hero Section full screen */
.hero {
  position: relative;
  min-height: 100vh; /* full height of screen */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

/* Hero grid uses more space */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
    flex-wrap: wrap;
}

/* Make video cover background fully */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-left{text-align:left}


/* Hero Form Card */
.hero-form-card{
  background:var(--white);
  padding:22px;
  border-radius:12px;
  box-shadow:0 8px 28px rgba(0,0,0,0.08);
}
.hero-form-card h3{
  margin-top:0;
  margin-bottom:12px;
  font-size:1.2rem;
  color:var(--accent);
}

/* Form fields */
.hero-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hero-form input,
.hero-form select,
.hero-form textarea{
  padding:12px;
  border:1px solid rgba(0,0,0,0.1);
  border-radius:8px;
  font-size:14px;
  width:100%;
}
.hero-form button{
  margin-top:6px;
  align-self:flex-start;
}
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 90vh; /* adjust hero height */
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* pushes video behind everything */
  filter: brightness(0.4); /* dark overlay for readability */
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-form-card {
  background: rgba(17, 24, 39, 0.95); /* solid/dark background so form is not transparent */
  padding: 1.5rem;
  border-radius: 1rem;
}


/* Responsive */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-right{order:-1} /* Show form above text on mobile */
}

/* Sections */

/* Reduce excessive vertical spacing in sections */
.section {
  padding: 60px 30px; /* was 80-120px in some sections */
}

.section-title{font-size:1.4rem; margin:0 0 6px}
.section-sub{color:var(--muted); margin:0 0 24px}

/* Services cards */
.cards-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:18px}
.service-card{background:var(--card); padding:18px; border-radius:12px; box-shadow:0 8px 30px rgba(17,24,39,0.04)}
.service-card h3{margin:10px 0 8px}
.icon-wrap{font-size:22px; background:rgba(51,51,51,0); width:46px; height:46px; display:flex; align-items:center; justify-content:center; border-radius:10px}

/* Parts grid */
.parts-grid{display:grid; grid-template-columns:1fr 380px; gap:22px; align-items:center}
.parts-list{list-style:none; padding:0; margin:0}
.parts-list li{display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed rgba(0,0,0,0.04)}

/* Testimonials */
.testimonial-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px}
.testimonial{background:var(--card); padding:18px; border-radius:12px; box-shadow:0 8px 30px rgba(17,24,39,0.04)}
.testimonial p{margin:0 0 10px; color:var(--muted)}
.testimonial cite{font-weight:700; color:#111827}

/* Contact */
.contact-grid{display:grid; grid-template-columns:1fr 380px; gap:22px; align-items:start}
.contact-form .form-row{display:flex; gap:12px}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.08);
  font-size:14px;
}
.contact-form textarea{resize:vertical}
.form-actions{display:flex; gap:12px; margin-top:14px}

/* map */
.map-embed iframe{width:100%; height:180px; border:0; border-radius:8px}

/* Footer */
.site-footer{background:#0b1220; color:#dbeafe; padding:36px 0 18px; margin-top:36px}
.footer-grid{display:grid; grid-template-columns:1fr 160px 200px; gap:18px; align-items:start}
.footer-links{list-style:none; padding:0; margin:6px 0 0}
.footer-links a{color:#dbeafe; text-decoration:none}
.footer-bottom{padding-top:18px; border-top:1px solid rgba(255,255,255,0.03); text-align:center}

/* Responsive */
@media (max-width:1000px){
  .hero-grid{grid-template-columns:1fr; gap:20px}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .testimonial-grid{grid-template-columns:repeat(2,1fr)}
  .parts-grid, .contact-grid{grid-template-columns:1fr}
  .header-inner{height:64px}
  .nav{position:absolute; top:64px; left:0; right:0; background:var(--white); transform:translateY(-8px); display:none; padding:12px 20px; box-shadow:0 10px 30px rgba(2,6,23,0.08)}
  .nav.open{display:block}
  .nav ul{flex-direction:column; gap:12px}
  .nav-toggle{display:block}
}

@media (max-width:600px){
  :root{font-size:15px}
  .cards-grid{grid-template-columns:1fr}
  .testimonial-grid{grid-template-columns:1fr}
  .header-inner{padding:0 8px}
  .hero-left h1{font-size:1.5rem}
  .brand img{height:34px}
}
/* How It Works Section */
.how-it-works {
  background: #00143a; /* Dark background */
  padding: 56px 0;
  color: #dbeafe; /* Light text color */
}

.how-it-works .section-title {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.how-it-works .section-sub {
  color: #9faebd;
  margin-bottom: 36px;
  text-align: center;
}

.how-it-works-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* How It Works Steps */
.how-it-works-step {
  text-align: center;
  background: #00143a; /* Slightly lighter navy background */
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 22%;  /* Adjust the width so they are nicely spaced */
}

.how-it-works-step .icon-wrap {
  background: #ffffff;
  color: #00305c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-it-works-step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.how-it-works-step p {
  font-size: 14px;
  color: #9faebd;
}

/* Dash between steps */
.step-dash {
  height: 2px;
  background: #9faebd;  /* Light gray dash */
  width: 30px;
  align-self: center;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  .how-it-works-steps {
    flex-direction: column;
    gap: 24px;
  }
  
  .how-it-works-step {
    width: 100%;  /* Full width on small screens */
  }
}




.blog-hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1f2937, #111827);
}

.blog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #60a5fa;
}


.blog-hero p {
  font-size: 1.2rem;
  color: #d1d5db;
}

.blog-list {
  padding: 60px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #1f2937;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  color: #38BDF8; /* sky blue */
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: #60a5fa; /* sky blue */
}

.blog-content p {
  font-size: 0.95rem;
  color: white;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.read-more i {
  margin-left: 6px;
}
