/* ============================================================
   HEADER (.why-choose-us__header)
   (Header row for section, includes title and underline)
============================================================ */
.why-choose-us__header {
  width: 100%;

  margin-top: 45px;
  margin-bottom: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;

  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Header underline effect */
.why-choose-us__header::after {
  content: "";
  display: block;

  width: 100%;
  height: 4px;

  margin: 16px 0 0 0;

  background: linear-gradient(
    90deg,
    rgba(200, 0, 30, 0) 0%,
    rgba(200, 0, 30, 1) 30%,
    rgb(255, 255, 255) 70%,
    rgba(200, 0, 30, 0) 100%
  );

  box-shadow: 0 0 10px 2px rgba(200, 0, 30, 0.24);

  border-radius: 2px;
}

/* Section title and heading gradient text */
.why-choose-us__title,
.why-choose-us__heading {
  margin: 0;

  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.3px;
  white-space: nowrap;

  background: linear-gradient(135deg, #ffffff 0%, #f0f6fb 60%, #e8f1f8 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation: gradientShift 8s ease infinite;

  transition: transform 200ms ease;
}

/* Optional hover effect for section title/heading */
.why-choose-us__title:hover,
.why-choose-us__heading:hover {
  transform: scale(1.01);
}