/*===========================================================================================
    Start Features Area
=============================================================================================*/
.features.style1 .features-wrapper {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.features.style1 .features-card {
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  background: var(--white-color);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.3s ease;
}
.features.style1 .features-card:hover {
  transform: translateY(-4px);
}
.features.style1 .features-card::before {
  position: absolute;
  content: "";
  width: 128px;
  height: 128px;
  border-radius: 100%;
  background: var(--primary-color-light);
  z-index: -1;
  right: -60px;
  top: -60px;
  transition: all 0.4s ease;
}
.features.style1 .features-card:hover::before {
  background: var(--primary-color);
}
.features.style1 .features-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: var(--primary-color-light);
  border-radius: 24px;
  transition: all 0.4s ease;
  text-align: center;
}
.features.style1 .features-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.features.style1 .features-card:hover .features-icon {
  background: var(--primary-color);
}
.features.style1 .features-card .features-icon svg path {
  transition: all 0.4s ease;
}
.features.style1 .features-card:hover .features-icon svg path {
  fill: var(--white-color);
}
.features.style1 .features-content {
  margin-top: 16px;
}
.features.style1 .features-content h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}
.features.style1 .features-content p {
  margin-top: 12px;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features.style1 .features-wrapper {
    gap: 32px;
  }
  .features.style1 .features-card {
    padding: 24px;
  }
  .features.style1 .features-content h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features.style1 .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .features.style1 .features-content h4 {
    font-size: 24px;
    line-height: 120%;
  }
}

@media only screen and (max-width: 767px) {
  .features.style1 .features-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .features.style1 .features-content h4 {
    font-size: 18px;
    line-height: 120%;
  }
  .features.style1 .features-card {
    padding: 24px;
  }

  .features.style1 .features-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 16px;
  }
  .features.style1 .features-icon img {
    width: 38px;
    height: 38px;
  }
}

/*===========================================================================================
    End Features Area
=============================================================================================*/
