body {
  margin: 0;
  padding: 0;
}

body::before {
  opacity: .2;
}

.hero {
  background-image: url('/images/background_1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  /*background: url("/images/welcome_background.jpg") no-repeat center center/cover;*/
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .6);
  z-index: 1;
}

.hero .h1 {
  font-size: 4rem;
  margin: 0;
  color: var(--primary-color);
  z-index: 9;
}

.hero .h5 {
  margin: 0;
  font-weight: normal;
  z-index: 9;
}
.hero .title {
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
  z-index: 9;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.hero .main-text {
  width: 60%;
  font-size: 4rem;
  line-height: 5rem;
  color: var(--secondary-color);
  z-index: 9;
}

.hero .secondary-text {
  font-size: 2rem;
  z-index: 9;
  margin-top: 10px
}

.hero .animated-text {
  font-size: 2rem;
  margin: 20px 0;
  transform: translateY(-20px);
  animation: fadeInOut 3s infinite;
  color: var(--secondary-color);
  z-index: 9;
}
.hero .btn {
  z-index: 9;
  margin-top: 20px;
  padding: 16px 20px;
}

.hero img {
  max-width: 100%;
  height: auto;
}


@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.features {
  padding: 50px;
  text-align: center;
}

.features h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.features .feature {
  margin: 15px;
  text-align: left;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.features .feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.features .feature p {
  font-size: 16px;
}

footer {
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 14px;
}


.sparkle-container-still  .sparkles-still  {
  width: 30px;
  height: 30px;
  position: relative;
}

/* Sparkle shape */
.sparkle-still  {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
  opacity: 0;
  animation: sparkle-fade 1.5s infinite ease-in-out;
}


.sparkle-still:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.sparkle-still:nth-child(2) {
  top: 30%;
  left: 70%;
  animation-delay: 0.3s;
}

.sparkle-still:nth-child(3) {
  top: 50%;
  left: 30%;
  animation-delay: 0.6s;
}
