* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo span {
  font-size: 20px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
  color: #ffffff;
}

.launch-btn {
  background: #007bff;
  color: white !important;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 1 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.launch-btn:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300;
  color: white;
  margin-bottom: 80px;
  line-height: 0.9;
  letter-spacing: -2px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: white;
}

.feature-bullet {
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.8;
  flex-shrink: 0;
}

.feature-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.feature-text strong {
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

/* Mission Section */
.mission-section {
  padding: 100px 20px;
  background: white;
  text-align: center;
}

.mission-badge {
  display: inline-block;
  background: #f0f8ff;
  color: #007bff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.mission-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background: #007bff;
  color: white;
}

/* Spectrum Section */
/* Spectrum Section */
.spectrum-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0e27;
  border-radius: 50px 50px 50px 50px;
  margin-top: -50px;
  margin-left: 50px; 
  margin-right: 50px; 
  padding-top: 100px;
}

.spectrum-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: #0a0e27;
  border-radius: 50px 50px 50px 50px;
  z-index: 4;
}

.spectrum-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.spectrum-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.7);
  z-index: 2;
}

.spectrum-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.spectrum-content {
  color: white;
}

.spectrum-badge {
  display: inline-block;
  color: white;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.spectrum-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
}

.spectrum-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.spectrum-features {
  list-style: none;
  margin-bottom: 50px;
}

.spectrum-features li {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 300;
  color: white;
  opacity: 0.9;
}

.spectrum-explore-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.spectrum-explore-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.spectrum-rocket {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spectrum-rocket img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Career Section */
.career-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50px;
  margin: 50px 20px;
  text-align: center;
}

.career-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.career-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.9) 100%);
  z-index: 2;
}

.career-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 800px;
  padding: 80px 40px;
}

.career-badge {
  display: inline-block;
  color: white;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.career-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 50px;
  color: white;
}

.career-btn {
  background: white;
  color: #007bff;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.career-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Manufacturing Section */
.manufacturing-section {
  padding: 100px 20px;
  background: white;
}

.manufacturing-badge {
  display: inline-block;
  background: #f0f8ff;
  color: #007bff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.manufacturing-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  color: #333;
  margin-bottom: 30px;
  max-width: 800px;
}

.manufacturing-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
}

.manufacturing-video {
  margin-top: 60px;
}

.video-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.video-container img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Flight Options Section */
.flight-options {
  padding: 80px 20px;
  background: #fff;
}

.flight-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.flight-badge {
  display: inline-block;
  color: #0b63ff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.flight-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #0b0d17;
  margin: 6px 0 10px;
}

.flight-description {
  max-width: 980px;
  color: #536079;
  font-size: 16px;
}

.book-btn {
  display: inline-block;
  border: 1.5px solid #0b63ff;
  color: #0b63ff;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.book-btn:hover {
  background: #0b63ff;
  color: #fff;
  transform: translateY(-1px);
}

.flight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 18px;
}

.flight-card {
  position: relative;
  background: #f4f6fb;
  border: 1px solid #e6e9f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.card-step {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #a1a9b7;
  font-weight: 600;
  font-size: 14px;
}

.card-image {
  flex: 1 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 320px;
}

.card-image img {
  max-width: 80%;
  height: auto;
  object-fit: contain;
}

.flight-card h3 {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 600;
  color: #0b0d17;
}

.flight-card p {
  margin-top: 8px;
  font-size: 15px;
  color: #5d667a;
}

/* Responsive tweaks for Flight Options */
@media (max-width: 1200px) {
  .card-image {
    min-height: 280px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .flight-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .flight-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .flight-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .flight-card {
    min-height: 440px;
    padding: 20px;
  }
  .card-image {
    min-height: 220px;
  }
  .book-btn {
    align-self: flex-start;
  }
}

/* About Us Section */
.about-section {
  background: #fff;
  color: #0b0d17;
  padding: 80px 20px 40px;
}

.about-header {
  max-width: 1400px;
  margin: 0 auto 22px;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.about-header-left {
  max-width: 980px;
}

.about-kicker {
  color: #0b63ff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 6px 0 10px;
}

.about-sub {
  color: #536079;
  font-size: 16px;
  max-width: 980px;
}

.about-cta {
  display: inline-block;
  border: 1.5px solid #0b63ff;
  color: #0b63ff;
  background: transparent;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.about-cta:hover {
  background: #0b63ff;
  color: #fff;
  transform: translateY(-1px);
}

.about-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  scroll-behavior: smooth;
  /* horizontal scroll for very small screens when we switch to flow */
}

.about-card {
  border-radius: 16px;
  overflow: hidden;
  background: #eef1f6;
  height: clamp(220px, 34vw, 420px);
}
.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-bottom {
  max-width: 1400px;
  margin: 16px auto 0;
  padding: 0 20px;
  position: relative;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: #e6e9f0;
}

.about-arrows {
  position: absolute;
  right: 20px;
  bottom: -18px;
  display: flex;
  gap: 12px;
}
.about-arrow {
  appearance: none;
  border: 1px solid #cfd6e6;
  background: #fff;
  color: #0b0d17;
  width: 36px;
  height: 28px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.about-arrow:hover {
  border-color: #0b63ff;
  color: #0b63ff;
}

/* Responsive layout for About */
@media (max-width: 1024px) {
  .about-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .about-grid {
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    display: grid;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .about-grid::-webkit-scrollbar {
    display: none;
  }
  .about-arrows {
    display: flex;
  }
}

/* Facts & Figures Section */
.facts-section {
  position: relative;
  padding: 80px 20px 120px;
  background: #ffffff; /* light background to match reference */
  color: #0b0d17;
  overflow: hidden; /* contain ::after gradient */
}
.facts-section::after {
  /* bottom gradient sitting below the cards */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 179, 171, 0.65) 35%,
    rgba(145, 34, 61, 0.65) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.facts-container {
  position: relative;
  z-index: 1; /* keep above gradient */
  max-width: 1400px;
  margin: 0 auto 24px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
}

.facts-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.facts-badge {
  /* override previous dark-styled badge */
  background: transparent;
  color: #0b63ff;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

.facts-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: #0b0d17;
}

.more-info-btn {
  display: inline-block;
  border: 1.5px solid #0b63ff;
  color: #0b63ff;
  background: transparent;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  align-self: start;
}
.more-info-btn:hover {
  background: #0b63ff;
  color: #fff;
  transform: translateY(-1px);
}

.facts-cards {
  position: relative;
  z-index: 1; /* above gradient */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fact-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #f0d4d4; /* subtle rose border to blend with gradient */
  border-radius: 18px;
  min-height: 360px;
  padding: 28px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.fact-card-title {
  font-size: 18px;
  color: #0b0d17;
  font-weight: 600;
  margin-bottom: 16px;
}

.fact-card-value {
  margin-top: auto;
  font-weight: 300;
  color: #0b0d17;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
}

.fact-card-value.align-right {
  align-self: flex-end;
}

.fact-card-center .fact-card-value.big {
  /* center the middle value and allow two lines */
  align-self: center;
  text-align: center;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 300;
}

/* Responsive layout for Facts */
@media (max-width: 1024px) {
  .facts-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .more-info-btn {
    justify-self: start;
  }
  .facts-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .facts-cards {
    grid-template-columns: 1fr;
  }
  .fact-card {
    min-height: 300px;
    padding: 22px;
  }
}

/* News Section */
.news-section {
  background: #fff;
  text-align: initial;
  padding: 80px 20px;
}

/* Newsroom header layout */
.newsroom-header {
  max-width: 1400px;
  margin: 0 auto 24px;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.newsroom-badge {
  color: #0b63ff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.newsroom-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: #0b0d17;
}
.newsroom-btn {
  display: inline-block;
  border: 1.5px solid #0b63ff;
  color: #0b63ff;
  background: transparent;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.newsroom-btn:hover {
  background: #0b63ff;
  color: #fff;
  transform: translateY(-1px);
}

/* Newsroom cards */
.newsroom-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.newsroom-card {
  display: flex;
  flex-direction: column;
}
.newsroom-media {
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  background: #eef1f6;
}
.newsroom-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.newsroom-meta {
  padding: 16px 6px 0;
}
.newsroom-date {
  display: inline-block;
  font-size: 12px;
  color: #6b7486;
  background: #f2f4f8;
  border: 1px solid #e6e9f0;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 10px;
}
.newsroom-headline {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #0b0d17;
}

/* Responsive newsroom grid */
@media (max-width: 1024px) {
  .newsroom-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsroom-media {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .newsroom-grid {
    grid-template-columns: 1fr;
  }
  .newsroom-media {
    height: 240px;
  }
}

/* Footer */
.footer {
  background: #0a0e27;
  color: white;
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-logo {
  margin-bottom: 60px;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.5px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 120px;
  margin-bottom: 80px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 16px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: #007bff;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: white;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.social-icons a:hover {
  opacity: 1;
  color: #007bff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 300;
}

/* End of responsive adjustments */
