.service-card {
  background: #f5f7fa;
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  line-height: 1.6;
}

.service-card {
  position: relative;
}

.bottom-line-wrap {
  position: relative;
  padding-bottom: 16px; /* adds space without shifting alignment */
}

.bottom-line-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;              /* sits within the added space */
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  border-radius: 50px;
  background: #ff6a00;
}

 
/* hero itself */
.hero {
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

/* the section/body behind it */
body,
.section,
.wrapper {   /* use your actual parent class */
  background: #fff;
}



.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  padding-left: 36px;
  margin-bottom: 14px;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><circle cx='12' cy='12' r='12' fill='%23ff6a00'/><path d='M7 12l3 3 7-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: left center;
}