/** Shopify CDN: Minification failed

Line 33:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-text {
  margin-top: 1rem;
  font-style: italic;
}
.testimonial-name {
  margin-top: 0.5rem;
  font-weight: bold;
}
.how-it-works-section {
  background: #f9f9f9;
  padding: 60px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ensure Poppins font is loaded (add to theme.liquid <head> if not already included) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

.how-it-works-section h2 {
    color: #111111;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    text-transform: capitalize;
      margin-block: 0 50px;
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.1) 0%, transparent 70%);
  animation: rotateGlow 10s linear infinite;
  z-index: -1;
}



.step-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 5px 7px rgb(0 0 0 / 8%);
}
.step-card img {
  max-width: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(1.1);
}

.step-card:hover img {
  transform: scale(1.1);
}

.step-card p {
    color: #333333;
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.4;
    max-width: 70%;
    margin: 0 auto;
}

.step-card strong {
  color: #26A69A;
  font-size: 1.2em;
}

.decorative-line {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #26A69A, transparent);
  animation: pulse 3s infinite;
  z-index: 0;
}
  .step-card strong {
    color: #26A69A;
    font-size: 22px;
    display: block;
    font-weight: 600;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.3; }
}

.how-it-works-button {
  display: block;
  margin: 40px auto 0;
  padding: 12px 25px;
  background: linear-gradient(90deg, #26A69A, #1d7d74);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.2em;
  font-weight: 600;
  width: 220px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.how-it-works-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.how-it-works-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(38, 166, 154, 0.3);
}

.how-it-works-button:hover::after {
  width: 300px;
  height: 300px;
}

@media (max-width: 600px) {
  .how-it-works-section h2 {
    font-size: 2em;
    width: 180px;
  }
  .how-it-works-button {
    width: 180px;
    font-size: 1.1em;
  }
  .step-card {
    width: 100%;
    max-width: 250px;
  }
  .decorative-line {
    display: none;
  }
}