/* ===============================
   PAGE HEADER / HERO
================================ */

.page-header {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.65)
    ),
    url("../images/services-bg.jpg") center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

body {
  padding-top: 80px; /* match your header height */
}


/* subtle overlay glow */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(212, 175, 55, 0.25),
    transparent 60%
  );
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

/* ===============================
   TITLE
================================ */

.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* ===============================
   SUBTITLE
================================ */

.page-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: #e5e7eb;
  line-height: 1.7;
}

/* ===============================
   ANIMATION DELAY
================================ */

.page-header h1 {
  animation-delay: 0.2s;
}

.page-header p {
  animation-delay: 0.4s;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 80px;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .page-header p {
    font-size: 16px;
  }
}
