* {
  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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0e27;
  border-radius: 50px;
  margin: 50px 20px;
  padding: 100px 0;
}

.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);
}

/* About Us Section */
.about-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #6a5acd 0%, #483d8b 100%);
  color: white;
}

.about-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 5px;
  color: #fff;
}

.stat p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* Facts & Figures Section */
.facts-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  text-align: center;
}

.facts-badge {
  display: inline-block;
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.facts-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 60px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.fact-item {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.fact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.fact-item h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: #3498db;
}

.fact-item p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* News Section */
.news-section {
  padding: 100px 20px;
  background: #f8f9fa;
  text-align: center;
}

.news-badge {
  display: inline-block;
  background: #e3f2fd;
  color: #007bff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.news-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #333;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.news-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 30px;
}

.news-date {
  font-size: 12px;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 15px;
  color: #333;
}

.news-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* 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;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .spectrum-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    padding: 0 20px;
  }

  .spectrum-rocket {
    order: -1;
  }

  .spectrum-rocket img {
    max-height: 400px;
  }

  .career-content {
    padding: 60px 20px;
  }

  .career-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .footer-columns {
    gap: 80px;
  }

  .footer-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
    margin-bottom: 60px;
  }

  .hero-features {
    gap: 30px;
  }

  .feature-text {
    font-size: 15px;
  }

  .spectrum-container {
    gap: 40px;
    padding: 0 20px;
  }

  .spectrum-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .spectrum-description {
    font-size: 16px;
  }

  .spectrum-features li {
    font-size: 15px;
    padding: 10px 0;
  }

  .career-section {
    min-height: 300px;
    margin: 30px 20px;
    border-radius: 30px;
  }

  .career-content {
    padding: 40px 20px;
  }

  .career-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 30px;
  }

  .career-btn {
    padding: 12px 25px;
    font-size: 13px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-features {
    gap: 20px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .flight-cards {
    gap: 20px;
  }

  .flight-card {
    padding: 30px 15px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact-item {
    padding: 20px 15px;
  }

  .news-content {
    padding: 20px;
  }

  .spectrum-rocket img {
    max-height: 300px;
  }

  .spectrum-explore-btn {
    padding: 12px 25px;
    font-size: 13px;
  }

  .career-section {
    min-height: 250px;
    margin: 20px 10px;
    border-radius: 25px;
  }

  .career-content {
    padding: 30px 15px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 40px;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero-features,
.mission-title,
.spectrum-title,
.about-title,
.facts-title,
.career-title {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
