/* Button container */
.btn-primary-round {
  position: relative;
  display: inline-block;
  padding: 6px 30px;
  font-size: 14px;
  font-weight: bold;
  color: white !important;
  background: #035696;
  border-radius: 980px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
  text-decoration: none;
}

/* Text inside */
.btn-primary-round-text {
  font-size: 1.1rem;
  font-weight: normal;
  position: relative;
  z-index: 1;
}

/* Hover shine effect */
.btn-primary-round::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffd700;
  transition: left 0.3s ease;
  z-index: 0;
}

.btn-primary-round:hover::before {
  left: 0;
}
