/* Committee Section Styles */
.committee {
  padding: 80px 0;
  background: var(--white-color);
}

.committee .section-title {
  margin-bottom: 50px;
}

.committee .section-title h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.committee .section-title h2 span {
  color: var(--primary-color);
}

.committee .section-title p {
  color: var(--text-color);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Member Card Styles */
.member-card {
  background: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  transition: var(--transition);
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-img {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
}

.member-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*! height: 100%; */
  object-fit: cover;
  transition: var(--transition);
}

.member-card:hover .member-img img {
  transform: scale(1.05);
}

.member-card .card-body {
  padding: 20px;
  text-align: center;
}

.member-card h3 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.member-card .location {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.member-card .location i {
  color: var(--primary-color);
  font-size: 1rem;
}

.member-card .role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .committee {
    padding: 60px 0;
  }

  .committee .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .committee {
    padding: 40px 0;
  }

  .committee .section-title h2 {
    font-size: 1.8rem;
  }

  .committee .section-title p {
    font-size: 1rem;
  }

  .member-card h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .committee .section-title h2 {
    font-size: 1.5rem;
  }

  .member-card {
    margin-bottom: 20px;
  }

  .member-card .card-body {
    padding: 15px;
  }
}