/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #21314D;
  --accent-light: #DCE7F5;
  --bg-light: #f5f5f5;
  --text-dark: #333;
  --white: #ffffff;
} */

/* body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
} */

#heading{
    display: flex;
    justify-content: center;
}

.students-container, .past-students-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    padding: 0 1rem;
    min-height: 1px;
}

.studentCard {
    width: clamp(220px, 30vw, 280px); 
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.8s ease;
}

.studentCard:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.3);
}

.studentImg img {
    width: clamp(90px, 10vw, 130px);   
    height: clamp(90px, 10vw, 130px);
    border-radius: 50%;
    object-fit: cover;
    background: #ccc;
    margin-bottom: 1rem;
}

.studentCard h3 {
    margin: 0.5rem 0;
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    font-weight: 600;
}

.studentCard h4 {
    margin: 0.4rem 0;
    font-size: clamp(0.8rem, 1.2vw, 1.1rem);
    color: #666;
}

.studentCard p {
    font-size: clamp(0.8rem, 1.1vw, 1rem);
    margin-top: 0.5rem;
    color: #444;
    line-height: 1.4;
}

.page-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-top: 2rem;
}