/* General Styling */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #222;
  line-height: 1.6;
}

/* Section Styling */
.alumni-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Slideshow Banner */
.alumni-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.slides img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(70%);
  border-radius: 10px;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.banner-text h1 {
  font-size: 2.4rem;
  margin: 0;
  font-weight: 700;
}

.banner-text p {
  font-size: 1.2rem;
  margin-top: 10px;
  font-style: italic;
}

/* Section Heading */
.alumni-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 30px;
}

/* Quotes */
.alumni-quotes {
  margin-bottom: 40px;
}

.alumni-quotes blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin: 12px auto;
  padding: 12px 20px;
  border-left: 4px solid #003366;
  background: #ffffff;
  max-width: 750px;
  text-align: left;
  color: #444;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Table Container */
.alumni-table-container {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 800px;
}

/* Table Styling */
.alumni-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.alumni-table th, 
.alumni-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e0e6f0;
  text-align: left;
}

.alumni-table th {
  background: #003366;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.alumni-table tr:hover {
  background: #f1f5fb;
}

.alumni-table td a {
  color: #0055cc;
  text-decoration: none;
  font-weight: 500;
}

.alumni-table td a:hover {
  text-decoration: underline;
}

/* Fade Animation */
.fade {
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .alumni-banner {
    height: 200px;
  }

  .slides img {
    height: 200px;
  }

  .banner-text h1 {
    font-size: 1.8rem;
  }

  .banner-text p {
    font-size: 1rem;
  }

  .alumni-section h2 {
    font-size: 1.6rem;
  }

  .alumni-quotes blockquote {
    font-size: 1rem;
    padding: 10px 15px;
  }

  .alumni-table th, 
  .alumni-table td {
    padding: 10px;
    font-size: 0.9rem;
  }
}
