.page-container{
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.page-text{
    margin-top: 1%;
   margin-left: 3%;
    flex: 1 1 50%;
    max-width: 600px;
}

.page-text h3{
  color: #1a4b84;
  margin-bottom: 10px;
  font-size: 18px;
 margin-bottom: 2%;
}

.page-text h1 {
  color: #002b70;
  margin-bottom: 20px;
  font-size: 26px;
}

.page-text p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-image {
  flex: 1 1 45%;
  
}


.page-image img {
  margin-left: 5%;
  width: 80%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.09);
  object-fit: cover;
}

/* === HERO SECTION === */
.mission-hero {
    
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../pics/mission-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/*-------------Mission-hero------*/
.mission-hero .overlay{
    position:absolute;
    top:0;
    left:0;
    width: 100%;
     height: 100%;
    background: rgba(6, 11, 16, 0.7); /* translucent blue overlay */
    z-index: 1;
}

/* Text content */


.mission-content {
    margin-top: 5%;
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.mission-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #eaf4ff;
  margin-bottom: 30px;
}


.mission-btn {
  background-color: white;
  color: #003366;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mission-btn:hover {
  background-color: #004aad;
  color: white;
}

.values-list {
  list-style: none;
  margin-top: 1rem;
  color: #333;
  line-height: 1.8;
}

.values-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .page-container {
    flex-direction: column;
    text-align: center;
  }
  .page-image {
    order: -1;
  }
}