body {
  background: #eef1f4;
  font-family: "Segoe UI", sans-serif;
  margin: 0 !important;
}

.services-section {
  background:
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #f4f6f9 60%,
      #eef1f4 100%
    );
    padding-top : 40px;
    padding-bottom : 80px;
    min-height: 100vh;
}

/* Logo */
.services-section .logo {
  max-width: 240px;
}

/* Card */
.services-section .service-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: 0.3s all ease-in-out;
}

.services-section .service-card:hover {
  transform: translateY(-6px);
}

/* Image area */
.services-section .image-box {
  position: relative;
  height: 320px;
  /* overflow: hidden; */
}

/* Curved bottom image */
.services-section .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}
.services-section .image-box a {
    display: block;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.service-card:hover .image-box img {
    transform : scale(1.1) translateY(-5px) rotate(1deg);
}
/* Red curved stroke */
.services-section .image-box::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  clip-path: path( "M0,70 C240,130 480,130 720,-140 C960,98 1177,130 1440,70 L1440,120 L0,140 Z" );
  z-index: 1;
}

/* Icon */
.services-section .icon {
  position: absolute;
  top: 0px;
  left: 0;
  /* background: #d32f2f; */
  background: linear-gradient(to bottom, #f79726, #e65121);

  width: 55px;
  height: 55px;
  border-radius: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
  border-bottom-right-radius: 20px;
}

/* Card content */
.services-section .card-body {
  padding: 48px 28px 32px;
  text-align: left;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-section .card-body h3 {
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.services-section .card-body p {
  color: #666;
  font-size: 15px;
  margin-bottom: 22px;
}

/* Button */
.services-section .btn-danger {
  border-radius: 30px;
  padding: 11px 26px;
  font-weight: 600;
  /* background: linear-gradient(135deg, #d32f2f, #b71c1c); */
  background: linear-gradient(to bottom, #f79726, #e65121);

  border: none;
}

.services-section .btn-danger i {
  transition: 0.3s all ease-in-out;
  color: #fff !important;

}

.services-section .btn-danger:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .services-section .image-box {
    height: 210px;
  }

  .services-section .card-body {
    text-align: center;
  }
}
