/* ======================================================
   GALLERY PAGE — SAME CSS AS PROGRAMS PAGE
====================================================== */

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 (SAME AS PROGRAMS) ===================== */
.page-banner {
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
  url('../assets/images/programs-banner.png') center/cover no-repeat;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  color: #fff;
}

/* ===================== GALLERY CARDS (REPLACEMENT OF prog-card) ===================== */
.gallery-card {
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  height: 100%;
  box-shadow: 0px 10px 25px rgba(0,0,0,.08);
  transition: .35s ease;
  overflow: hidden;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 16px 30px rgba(0,0,0,.15);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* ===================== FOOTER STYLE ===================== */
.footer-pro {
  background: linear-gradient(135deg, #003c9e, #0d6efd);
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  padding: 45px 0 18px;
  color: #fff;
}

.footer-divider {
  border-color: #ffffff55;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:768px){
  .page-banner {
    height: 30vh;
    border-radius: 0;
  }
  .gallery-card img {
    height: 220px;
  }
}
