.principle-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 5px solid #dc3545;
}
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.emoji {
  font-size: 1.8rem;
  margin-right: 10px;
}

/* Activity card*/

.activity-card {
  border-left: 5px solid #dc3545;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.activity-icon {
  font-size: 1.3rem;
  color: #dc3545;
  margin-right: 10px;
}

/* governing body */

.committee-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.committee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.committee-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.committee-card .card-body {
  padding: 1.25rem;
}
.text-red {
  color: #dc3545;
}

/* Message from Treasurer */

 .message-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}
.treasurer-photo {
  max-width: 280px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.quote-card {
  border-left: 5px solid #dc3545;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.quote-icon {
  font-size: 2rem;
  color: #dc3545;
}
.signature {
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  color: #6c757d;
}