.WhyBth .card {
  border-radius: 10px;
  height: 100%;
  flex-direction: row;
  background: #fff;
  box-shadow: 0px 10px 14px 0px rgba(90, 111, 155, 0.05);
  border: none;
}

.WhyBth p {
  font-weight: 500;
}

.flex-box-3-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
}
.flex-box-3-1-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-box-3-1-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.flex-box-3-1-2 img {
  transition: transform 0.5s ease;

  height: auto;
  display: block;
}

.flex-box-3-1-2:hover img {
  transform: scale(1.05);
}

.flex-box-3-1-2::after {
  content: "Click here to download brochure";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none; /* makes sure text doesn't block the link */
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
}

.flex-box-3-1-2:hover::after {
  opacity: 1;
}
