/* ===============================
   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;
}

/* 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;
  }

  .page-header p {
    font-size: 16px;
  }
}



/* ===============================
   ABOUT PAGE HEADER
================================ */
section.container {
  padding: 120px 20px;
  max-width: 1200px;
  margin: auto;
}
.page-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  color: #0f172a;
  margin-bottom: 12px;
  background: ;
}

.page-subtitle {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* ===============================
   ABOUT SECTION
   =============================== */

.about-section {
  padding: 90px 20px;
  background: gray;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Layout */
.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.about-text h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.about-text .intro {
  font-size: 17px;
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Content blocks */
.about-block {
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-block h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #020617;
}

.about-block p,
.about-block li {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Highlight block */
.about-block.highlight {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
}

.about-block.highlight h3,
.about-block.highlight li {
  color: #ffffff;
}

/* Lists */
.about-block ul {
  padding-left: 18px;
}

.about-block ul li {
  margin-bottom: 8px;
}

/* IMAGE */
.about-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-image {
    max-height: 400px;
  }
}


@media (max-width: 576px) {
  .page-title {
    font-size: 28px;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .about-text h3 {
    font-size: 20px;
  }
}
