.mission-section {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
  background: linear-gradient(to bottom, #0A1A4A, #0A1740, #07112F);
  position: relative;
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

.mission-text h1 {
  z-index: 2;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.mission-text p {
  z-index: 2;
  max-width: 620px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.grid-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: -40px;
  height: 360px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.65);
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: white;
}

.objectives-section-banner {
  width: 100%;
  padding: 2.2rem 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(56, 150, 245, 0.55), rgba(80, 165, 255, 0.65), rgba(56, 150, 245, 0.55));
  border-radius: 6px;
  margin: 0rem 0 4rem 0;
}
