/* assets/css/governing-body.css */

/* ===============================
   Governing Body Styles
=================================*/
body {
  font-family: "Roboto", sans-serif;
  background: #0b1a4a;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
  color: #fff;
}

.section-wrapper {
  padding: 50px 20px;
}

.section-container {
  width: 80%;
  margin: 0 auto;
  background: #f4f6fb;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #0b1a4a;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff5722;
  margin: 10px auto 0;
  border-radius: 3px;
}

.governing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.governing-card {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.governing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.governing-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background: #1976d2;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
}

.governing-text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}


  body {
  font-family: "Roboto", sans-serif;
  background: #83889b; /* Dark blue like ISRO page */
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
  color: #000;
}
/* ===============================
   Charge Officer Section Styles
=================================*/
/* .section-chargeofficer {
  padding: 60px 15px;
  background: #f8f9ff;
} */

.section-chargeofficer h2 {
   margin-top: 27px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin-bottom: 40px;
  font-size: 2.2rem;
  text-align: center;
}

.charge-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-left: 6px solid #002c61;
}

.charge-card h4 {
  font-weight: 600;
  font-size: 1.4rem;
  color: #002c61;
  margin-bottom: 20px;
  text-align: center;
}

.charge-details p {
  font-size: 1rem;
  margin: 8px 0;
  color: #333;
}

.charge-details span {
  font-weight: 600;
  color: #000;
}

