/** Shopify CDN: Minification failed

Line 565:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:section-blog-v1 (INDEX:62) */
.section-blog-v1 {
  padding: 40px 0;
}

.section-header-blog-v1 {
  margin-bottom: 30px;
}

.blog-v1-slider-wrapper {
  position: relative;
  padding: 0;
}

.content-blog-v1 {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.content-section-blog-v1 {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.content-section-blog-v1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.content-section-blog-v1 .picrure {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.content-section-blog-v1 .image_url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.content-section-blog-v1 .image_url img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-section-blog-v1:hover .image_url img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content-section-blog-v1:hover .image-overlay {
  opacity: 1;
}

.content-section-blog-v1 .date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.content-section-blog-v1 .date .day {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.content-section-blog-v1 .date .month {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  margin-top: 2px;
}

.content-section-blog-v1 .info_blog {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-section-blog-v1 .blog_cate {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #007bff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.content-section-blog-v1 .blog_cate:hover {
  color: #0056b3;
}

.content-section-blog-v1 .title-blog {
  margin-bottom: 10px;
  line-height: 1.3;
}

.content-section-blog-v1 .title-blog a {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-section-blog-v1 .title-blog a:hover {
  color: #007bff;
}

.content-section-blog-v1 .content {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-section-blog-v1 .read-more-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  margin-bottom: 12px;
}

.content-section-blog-v1 .read-more-btn:after {
  content: '→';
  margin-left: 6px;
  transition: margin-left 0.3s ease;
}

.content-section-blog-v1 .read-more-btn:hover {
  color: #0056b3;
}

.content-section-blog-v1 .read-more-btn:hover:after {
  margin-left: 10px;
}

.section-blog-v1 .content-section-blog-v1{
  margin-top: 0px;
}

/* View All Button Styles */
.blog-v1-view-all-wrapper {
  text-align: center;
  padding: 10px 0 40px;
}

.blog-v1-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #007bff;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.blog-v1-view-all-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.blog-v1-view-all-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  color: #FFF !important;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.blog-v1-view-all-btn:hover:before {
  left: 100%;
}

.blog-v1-view-all-btn svg {
  transition: transform 0.3s ease;
}

.blog-v1-view-all-btn:hover svg {
  transform: translateX(4px);
}

.blog-v1-view-all-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

/* Slider Dots */
.blog-v1-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.blog-v1-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-v1-dot.active {
  background: #007bff;
  width: 24px;
  border-radius: 4px;
}

/* Desktop - No slider, grid layout */
@media (min-width: 1200px) {
  .blog-v1-slide {
    padding: 0 10px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .blog-v1-slide {
    padding: 0 8px;
  }
  
  .content-section-blog-v1 .info_blog {
    padding: 14px;
  }
  
  .content-section-blog-v1 .title-blog a {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .content-blog-v1 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  
  .content-section-blog-v1 .picrure {
    padding-top: 65%;
  }
}

/* Mobile - Slider only */
@media (max-width: 767px) {
  .section-blog-v1 {
    padding: 30px 0;
  }
  
  .section-header-blog-v1 {
    margin-bottom: 20px;
    padding: 0 15px;
  }
  
  .blog-v1-slider-wrapper {
    overflow: hidden;
    margin: 0 -15px;
  }
  
  .content-blog-v1 {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0 15px;
  }
  
  .blog-v1-slide {
    flex: 0 0 82%;
    max-width: 82%;
    padding: 0 8px;
  }
  
  .content-section-blog-v1 {
    margin-bottom: 0;
  }
  
  .content-section-blog-v1 .picrure {
    padding-top: 65%;
  }
  
  .content-section-blog-v1 .info_blog {
    padding: 14px;
  }
  
  .content-section-blog-v1 .title-blog a {
    font-size: 18px !important;
  }
  
  .content-section-blog-v1 .content {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
  
  .blog-v1-dots {
    display: flex;
  }
  
  .blog-v1-view-all-wrapper {
    padding: 10px 15px 35px;
  }
  
  .blog-v1-view-all-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .blog-v1-slide {
    flex: 0 0 85%;
    max-width: 85%;
  }
  
  .content-section-blog-v1 .date {
    padding: 6px 10px;
    top: 10px;
    right: 10px;
  }
  
  .content-section-blog-v1 .date .day {
    font-size: 16px;
  }
  
  .content-section-blog-v1 .date .month {
    font-size: 10px;
  }
  
  .blog-v1-view-all-btn {
    padding: 11px 24px;
    font-size: 13px;
  }
}

/* Placeholder SVG styling */
.placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide navigation arrows - mobile slider only */
.blog-v1-nav {
  display: none !important;
}
/* END_SECTION:section-blog-v1 */

/* START_SECTION:section-collection-grid (INDEX:68) */
.col-item {
    width: 100%; /* This might override Bootstrap grid */
  }

  h3.title-collection {
    line-height: 12px;
  }

  .section-collection-v1.pd-small {
    padding: 0px !important;
  }

  .section-collection-v1 .title_heading {
    padding-top: 0px !important;
  }

  h3.title-collection a {
    font-size: 10px;
  }
  
  .slick-dots {
    display: none;
  }
  
  .box-img {
    width: 72% !important;
    height: 72% !important;
    max-width: 72% !important;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }

  @media (max-width: 767px) {
  .item div.box-img {
    width: 90% !important;
    height: 90% !important;
    max-width: 90% !important;
  }
  }

  @media (max-width: 992px) {
    .heading-spacing-top-md {
      padding-top: 30px;
    }
  }
/* END_SECTION:section-collection-grid */

/* START_SECTION:section-collection-v1 (INDEX:69) */
.col-item {
    width: 100%; /* This might override Bootstrap grid */
  }

  .homepage-collection-v1-wrapper {
    display: grid;
    row-gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
  }

  .collection-v1-box-img {
    display: flex;
    justify-content: center;
    /* width: 120px;  */
    /* height: 120px; */
  }

  .collection-v1-box-img img {
    border-radius: 100px;
    overflow: hidden;
  }

  h3.title-collection {
    line-height: 12px;
  }

  .section-collection-v1.pd-small {
    padding: 0px !important;
  }

  .section-collection-v1 .title_heading {
    padding-top: 0px !important;
  }

  h3.title-collection a {
    font-size: 10px;
  }
  
  .slick-dots {
    display: none;
  }
  
  .box-img {
    width: 72% !important;
    height: 72% !important;
    max-width: 72% !important;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }

  @media (max-width: 767px) {
  .homepage-collection-v1-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .homepage-collection-v1-wrapper .item .category-info {
    margin-top: 16px !important;
  }
/* 
  .collection-v1-box-img {
    width: 100px; 
    height: 100px;
  }
   */
  .item div.box-img {
    width: 90% !important;
    height: 90% !important;
    max-width: 90% !important;
  }
  }

  @media (max-width: 992px) {
    .heading-spacing-top-md {
      padding-top: 30px;
    }
  }
/* END_SECTION:section-collection-v1 */

/* START_SECTION:section-product-v1 (INDEX:83) */
.product-v1-full-width-md .slick-track {
    width: 100% !important;
  }
/* END_SECTION:section-product-v1 */

/* START_SECTION:section-service-v2 (INDEX:91) */
.homepage-trust-cards-md {
    
  }

  /* Mobile Styles (≤576px) */
  @media (max-width: 576px) {
    .itemtservice {
      width: 200px !important;
    }
  }
</style>
/* END_SECTION:section-service-v2 */

/* START_SECTION:section-services-custom-v1 (INDEX:92) */
.slide-up {
    padding: 20px 0;
  }

  .section-image-icons {
    padding: 30px 0;
  }

  .container-v1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .section-header {
    text-align: center;
    /* margin-bottom: 40px; */
  }

  .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
  }

  .responsive-icons-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .item-icon {
    padding: 0 15px;
  }

  /* Box Icon - Matching service-v2 style */
  .box-icon {
    text-align: center;
    padding: 20px 15px;
  }

  .box-icon .icon-image {
    /* margin-bottom: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .box-icon .icon-image img {
    width: 105px;
    height: 105px;
    object-fit: contain;
  }

  .box-icon .icon-info {
    text-align: center;
  }

  .box-icon .icon-info .icon-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }

  .box-icon .icon-info .icon-content {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  /* Desktop: Grid Layout (above 768px) - 4 items */
  @media (min-width: 769px) {
    .responsive-icons-slider {
      display: flex !important;
    }

    .item-icon {
      flex: 0 0 25%;
      max-width: 25%;
    }
  }

  /* Tablet and Mobile: Slider Mode */
  @media (max-width: 768px) {
    .responsive-icons-slider.slick-initialized .item-icon {
      padding: 0 10px;
    }

    /* Slick dots styling */
    .responsive-icons-slider .slick-dots {
      bottom: -45px;
      position: relative;
      margin-top: 30px;
      text-align: center;
    }

    .responsive-icons-slider .slick-dots li {
      margin: 0 5px;
      display: inline-block;
    }

    .responsive-icons-slider .slick-dots li button {
      padding: 0;
      border: none;
      background: transparent;
    }

    .responsive-icons-slider .slick-dots li button:before {
      font-size: 12px;
      color: #000;
      opacity: 0.3;
    }

    .responsive-icons-slider .slick-dots li.slick-active button:before {
      opacity: 1;
      color: #000;
    }

    .responsive-icons-slider .slick-list {
      overflow: hidden;
    }

    .responsive-icons-slider .slick-track {
      display: flex;
    }
  }

  /* Tablet (451px - 768px) - 3 items */
  @media (min-width: 451px) and (max-width: 768px) {
    .box-icon {
      padding: 15px 10px;
    }
  }

  /* Mobile specific (below 450px) - 2 items */
  @media (max-width: 450px) {
    .box-icon {
      padding: 15px 8px;
    }

    .box-icon .icon-image img {
      width: 95px;
      height: 95px;
    }

    .box-icon .icon-image {
      margin-bottom: 12px;
    }

    .box-icon .icon-info .icon-title {
      font-size: 12px;
      margin-bottom: 8px;
    }

    .box-icon .icon-info .icon-content {
      font-size: 11px;
      line-height: 1.5;
    }

    .section-header h2 {
      font-size: 22px;
    }
  }
/* END_SECTION:section-services-custom-v1 */

/* START_SECTION:section-services-custom (INDEX:93) */
.responsive-slider-section {
    padding: 20px 0;
  }

  .responsive-slider-section .container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 32px;
    font-weight: 700;
  }

  .responsive-grid-slider {
    position: relative;
  }

  /* Card Styling */
  .card-item {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .card-item:hover {
    transform: translateY(-5px);
  }

  .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
  }

  .card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #f2f2f2;
    margin-bottom: 15px;
    flex-grow: 1;
  }

  .card-button {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: background 0.3s ease;
    align-self: flex-start;
  }

  .card-button:hover {
    background: #333;
    color: #fff !important;
  }

  /* Desktop: Grid Layout (above 768px) */
  @media (min-width: 769px) {
    .responsive-grid-slider {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .responsive-grid-slider .grid-item {
      width: 100%;
    }
  }

  /* Tablet and Mobile: Slider Mode */
  @media (max-width: 768px) {
    .responsive-grid-slider.slick-initialized .grid-item {
      padding: 0 10px;
    }

    /* Slick dots styling */
    .responsive-grid-slider .slick-dots {
      bottom: -45px;
      position: relative;
      margin-top: 30px;
    }

    .responsive-grid-slider .slick-dots li {
      margin: 0 5px;
    }

    .responsive-grid-slider .slick-dots li button:before {
      font-size: 12px;
      color: #000;
      opacity: 0.3;
    }

    .responsive-grid-slider .slick-dots li.slick-active button:before {
      opacity: 1;
      color: #000;
    }

    /* Add space for dots */
    .responsive-grid-slider {
      margin-bottom: 20px;
    }

    .responsive-grid-slider .slick-list {
      overflow: hidden;
    }

    .responsive-grid-slider .slick-track {
      display: flex;
    }
  }

  /* Mobile specific */
  @media (max-width: 480px) {
    .card-content {
      padding: 15px;
    }

    .card-title {
      font-size: 18px;
    }

    .card-description {
      font-size: 13px;
    }

    .section-header h2 {
      font-size: 24px;
    }
  }
/* END_SECTION:section-services-custom */