.we-container {
  display: flex;
  gap: 50px;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  padding: 80px 22px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.image-group {
  position: relative;
  width: 600px;
  height: 500px;
}

.main-image {
  position: absolute;
  top: 60px;
  left: 0;
  width: 386px;
  height: 289px;
  object-fit: cover;
  border-radius: 10px;
  z-index: 1;
}

.secondary-image {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 292px;
  height: 187px;
  object-fit: cover;
  border-radius: 10px;
  z-index: 1;
}

.dot-pattern {
  position: absolute;
  width: 252px;
  height: 156px;
  background-image: url("../assets/decors/dots.svg");
  background-size: cover;
  background-repeat: no-repeat;
  left: 11%;
  bottom: 39px;
  z-index: 0;
}

.we-content {
  flex: 1;
  text-align: justify;
  animation: slideIn 1s ease-out;
}

.img-fluid {
  position: relative;
  left: 2%; 
  padding: 0 5%;  
}

.what-heading {
  position: relative;
  padding: 20px 12px;
}

.what-title {
  font-size: 26px;
  line-height: 26px;
  font-weight: bold;
  margin: 0;
  display: inline-block;
}

.we-content p {
  font-size: 20px;
  padding: 0 12px;
  color: #000;
  line-height: 40px;
}

@media (max-width: 992px) {
  .we-container {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .what-content {
    position: relative;
    padding: 20px 0;
  }

  .img-fluid {
    position: relative;
    top: 10%;
    left: 0;
    padding: 0 8px;
  }
}

@media (max-width: 768px) {
  .image-group {
    width: 100%;
    height: 400px;
  }

  .img-fluid {
    padding: 0;
    top: 0;
    left: 0;
  }

  .what-heading {
    padding: 0;
  }
 

  .we-content p {
    font-size: 19px;
    color: #000;
    padding: 0;
    line-height: 27px;
  }

  .what-title {
    margin: 10px 0;
  }
}
 