/* ===============================
   Global Styles
=================================*/
body {
  font-family: "Poppins", sans-serif;
  background: #0b1a4a;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #000;
}

/* ===============================
   Who's Who Section
=================================*/
.section-whoswho {
  padding: 70px 30px;
  background: linear-gradient(135deg, #0b1a4a 0%, #132d6b 100%);
  display: flex;
  justify-content: center;
}

.section-whoswho .container {
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 60px 70px;
  border-left: 8px solid #1a3d7c;
}

.section-whoswho h2 {
  font-weight: 800;
  color: #1a3d7c;
  margin-bottom: 45px;
  font-size: 32px;
  text-align: center;
  border-bottom: 4px solid #ff9800;
  display: inline-block;
  padding-bottom: 8px;
}

/* ===============================
   Cards
=================================*/
.whoswho-card {
  background: #fdfdfd;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whoswho-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Image */
.whoswho-card img {
  width: 130px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #1a3d7c;
  background: #fff;
}

/* Info */
.whoswho-info h5 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a3d7c;
}

.whoswho-info p {
  margin: 4px 0;
  font-size: 1rem;
  color: #333;
}

.whoswho-info p span {
  font-weight: 600;
  color: #000;
}

/* ===============================
   Responsive
=================================*/
@media (max-width: 768px) {
  .section-whoswho .container {
    padding: 35px 25px;
  }

  .whoswho-card {
    flex-direction: column;
    text-align: center;
  }

  .whoswho-card img {
    margin-bottom: 15px;
  }
}