/* ====================== Events ====================== */
.events {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef2f6, #dce6f9);
  text-align: center;
}

.events h2 {
  font-size: 3rem;
  color: #1305d4;
  margin-bottom: 60px;
  font-weight: bold;
  position: relative;
}

.events h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f9d342;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ====== Event Card ====== */
.event-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 40px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  max-width: 700px;
  margin: 0 auto 40px;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* صورة دائرية للفعالية */
.event-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  border: 5px solid #f9d342;
}

.event-card h3 {
  font-size: 1.8rem;
  color: #1305d4;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
