/* For your Collabrow website */

.gradient-primary {
  background: linear-gradient(135deg, #8b2cb5 0%, #6b46c1 50%, #3b82f6 100%);
  /* background: linear-gradient(to right, #8a2be2, #4169e1); */
}

@keyframes smoothGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Alternative diagonal gradient */
.gradient-diagonal {
  background: linear-gradient(to bottom right, #8b2cb5, #3b82f6);
}

/* Radial gradient for accent elements */
.gradient-radial {
  background: radial-gradient(circle, #8b2cb5 0%, #3b82f6 70%);
}

/* 
 */

.section-white {
  background: #ffffff;
  color: #1e293b;
}

.gradient-text {
  background: linear-gradient(135deg, #8b2cb5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 
 */

.section-gradient {
  background: linear-gradient(135deg, #8b2cb5 0%, #6b46c1 50%, #3b82f6 100%);
  color: #ffffff;
}

.white-text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.white-text-shadow2 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
