/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 01 2025 | 11:34:57 */
/* Gradient hover button for Themify Button Widget */
.tf-gradient-btn {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #FAAF42!important;
  color: #fff !important;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: color 0.475s;
}

/* Text inside button */
.tf-gradient-btn span {
  position: relative;
  z-index: 2;  /* make sure text is above gradient */
  transition: color 0.475s;
}

/* Hover gradient overlay */
.tf-gradient-btn::before {
  content: "Contact Us";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #FAAF42
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.475s ease;
  z-index: 1;
}

/* Hover effect */
.tf-gradient-btn:hover::before {
  transform: scaleX(1);
}

.tf-gradient-btn:hover span {
  color: #fff;  /* optional: change text color on hover */
}
