@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-turquoise: #2dd4bf;
  --color-emerald: #059669;
  --color-dark-teal: #134e4a;
  --color-dark-emerald: #064e3b;
}

body {
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* Background Pattern Premium */
.bg-mesh {
  background-color: #f8fafc;
  background-image:
    radial-gradient(at 0% 0%, hsla(174, 91%, 96%, 1) 0, transparent 60%),
    radial-gradient(at 100% 0%, hsla(161, 91%, 96%, 1) 0, transparent 60%),
    radial-gradient(at 50% 100%, hsla(174, 91%, 96%, 1) 0, transparent 60%);
}

.glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hover-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.1);
}

/* Custom Text Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--color-turquoise), var(--color-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Decorative Blobs Navigation */
.blob-anim {
  animation: blob 10s infinite alternate;
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}