/** Shopify CDN: Minification failed

Line 146:8 Expected identifier but found whitespace
Line 146:10 Unexpected "{"
Line 146:19 Expected ":"
Line 151:8 Expected identifier but found whitespace
Line 151:10 Unexpected "{"
Line 151:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.hero-banner {
  position: relative;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-banner__heading-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
}
.hero-banner__title {
  
  font-size: clamp(48px, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  max-width: 739px;
}
.hero-banner__star {
  position: absolute;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translateY(-40%);
}
.hero-banner__star--left {
  left: -100px;
  top: -20px;
}
.hero-banner__star--right {
  right: -100px;
  top: -20px;
}
.hero-banner__paragraph {
  
  font-size: clamp(20px, 2vw, 1.25rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 1100px;
}
@media (max-width: 992px) {
  .hero-banner__star {
    width: 60px;
    transform: translateY(-20%);
  }
  .hero-banner__star--left {
    left: -60px;
  }
  .hero-banner__star--right {
    right: -60px;
  }
}
@media (max-width: 768px) {
  .hero-banner__star {
    display: none;
  }
}
/* --- Base Styles --- */
.process-flow {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.process-flow__overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}
.process-flow__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.process-flow__heading {
 
  font-size: clamp(32px, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.3;
      margin: 0 auto 40px auto;
      max-width: 794px;
}

/* --- Cards Grid (default mode) --- */
.process-flow__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-content: start;
}
.process-flow__card {
  background: #fff;
  border: 1px solid var(--primary);
  border-radius: 22px;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
  color: {{ section.settings.card_text_color }};
}
.process-flow__card:hover {
  background: #B9BDCF;;
  border-color: var(--secondary);
  color: {{ section.settings.card_hover_text_color }};
}
.process-flow__icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background 0.3s ease;
}
.process-flow__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.process-flow__card:hover .process-flow__icon-wrapper {
  background: #000;
}
.process-flow__card-title {
  
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: inherit;
  margin: 0 0 30px 0;
  transition: color 0.3s ease;
}
.process-flow__card-paragraph {
 
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: inherit;
  margin: 0;
  -webkit-text-stroke: 0.2px currentColor;
  transition: color 0.3s ease;
}

/* --- Carousel Mode --- */
.process-flow__carousel {
  display: flex;
  overflow: hidden;
  gap: 20px;
  position: relative;
          justify-content: flex-start !important;
}
.process-flow__carousel .process-flow__card {
  flex: 0 0 33.333%;
  scroll-snap-align: start;
}
.process-flow__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}
.process-flow__carousel-btn:hover {
  background: #000;
}
.process-flow__carousel-btn.prev { left: -60px; }
.process-flow__carousel-btn.next { right: -60px; }
/* ====== SCROLLBAR STYLING ====== */
/* Chrome, Edge, Safari */
.process-flow__cards::-webkit-scrollbar {
  height: 8px;
}
.process-flow__cards::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.process-flow__cards::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.05);
}
.process-flow__cards::-webkit-scrollbar-thumb:hover {
  background-color: #000;
}
/* Firefox */
.process-flow__cards {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(0, 0, 0, 0.05);
}
/* --- Mobile Behavior --- */
@media (max-width: 768px) {
  /* When carousel is enabled */
  .process-flow__carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .process-flow__carousel .process-flow__card {
    flex: 0 0 80%;
  }
  .process-flow__carousel-btn {
    display: none;
  }

  /* When carousel is NOT enabled → scrollable cards */
  .process-flow__cards:not(.process-flow__carousel) {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .process-flow__cards:not(.process-flow__carousel) .process-flow__card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}