/* ===============================
SECTION
================================ */
.case-study-section {
  background: #D0F6E861;
  padding: 60px 0 40px 0;
  overflow: hidden;
}

/* ===============================
CONTAINER (1140px)
================================ */


/* ===============================
TITLE
================================ */
.case-study-section .solutions-title {
  color: #000;
  margin-bottom: 35px;
  letter-spacing: 1px;
  font-family: DM Sans;
  font-weight: 400;
  font-size: 44px;
  line-height: 36px;
  width:100%;
  text-align:left;
}
.case-study-section .title-description {
  width: 100%;
  max-width: 45%;
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.3px;
  color: #000000;
  width:100%;

}

/* ===============================
ROW
================================ */
.case-study-section .solutions-row {
  position: relative;
}

/* ===============================
LEFT IMAGE (FROM WINDOW EDGE)
================================ */
.case-study-section .solutions-image {
  position: absolute;
  left: calc(-56vw + 500px); /* viewport based */
  top: 60%;
  transform: translateY(-50%);
  width: 800px;
  z-index: -1;
}

.case-study-section .solutions-image img {
  width: 100%;
  display: block;
}

/* ===============================
CARDS WRAPPER
START FROM 30% INSIDE CONTAINER
================================ */
.case-study-section .solutions-cards {
  margin-left: 25%;
}

/* ===============================
GRID
================================ */
.case-study-section .solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ===============================
CARD
================================ */
.case-study-section .solution-card {
  background: #ffffff;
  padding: 0px 0px;
  border-radius: 16px;
  /*   box-shadow: 0 8px 24px rgba(0,0,0,0.05); */
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
}
.case-study-section .solution-card .case-study-image img {
  border-radius: 16px 16px 0px 0px;
}

.case-study-section .solution-card h3 {
  color: #000;
  margin-bottom: 14px;
  font-family: DM Sans;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0px;
}

.case-study-section .solution-card p {
  color: #111;
  margin-bottom: 15px;
  font-family: DM Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0px;
}

/* ===============================
ICON IMAGE
================================ */
.case-study-section .solution-arrow {
  margin-top: 20px;
}

.case-study-section .solution-arrow img {
  width: 14px;
  height: auto;
  transition: transform 0.3s ease;
}
.case-study-section .solution-card a {
  display: block;
  padding-top: 20px;
  pointer-events: auto;
}
.case-study-section .solution-card:hover .solution-arrow img {
  transform: translate(4px, -4px);
}
/* Added new Feature style */
.case-study-section .case-study-head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.case-study-card-info {
  padding: 16px 18px;
}
.case-study-section .case-study-image img {
  width: 405px;
  height: 250px !important;
  object-fit: cover;
}
/* ===============================
TABLET & MOBILE
================================ */
@media (max-width: 991px) {
  .case-study-section .solutions-image {
    position: relative;
    left: 0;
    top: auto;
    transform: none;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .case-study-section .solutions-cards {
    margin-left: 0;
  }

  .case-study-section .solutions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .case-study-section .solutions-image {
    display: none !important;
    width: 100%;
  }
  .case-study-section .solutions-image img {
    display: none !important;
  }
  .case-study-section .case-study-head {
    display: block
  }
  .case-study-section .solutions-title {
    margin-bottom: 20px;
    font-size: 32px !important;
  }
  .case-study-section
  padding-top: 40px;  
}

.case-study-head .title-description {
  max-width: 100%;
  padding-bottom: 5%;
  text-align: left;
}
.case-study-section {
  padding: 40px 0 40px 0;
}
.case-study-section .solution-card p {
  font-size: 16px;
  margin-bottom: 0px;
}

}
/* ===============================
MOBILE
================================ */
@media (max-width: 576px) {
  .case-study-section {
    padding: 40px 0 40px 0;
  }
  .case-study-section .solutions-title {
    font-size: 28px !important;
  }

  .case-study-section .solution-card {
    padding: 0px;
  }
  .case-study-section .title-description {
    padding-bottom: 20px !important;
    width: 100% !important;
  }

}