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

html {
  scroll-behavior: smooth;
}

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;
  position: relative;
}

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

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

.nav-links a {
  font-size: 14px;
  opacity: 0.92;
  color: #ffffff;
  transition: opacity 0.2s;
}

.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;
  transition: background 0.2s;
}

.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 (homepage) */
.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: 72px;
  height: 72px;
  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;
  transition: transform 0.2s, box-shadow 0.2s;
}

.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;
}

.contact-locations {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.contact-locations p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
  font-weight: 500;
}

/* FOOTER */
.footer {
  padding: 32px 32px 40px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  position: relative;
  z-index: 10;
  background: #ffffff;
  margin-top: 0;
  width: 100%;
  clear: both;
  min-height: 80px;
}

.footer p {
  margin: 8px 0;
}

.footer p:first-child {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ========== ABOUT PAGE ========== */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.hero-banner--about {
  height: 938px;
}

.hero-banner--careers {
  height: 600px;
}

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

.hero-banner__overlay--about {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(2, 24, 43, 0.3) 0%, rgba(2, 24, 43, 0.1) 100%);
  padding-left: 132px;
}

.hero-banner__overlay--about .hero-banner__title {
  color: #ffffff;
  font-size: 99px;
  font-weight: 400;
  line-height: 1.05;
  text-align: left;
  max-width: 741px;
}

.hero-banner__overlay--careers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(2, 24, 43, 0.85) 0%, rgba(2, 24, 43, 0.6) 100%);
  padding-left: 132px;
}

.hero-banner__overlay--careers .hero-banner__title {
  color: #ffffff;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  max-width: 800px;
}

/* Advisory Board */
.profile {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.profile-image-wrapper {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-content {
  flex: 1;
  max-width: 800px;
}

.profile-name {
  font-size: 32px;
  font-weight: 600;
  color: #262138;
  margin-bottom: 12px;
  line-height: 1.2;
}

.profile-text {
  font-size: 18px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.separator {
  height: 1px;
  background-color: #e5e7eb;
  margin: 40px 0 40px 250px;
  max-width: 800px;
}

/* ========== CAREERS PAGE ========== */
.careers-description {
  font-size: 28px;
  line-height: 1.5;
  max-width: 900px;
}

.job-posting {
  margin-bottom: 60px;
  padding: 0;
  background: #ffffff;
}

.job-title {
  font-size: 32px;
  font-weight: 700;
  color: #022331;
  margin-bottom: 16px;
  line-height: 1.3;
}

.job-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #4b5563;
  align-items: center;
}

.job-location,
.job-type {
  font-weight: 500;
}

.job-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.job-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #022331;
  margin-bottom: 12px;
}

.job-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.job-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-content ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #01597f;
  font-weight: bold;
  font-size: 16px;
}

.job-content ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  padding-left: 24px;
  position: relative;
}

.apply-btn {
  margin-top: 24px;
  align-self: flex-start;
  padding: 12px 28px;
  font-size: 15px;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .advisory-section,
  .careers-section {
    padding: 60px 80px 100px;
  }

  .hero-banner__overlay--about .hero-banner__title {
    font-size: 72px;
  }

  .hero-banner__overlay--careers .hero-banner__title {
    font-size: 56px;
  }

  .section-description {
    font-size: 32px;
  }
}

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

  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-cta {
    display: none !important;
  }

  .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;
  }

  .advisory-section,
  .careers-section {
    padding: 60px 40px 80px;
  }

  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .separator {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-banner--about {
    height: 500px;
  }

  .hero-banner__overlay--about {
    padding-left: 40px;
  }

  .hero-banner__overlay--about .hero-banner__title {
    font-size: 56px;
  }

  .hero-banner__overlay--careers {
    padding-left: 40px;
  }

  .hero-banner__overlay--careers .hero-banner__title {
    font-size: 48px;
  }

  .job-skills-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media screen and (max-width: 480px) {
  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    position: relative;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(3, 31, 54, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 99;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    display: flex !important;
  }

  .nav-links.active {
    right: 0 !important;
    display: flex !important;
  }

  .nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .nav-links.active::before {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 18px;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    display: none !important;
  }

  .mobile-menu-toggle {
    order: 3;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-logo {
    order: 1;
    flex-shrink: 1;
  }

  .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 {
    height: auto;
    min-height: 260px;
    padding-bottom: 60px;
  }

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

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

  .contact-locations {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    padding: 0 24px;
  }

  .contact-locations p {
    font-size: 12px;
  }

  .footer {
    margin-top: 0;
    padding-top: 24px;
  }

  .advisory-section,
  .careers-section {
    padding: 40px 20px 60px;
  }

  .section-label {
    font-size: 16px;
  }

  .section-description {
    font-size: 24px;
  }

  .hero-banner--about {
    height: 400px;
  }

  .hero-banner__overlay--about {
    padding-left: 20px;
  }

  .hero-banner__overlay--about .hero-banner__title {
    font-size: 44px;
    padding: 0 20px;
  }

  .hero-banner__overlay--careers {
    padding-left: 20px;
  }

  .hero-banner__overlay--careers .hero-banner__title {
    font-size: 44px;
    padding: 0 20px;
  }

  .careers-section {
    padding: 40px 20px 60px;
  }

  .careers-description {
    font-size: 20px;
  }

  .job-posting {
    padding: 24px;
    margin-bottom: 40px;
  }

  .job-title {
    font-size: 22px;
  }

  .job-meta {
    flex-direction: column;
    gap: 8px;
  }

  .profile-image-wrapper {
    width: 150px;
    height: 150px;
  }

  .profile-name {
    font-size: 28px;
  }

  .profile-text {
    font-size: 16px;
  }
}
