/* Basic container */
.ss-services-wrapper {
  padding: 20px 0 40px 0px;
  max-width: 100%;
  margin: 0 auto;
}

/* Swiper slide card */
.ss-service-card {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.ss-card-inner {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(11, 13, 30, 0.06);
  padding: 40px;
  width: 100%;
  max-width: 383px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

/* Active/centered slide highlight */
.swiper-slide:hover .ss-card-inner {
  background: linear-gradient(180deg, #2d256a, #2b1f64);
  color: #fff !important;
  transform: translateY(-15px);
  /*box-shadow:0 34px 60px rgba(45,33,106,0.25);*/
}

/* Title and headings */
.ss-title {
  margin: 0 0 8px;
  background: linear-gradient(90deg, #2F277B 0%, #5647E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 27px !important;

  line-height: normal !important;
  font-weight: bold !important;
}

.swiper-slide:hover .ss-title {
  color: #36e6ff !important;
  background: linear-gradient(90deg, #36e6ff 0%, #36e6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ss-subheading,
.ss-excerpt {
  font-size: 13px;
  color: #252525;
  margin-bottom: 18px;
  line-height: 160%;
}

.swiper-slide:hover .ss-subheading,
.swiper-slide:hover .ss-excerpt {
  color: rgba(255, 255, 255, 0.9);
}

/* Section headings like PRODUCTS/SOLUTIONS */
.ss-head {
  font-size: 17px ! IMPORTANT;
  color: #7C8EA2;
  font-weight: bold !important;
  letter-spacing: .5px !important;
  margin-bottom: 0 !important;
  margin-top: 15px !important;
}

.swiper-slide:hover .ss-head {
  color: rgba(255, 255, 255, 0.9);
}

/* Lists */
.ss-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 12px;
}

.ss-list li {
  margin: 8px 0;
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  color: #252525;
  font-weight: 500;
  line-height: 160%;
	text-transform: capitalize;
}

.ss-list li:before {
  content: "◯";
  position: absolute;
  left: 0;
  top: 4px;
  line-height: 1;
  color: #292D32;
  font-size: 9px;
  font-weight: bolder !important;
}

.swiper-slide:hover .ss-list li {
  color: rgba(255, 255, 255, 0.95);
}

.swiper-slide:hover .ss-list li:before {
  color: rgba(255, 255, 255, 0.9);
}

/* View All button */
.ss-view-btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  background: #fff4db;
  color: #B3870B;
  font-size: 15px;
}

.swiper-slide:hover .ss-view-btn {
  background: #ffd43b;
  color: #000;
}

/* Pagination dots centered under slider */
.ss-pagination {
  margin-top: 40px;
  text-align: center;
  bottom: 0px !important;
}

.ss-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

.swiper-pagination-bullet {
  background: #cfcfcf;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #3b2a9b;
}

/* Make slides shrink visually so center stands out */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.swiper-slide .ss-card-inner {
  transform-origin: center;
}


/*.swiper {*/
/*  overflow: visible !important;*/
/* }*/



/* Responsive */
@media (max-width: 1024px) {
  .ss-card-inner {
    max-width: 260px;
    min-height: 430px;
    padding: 22px;
  }
}

@media (max-width: 767px) {
  .ss-card-inner {
    max-width: 420px;
    min-height: 360px;
    padding: 18px;
    border-radius: 16px;
  }
}

@media only screen and (max-width: 1280px) and (min-resolution: 1.5dppx),
       only screen and (max-width: 1280px) and (min-device-pixel-ratio: 1.5) {
.ss-services-wrapper {
    padding: 0px 0 25px 0px;
}
.container h3.ss-title {
    font-size: 21px !important;
    padding: 10px 0 0 0 !important;
    margin-bottom: 15px !important;
}
.ss-subheading {
    font-size: 13px !important;
}
.ss-head {
    margin-top: 5px !important;
}
.ss-list li {
   
    font-size: 11px;
       padding-left: 20px;
    line-height: 130%;
}
.ss-list li:before {
    font-size: 7px;
}
.ss-card-inner {
        min-height: 550px;
}



}