/** Shopify CDN: Minification failed

Line 99:0 Unexpected "<"
Line 148:0 Unexpected "<"
Line 151:19 Expected identifier but found whitespace
Line 151:21 Unexpected "{"
Line 151:30 Expected ":"
Line 164:8 Expected identifier but found whitespace
Line 164:10 Unexpected "{"
Line 164:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.slider-container {
  padding: 2rem 0;
  background: #fff;
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.static-slides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.static-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.slider-heading {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.slider-subtext {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Sirf 3 lines by default */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.slider-subtext.expanded {
  -webkit-line-clamp: unset; /* Limit hat jayegi */
}

.read-more-btn {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #1d2233;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.read-more-btn:hover {
  text-decoration: underline;
}

.slider-section-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.read-more-btn {
    margin-top: 10px;
    font-size: 14px;
    background: none;
    font-family: 'Montserrat';
    border: solid 1px #1d2233 !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    cursor: pointer;
    padding: 0;
    border-radius: 5px;
    padding: 12px 25px !important;
}
<style>
.icon-feature-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}
.icon-feature-left, .icon-feature-right {
  flex: 1 1 100%;
}
@media(min-width: 768px) {
  .icon-feature-left {
    flex: 1 1 50%;
  }
  .icon-feature-right {
    flex: 1 1 50%;
  }
}
.icon-feature-block {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.icon-feature-block img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.icon-feature-right img {
  width: 100%;
  height: auto;
  display: block;
}
.custom-button-wrapper {
  margin-top: 25px;
}
.custom-icon-btn {
  display: inline-block;
  background-color: #61C70D;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.custom-icon-btn:hover {
  background-color: #4fa90a;
}
</style>
.testimonial-slider {
  padding: 50px 20px;
  background-color: {{ section.settings.background }};
}

.testimonial-slider-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-slider-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: {{ section.settings.heading_color }};
}

.swiper {
  width: 100%;
  padding-bottom: 50px;
  position: relative;
}

.swiper-slide {
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-stars {
  color: #D0B357;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.testimonial-review {
  font-size: 1em;
  margin-bottom: 10px;
}

.testimonial-name {
  font-weight: bold;
  margin-top: 10px;
}

.testimonial-job {
  font-style: italic;
  color: #777;
}
/* White Arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

/* Pagination Dots */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #000;
}