header {
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--border);
  z-index:10;
}

.nav {
  height:76px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav ul {
  display:flex;
  gap:32px;
  list-style:none;
}

.hero {
  height:90vh;
  background:url("../images/hero/hero.jpg") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  color:#fff;
}

.hero-overlay {
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.65);
}

.hero-content {
  position:relative;
  max-width:800px;
}

section { padding:110px 0; }
.alt { background:var(--light); }

.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo span {
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
}

.nav ul li a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ABOUT SECTION FIX */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.15);
}

/* Mobile */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================= */
/* MOBILE RESPONSIVE FIXES */
/* ============================= */

@media (max-width: 768px) {

  /* Header */
  .nav {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 12px;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0;
  }

  /* Hero */
  .hero {
    height: auto;
    padding: 120px 0 80px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
  }

  .cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Sections */
  section {
    padding: 80px 0;
  }

  h2 {
    font-size: 30px;
  }

  .section-intro {
    font-size: 15px;
    margin-bottom: 40px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Cards */
  .service-card img,
  .industry-card img {
    height: 180px;
  }

  /* Contact Form */
  form {
    padding: 28px;
  }
  
  /* Fix CTA buttons on mobile */
	.cta {
	  flex-direction: column;
	  align-items: stretch;
	  gap: 14px;
	}

}



