.satellite-view {
  color: #00ffe0;
  position: relative;
  min-height: 500px;
  background: url("/assets/img/your-chosen-image.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.satellite-view::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 40, 0.55);
  backdrop-filter: blur(2px);
}

.satellite-view .overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.satellite-view::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 55%;
  width: 20px;
  height: 20px;
  background: rgba(0, 255, 0, 0.6);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.2;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
}

.section-parallax {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.parallax-layer.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/space-bg.jpg");
  background-size: cover; 
  background-position: center;
  z-index: 1;
}

.section-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      359.63deg,
      rgba(0, 0, 41, 0.6) 0.4%,
      rgba(0, 0, 41, 0) 77.5%
    ),
    linear-gradient(0deg, rgba(0, 32, 91, 0.6), rgba(0, 32, 91, 0.6));
  z-index: 2;
}

.parallax-layer.fg {
  position: relative;
  z-index: 3; 
  text-align: center;
  color: #fff;
  max-width: 800px;
}

.satellite-img {
  width: 120px;
  animation: orbit 10s linear infinite;
}

@keyframes orbit {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(200px, -50px) rotate(15deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
