/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #022331;
}

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

.page-root {
  max-width: 1512px;
  margin: 0 auto;
  background: #ffffff;
}

/* NAVBAR */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
}

.nav-inner {
  margin-top: 16px;
  width: 100%;
  max-width: 1180px;
  border-radius: 999px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 31, 54, 0.95);
  backdrop-filter: blur(18px);
  color: #ffffff;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-img {
  width: 200px;
  height: 32px;
  border-radius: 999px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #0cb5ff;
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: #0cb5ff;
}

.btn-primary {
  border-radius: 999px;
  background: linear-gradient(135deg, #00a6ff 0%, #00e0ff 100%);
  color: #ffffff;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* HERO */
.hero {
  position: relative;
  height: 880px;
  margin-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/Banner.jpg");
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 24, 43, 0.9) 0%, rgba(2, 24, 43, 0.4) 45%, rgba(255, 255, 255, 0.98) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 160px 32px 120px;
  color: #ffffff;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 600;
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-subtitle {
  font-size: 16px;
  max-width: 320px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-brand-block {
  position: absolute;
  right: 90px;
  bottom: 150px;
  text-align: right;
}

.hero-right-label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-right-link {
  font-size: 14px;
  text-decoration: underline;
}

.hero-btn-arrow {
  font-size: 18px;
}

/* Explore pill under hero */
.hero-explore {
  max-width: 1180px;
  margin: 10px auto 56px;
  display: flex;
  justify-content: center;
}

.hero-explore-btn {
  background: #ffffff;
  color: #022331;
  border: 1px solid #dde7f2;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
}

/* GENERIC SECTIONS */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #007ea8;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 32px;
}

.text-bold {
  font-weight: 600;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.about-left .section-title {
  margin-bottom: 40px;
}

.about-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-bullets li {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 16px;
  font-size: 14px;
}

.bullet-label {
  font-weight: 500;
}

.bullet-body {
  color: #4b5563;
}

.about-right {
  position: relative;
}

.about-image-wrap {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.about-image {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-mission {
  position: absolute;
  bottom: -48px;
  right: 18px;
  width: 280px;
  background: #ffffff;
  border-radius: 26px;
  padding: 18px 20px;
  border: 1px solid #d1e6ff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}

.about-mission h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.about-mission p {
  font-size: 13px;
  margin: 0;
  color: #4b5563;
}

/* PROJECTS */
.projects {
  padding-top: 96px;
  padding-bottom: 120px;
}

.projects .section-title {
  margin-bottom: 48px;
}

.projects-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}

.projects-image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.3);
}

.projects-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.projects-explore {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.projects-cards {
  display: grid;
  gap: 24px;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 24px 22px;
  border-radius: 24px;
  border: 1px solid #dde7f2;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.card-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #d0dbe8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
}

.card-arrow {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.project-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.project-card-header h3 {
  font-size: 18px;
  margin: 0;
  flex-shrink: 1;
  min-width: 0;
}

.project-logo {
  width: 140px;
  height: 92px;
  object-fit: contain;
  flex-shrink: 0;
}

.project-card p {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}

.card-link {
  font-size: 13px;
  color: #007ea8;
  font-weight: 500;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* SERVICES */
.services {
  background: radial-gradient(circle at right top, #e4f4ff 0, #ffffff 55%);
  padding-bottom: 120px;
}

.services .section-title {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid #dde7f2;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
}

.service-card h3 {
  font-size: 16px;
  color: #022331;
  margin: 0;
}

.service-card p {
  margin: 0;
}

.service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

/* CONTACT STRIP */
.contact {
  position: relative;
  max-width: 1512px;
  margin: 40px auto 0;
  border-radius: 32px;
  overflow: hidden;
  height: 260px;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/Products.jpg");
  background-size: cover;
  background-position: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 23, 44, 0.92) 0%, rgba(5, 23, 44, 0.35) 45%, rgba(5, 23, 44, 0.9) 100%);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px 32px 40px;
  color: #ffffff;
}

.contact-content h2 {
  font-size: 32px;
  max-width: 380px;
  margin: 0;
}

.contact-right {
  text-align: right;
  font-size: 14px;
}

.contact-email {
  display: inline-block;
  margin-top: 4px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  padding: 24px 32px 32px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .page-root {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .nav-inner {
    margin: 0 16px;
  }

  .hero {
    height: 580px;
  }

  .hero-content {
    padding: 140px 24px 100px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-brand-block {
    position: static;
    margin-top: 12px;
    text-align: left;
  }

  .hero-explore {
    margin-top: -24px;
  }

  .projects-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-mission {
    position: static;
    margin-top: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 0 24px 64px;
  }

  .contact-content {
    padding-inline: 24px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .hero {
    height: 520px;
  }

  .hero-content {
    padding: 130px 20px 90px;
  }

  .section {
    padding: 0 20px 56px;
  }

  .hero-explore {
    margin-top: -20px;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .contact-right {
    text-align: left;
  }
}
