header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(67, 212, 249, 0.3),
    rgba(36, 154, 185, 0.2),
    transparent 30%
  );
  background-size: 300% 300%;
  animation: pulseBg 18s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes pulseBg {
  0% {
    background-position: -25% 50%;
  }
  50% {
    background-position: 125% 50%;
  }
  100% {
    background-position: -25% 50%;
  }
}


p, ul, ol, li {
  font-size: 1.05rem;
}

#preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.loader {
  border: 4px solid #e1f7f9;
  border-top: 4px solid #249ab9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fastPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.fast-pulse {
  animation: fastPulse 1s ease-in-out infinite;
}


.fancy-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2em auto;
 max-width: 300px; 
	  overflow: hidden;

}

.fancy-divider::before,
.fancy-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #0e6681;
}

.fancy-divider::before {
  margin-right: 1em;
}

.fancy-divider::after {
  margin-left: 1em;
}

.star {
  color: gold;
  font-size: 1.5em;
}





  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .animate-slider {
    animation: scroll 15s linear infinite;
  }


  .animate-slider img {
    height: auto;
    width: auto;
    max-width: none;
    display: block;
  }




footer {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(67, 212, 249, 0.3),
    rgba(36, 154, 185, 0.2),
    transparent 30%
  );
  background-size: 300% 300%;
  animation: pulseBg 18s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}