/* ==========================================================================
   Tech CTA Banner — Split card: blue gradient left + image right
   ========================================================================== */

.bh-tech-cta {
  background: #000;
  padding-top: clamp(16px, 3vw, 40px);
  padding-bottom: clamp(16px, 3vw, 40px);
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.bh-tech-cta__wrap {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.bh-tech-cta__card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  isolation: isolate;
  max-height: 380px;
}

/* ── Left: Text side ── */
.bh-tech-cta__left {
  background-image: linear-gradient(to right, #03122d, #001b40, #002253, #002a67, #00327b, #013889, #053d98, #0b43a7, #0c48b3, #0d4dc0, #0f52cc, #1157d9);
  width: 50%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.bh-tech-cta__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bh-tech-cta__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 1.5vw + 8px, 36px);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.bh-tech-cta__desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(12px, 0.5vw + 8px, 18px);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

/* CTA Button — white outline style matching reference */
.bh-tech-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(13px, 0.5vw + 8px, 16px);
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 3rem;
  padding: 16px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.bh-tech-cta__btn:hover {
  background: #fff;
  color: #0f52cc;
  border-color: #fff;
}

.bh-tech-cta__btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.bh-tech-cta__btn:hover svg {
  transform: translate(3px, -3px);
}

/* ── Right: Image side ── */
.bh-tech-cta__right {
  width: 50%;
}

.bh-tech-cta__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  vertical-align: middle;
  display: block;
}

/* Mobile image (hidden on desktop) */
.bh-tech-cta__mobile-img {
  display: none;
}

/* ── Responsive ── */

@media (min-width: 992px) and (max-width: 1279px) {
  .bh-tech-cta__left {
    padding: 24px;
  }
  .bh-tech-cta__heading {
    font-size: 18px;
  }
  .bh-tech-cta__desc {
    font-size: 11px;
  }
}

@media (max-width: 991px) {
  .bh-tech-cta__desc {
    font-size: 10px;
  }
  .bh-tech-cta__left {
    padding: 20px;
    gap: 16px;
    min-width: 50%;
  }
  .bh-tech-cta__heading {
    font-size: 14px;
  }
  .bh-tech-cta__left .bh-tech-cta__text {
    gap: 8px;
  }
  .bh-tech-cta__btn {
    padding: 12px 20px;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .bh-tech-cta__card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    flex-direction: column;
    border: none;
    width: 100%;
  }
  .bh-tech-cta__mobile-img {
    display: block;
    width: 100%;
  }
  .bh-tech-cta__mobile-img img {
    width: 100%;
    display: block;
  }
  .bh-tech-cta__left {
    width: 100%;
    order: 2;
    padding: 1.25rem;
    border-radius: 0;
    border: none;
    background-image: linear-gradient(to bottom, #03122d, #001b40, #002253);
    position: relative;
    bottom: auto;
    gap: 20px;
  }
  .bh-tech-cta__heading {
    font-size: 18px;
  }
  .bh-tech-cta__desc {
    font-size: 13px;
  }
  .bh-tech-cta__btn {
    width: auto;
    padding: 10px 18px;
    font-size: 11px;
    white-space: nowrap;
  }
  .bh-tech-cta__right {
    width: 100%;
    overflow: hidden;
  }
  .bh-tech-cta__right .desktop-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .bh-tech-cta__mobile-img {
    display: none;
  }
}
