.layout-banner-active {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

div#mainContainer {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
div#mainContainer img.img-fluid {
  max-width: 100%;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.center-image.satellite-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: 4px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
  transition: all 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: scale(0.3);
}

.animation-banner-circle.active .center-image {
  opacity: 1;
  transform: scale(1);
}

.animation-banner-circle.active .satellite-image {
  opacity: 1;
  transform: scale(1);
}

.animation-banner-circle.active .image-1 {
  top: -40px;
  left: 50%;
  transform: translateX(-50%) scale(1);
}

.animation-banner-circle.active .image-2 {
  right: -40px;
  top: 50%;
  transform: translateY(-50%) scale(1);
}

.animation-banner-circle.active .image-3 {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) scale(1);
}

.animation-banner-circle.active .image-4 {
  left: -40px;
  top: 50%;
  transform: translateY(-50%) scale(1);
}

@keyframes centerFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.satellite-image {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: scale(0.3);
  z-index: 2;
}

.image-1 {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
}

.image-2 {
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #4ecdc4, #45b7d1);
}

.image-3 {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #96ceb4, #a8e6cf);
}

.image-4 {
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #ffeaa7, #fdcb6e);
}

.animate {
  animation: moveAndFade 10s ease-in-out forwards;
}

@keyframes moveAndFade {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes fadeOpacity {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
.image-0.animate {
  animation: moveCenter 10s ease-in-out forwards;
}

.image-1.animate {
  animation: moveUp 10s ease-in-out forwards;
}

.image-2.animate {
  animation: moveRight 10s ease-in-out forwards;
}

.image-3.animate {
  animation: moveDown 10s ease-in-out forwards;
}

.image-4.animate {
  animation: moveLeft 10s ease-in-out forwards;
}

@keyframes moveCenter {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes moveUp {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-100px) scale(1);
  }
}
@keyframes moveRight {
  0% {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(100px) scale(1);
  }
}
@keyframes moveDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(100px) scale(1);
  }
}
@keyframes moveLeft {
  0% {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(-100px) scale(1);
  }
}
.control-button {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.control-button:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
