.event-header {
  height: 450px;
  color: white;
  text-align: center;
  align-content: center;
  padding: 100px 20px;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: fadeInDown 1.4s ease-in-out;
  background: linear-gradient(
      135deg,
      rgba(26, 79, 139, 0.548) 0%,
      rgba(58, 125, 206, 0.27) 100%
    ),
    url("./img/page-header.webp") no-repeat center center/cover;

  position: relative;
  overflow: hidden;
}
.committee-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  animation: fadeUp 0.8s forwards;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.committee-card:nth-child(1) {
  animation-delay: 0.1s;
}
.committee-card:nth-child(2) {
  animation-delay: 0.2s;
}
.committee-card:nth-child(3) {
  animation-delay: 0.3s;
}
.committee-card:nth-child(4) {
  animation-delay: 0.4s;
}
.committee-card:nth-child(5) {
  animation-delay: 0.5s;
}
.committee-card:nth-child(6) {
  animation-delay: 0.6s;
}
.committee-card:nth-child(7) {
  animation-delay: 0.7s;
}
.committee-card:nth-child(8) {
  animation-delay: 0.8s;
}
.committee-card:nth-child(9) {
  animation-delay: 0.9s;
}
.committee-card:nth-child(10) {
  animation-delay: 1s;
}
.committee-card:nth-child(11) {
  animation-delay: 1.1s;
}
.committee-card:nth-child(12) {
  animation-delay: 1.2s;
}
.committee-card:nth-child(13) {
  animation-delay: 1.3s;
}
.committee-card:nth-child(14) {
  animation-delay: 1.4s;
}
.committee-card:nth-child(15) {
  animation-delay: 1.5s;
}
.committee-card:nth-child(16) {
  animation-delay: 1.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.committee-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(365deg, #007bff, #00d4ff);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.committee-card i,
.committee-card img {
  font-size: 48px;
  margin-bottom: 15px;
  color: #007bff;
  transition: transform 0.5s ease, color 0.5s ease;
}

.committee-card:hover i {
  transform: translateY(-6px) scale(1.15);
  color: #00b894;
}

.committee-card h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  transition: color 0.3s ease;
}

.committee-card:hover h5 {
  color: #007bff;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
