.why_choose_section {
  background: #000;
  padding: 60px 0;
  overflow: hidden;
}

.why_choose_section .why_content .desc-text {
  color: #d7d7d7;
  font-size: 21px;
  line-height: 1.4;
  margin-top: 25px;
}

.why_choose_section .why_image {
  text-align: center;
  position: relative;
  width: 345px;
  margin: auto;
  z-index: 1;
}

.why_choose_section .why_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}

.why_choose_section .why_image::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: radial-gradient(
    circle at center,
    rgb(246 208 7) 20%,
    rgb(249 132 25 / 56%) 30%,
    rgb(249 132 25 / 8%) 55%,
    rgb(249 132 25 / 17%) 75%,
    rgba(249, 132, 25, 0) 100%
  );
  filter: blur(35px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.why_choose_section:hover .why_image::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .why_choose_section .why_content .desc-text {
    font-size: 18px;
  }

  .why_choose_section .why_image {
    width: 275px;
  }

  .why_choose_section .why_image::before {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 991px) {
  .why_choose_section {
    padding: 50px 0;
  }

  .why_choose_section .why_content {
    text-align: center;
    margin-bottom: 40px;
  }

  .why_choose_section .why_content .desc-text {
    font-size: 18px;
    max-width: 100%;
  }

  .why_choose_section .why_image img {
    max-width: 300px;
  }

  .why_choose_section .why_image {
    width: 395px;
    height: 369px;
  }

  .why_choose_section .why_image::before {
    width: 431px;
    height: 356px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .why_choose_section {
    padding: 0px 0;
  }

  .why_choose_section .why_image::before {
    width: 275px;
    height: 275px;
  }
}

@media (min-width: 0px) and (max-width: 575.98px) {
  .why_choose_section {
    padding: 10px 0;
  }

  .why_choose_section .why_image {
    width: 230px;
    height: 230px;
  }

  .why_choose_section .why_content .desc-text {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.3;
}
  .why_choose_section .why_image::before {
    width: 194px;
    height: 269px;
  }
}
