/* ===== PAGE BANNER STYLES ===== */
/* Shared banner styles for all pages */

.page-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a1628;
  overflow: hidden;
}

.page-banner-tall {
  height: 70vh;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.banner-overlay-light {
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

.banner-content-bottom {
  align-self: flex-end;
  padding-bottom: 30px;
  text-align: left;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
  background: #F5F5F5;
  width: fit-content;
  padding: 4px 15px;
  border-radius: 8px;
}

.breadcrumb svg {
  flex-shrink: 0;
}

.banner-content h1 {
  margin: 0;
  padding: 0;
}

/* Section Title - Shared across pages */
.section-title {
  margin: 0;
  margin-bottom: 40px;
  padding: 0;
  text-align: center;
}

/* Button Styles - Shared across pages */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: fit-content;
  align-self: flex-start;
}

.btn-round {
  border-radius: 50px;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-blue {
  background: #003da5;
  color: #fff;
}

.btn-blue:hover {
  background:#002d80;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff !important;
  color: #000 !important;
  text-decoration: none !important;
}

.btn-light:hover {
  background: #f0f0f0 !important;
  color: #000 !important;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-arrow-svg {
  flex-shrink: 0;
}

/* Container Helper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Styles */
@media (max-width: 855px){
  .page-banner-tall{
    height: 30vh;
  }

  .banner-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 30vh;
  }
}

@media (max-width: 550px) {
  .btn {
    padding: 7px 13px;
    font-size:1rem;
  }
}

