/* STUDENT TYPE SECTION */
.student-type-section {
  background: #0b5ed7; /* unique background */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 50px auto;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.student-note {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 500;
}

.student-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.student-btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #0b5ed7;
  background: #fff;
  transition: all 0.3s ease;
}

.student-btn:hover {
  background: #e5e7eb;
  color: #0b5ed7;
}

.fresher-btn {
  background: #fff;
  color: #0b5ed7;
}

.returning-btn {
  background: #e5e7eb;
  color: #0b5ed7;
}