/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 09 2025 | 02:21:56 */
/* 2025.11.07 - Kingsley */

/* Option 1: Smooth Gradient Animation (Elegant & Modern) */
.bky-hero-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #14142b, #2f4f4f, #13111c, #151515);
  background-size: 400% 400%;
  animation: gradientFlow 18s ease infinite;
  color: #fff;
  overflow: hidden;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
