/* Make wrapper two column */
.home-banner-slider-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 9;
    position: relative;
}
.home-banner-slider-lft-otr {
  opacity: 0;
  transition: opacity 2s ease;
}

.home-banner-slider-lft-otr.slick-initialized {
  opacity: 1;
}
.home-banner-slider-lft-btn>a {
    display: flex;
    gap: 5px;
    align-items: center;
  text-transform: none;
}

.home-banner-slider-inr-progress-bar{
    position: absolute;
    height: 1px;
    left: 0;
    bottom: 0;
    width: 0%;
    background: #ff3600;
}
.home-banner-slider-lft-otr{
   position: relative;
}



.home-banner-slider-lft {
    margin: 0 5px;
}
/* LEFT - slider */
.home-banner-slider-inr {
  flex: 0 0 60%;
  max-width: 60%;
}
.home-banner-slider-lft-otr .slick-slide {
  transition: opacity 0.6s ease-in-out !important;
}
.home-banner-slider-rght-imag {
    flex: 0 45%;
}
.home-banner-slider-lft-tag {
    border: 0.8px solid #FF360040;
    box-shadow: 0px 8px 32px 0px #FF360014;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 20px;
      margin-left: 5px;
      position: relative;
    overflow: hidden;
}

.home-banner-slider-lft-tag>h1 {
    margin: 0 !IMPORTANT;
  display: flex;
    gap: 8px;
    align-items: center;
  font-size: 18px;
    line-height: 20px;
    font-weight: 700;
}

/* Position text properly */
.animated-dot {
  position: relative;
  padding-left: 22px; /* space for dot */
}

.animated-dot {
  position: relative;
  padding-left: 20px;
}

/* Red Dot */
.animated-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF360080;
  box-shadow: 0 0 6px rgba(255, 54, 0, 0.4);
  animation: softPulse 3s infinite ease-in-out;
}

/* Slow subtle pulse */
@keyframes softPulse {
  0% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 6px rgba(255, 54, 0, 0.4);
  }
  50% {
    transform: translateY(-50%) scale(1.25);
    box-shadow: 0 0 10px rgba(255, 54, 0, 0.25);
  }
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 6px rgba(255, 54, 0, 0.4);
  }
}
.home-banner-slider-lft-btn-wrp {
    display: flex;
    gap: 10px;
    align-items: center;
}
.home-banner-slider-otr {
  position: relative;
/*   border-radius: 20px; */
  overflow: hidden;

 
}
.home-banner-slider-otr::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

 

  /* THIS is the fade effect */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 55%,
    rgba(0,0,0,0.4) 75%,
    rgba(0,0,0,0.1) 90%,
    rgba(0,0,0,0) 100%
  );

  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 55%,
    rgba(0,0,0,0.4) 75%,
    rgba(0,0,0,0.1) 90%,
    rgba(0,0,0,0) 100%
  );
}
/* ===== SLIDER WRAPPER ===== */
.home-banner-slider-lft-otr {
  position: relative;
  padding-bottom: 90px; /* space for controls */
}

/* ===== COMMON RESET ===== */
.home-banner-slider-lft-otr .slick-prev,
.home-banner-slider-lft-otr .slick-next {
  top: auto !important;
  transform: none !important;
}

/* ===== ARROWS ===== */
.home-banner-slider-lft-otr .slick-prev,
.home-banner-slider-lft-otr .slick-next {
  position: absolute;
  bottom: 0;
  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 54, 0, 0.3);
  background-color: #fff;
  border-radius: 16px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  font-size: 0;
  z-index: 10;
  box-shadow: 0px 8px 30px 0px #0000004D;
}

/* LEFT */
.home-banner-slider-lft-otr .slick-prev {
  left: 4px;
  background-image: url("https://netenrich.com/hubfs/images/Home-new/left-arrow.svg");
}

/* RIGHT */
.home-banner-slider-lft-otr .slick-next {
  left: 25%;
  background-image: url("https://netenrich.com/hubfs/images/Home-new/left-arrow.svg");
  transform: rotate(180deg) !important;
}

/* ===== DOTS ===== */
.home-banner-slider-lft-otr .slick-dots {
  position: absolute;
  bottom: 10px; /* SAME VISUAL LINE */
  left: 10%;
  display: flex !important;
  align-items: center;
}

.home-banner-slider-lft-otr .slick-dots li {
  width: auto ! IMPORTANT;
}

.home-banner-slider-lft-otr .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  padding: 0;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-banner-slider-lft-otr .slick-dots li.slick-active button {
  background: #FF3600;
  width: 30px;
  border-radius: 20px;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Force arrow background image always */
.home-banner-slider-lft-otr .slick-prev,
.home-banner-slider-lft-otr .slick-prev:hover,
.home-banner-slider-lft-otr .slick-prev:focus {
  background-color: #fff !important;
  background-image: url("https://netenrich.com/hubfs/images/Home-new/left-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 8px !important;
}

.home-banner-slider-lft-otr .slick-next,
.home-banner-slider-lft-otr .slick-next:hover,
.home-banner-slider-lft-otr .slick-next:focus {
  background-color: #fff !important;
  background-image: url("https://netenrich.com/hubfs/images/Home-new/left-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 8px !important;
  transform: rotate(180deg) !important;
}
.home-banner-slider-lft-cont>h1 {
    line-height: 1.4;
}

.home-banner-slider-lft-cont {
    padding-bottom: 20px;
}

.home-banner-slider-otr {
    
    background-image: url(https://netenrich.com/hubfs/Banner-home_v2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.hhs-hero-overlay {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.80);
}
{% scope_css %}

/* ===== ARROWS ===== */
.slick-prev,
.slick-next {
  position: absolute;
  bottom: 0;
  top: auto !important;
  transform: none !important;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 54, 0, 0.3);
  background-color: #fff !important;
  border-radius: 16px;

  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 8px !important;

  font-size: 0;
  z-index: 10;
  box-shadow: 0px 8px 30px 0px #0000004D;
}

/* Left */
.slick-prev {
  left: 0;
  background-image: url("https://netenrich.com/hubfs/images/Home-new/left-arrow.svg") !important;
}

/* Right */
.slick-next {
  left: 80px;
  background-image: url("https://netenrich.com/hubfs/images/Home-new/left-arrow.svg") !important;
  transform: rotate(180deg) !important;
}

/* ===== DOTS ===== */
.slick-dots {
  position: absolute;
  bottom: 12px;
  left: 160px;

  display: flex !important;
  align-items: center;
  gap: 10px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.slick-dots li {
  width: auto !important;
  margin: 0;
}

.slick-dots li button {
  font-size: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.slick-dots li button:before {
  display: none !important;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: all 0.4s ease;
}

.slick-dots li.slick-active button {
  background: #FF3600;
  width: 30px;
  border-radius: 20px;
}

{% end_scope_css %}
@media(max-width:1080px){
  .home-banner-slider-lft-otr .slick-next {
    left: 40%;
}

.home-banner-slider-lft-otr .slick-dots {
    left: 15%;
}
}
@media(max-width:768px){
  .home-banner-slider-rght-imag {
    text-align: center;
}
  .home-banner-slider-wrp {
    display: block;
}

.home-banner-slider-inr {
    max-width: 100% !IMPORTANT;
}

.home-banner-slider-lft {
    margin: 0 10px;
}
.home-banner-slider-lft-btn-wrp {
    flex-direction: column;
    align-items: center;
}

}
@media(max-width:450px){
  .home-banner-slider-lft-otr .slick-next {
    left: 70%;
}

.home-banner-slider-lft-otr .slick-prev {
    left: 15%;
}

.home-banner-slider-lft-otr .slick-dots {
    left: 40%;
}
}