/** Shopify CDN: Minification failed

Line 203:12 Unexpected "{"
Line 203:21 Expected ":"
Line 204:16 Expected identifier but found whitespace
Line 204:18 Unexpected "{"
Line 204:27 Expected ":"
Line 204:78 Expected ":"
Line 205:19 Expected identifier but found whitespace
Line 205:21 Unexpected "{"
Line 205:30 Expected ":"
Line 205:84 Expected ":"
... and 10 more hidden warnings

**/
#gradient-cards-section .gradient-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

#gradient-cards-section .gradient-card {
  border-radius: 24px;
  padding: 40px 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#gradient-cards-section .gradient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Blue Gradient Card */
#gradient-cards-section .gradient-card--blue {
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  color: white;
}

/* Purple Gradient Card */
#gradient-cards-section .gradient-card--purple {
  background: linear-gradient(135deg, #8e24aa 0%, #6a1b9a 100%);
  color: white;
}

/* Green Gradient Card */
#gradient-cards-section .gradient-card--green {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
  color: white;
}

/* Dark Gradient Card */
#gradient-cards-section .gradient-card--dark {
  background: linear-gradient(135deg, #424242 0%, #212121 100%);
  color: white;
}

#gradient-cards-section .gradient-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
  position: relative;
}

#gradient-cards-section .gradient-card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gradient-cards-section .gradient-card-icon img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}

#gradient-cards-section .gradient-card-icon svg {
  color: white;
  stroke-width: 1.5;
}

#gradient-cards-section .gradient-card-title {
  font-size: 33px;
  margin: 0 0 16px;
  line-height: 1.2;
  font-family: Impact;
  letter-spacing: 0px;
  color: white;
  text-transform: none;
}

#gradient-cards-section .gradient-card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  flex-grow: 1;
  font-family: "Hind Vadodara";
  letter-spacing: 0px;
}

#gradient-cards-section .gradient-card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
  background: white;
  color: #333;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#gradient-cards-section .gradient-card-button:hover {
  background: #f8f9fa;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#gradient-cards-section .gradient-card-button svg {
  transition: transform 0.3s ease;
  stroke-width: 2;
  color: #333;
}

#gradient-cards-section .gradient-card-button:hover svg {
  transform: translateX(4px);
}

/* Add subtle pattern overlay */
#gradient-cards-section .gradient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  #gradient-cards-section .gradient-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  #gradient-cards-section .gradient-card {
    padding: 30px 24px;
  }
  
  #gradient-cards-section .gradient-card-title {
    font-size: 24px;
  }
  
  #gradient-cards-section .gradient-card-description {
    font-size: 15px;
  }
  
  #gradient-cards-section .gradient-card-icon {
    width: 60px;
    height: 60px;
  }
  
  #gradient-cards-section .gradient-card-icon svg {
    width: 55px;
    height: 55px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #gradient-cards-section .gradient-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  #gradient-cards-section .gradient-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Title` */
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }

  .gradient-cards-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .gradient-cards-title {
    font-size: 48px;
    font-family: Impact;
    margin-bottom: 5rem;
    line-height: 1.2;
  }

  @media screen and (max-width: 749px) {
    .gradient-cards-title {
      font-size: 36px;
    }
  }
