/** Shopify CDN: Minification failed

Line 358:5 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.collapsible-container {
  max-width: 800px;
  margin: 0 auto;
}
.collapsible-heading {
  margin-bottom: 30px;
  font-size: 3.5rem;
  font-weight: 600;
  color: #222;
}
.collapsible-item {
  border-bottom: 1px solid #ddd;
}
.collapsible-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 10px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  transition: color 0.3s ease;
}
.collapsible-trigger:hover {
  color: #004fc7;
}
.collapsible-content {
  display: none;
  padding: 10px 10px 20px;
  color: #555;
}
.collapsible-item.active .collapsible-content {
  display: block;
}
.plus-minus {
  font-size: 20px;
  transition: transform 0.2s ease;
}
.collapsible-item.active .plus-minus {
  transform: rotate(45deg);
}

/* Font size options */
.collapsible-trigger.small {
  font-size: 1rem;
}
.collapsible-trigger.medium {
  font-size: 1.8rem;
}
.collapsible-trigger.large {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .collapsible-heading {
    font-size: 1.6rem;
  }
  .collapsible-trigger {
    padding: 12px;
  }
}
.testimonials-section {
  padding: 60px 0;
}
.testimonial-heading {
  text-align: center;
  font-size: 2rem;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-content {
  margin-bottom: 30px;
}
.testimonial-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.testimonial-company {
  font-size: 14px;
  color: #777;
}
.swiper-pagination {
  margin-top: 20px;
  text-align: center;
}
.testimonials-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.testimonial-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 50px;
}

.testimonials-swiper {
  padding-bottom: 50px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.testimonial-content {
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-content::after {
     content: "";
    position: absolute;
    bottom: -20px;
    left: 60px;
    border-width: 9px;
    border-style: solid;
    border-color: #999 transparent transparent transparent;
    /* box-shadow: 0 5px 20px #0000000d; */
}

.testimonial-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.testimonial-user {
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-right: 150px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
}

.testimonial-user-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
  font-size: 1rem;
}

.testimonial-company {
  font-size: 0.9rem;
  color: gray;
}

/* Swiper pagination styling */
.swiper-pagination-bullet {
  background: #004fc7 !important;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #002f80 !important;
  opacity: 1;
}
  @media screen and (max-width:768px) {
    .swiper-wrapper{
        padding:0px !important;
    }
    .testimonial-user{
        margin-right : 0px ;
    }
     .trending-nav-buttons{
      left:-20px !important;
      right:-20px !important;
      
    }
  }
/* Title */
.trending-title {
  text-align: center;
  font-size: 3.4rem;
  margin-top: 60px;
  margin-bottom: 35px;
}

/* ✅ Progress Bar */
.blog-progress-bar {
  width: 100%;
  height: 4px;
  background: #e4e8f0;
  border-radius: 50px;
  margin-bottom: 30px;
  overflow: hidden;
}
.blog-progress-fill {
  height: 100%;
  width: 0%;
  background: #004fc7;
  border-radius: 50px;
  transition: width 0.3s ease;
}

.trending-blogs-wrapper { position: relative; }

/* Cards */
.trending-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.trending-blog-img img { width: 100%; display: block; }
.trending-info { padding: 15px; }
.trending-card-title { font-size: 18px; margin-bottom: 8px; }
.trending-author { color: #555; font-size: 14px; margin-bottom: 6px; }
.trending-category {
  margin-top: 4px;
  padding: 3px 12px;
  background-color: lightgray;
  border-radius: 7px;
  font-size: 13px;
  text-transform: uppercase;
  width: fit-content;
}

/* ✅ Nav buttons top right */
.trending-nav-buttons {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.trending-nav-buttons .swiper-button-next,
.trending-nav-buttons .swiper-button-prev {
  width: 34px;
  height: 34px;
  background: #004fc7;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.trending-nav-buttons .swiper-button-next::after,
.trending-nav-buttons .swiper-button-prev::after {
  font-size: 14px;
}

/* Mobile */
.swiper-wrapper{ padding:20px; }
.trending-nav-buttons {
  display: flex;
  flex-direction: row;
}

.trending-nav-buttons .swiper-button-prev {
  order: 1;
}

.trending-nav-buttons .swiper-button-next {
  order: 2;
}
/* Top right nav buttons fixed position */
.trending-nav-buttons {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* Fix button positions individually */
.trending-nav-buttons .swiper-button-prev {
  position: relative !important;
  order: 1 !important;
  left: 0 !important;
}

.trending-nav-buttons .swiper-button-next {
  position: relative !important;
  order: 2 !important;
  left: 0 !important;
}

.trending-nav-buttons .swiper-button-prev,
.trending-nav-buttons .swiper-button-next {
  width: 34px;
  height: 34px;
  background: #004fc7 !important;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
@media screen and (max-width: 768px) {
    .trending-nav-buttons{
      left:76% !important;
      right:0 !important;
    }