/* HEADER */
.page-header {
  background-color: #0b1a39;
  border-bottom: 4px solid #e3b505;
}

.sub-title {
  color: #e3b505;
  font-size: 1.1rem;
}

/* FOOTER */
.footer {
  background-color: #0b1a39;
  border-top: 4px solid #e3b505;
}

/* TABS */
.custom-tabs .nav-link {
  font-weight: 600;
  border: 2px solid #e3b505;
  margin-right: 5px;
  color: #0b1a39;
}

.custom-tabs .nav-link.active {
  background-color: #0b1a39;
  color: #e3b505 !important;
  border-color: #0b1a39;
}

/* FACULTY CARDS */
.faculty-card {
  border: 2px solid #e3b505;
  border-radius: 12px;
  background: #fff;
  transition: 0.3s;
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  border-color: #c28f00;
}

.faculty-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #e3b505;
  object-fit: cover;
}

/* SECTION TITLES */
.section-title {
  color: #0b1a39;
  font-weight: 700;
  border-left: 4px solid #e3b505;
  padding-left: 10px;
  margin-bottom: 20px;
}

/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
