body {
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
}

.border-gold {
  border: 3px solid #e3b505;
}

.text-gold {
  color: #e3b505;
}

.dept-box {
  background-color: #0b1a39;
  border: 2px solid #e3b505;
  transition: all 0.3s ease;
}

.dept-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(227, 181, 5, 0.3);
}

.dept-box h5 {
  color: #e3b505;
  margin: 0;
}
/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
