.strategy-board {
    overflow: hidden;
}


  .strategy-board-holder {
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .strategy-board-holder .strategy-circles {
    transform: scale(0.6);
    margin: 0 auto;
  }

@media (max-width: 480px) {
    .strategy-board-holder {
      text-align: center;
      justify-content: center;
      display: flex;
    }
    .strategy-board-holder .strategy-circles {
      transform: scale(0.5);
      margin: 0 auto;
    }
}
.strategy-board .wp-block-heading {
    text-shadow: 2px 2px 20px #EFF7FF;
    z-index: 50;
    position: relative;
}
.strategy-circles {
    position: relative;
    width: 900px;
    height: 900px;
    margin: 180px auto 100px;
  }
  @media (max-width: 1024px) {
    .strategy-circles {
      width: 490px;
      height: 490px;
      margin: 180px auto 100px;      
    }
  }
  /* Orbit animation */
  .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 181px;
    height: 181px;
    margin: -90.5px 0 0 -90.5px;
    border: 2px solid #223C6A;
    border-radius: 50%;
    z-index: 1;
    
  }
  .main-animate .orbit {
    animation: orbitZoom 3s ease forwards;
  }
  .orbit-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 281px;
    height: 281px;
    margin: -140.5px 0 0 -140.5px;
    border: 1px solid #223C6A;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.16;
  }
  @media (max-width: 1024px) {
    .orbit-2 {
      display: none;
    }
  }
  .main-animate .orbit-2 {
    animation: orbitZoom2 3s ease forwards;
  }
  .orbit-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    border: 1px solid #223C6A;
    border-radius: 50%;
    z-index: 1;
    
    opacity: 0.16;
  }
  @media (max-width: 1024px) {
    .orbit-3 {
      display: none;
    }
  }
  .main-animate .orbit-3 {
    animation: orbitZoom3 3s ease forwards;
  }


  .orbit-4 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
    border: 1px solid #223C6A;
    border-radius: 50%;
    z-index: 1;
    
    opacity: 0.16;
  }
  @media (max-width: 1024px) {
    .orbit-4 {
      display: none;
    }
  }
  .main-animate .orbit-4 {
    animation: orbitZoom4 3s ease forwards;
  }
  /* Center circle */
  .circle.center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: #223C6A;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation-delay: 0.5s;
    opacity: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;

  }
  .circle.center span {
    opacity: 0;
    animation-delay: 2s;
  }
  .main-animate .circle.center span {
    animation: centerOpacity 2s ease forwards;
    text-align: center;
    line-height: 1.2;

  }
  @media (max-width: 1024px) {
    .circle.center {
      font-size: 32px;

    }
  }

  .main-animate .circle.center {
    animation: centerZoom 2s ease forwards;
  }
  
  /* Outer circles */
  .circle.outer {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid #223C6A;
    backdrop-filter: blur(20px);
    border-radius: 50%;
    color: #223C6A;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 3;
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    font-family: "Open Sans", sans-serif;
    text-align: center;
  }
  @media (max-width: 1024px) {
    .circle.outer {
      width: 200px;
      height: 200px;
      font-size: 20px;
    }
  }
  
  .outer-0 {
    top: calc(50% - 150px - 421.5px); /* top */
    left: 50%;
    transform: translateX(-50%);
  }
  @media (max-width: 1024px) {
    .outer-0 {
      top: calc(50% - 100px - 245px); /* top */
    }
  }
  .main-animate .outer-0 {
    animation: fadeDown 1s ease forwards;
    animation-delay: 2.5s;
  }
  
  .outer-1 {
    top: 50%;
    left: calc(50% - 150px - 421.5px); /* left */
    transform: translateY(-50%);
  }
  @media (max-width: 1024px) {
    .outer-1 {
      left: calc(50% - 100px - 245px); /* top */
    }
  }  
  .main-animate .outer-1 {
    animation: fadeRight 1s ease forwards;
    animation-delay: 3.5s;
  }
  .outer-2 {
    top: calc(50% + 421.5px - 150px); /* bottom */
    left: 50%;
    transform: translateX(-50%);
  }
  @media (max-width: 1024px) {
    .outer-2 {
      top: calc(50% + 245px - 100px); /* top */
    }
  }   
  .main-animate .outer-2 {
    animation: fadeUp 1s ease forwards;
    animation-delay: 4.5s;
  }
  .outer-3 {
    top: 50%;
    left: calc(50% + 421.5px - 150px); /* right */
    transform: translateY(-50%);
  }
  @media (max-width: 1024px) {
    .outer-3 {
      left: calc(50% + 245px - 100px);
    }
  }     
  .main-animate .outer-3 {
    animation: fadeLeft 1s ease forwards;
        
    animation-delay: 5.5s;
  }
  /* Labels positioned between outer circles on the orbit */
  .label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateY(-421.5px);
    transform-origin: center center;
    font-size: 24px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    color: #223C6A;
    opacity: 0;
    
  }
  @media (max-width: 1024px) {
    .label {
      transform: rotate(var(--angle)) translateY(-300px);
    }
    
  }
  .main-animate .label {
    animation: fadeInLabel 1s ease forwards;
  }
  /* Angles for positions between outer circles */
  .main-animate  .label-0 {
    --angle: -45deg; /* between right and top */
    animation-delay: 3s;
    left: 38%;
  }
  .main-animate  .label-1 {
    --angle: 225deg; /* between top and left */
    animation-delay: 4s;
    left: 40%;
  }
  .main-animate  .label-2 {
    --angle: 135deg; /* between left and bottom */
    animation-delay: 5s;
    left: 50%;
  }
  .main-animate  .label-3 {
    --angle: 45deg;  /* between bottom and right */
    animation-delay: 6s;
    left: 50%;
  }
  @media (max-width: 1024px) {
    .main-animate  .label-2,
    .main-animate  .label-3 {
      left: 33%;
    }
  }
 
  
  
  /* Animations */
  @keyframes orbitZoom {
    from {
      width: 181px;
      height: 181px;
      margin: -90.5px 0 0 -90.5px;
    }
    to {
      width: 843px;
      height: 843px;
      margin: -421.5px 0 0 -421.5px;
    }
  }
  @media (max-width: 1024px) {
    @keyframes orbitZoom {
      from {
        width: 181px;
        height: 181px;
        margin: -90.5px 0 0 -90.5px;
      }
      to {
        width: 490px;
        height: 490px;
        margin: -245px 0 0 -245px;
      }
    }    
  }
  @keyframes orbitZoom2{
    from {
        width: 281px;
        height: 281px;
      margin: -140.5px 0 0 -140.5px;
    }
    to {
      width: 1310px;
      height: 1310px;
      margin: -655px 0 0 -655px;
    }
  }
  @keyframes orbitZoom3{
    from {
        width: 400px;
        height: 400px;
      margin: -200px 0 0 -200px;
    }
    to {
      width: 200%;
      height: 200%;
      margin: -100% 0 0 -100%;
    }
  }
  @keyframes orbitZoom4{
    from {
        width: 600px;
        height: 600px;
      margin: -300px 0 0 -300px;
    }
    to {
      width: 250%;
      height: 250%;
      margin: -125% 0 0 -125%;
    }
  }
  @keyframes centerZoom {
    0% {
      width: 80px;
      height: 80px;
      opacity: 0;
    }
    100% {
      width: 240px;
      height: 240px;
      opacity: 1;
    }
  }
  @keyframes centerOpacity {
    0% {
      opacity: 0;
      transform: scale(0);
      font-size: 12px;
    }
    100% {
      opacity: 1;
      transform: scale(1);
      font-size: 48px;
    }
  }
  @media (max-width: 1024px) {
    @keyframes centerOpacity {
      0% {
        opacity: 0;
        transform: scale(0);
        font-size: 12px;
      }
      100% {
        opacity: 1;
        transform: scale(1);
        font-size: 32px;
      }
    }
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateY(-50%) translateX(20px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
  }
  
  @keyframes fadeRight {
    from { opacity: 0; transform: translateY(-50%) translateX(-20px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
  }
  
  @keyframes fadeInLabel {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  