#ServicesProvide {
  background: #fffcf8;
  border-top: 1px solid var(--secondary-background-color);
}

.ServicesProvide {
  width: min(92%, 1200px);
  margin: auto;
  padding: 3rem 0 5rem 0;
}

.ServicesProvide_title {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.section_tag {
  display: inline-block;
  color: var(--darker-second-primary-background-color);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
}

.section_tag::before {
  content: "";
  height: 1px;
  position: absolute;
  left: -30%;
  top: 40%;
  width: 3rem;
  background: var(--darker-second-primary-background-color);
}

.section_tag::after {
  content: "";
  height: 1px;
  position: absolute;
  right: -30%;
  top: 40%;
  width: 3rem;
  background: var(--darker-second-primary-background-color);
}

.ServicesProvide_title h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--primary-background-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.ServicesProvide_title h2 span {
  color: var(--secondary-background-color);
  font-style: italic;
  font-weight: 700;
  position: relative;
}

.ServicesProvide_title h2 span::before {
  content: '';
  position: absolute;
  bottom: 0.3125rem;
  left: 0;
  width: 100%;
  height: 0.3125rem;
  background: rgba(249, 115, 22, 0.2);
}

.ServicesProvide_title p {
  color: var(--primary-paragraph);
  line-height: 1.8;
}

.service_cards {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service_card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #ececec;
  transition: .45s;
  position: relative;
  box-shadow: 0 22px 25px rgba(15, 23, 42, 0.035);
}

.service_card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary-background-color);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, .12),
    0 10px 30px rgba(249, 115, 22, .15);
}

.service_image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.service_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .45),
      transparent);
}

.service_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.service_card:hover img {
  transform: scale(1.12);
}

.service_label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: #fff;
  padding: .7rem 1rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--darker-second-primary-background-color);
}

.service_floating_icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  font-size: 1.3rem;
  border-radius: 1.2rem;
  background: var(--primary-background-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: .4s;
}

.service_card:hover .service_floating_icon {
  transform: rotate(10deg) scale(1.1);
}

.service_content {
  padding: 2rem;
}

.service_content h3 {
  font-size: 1.8rem;
  margin-bottom: .8rem;
}

.service_content p {
  line-height: 1.8;
  color: var(--primary-paragraph);
}

.service_features {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.service_features span {
  background: #fff4eb;
  color: #c2410c;
  padding: .55rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}

.service_content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service_content ul li {
  padding: .45rem 0;
  color: var(--primary-paragraph);
  display: flex;
  align-items: center;
  gap: .8rem;
}

.service_content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;

  width: 1.1rem;
  height: 1.1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--darker-second-primary-background-color);
  color: var(--secondary-color);

  border-radius: 50%;
  font-size: .75rem;

  flex-shrink: 0;
}

.service_btn {
  margin-top: 2rem;
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--second-primary-background-color);
  color: #fff;
  padding: 0.7rem 0;
  border-radius: 50px;
  font-weight: 600;
  transition: .3s;
  position: relative;
}

.service_btn::after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  font-size: 1rem;
  color: var(--secondary-color);
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.service_btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .ServicesProvide {
    width: 90%;
  }

  .service_cards {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .ServicesProvide {
    padding: 3rem 0;
  }

  .service_image {
    height: 220px;
  }

  .service_content {
    padding: 1.5rem;
  }

  .service_content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .ServicesProvide {
    width: 92%;
  }

  .section_tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .section_tag::before,
  .section_tag::after {
    width: 2rem;
  }

  .ServicesProvide_title p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .service_cards {
    margin-top: 3rem;
    gap: 1.25rem;
  }

  .service_image {
    height: 200px;
  }

  .service_content {
    padding: 1.25rem;
  }

  .service_content h3 {
    font-size: 1.3rem;
  }

  .service_content p {
    font-size: 0.95rem;
  }

  .service_features span {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
  }

  .service_content ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .ServicesProvide {
    padding: 2.5rem 0;
  }

  .section_tag::before,
  .section_tag::after {
    display: none;
  }

  .service_cards {
    grid-template-columns: 1fr;
  }

  .service_image {
    height: 180px;
  }

  .service_label {
    font-size: 0.7rem;
    padding: 0.6rem 0.8rem;
  }

  .service_floating_icon {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .service_content h3 {
    font-size: 1.2rem;
  }

  .service_btn {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .service_image {
    height: 160px;
  }

  .service_content {
    padding: 1rem;
  }

  .service_content h3 {
    font-size: 1.1rem;
  }

  .service_content p,
  .service_content ul li {
    font-size: 0.85rem;
  }

  .service_features {
    gap: 0.5rem;
  }

  .service_features span {
    font-size: 0.7rem;
  }
}