/* ===== SECTION ===== */
.committee-section {
  padding: 60px 0;
  background: #f4f7fb;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

/* ===== TITLES ===== */
.main-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.sub-title {
  font-size: 24px;
  margin: 40px 0 20px;
  border-left: 5px solid #007bff;
  padding-left: 10px;
}

/* ===== GRID ===== */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.committee-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* hover animation */
.committee-card:hover {
  transform: translateY(-8px);
}

/* gradient animation */
.committee-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  top: 0;
  left: 0;
  transition: 0.4s;
}

.committee-card:hover::before {
  height: 100%;
  opacity: 0.08;
}

/* ===== TEXT ===== */
.committee-card h4 {
  font-size: 17px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.committee-card p {
  font-size: 14px;
  color: #555;
  position: relative;
  z-index: 1;
}

.committee-card span {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #007bff;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .committee-grid {
    grid-template-columns: 1fr;
  }
}