
/* ===============================
   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;
  }
}



/* ===============================
   Wrapper
=================================*/
.org-structure-wrapper {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* ===============================
   Card Styling
=================================*/
.org-structure-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 40px 30px;
  max-width: 950px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-structure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}

/* Heading */
.org-structure-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #002c61;
  position: relative;
}

.org-structure-card h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ff5722, #ff9800);
  border-radius: 2px;
}

/* Flowchart Image */
.flowchart-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 10px 0;
}

.flowchart-container img {
  max-width: 85%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.flowchart-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* ===============================
   Responsive
=================================*/
@media (max-width: 768px) {
  .org-structure-card { padding: 25px 15px; }
  .org-structure-card h2 { font-size: 22px; }
  .flowchart-container img { max-width: 100%; }
}


/* ===============================
   Wrapper
=================================*/
.manpower-wrapper {
  padding: 50px 20px;
}

.manpower-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #f4f6fb;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 40px 30px;
  animation: fadeIn 1.2s ease-in-out;
}

/* ===============================
   Title
=================================*/
.section-title {
  text-align: center;
  /* margin-bottom: 40px; */
}
.section-title h1 {
  font-size: 30px;
  font-weight: 700;
  color: #1a3d7c;
}
.section-title h2 {
  font-size: 24px;
  font-weight: 600;
  color: #444;
  margin: 30px 0 20px;
  border-bottom: 2px solid #eee;
  display: inline-block;
  padding-bottom: 6px;
}

/* ===============================
   Profile Cards
=================================*/
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
  gap: 30px;
}

.profile-card {
  background: #ffffffff;
  border-radius: 14px;
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  position: relative;
}
.profile-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}
.profile-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 4px solid #1a3d7c22;
}
.profile-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a3d7c;
}
.profile-card p {
  font-size: 15px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Director card slightly bigger */
/* Director card as square */
.director-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.director-card {
  width: 250px; /* fixed square width */
  height: 250px; /* fixed square height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: #ffffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.director-card img {
  width: 172px;
  height: 157px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid #1a3d7c22;
}

.director-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a3d7c;
}

.director-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin: 0;
}


