/* Base Reset */
body,
html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
  height: 100%;
}
body form.gsc-search-box {
    max-width: 100% !important;
    font-size: 14px;
    margin: 0 16px !important;
}

/* Main Slider */
#slider_fade {
  max-width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.img-bg-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

img.image-position {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: all 0.4s ease;
}

img.image-position.active {
  opacity: 1;
}

.text-holder {
  display: flex;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.individual-holder {
  flex: 0 0 25%;
  position: relative;
  text-align: center;
  height: 100%;
  border-left: 1px solid white;
  transition: all 0.4s ease;
  color: white;
}

.individual-holder:first-child {
  border-left: none;
}

.individual-holder:hover {
  background: #001c49d6;
  backdrop-filter: blur(4px);
}

.text-content {
  position: absolute;
  bottom: 0;
  padding: 30px 30px 20%;
}

.individual-holder:hover .text-content {
  top: 40%;
}

a.shop-now--cta {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.text-content h3 {
  text-transform: uppercase;
  font-size: 2em;
  margin: 0;
}

.shop-now--cta {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.shop-now--cta svg {
  width: 18px;
  height: 18px;
  fill: #0494dd;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}

.individual-holder:hover .shop-now--cta svg {
  fill: #fff;
  animation: moveArrow 0.75s ease-in-out infinite;
}

@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

/* === Slider Dots === */
.slide-bullet-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.slide-bullet-dots span {
  width: 12px;
  height: 12px;
  background: rgba(190, 190, 190, 0.5);
  display: inline-block;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slide-bullet-dots span.active {
  background: #1991e2;
}

/* === Arrows === */
.slider-arrows {
  position: absolute;
  width: 98%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 3;
}

/* .arrow {
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
} */
.arrow {
  font-size: 20px;
  color: white;
  cursor: pointer;
  user-select: none;
  border-radius: 100px;
  height: 40px;
  width: 40px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* === Mobile Styles === */
@media (max-width: 900px) {
  .individual-holder {
    flex: 0 0 100%;
    border-left: none;
    background-size: cover;
    background-position: center;
    display: none;
  }

  .individual-holder.active-mobile {
    display: block;
  }

  .text-holder {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }

  .text-content {
    width: 100%;
    padding: 30px 20px 70px;
    box-sizing: border-box;
  }

  .img-bg-holder {
    display: none;
  }

  .individual-holder:nth-child(1) {
    background-image: url("../deepak/p1.png");
  }

  .individual-holder:nth-child(2) {
    background-image: url("../deepak/p2.png");
  }

  .individual-holder:nth-child(3) {
    background-image: url("../deepak/p3.png");
  }

  .individual-holder:nth-child(4) {
    background-image: url("../deepak/p4.png");
  }

  .slide-bullet-dots {
    bottom: 15px;
  }
.slider-arrows {
    width: 96%;
    padding-left:10px; 
  }
.individual-holder:hover .text-content {
    top: initial;
  }
}