.alumni-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f8faff;
}

.alumni-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  display: inline-block;
  background: #004d80;
  color: #fff;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.alumni-header h2 {
  font-size: 32px;
  color: #004d80;
  margin-bottom: 10px;
}

.alumni-header p {
  font-size: 16px;
  color: #555;
}

.alumni-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.alumni-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease;
}

.alumni-card:hover {
  transform: translateY(-10px);
}

.alumni-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.alumni-card h3 {
  font-size: 18px;
  color: #004d80;
  margin-bottom: 5px;
}

.designation {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.quote {
  font-size: 14px;
  color: #333;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .alumni-card {
    width: 100%;
    max-width: 320px;
  }

  .alumni-header h2 {
    font-size: 26px;
  }
}
