body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f4f9;
    margin: 0;
    padding: 0;
  }

  .navbar{
    background-color: black;
    min-height: max-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 0
}

.nav-image{
    width: 8rem;
    height: auto;
    float: left;
    
}

.nav-logo{
    font-size: 2.5rem;
    font-family: "bakbak one",sans-serif;
    color: white;
    width: max-content;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-links a{
    color: white;
    font-size: 1.063rem;
    font-family: "roboto",sans-serif;
    border-radius: 3px;
    text-decoration: none;
}

.nav-links>a:hover{
    color: rgba(255, 255, 255, 0.8);
}
.mission-section {
  padding: 60px 20px;
  background-color: #0f1c2e;
  color: white;
  text-align: center;
}

.mission-title {
  font-size: 36px;
  margin-bottom: 20px;
  animation: slideInTop 1s ease-out;
}

.mission-intro {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

.mission-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.card {
  background: #1c2b45;
  padding: 20px;
  border-radius: 16px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  animation: fadeInUp 1s ease-out forwards;
}

.card-img-container {
  background-color: #24262A;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
}

.card img {
  width: 80%;
  height: 140px; /* Ensure the height matches the container */
  object-fit: cover; /* Makes the image fully cover the box */
  border-radius: 8px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  font-size: 15px;
  color: #cfd8e3;
}

.fade-in.delay-1 {
  animation-delay: 0.5s;
}

.fade-in.delay-2 {
  animation-delay: 0.8s;
}

.mission-quote {
  font-style: italic;
  margin-top: 30px;
  color: white; /* Ensure the text is white */
  animation: fadeIn 1s ease-out;
  animation-delay: 2s; /* Delay visibility by 2 seconds */
  animation-fill-mode: forwards; /* Retain the final state of the animation */
  opacity: 0;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInTop {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
