* {
  box-sizing: border-box;
}
html {
  font-size: 100%;
}
.orbit {
 background: #0000FF ;
  background-size: cover; /* Ensures the SVG covers the entire background */
  width: 100%;
  min-height: 100vh;
  display:block;

  justify-content: center; /* Centers the content horizontally */
  align-items: center; /* Centers the content vertically */
}
.orbit-icon {
  width: 2em;
  height: 2em;
  line-height: 1.6em;
  font-size: 1.2em;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  display: inline-block;
}
.orbit-wrap {
  height: 40em;
  list-style: none;
  font-size: 1.3em;
}
.orbit-wrap > li {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.orbit-wrap > li:hover ul {
  border-width: 2px;
  border-color: #fff;
}
.orbit-wrap > li:hover ~ li ul {
  border-color: rgba(255, 255, 255, 0.2);
}
.orbit-wrap > li:hover ~ li ul li {
  opacity: 0.4;
}
ul[class^=ring] {
  transition: all 300ms ease-in-out;
}
ul[class^=ring] li {
  transition: all 300ms ease-in-out;
}
.ring-0 {
  width: 25em;
  height: 25em;
  animation: clockwiseRotate 35s linear infinite;
}


.ring-0 i {
  animation: counterClockwiseRotate 35s linear infinite;
  
}






.ring-0 > *:nth-of-type(1) {
  transform: rotate(95deg) translate(12.5em) rotate(-95deg);
}
.ring-0 > *:nth-of-type(2) {
  transform: rotate(190deg) translate(12.5em) rotate(-190deg);
}
.ring-0 > *:nth-of-type(3) {
  transform: rotate(285deg) translate(12.5em) rotate(-285deg);
}
.ring-0 > *:nth-of-type(4) {
  transform: rotate(380deg) translate(12.5em) rotate(-380deg);
}
.ring-1 {
  width: 20em;
  height: 20em;
  animation: clockwiseRotate 30s linear infinite;
}
.ring-1 i {
  animation: counterClockwiseRotate 30s linear infinite;
}
.ring-1 > *:nth-of-type(1) {
  transform: rotate(126.6666666667deg) translate(10em) rotate(-126.6666666667deg);
}
.ring-1 > *:nth-of-type(2) {
  transform: rotate(253.3333333333deg) translate(10em) rotate(-253.3333333333deg);
}
.ring-1 > *:nth-of-type(3) {
  transform: rotate(380deg) translate(10em) rotate(-380deg);
}
.ring-2 {
  width: 15em;
  height: 15em;
  animation: clockwiseRotate 25s linear infinite;
}
.ring-2 i {
  animation: counterClockwiseRotate 25s linear infinite;
}
.ring-2 > *:nth-of-type(1) {
  transform: rotate(47.5deg) translate(7.5em) rotate(-47.5deg);
}
.ring-2 > *:nth-of-type(2) {
  transform: rotate(95deg) translate(7.5em) rotate(-95deg);
}
.ring-2 > *:nth-of-type(3) {
  transform: rotate(142.5deg) translate(7.5em) rotate(-142.5deg);
}
.ring-2 > *:nth-of-type(4) {
  transform: rotate(190deg) translate(7.5em) rotate(-190deg);
}
.ring-2 > *:nth-of-type(5) {
  transform: rotate(237.5deg) translate(7.5em) rotate(-237.5deg);
}
.ring-2 > *:nth-of-type(6) {
  transform: rotate(285deg) translate(7.5em) rotate(-285deg);
}
.ring-2 > *:nth-of-type(7) {
  transform: rotate(332.5deg) translate(7.5em) rotate(-332.5deg);
}
.ring-2 > *:nth-of-type(8) {
  transform: rotate(380deg) translate(7.5em) rotate(-380deg);
}
.ring-3 {
  width: 10em;
  height: 10em;
  animation: clockwiseRotate 20s linear infinite;
}
.ring-3 i {
  animation: counterClockwiseRotate 20s linear infinite;
}



.ring-3 > *:nth-of-type(1) {
  transform: rotate(126.6666666667deg) translate(5em) rotate(-126.6666666667deg);
}
.ring-3 > *:nth-of-type(2) {
  transform: rotate(253.3333333333deg) translate(5em) rotate(-253.3333333333deg);
}
.ring-3 > *:nth-of-type(3) {
  transform: rotate(380deg) translate(5em) rotate(-380deg);
}
ul[class^=ring] {
  border: solid 1px rgba(33, 150, 243, 0.8);
  position: relative;
  padding: 0;
  border-radius: 50%;
  list-style: none;
  box-sizing: content-box;
}
ul[class^=ring] li {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6em;
  height: 1.6em;
  margin: -0.8em;
}
/*
 center;
 */
.orbit-center {
 
  position:relative;
  font-size: 2em;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  text-align: center;
  background: #0000FF;
  border-radius: 20%;
}
.orbit-center:hover .orbit-center__icon {
  transform: rotateZ(0deg);
}
.orbit-center__icon {
  transform: rotateZ(-360deg);
  transition: all 300ms ease-in-out;
   object-fit: contain;
}
.orbit-wrap > li.orbit-center:hover ~ li > ul {
  width: 0;
  height: 0;
}
.orbit-wrap > li.orbit-center:hover ~ li > ul * {
  transform: translate(0, 0);
}
/* 
 animations 
 */
@keyframes clockwiseRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes counterClockwiseRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* 
 icons 
 */
.fa-heart-o {
  background: #b71c1c;
  color: white;
}
.fa-dss {
  background: white;
  color: #CDDC39;
}

.fa-pts {
  background: white;
  color: #fff;
}

.fa-l2 {
background: white;

}
.fa-l3 {
background: white;
  
}
.fa-MSJ {
  background: white;
  color: #2196f3;
}
.fa-MAPS {
  background:white;
  color: white;
}
.fa-PINvision {
  background:white;
  color: white;
}
.fa-atlas {
  background:white;
  color: white;
}
.fa-nexxpos {
  background:white;
  color: white;
}

/* Image Scaling */
.orbit img {
  width: 100%;  /* Ensure the image scales with the container */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease;
}

.orbit img:hover {
  transform: scale(1.5); /* Scale on hover, adjust to desired zoom level */
}

.orbit-center__icon img {
  width: 100px; /* Adjust the size as needed */
  height: auto; /* Keep the aspect ratio */
  box-shadow: 0 0 10px cyan, 0 0 20px cyan, 0 0 60px cyan; /* Cyan glow effect */
  transition: box-shadow 0.3s ease-in-out; /* Optional smooth transition */
  border-radius: 15%; /* Rounded corners by 15% */
  animation: pulseGlow 2s infinite; /* Apply the pulsing animation */
}

.orbit-center__icon img:hover {
  box-shadow: 0 0 15px cyan, 0 0 25px cyan, 0 0 35px cyan; /* Intensified glow on hover */
}

/* Pulse animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px cyan, 0 0 20px cyan, 0 0 30px cyan; /* Initial glow */
  }
  50% {
    box-shadow: 0 0 20px cyan, 0 0 40px cyan, 0 0 60px cyan; /* Pulse glow */
  }
  100% {
    box-shadow: 0 0 10px cyan, 0 0 20px cyan, 0 0 30px cyan; /* Return to initial glow */
  }
 
}

.orbit-wrap {
  height: 40em;
  list-style: none;
  font-size: 1.3em;
  position: relative; /* Ensure the content is positioned relative to its container */
   transform: scale(1.4);
}

.orbit :hover {
  animation-play-state: paused !important;
}


/* Pause the animation of the whole orbit wrap when hovering any orbit icon */
.orbit-icon:hover,
.orbit-icon:hover ~ .orbit-icon,
.orbit-icon:hover ~ .orbit-icon ~ .orbit-icon,
.orbit-icon:hover ~ .orbit-icon ~ .orbit-icon ~ .orbit-icon {
  animation-play-state: paused !important;
}

/* Ensure all items in the orbit are paused */
.orbit-wrap:hover {
  animation-play-state: paused !important;
}



.ring-0 i {
  animation-play-state: running; /* Ensure the animation is running by default */
}

.ring-0:hover i {
  animation-play-state: paused; /* Pause the animation for all icons within .ring-0 on hover */
  cursor: pointer; /* Optional: change cursor to pointer for better UX */
}

.ring-1 i {

  animation-play-state: running; /* Ensure the animation is running by default */
}

.ring-1:hover i {
  animation-play-state: paused; /* Pause the animation for all icons within .ring-0 on hover */
  cursor: pointer; /* Optional: change cursor to pointer for better UX */
}

.ring-2 i {

  animation-play-state: running; /* Ensure the animation is running by default */
}

.ring-2:hover i {
  animation-play-state: paused; /* Pause the animation for all icons within .ring-0 on hover */
  cursor: pointer; /* Optional: change cursor to pointer for better UX */
}

.ring-3 i {
  
  animation-play-state: running; /* Ensure the animation is running by default */
}

.ring-3:hover i {
  animation-play-state: paused; /* Pause the animation for all icons within .ring-0 on hover */
  cursor: pointer; /* Optional: change cursor to pointer for better UX */
}

.orbit-item {
  position: relative;
  display: inline-block;
}

.icon-description {
  position: absolute;
  color: #000000;
  top: 0;
  left: 110%;
  background-color: rgba(255, 255, 255, 0.9); /* Set background opacity to 90% */
  border-radius: 10px;
  padding: 10px;
  width: 200px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-in-out;
  z-index: 1000 !important;
  font-family: 'Inter', 'proxima nova', sans-serif; /* Set font to Inter */
  font-weight:400;
  font-size: 0.4em; /* Set font size to 0.5em */
  line-height: 1.2em; /* Set line height to 0.5em */
  text-align:left;
   margin-left: 30%;
  font-style: normal; /* Prevent italics */
}
.orbit-item:hover .icon-description {
  opacity: 1;
}

.orbit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.orbit-item {
  position: relative; /* Ensure it's relative so the icon description positions correctly */
}

@media (max-width: 768px) {
  .orbit-wrap {
    transform: scale(0.85); /* Scale down the orbit */
    font-size: 1em; /* Adjust text size */
  }

 


  .icon-description {
    font-size: 0.8em; /* Smaller text for descriptions */
    width: 150px; /* Reduce description box size */
  }

