
/* ===============================
   Global Styles
=================================*/
body {
  font-family: "Roboto", sans-serif;
  background: #0b1a4a; /* Dark blue like ISRO page */
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
  color: #000;
}

/* ===============================
   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;
}
.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-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.director-card {
  width: 250px;
  height: 250px;
  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;
}
