/* =========================================================
   GLOBAL BUTTON STYLES (Singularity Theme)
   ========================================================= */

/* Base Button Style */
.btn-gradient {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 9999px;
  /* Fully rounded */
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #1A1A1A;
  border: 2px solid #000;
  background: #fff;
  cursor: pointer;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient Overlay Animation */
.btn-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #1A6AFF;
  transition: all 0.35s ease;
  border-radius: 50%;
  z-index: 1;

}

/* Hover Effect - Gradient Slides In */
.btn-gradient:hover::after {
  bottom: 0;
  border-radius: 0;
}

/* Text stays above overlay */
.btn-gradient span {
  position: relative;
  z-index: 2;
}

/* Text color change on hover */
.btn-gradient:hover {
  color: #fff;
}

/* Optional: Soft hover glow */
.btn-gradient:hover {
  box-shadow: 0 4px 12px rgba(43, 140, 255, 0.3);
}

/* =========================================================
   GLOBAL BUTTON STYLES (Singularity Theme)
   ========================================================= */

/* Base Button Style */
.new-btn-gradient {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 9999px;
  /* Fully rounded */
  padding: 10px 20px;
  font-weight: 600 !important;
  font-size: 15px;
  color: #fff;
  border: 2px solid #000;
  background: #1A6AFF;
  cursor: pointer;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient Overlay Animation */
.new-btn-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.35s ease;
  border-radius: 50%;
  z-index: 1;
}

/* Hover Effect - Gradient Slides In */
.new-btn-gradient:hover::after {
  bottom: 0;
  border-radius: 0;
}

/* Text stays above overlay */
.new-btn-gradient span {
  position: relative;
  z-index: 2;
}

/* Text color change on hover */
.new-btn-gradient:hover {
  color: #000;
}

/* Optional: Soft hover glow */
.new-btn-gradient:hover {
  box-shadow: 0 4px 12px rgba(43, 140, 255, 0.3);
}

/* =========================================================
   GLOBAL BUTTON STYLES (Singularity Theme)
   ========================================================= */
