/* ===== Hero banner — full-width image, flush against the navbar above ===== */
.sd-hero-banner {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.sd-hero-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== Step-by-Step Process Section ===== */
.sd-process-section {
  background: #fff;
}

.sd-process-title {
  font-size: 28px;
  color: #1a1a1a;
}

.sd-process-accent-stack {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.sd-process-accent {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #2c9bf4;
  border-radius: 2px;
}

.sd-process-accent--short {
  width: 20px;
}

/* ===== Why-important: check grid ===== */
.sd-why-content h2,
.sd-why-content h3 {
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.sd-why-content p {
  color: #6b6b6b;
  line-height: 1.7;
}
.sd-check-grid ul,
.sd-why-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.sd-check-grid ul li,
.sd-why-content ul li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.4;
}
.sd-check-grid ul li p,
.sd-why-content ul li p {
  margin: 0;
  display: inline;
}
.sd-check-grid ul li::before,
.sd-why-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  /* border-radius: 50%; */
  background: #1f8fff;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .sd-check-grid ul,
  .sd-why-content ul {
    grid-template-columns: 1fr;
  }
}

/* ===== Simple blue-dot bullet list ===== */
.sd-check-gridA ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sd-check-gridA ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.5;
}
.sd-check-gridA ul li:last-child {
  margin-bottom: 0;
}
.sd-check-gridA ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f8fff;
}
.sd-check-gridA ul li p {
  margin: 0;
  display: inline;
}

/* ===== Expect section: feature list ===== */
.sd-expect-content h2,
.sd-expect-content h3 {
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.sd-expect-content p {
  color: #6b6b6b;
  line-height: 1.7;
}
.sd-feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sd-feature-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e6ecf2;
}
.sd-feature-list ul li:last-child {
  border-bottom: 0;
}
.sd-feature-list ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e9f3ff;
  color: #1f8fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-feature-list ul li strong {
  display: block;
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 4px;
}
.sd-feature-list ul li span,
.sd-feature-list ul li p {
  color: #6b6b6b;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Diagonal triangle accent behind the stats column */
.sd-feature-list-stats {
  position: relative;
  padding: 24px;
  z-index: 0;
}
.sd-feature-list-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #edf1f9;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: -1;
  border-radius: 6px;
}

@media (max-width: 991.98px) {
  .sd-feature-list-stats::before {
    clip-path: none;
  }
}

.sd-process-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.sd-process-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1a1a;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  border: 1px solid rgba(33, 123, 255, 0.21);
}

.sd-process-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.sd-process-card-text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}

.sd-process-card:hover {
  background: #1f8fff;
  border-color: #1f8fff;
  transform: translateY(-2px);
  border: 2px solid #f3e721;
}

.sd-process-card.active .sd-process-card-title,
.sd-process-card.active .sd-process-card-text,
.sd-process-card:hover .sd-process-card-title,
.sd-process-card:hover .sd-process-card-text {
  color: #fff;
}

.sd-process-card:hover .sd-process-num {
  background: #fff;
  /* color: #1f8fff; */
  border-color: #fff;
  border: 2px solid #f3e721;
}

.icon {
  position: relative;
}
.line-three {
  position: absolute;
  top: 50%;
  left: 70px;
  height: 2px;
  width: 45px;
  background-color: #2c9bf4;
  /* margin-left: -15px; */
}
.line-four {
  position: absolute;
  top: 60%;
  left: 70px;
  height: 2px;
  width: 45px;
  background-color: #2c9bf4;
  /* margin-left: -15px; */
}

.sd-check-gridA ul li::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f8fff;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .sd-check-gridA ul {
    grid-template-columns: 1fr;
  }
}

/* ===== Cleaning Process Intro (contentTwo + contentThree) ===== */
.sd-process-intro {
  background: #fff;
}
.sd-process-intro-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 600;
}
.sd-process-intro-slash {
  color: #000000;
  font-weight: 800;
  font-size: 16px;
}
.sd-process-intro-label {
  color: #000000;
}
.sd-process-intro-label p{
  margin-bottom: 0px;
}
.sd-process-intro-heading :is(h1, h2, h3, h4, h5, h6) {
  /* font-size: clamp(28px, 3.4vw, 44px); */
  line-height: 1.15;
  font-weight: 700;
  color: #0d0d0d;
  margin: 0;
  letter-spacing: -0.5px;
}
.sd-process-intro-heading p {
  font-weight: 400;
}
.sd-process-intro-text {
  color: #000000;
  font-size: 16px;
  line-height: 1.75;
}
.sd-process-intro-text :is(p, li) {
  color: #000000;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .sd-process-intro-text {
    margin-top: 12px;
  }
}

/* ===== Why Choose Us (processSteps) ===== */
.sd-why-choose-section {
  background: #ece2f8;
  border-radius: 18px;
  border: 2px solid #613190;
}
.sd-why-choose-card {
  /* background: #F2EAFB; */
  border-radius: 18px;
  padding: 30px 0px;
  border: 1px solid #ece2f8;
}
.sd-why-choose-title {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  color: #0d0d0d;
  margin: 6px 0 32px;
  letter-spacing: -0.5px;
  /* max-width: 720px; */
  font-weight: 800;
}
.sd-why-choose-title h2{
  font-weight: 800;

}
.sd-why-card {
  background: transparent;
  padding: 0;
}
.sd-why-icon {
  display: inline-block;
  padding: 15px 15px;
  background: #f3e721;
  border-radius: 30px 0px 30px 0px;
  color: #1a1a1a;
  text-align: center;
  font-size: 26px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.04);
}
.sd-why-icon p{
  margin: 0 !important;
}

.sd-why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 10px;
}
.sd-why-card-text {
  color: #000000;
  font-size: 14.5px;
  line-height: 1.65;
}

/* .sd-content-block h2 {
  font-weight: 600 !important;
} */

.sd-content-block h1 {
  font-weight: 700 !important;
}

h2{
  font-weight: 700 !important;
}