/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #000;
      color: #fff;
      line-height: 1.6;
    }
  
  /* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #030303;
  padding: 1rem 3rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
  /* background: transparent; */
}

/* Logo section */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  
}

.logo img {
  height: 25px;
  width: auto;
  object-fit: contain;
  border-radius: 4%;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fafdfd;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #ffffff;
}

/* .login-button {
  display: flex;
  min-width: 84px;
  max-width: 480px;
  height: 40px;
  padding: 0 1rem;
  background-color: #2c3035;
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.015em;
}

.login-button:hover {
  background-color: #3a3f45;
} */


/* hero */

  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* padding-top: %; */
    
  }
  
  #bg-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    color: #bcbfcc;
  }
  
  .hero-text p {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #494D5F;
  }
  
  .about, .research, .contact {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .about h2, .research h2, .contact h2 {
    font-size: 2rem;
    color: #eff6f5;
  }
  
  /* About Section: Two-column layout with horizontal image slider */
  .about-heading{
   margin-top: 40px;
  }

.about.split-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    flex-wrap: wrap;
  }
  
  .about-text {
    text-align: left;
    margin-bottom: 180px;
    color: #f6ebeb;
    font-family: 'YourCustomFont', sans-serif; /* Replace with your actual font name */
  }
  
  .about-heading {
    font-weight: 1000;
    font-size: 50px;
    margin-bottom: 50px;
    
  }
  
  .about-line {
    font-size: 18px;
    margin: 10px 0;
  }
  
  
  .sliderContainer {
    flex: 1;
    position: relative;
    width: 120%;
    max-width: 900px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #333;
  }
  
  .sliderContainer::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 1;
  }
  
  .sliderContainer > div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    z-index: 0;
  }
  
  .sliderContainer > div.active {
    opacity: 1;
    z-index: 2;
  }
  
  
  
  
  
  .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #3c4140;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #0e0f0f;
    color: #f3f5f8;
  }

  .research {
    position: relative;
    min-height: 600px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
  }
  
  .research::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('research.bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(8%); /* Makes it faint/darker */
    z-index: 0;
  }
  
  /* Ensure your text appears above the overlay */
  .research * {
    position: relative;
    z-index: 1;
  }
  
  
  
  
  .contact{
    margin-top: 100px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    margin: auto;
    gap: 1.5rem;
  }
  
  input, textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
  }
  
  button {
    padding: 0.8rem;
    background: #3c4140;
    color: #f3f5f8;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background: #2d2e2e;
    color: #f3f5f8;
  }
  
  .nasa-footer {
    background-color: #161718;
    color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin: 20px;
  }
  
  .footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .social-media {
    display: flex;
    gap: 10px;
  }
  
  .social-media li {
    list-style: none;
  }
  
  .social-media li a img {
    width: 24px;
    height: 24px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
  }
  
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* sloustion */
.solutions-slider {
  width: 100%;
  background-color: #eff6f5;
}

.split-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 60px 20px;
  gap: 90px;
}

.left-image img {
  width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.right-content {
  max-width: 700px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 10px;
}

.right-content h1 {
  font-size: 40px;
  color: #2f4af0;
  margin: 0 0 20px;
  line-height: 1.2;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.learn-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #2f4af0;
  color: #2f4af0;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.learn-btn:hover {
  background: #2f4af0;
  color: white;
}

/* Swiper-specific */
.swiper {
  width: 100%;
  height: 100%;
  
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  color: #2f4af0;
  

}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .left-image img {
    width: 100%;
    max-width: 90vw;
  }

  .right-content h1 {
    font-size: 28px;
  }
}

/* cts section */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1; /* adjust for visibility */
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.cta-container h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #cbd5e1;
}

.cta-container button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-container button:hover {
  background-color: #1d4ed8;
}


/* footer */
 /* Footer Styles */
.modern-footer {
  background-color: #000;
  color: #ccc;
  padding: 100px 40px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 150px;
}

.logo-col {
  flex: 2 1 250px;
   
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-social {
  margin: 15px 0;
}

.footer-social a {
  margin-right: 10px;
  font-size: 16px;
  color: #ccc;
}

.footer-social a:hover {
  color: white;
}

.footer-btn {
  background-color: #ff2b84;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.footer-btn:hover {
  background-color: #e61c72;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
}

.divider {
      height: 1px;
      background: #222;
      margin: 10px 5;
    }