/* Section container */
.svc-hero {
  padding: 60px 20px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: #15191E; /* adjust if needed */
  border-radius: 25px;
  margin: 0 10px 10px;
}

.svc-hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 60px;
}

/* Left column text */
.svc-hero-left {
  flex: 1;
}

.svc-hero-preheader {
  display: inline-flex; /* align dot and text horizontally */
  align-items: center; /* vertical alignment */
  gap: 10px; /* slightly more space between dot and text */
  background-color: #ffffff;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  border: 1px solid #eee;
}

.svc-hero-preheader:before {
  content: '';
  flex-shrink: 0; /* keep the circle from shrinking */
  width: 8px;
  height: 8px;
  background-color: #ff5500;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

.svc-hero-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff;
}

.svc-hero-desc {
  font-size: 18px;
  color: #b9bbc6;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Buttons */
.svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.svc-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.svc-btn-primary {
  background-color: #ff5500;
  border: 1px solid #ff5500;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
}

.svc-btn-primary:hover {
  background-color: #E14E00;
  border-color: #E14E00;
}

.svc-btn-secondary {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
}

.svc-btn-secondary:hover {
  background-color: #f3f3f3;
}

/* Right column image */
.svc-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.svc-hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .svc-hero-wrap {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .svc-hero-left,
  .svc-hero-right {
    flex: none;
    width: 100%;
  }

  .svc-hero-heading {
    font-size: 32px;
  }

  .svc-hero-desc {
    font-size: 16px;
  }
}

/* ====== Responsive ====== */

/* tablets and down */
@media (max-width: 992px) {
  .svc-hero {
    padding: 60px 20px;
    border-radius: 20px;
  }

  .svc-hero-wrap {
    flex-direction: column;
    text-align: center;
    gap: 36px;
    padding: 0 16px;
  }

  .svc-hero-left,
  .svc-hero-right {
    flex: none;
    width: 100%;
  }

  .svc-hero-preheader {
    margin-left: auto;
    margin-right: auto;
  }

  .svc-hero-heading,
  .svc-hero-heading h1,
  .svc-hero-heading h2,
  .svc-hero-heading h3,
  .svc-hero-heading h4,
  .svc-hero-heading h5,
  .svc-hero-heading h6 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .svc-hero-desc {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .svc-hero-ctas {
    justify-content: center;
  }

  .svc-hero-image {
    max-width: 88vw;
  }
}

/* small phones */
@media (max-width: 600px) {
  .svc-hero-wrap {
    gap: 28px;
  }

  .svc-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
  }

  .svc-hero-preheader {
    font-size: 13px;
    padding: 8px 12px;
  }

  .svc-hero-desc {
    font-size: 15px;
  }
}

/* very small devices */
@media (max-width: 400px) {
  .svc-hero {
    padding: 60px 10px;
    border-radius: 16px;
    margin: 0 10px 10px;
  }

