/* ============================================
   General page styles — alternating sections, no plain white stacking
   Government immigration portal feel
   ============================================ */

/* ---------- Hero sections (all pages) ---------- */
.page-banner {
  min-height: 500px;
  background: linear-gradient(135deg, #061B36 0%, #004D8E 100%);
  position: relative;
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: url('../assets/images/university-campus.jpg') center/cover;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.banner-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
}

.breadcrumb a {
  color: #2BA9E0;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Alternating section backgrounds (brand colors) ---------- */
.section-bg-light {
  background: rgba(43, 169, 224, 0.08);
}

.section-bg-white {
  background: #fff;
  border-top: 4px solid #004D8E;
}

.section-bg-white-alt {
  background: #fff;
  border-left: 4px solid #004D8E;
}

.section-bg-primary {
  background: #004D8E;
  color: #fff;
}

.section-bg-dark {
  background: #061B36;
  color: #fff;
}

.section-bg-mid {
  background: rgba(43, 169, 224, 0.14);
}

/* ---------- Section headings with accent underline ---------- */
.section-padding h2,
.page-content h2,
.section-title {
  color: #061B36;
  font-weight: 700;
}

.section-padding h2::after,
.page-content h2::after,
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #2BA9E0;
  margin-top: 12px;
}

.section-bg-primary h2::after,
.section-bg-dark h2::after {
  background: #2BA9E0;
}

/* ---------- Buttons ---------- */
.page-banner .btn-primary,
.banner-content .btn-primary {
  background: #004D8E;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  transition: var(--transition);
}

.page-banner .btn-primary:hover,
.banner-content .btn-primary:hover {
  background: #2BA9E0;
}

.page-banner .btn-outline,
.banner-content .btn-outline {
  border: 2px solid #004D8E;
  color: #004D8E;
  border-radius: var(--radius-btn);
  background: transparent;
  padding: 12px 28px;
  transition: var(--transition);
}

.page-banner .btn-outline:hover,
.banner-content .btn-outline:hover {
  background: #004D8E;
  color: #fff;
}

/* ---------- Cards — brand colors ---------- */
.card,
.page-card {
  background: #fff;
  border-radius: var(--radius-card);
  border-top: 4px solid #004D8E;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover,
.page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 77, 142, 0.18);
  border-top-color: #2BA9E0;
}

/* ---------- Info / contact cards ---------- */
.info-card,
.page-info-card {
  background: rgba(43, 169, 224, 0.08);
  border-left: 4px solid #004D8E;
  border-radius: var(--radius-card);
  padding: 20px 24px;
}

.info-card .info-icon,
.page-info-card .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #004D8E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ---------- Stat / highlight bars ---------- */
.stat-bar,
.highlight-bar {
  background: linear-gradient(90deg, #004D8E, #2BA9E0);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

/* ---------- Badges / tags ---------- */
.badge,
.tag {
  background: rgba(43, 169, 224, 0.15);
  color: #004D8E;
  border: 1px solid rgba(43, 169, 224, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-badge);
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 576px) {
  .banner-content h1 { font-size: 30px; }
  .page-banner { min-height: 320px; }
}

@media (max-width: 768px) {
  .page-banner { min-height: 360px; }
}
