body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #222;
  line-height: 1.6;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background-color: #003366;
  color: white;
}

.header-logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  text-decoration: underline;
}

/* ===== ABOUT US SECTION ===== */
.about-section{
  background-color: #f8fbff;
  padding: 50px 10%;
  font-family: "Poppins", sans-serif;
}

.about-container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
    margin-top: 5%;
  flex: 1 1 50%;
  max-width: 600px;
}

.about-text h5 {

  color: #1a4b84;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #002b70;
  margin-bottom: 25px;
  line-height: 1.5;
}

.about-text h3 {
  font-size: 1.3rem;
  color: #1a4b84;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* ===== IMAGES SIDE ===== */
.about-images {
  margin-top: 15%;
 flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.about-images img {
  width: 60%;   /* ✅ Make each image take full width of its flex column */
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-images .bottom-img img {
  width: 80%;     /* ✅ Slightly smaller for visual hierarchy */
  align-self: flex-end;
}

.about-images img:hover {
  transform: scale(1.03);
}



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    align-items: center;
  }

  .about-images .bottom-img img {
    width: 90%;
  }
}
