.section-title::before{
  display: none;
}
.section-title{
  padding-bottom: 0px;
}
.section-title h2{
  margin-bottom: 15px;
  padding-bottom: 15px;
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.service-item {
  height: 100%;
  padding: 20px 15px;
  border-radius: 8px;
  transition: all 0.4s ease;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-link {
  opacity: 1;
  transform: translateY(0);
}
.service-link i {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .service-item {
    padding: 40px 30px;
  }
}

.featured-services h4 {
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.featured-services p {
  text-align: center;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.8;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.service-link span {
  font-weight: 500;
}

.service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

 .service-link:hover {
  color: var(--heading-color);
}
