/* =========================
   Service Card Component
========================= */
section > .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}


.services-grid-section{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  /* flex-wrap: wrap; */
  justify-content: space-between;
}
.service-card {
  justify-self: center;
  position: relative;
  background-color: #ffffff;
  border: 2px solid #8bbce8;
  border-radius: 28px;
  padding: 48px 36px 40px;
  max-width: 550px;
  min-width: 550px;
}

/* soft offset background */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  background-color: #dff1fb;
  border-radius: 28px;
  z-index: -1;
}

/* icon */
.service-card__icon {
  height: 110px;
  display: block;
  position: relative;
  top: -50px;
  scale: 2;
  left: 50px;
  margin-bottom: 0px;
}

/* title */
.service-card__title {
  margin-top: 35px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  color: #0b6fd3;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* list */
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
}

.service-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
  color: #0f172a;
}
