.pd_slider_category-section {
  padding: 60px 0 30px 0;
}

.pd_slider_category-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--mr_color__primary);
  text-align: left;
}

.pd_slider_category-container {
  width: 100%;
}

.pd_slider_category-wrapper {
  position: relative;
}

.pd_slider_category-slider {
  display: flex;
  gap: 20px;
  margin: 0;
  width: 100vw;
}

.pd_slider_category-wrapper .slick-track {
  padding-top: 20px;
}

.pd_slider_category-slide {
  padding: 35px;
  border-radius: 12px;
  display: flex !important;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  margin: 0 12px;
  transition: 0.3s ease all;
  min-width: 400px;
}

.pd_slider_category-slide:hover {
  transform: translateY(-15px);
  box-shadow: 0px 3px 12px #d7e1fc;
}

.pd_slider_category-slide-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
}

.pd_slider_category-slide-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 65%;
  z-index: 1;
}

.pd_slider_category-slide-heading {
  font-weight: var(--mr_fontweight__bold);
  font-size: var(--mr_fontsize__seoheader);
  margin-bottom: 2rem;
  color: var(--mr_color__primary);
  line-height: 1.2;
}

.pd_slider_category-slide-text p {
  font-size: var(--mr_fontsize__small);
  line-height: 1.6;
  font-weight: var(--mr_fontweight__semibold);
  margin-bottom: 15px;
  color: var(--mr_color__primary);
  max-width: 190px;
  min-height: 135px;
}

.pd_slider_category-slider .pd_slider_category-btn {
  display: inline-block;
  border: 1px solid var(--mr_color__primary);
  color: var(--mr_color__primary);
  font-size: 12px;
  font-weight: var(--mr_fontweight__semibold);
  text-decoration: none;
  width: auto;
  text-align: left;
  transition: all 0.3s ease;
  margin-right: auto;
  margin-left: 0;
  padding: 8px 15px;
}

.pd_slider_category-btn:hover {
  background-color: #0B6FFF;
  color: #fff;
}

.pd_slider_category-slide-image {
  width: 35%;
  z-index: 0;
}

.pd_slider_category-slide-image img {
  max-height: 190px;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 10px;
}

.pd_slider_category-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

.pd_slider_category-prev,
.pd_slider_category-next {
  background: none;
  border: none;
  cursor: pointer;
}

.pd_slider_category-next {
  transform: rotate(180deg);
  margin-left: 10px;
}

.pd_slider_category-dots {
  position: absolute;
  left: 0;
  bottom: -20px;
}

.pd_slider_category-dots ul {
  display: flex !important;
  gap: 8px;
}

.pd_slider_category-arrows {
  position: absolute;
  right: 0;
  bottom: -20px;
}

.pd_slider_category-dots .dot {
  width: 6px;
  height: 6px;
  background-color: rgba(1, 163, 203, 0.3);
  border-radius: 50%;
  display: block;
}

.pd_slider_category-dots .slick-active .dot {
  background-color: #01A3CB;
  width: 35px;
  border-radius: 15px;
  height: 2px;
  margin-top: 2px;
}
@media (max-width: 768px) {
    .pd_slider_category-slide {
        padding: 20px;
        min-width: 380px;
        max-width: 400px;
    }
}
@media (max-width: 580px) {

    .pd_slider_category-slide {
        padding: 20px;
        min-width: 80vw;
        max-width: 400px;
    }

    .pd_slider_category-slide-image img {
        max-height: 150px;
        right: 5px;
    }
    .pd_slider_category-slide {
        margin: 0 9px;
    }
}