@import url("style.css");

.page-banner {
  padding: 50px 0 50px;
  text-align: center;
  background:
    linear-gradient(rgba(0, 62, 122, 0.82), rgba(0, 75, 141, 0.82)),
    url("images/path1.jpeg") center/cover no-repeat;
  color: #fff;
  margin-top: 90px;
}

.page-banner h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.page-banner p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.breadcrumb-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  /* backdrop-filter: blur(12px); */
}

.breadcrumb-bar a,
.breadcrumb-bar span {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-bar i {
  font-size: 12px;
  opacity: 0.8;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: rgba(0, 102, 214, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.stats-card h5 {
  font-weight: 800;
  margin-bottom: 14px;
}

.stats-card p {
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .page-banner {
    padding: 150px 0 80px;
  }
}

@media (max-width: 767px) {
  .page-banner {
    padding: 140px 0 70px;
  }

  .breadcrumb-bar {
    flex-wrap: wrap;
    justify-content: center;
  }
}