/* GENERAL RESET */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #e8e0d9;
  color: #111;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

/* HEADER */
/* Floating Top Left Navigation Buttons (Figure.ai style) */
.top-left-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.top-left-nav button {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background-color 0.3s ease;
}

.top-left-nav button:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .top-left-nav {
    flex-direction: column;
  }
}

.top-left-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.top-left-nav.hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}


/* VIDEO */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* HERO TEXT BLOCK (like Figure.ai) */
.hero-text-section {
  position: absolute;
  bottom: 8%;       /* ⬅ Pushes text lower */
  left: 3%;       /* ⬅ Pushes more to the left edge */
  z-index: 10;
  max-width: 480px;
  color: #fff;
  padding: 0 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
}


.hero-text-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-main-text {
  font-size: 1.8rem;
  font-weight: 800; /* ⬅️ makes it bolder */
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5); /* subtle depth */
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  margin: 0;
}



@media (max-width: 768px) {
  .hero-main-text {
    font-size: 1.4rem;
  }

  .hero-text-section {
    bottom: 8%;
    left: 3%;
    max-width: 90%;
  }
}




/* MISSION */
.info-section {
  background-color: #e8e0d9;
  color: #111;
  padding: 8rem 2rem;
}

.mission-link {
  font-size: 1.5rem; /* Increase link text too, if needed */
  font-weight: 600;
  color: #f9f9f9;
}

.mission-link:hover{
color: #aaa;
}
.mission-subtitle {
  font-size: 2rem;
  font-weight: 500;
  max-width: 1200px;
  margin: 0 auto 1rem auto;
  padding: 0 2rem;
}
.mission-block {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 2rem;
}
@media(min-width: 800px) {
  .mission-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.mission-left {
  flex: 1;
}
.mission-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  max-width: 500px;
  margin: 0;
}
.mission-right {
  flex: 1;
}
.mission-right p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 1rem;
}

.mission-right p.mission-text {
  font-size: 1.2rem !important;
  line-height: 1.7 !important;
}

.mission-right a {
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  margin-bottom: 0.6rem;
  display: inline-block;
}


/* FULL WIDTH IMAGE */
.full-image-section {
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 0;
}
.full-image-section img {
  display: block;
  width: 100vw;
  height: auto;
  object-fit: cover;
}

/* FOOTER */
footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}
.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 1rem;
}
.footer-column h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}
.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  margin: 2rem 0 0 0;
  border-top: 1px solid #333;
  padding: 1rem 0;
  font-size: 0.9rem;
}
.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}
/* Roadrunner Section */
.roadrunner-section {
  background-color: #e8e0d9; /* match anduril beige */
  padding: 4rem 2rem;
}

.roadrunner-block {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media(min-width: 800px) {
  .roadrunner-block {
    flex-direction: row;
    align-items: center;
  }
}

.roadrunner-left {
  flex: 1;
}

.roadrunner-video {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.roadrunner-right {
  flex: 1;
  padding-left: 2rem;
}

.roadrunner-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #000;
}

.roadrunner-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #000;
}

.roadrunner-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #222;
  max-width: 500px;
}

.roadrunner-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}

.roadrunner-link:hover {
  color: #555;
}
/* SHIELD.AI Style Horizontal Panels - UPDATED */
.three-panel-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 4rem 1rem;
  border-top: 1px solid #e8e0d9;
  border-bottom: 1px solid #e8e0d9;
}

.panel {
  flex: 1;
  position: relative;
  border-left: 1px solid #aaa;
  border-right: 1px solid #aaa;
  overflow: hidden;
  background-color: #f4f4f4;
  text-align: center;
  padding: 3rem 1rem;
  height: 600px; /* doubled height */
  transition: background 0.3s ease;

  display: flex;                /* NEW */
  flex-direction: column;       /* NEW */
  justify-content: center;      /* NEW - centers vertically */
  align-items: center;          /* NEW - centers horizontally */
  text-align: center;           /* Keeps text nicely aligned */
}

.panel:first-child {
  border-left: none;
}
.panel:last-child {
  border-right: none;
}

.panel-content {
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0 !important;
  transform: translateY(100%) !important;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1;
}

/* Hide text on hover */
.panel:hover img {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.panel:hover .panel-content {
  opacity: 0;
  pointer-events: none;
}

.panel-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.panel-text {
  font-size: 1rem;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.read-more {
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-family: monospace;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  display: inline-block;
  cursor: pointer;
}
 .careers-section {
  background-color: #e8e0d9;
  padding: 3rem 2rem;
}

.careers-container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
   padding: 0 2rem; /* ✅ Adds space on sides */
}

.careers-text {
  max-width: 500px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   flex: 1;
    margin-left: 3rem; /* ✅ Pushes text rightward */
}

.careers-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.careers-text h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.careers-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.careers-link {
  font-size: 18px;
  text-decoration: none;
  border-bottom: 2px solid black;
  padding-right: 10px;
  display: inline-flex;
  align-items: center;
  color: black;
}

.careers-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  max-width: 650px;
  width: 100%;  /* ✅ Align images to the left */
}


.top-img {
  width: 46% !important;  /* ✅ Fix overflow */
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  max-width: 100%;          /* Ensures it doesn't exceed its container */
  margin-left: 0rem;      /* ✅ Nudges it slightly more to the left */
  margin-top: 1rem;         /* ✅ Move image down */
}



.bottom-imgs {
  display: flex;
  gap: 1rem;
   flex-wrap: 100; /* ✅ Allow wrapping on narrow screens */
}

.bottom-imgs img {
width: 46% !important;  /* ✅ Fix overflow */
  border-radius: 6px;
  object-fit: cover;
   max-width: 100%;            /* Responsive safety */
}

.stretched-wrapper {
  display: flex;
  width: 100%;
  gap: 1rem;
}


@media (max-width: 900px) {
  .careers-container {
    flex-direction: column;
  }

  .bottom-imgs {
    flex-direction: column;
  }

  .bottom-imgs img {
    width: 100%;
  }
}
.partner-logos-section {
  margin: 4rem 0; /* spacing from careers section */
  padding: 2rem 0;
  background-color: #e8e0d9;
  overflow: hidden;
}

.logo-slider {
  display: flex;
  gap: 3rem;
  animation: scroll-left 15s linear infinite;
  align-items: center;
  background-color: #e8e0d9;
}

.logo-slider img {
  height: 80px; /* Adjust logo size here */
  object-fit: contain;
}

@keyframes scroll-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .logo-slider img {
    height: 50px;
  }
}

/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #e8e0d9;
  color: #111;
  overflow-x: hidden;
}

/* Locomotive Scroll smooth */
html.has-scroll-smooth {
  overflow: hidden;
}

[data-scroll-container] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1rem;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.site-header .navbar a {
  color: #e8e0d9;
  margin-left: 1rem;
  text-decoration: none;
}

/* Section Padding */
.panel-section {
  padding: 8rem 2rem;
}
.gray-bg {
  background: #f4f4f4;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.reverse {
  flex-direction: row-reverse;
}

/* Three Card Layout */
.three-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.card {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  background: #eaeaea;
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}
.card h3 {
  margin-bottom: 1rem;
}

/* Image Grid */
.images-grid {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.images-grid img {
  width: 100%;
  max-width: 30%;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(30px);
}

/* Logo Slider (horizontal moving logos) */
.partner-logos-section {
  overflow: hidden;
  background-color: #e8e0d9;
}

.logo-slider {
  display: flex;
  flex-wrap: nowrap;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }  /* ✅ Scrolls the full width of one full set */
}

.partner-logos-section img {
  max-height: 50px;
  margin-right: 50px;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

/* Reveal Animations (for GSAP) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: #000;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .three-cards {
    flex-direction: column;
  }
  .container {
    flex-direction: column;
  }
  .images-grid img {
    max-width: 100%;
  }
}
.image1-wrapper {
  background-color: #e8e0d9;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.image1-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.image1-img {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 5s ease, opacity 5s ease;  /* Slow transition, 2 seconds */
}

.image1-img.show {
  opacity: 1;
  transform: translateY(0);
}
