body {
  font-family: "Montserrat", sans-serif;
}

.hero-bg {
  background-image: url("/assets/img/hero-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-shadow-lg {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

#workflow-execution-left {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background-image: url("/assets/img/workflow-execution-bg-1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

#smart-insight-section {
  background-image: url("/assets/img/smart-insight-bg.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: color;
}
