/* For Business section */
.nt-for-business {
  padding: clamp(40px, 6vw, 100px) 0;
  position: relative;
}

.nt-for-business__inner {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr; /* 20% text | 80% image */
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 1px 10px 2px rgba(238, 87, 57, 0.15);
  border: 1px solid #ff5a3c21;
  backdrop-filter: blur(4.2px);
  -webkit-backdrop-filter: blur(4.2px);
  min-height: clamp(360px, 50vh, 560px);
}

.nt-for-business__col--text {
  order: 1;
  padding: clamp(24px, 3vw, 48px);
  z-index: 2;
}

.nt-for-business__col--media {
  order: 2;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.nt-for-business__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.nt-for-business__img:hover {
  transform: scale(1.03);
}

.nt-for-business__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.nt-for-business__desc {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: #333;
  opacity: 0.9;
}

.nt-for-business__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 500px;
  text-decoration: none;
  background: #ff5a3c;
  background: rgba(255, 90, 60, 1);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nt-for-business__btn:hover,
.nt-for-business__btn:focus,
.nt-for-business__btn:visited {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 100, 190, 0.25);
  color: white;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .nt-for-business__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .nt-for-business__col--media {
    order: 1;
    height: 320px;
  }
  .nt-for-business__col--text {
    order: 2;
    text-align: center;
  }
}
/* ================================
   For User Section (fix layout order)
   ================================ */
.nt-for-user .nt-for-business__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
  position: relative;
  text-align: center;
  padding: 24px;
}

/* Image styling */
.nt-for-user .nt-for-business__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.nt-for-user .nt-for-business__inner .nt-for-business__desc {
  max-width: 1010px;
  align-items: center;
}

.nt-for-business__inner.nt-for-user__inner {
  box-shadow: none;
  border: none;
}

.nt-for-business__col.nt-for-user__col--media:before {
  background: radial-gradient(
    ellipse at 40% 50%,
    #ff5a3c 0%,
    rgba(255, 90, 60, 0.05) 80%
  );
  transform: translate(-50%, -50%) scaleX(1.3) scaleY(0.8) rotate(0deg)
    translateX(var(--orbit));

  content: "";
  position: absolute;
  left: 50%;
  width: var(--orb-size);
  height: var(--orb-size);
  pointer-events: none;
  z-index: 0;
  filter: blur(38px);
  border-radius: 50%;
  will-change: transform;
  opacity: 0.95;
  max-width: 1000px;
  max-height: 500px;
  width: 100%;
  height: 100%;
  top: 150px;
  z-index: -1;
  overflow: visible;
  transform: translate(-50%, 0);
}

.nt-for-business__col.nt-for-business__col--media {
  overflow: visible;
}

.nt-for-business__col.nt-for-business__col--media:before {
  background: radial-gradient(
    ellipse at 40% 50%,
    #ff5a3c 0%,
    rgba(255, 90, 60, 0.05) 80%
  );
  transform: translate(-50%, -50%) scaleX(1.3) scaleY(0.8) rotate(0deg)
    translateX(var(--orbit));
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--orb-size);
  height: var(--orb-size);
  pointer-events: none;
  z-index: 0;
  filter: blur(38px);
  border-radius: 50%;
  will-change: transform;
  opacity: 0.95;
  max-width: 275px;
  max-height: 450px;
  width: 100%;
  height: 100%;
  /* top: 150px; */
  z-index: -1;
  overflow: visible;
  transform: rotate(25deg);
}

.rating_form_container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.rating_form_btn_container .rating_publish_btn,
.rating_form_feedback a .rating_publish_btn {
  padding: 0.9rem 2.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  background: linear-gradient(135deg, #ff5a3c, #f97316);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.55);
  border-radius: 500px;
}
.rating_form_container {
  min-height: 50vh;
}

.rating_form_btn_container .rating_publish_btn:hover,
.rating_form_btn_container .rating_publish_btn:focus,
.rating_form_feedback a .rating_publish_btn:hover,
.rating_form_feedback a .rating_publish_btn:focus {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.7);
}

/* Responsive: stack vertically on small screens */
@media (max-width: 992px) {
  .nt-for-user .nt-for-business__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nt-for-user .nt-for-business__col--media,
  .nt-for-user .nt-for-business__col--text {
    order: unset;
    text-align: center;
  }
  .nt-for-user .nt-for-business__col--media img {
    max-height: 300px;
    object-fit: contain;
  }
}
