/* ==========================================
   TRUSTEES PAGE - PREMIUM DESIGN (FINAL)
========================================== */

body {
  margin-top: 80px;
  background: #f4f9ff;
}

/* ===================== PREMIUM GRADIENT NAVBAR ===================== */
.navbar {
  background: linear-gradient(90deg, #0b7a2a, #0d6efd) !important;
  padding: 15px 0;
  box-shadow: 0px 4px 30px rgba(0,0,0,.25);
  border: none !important;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: .5px;
  color: #fff !important;
  text-shadow:
    2px 2px 6px rgba(0,0,0,0.55),
    0 0 18px rgba(255,255,255,0.55);
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  transition: .3s;
  padding: 10px 14px !important;
}

.nav-link.active,
.nav-link:hover {
  color: #ffeb3b !important;
  text-shadow: 0 0 10px #fff;
}

/* Banner */
.page-banner {
  height: 42vh;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
  url('../assets/images/trustees-banner.jpg') center/cover no-repeat;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  text-shadow: 0px 5px 18px rgba(0,0,0,.6);
}


/* Trustees Cards */
.trust-card {
  background: #fff;
  padding: 25px 18px;
  border-radius: 18px;
  box-shadow: 0px 6px 25px rgba(0,0,0,.10);
  transition: .35s ease-in-out;
  height: 100%;
  position: relative;
}

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 14px 35px rgba(0,0,0,.22);
}

.trust-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

.trust-card h5 {
  margin-top: 15px;
  font-weight: 700;
}

.role {
  color: #0d6efd;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 3px;
  margin-bottom: 8px;
  letter-spacing: .3px;
}

/* Roles & Responsibilities List */
.trust-list {
  padding-left: 0;
  list-style: none;
}

.trust-list li {
  font-size: 0.88rem;
  color: #4b4b4b;
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}

.trust-list li::before {
  content: "✔";
  color: #0d6efd;
  font-size: 0.85rem;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}


/* Footer */
.footer-pro {
  margin-top: 60px;
  background: linear-gradient(135deg, #003c9e, #0d6efd);
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  padding: 50px 0 20px;
  color: #fff;
  box-shadow: 0px -8px 25px rgba(0,0,0,0.15);
}

.footer-contact p {
  font-size: 0.92rem;
}

.footer-contact span {
  color: #ffd500;
  margin-right: 8px;
  font-size: 1.1rem;
}

.footer-divider {
  border-color: #ffffff45;
}

/* Social Icons */
.social-icons .s-icon {
  background: #ffffff33;
  padding: 8px 12px;
  border-radius: 10px;
  transition: .3s;
  text-decoration: none;
  color: #fff;
}

.social-icons .s-icon:hover {
  background: #fff;
  color: #003c9e;
}


/* Responsive */
@media(max-width: 768px) {
  .page-banner {
    height: 30vh;
    border-radius: 0;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .trust-img {
    height: 200px;
  }
}
