.orbit-container {
    height: 100vh;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
  }
  
  .orbit-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    
  }
  
  .orbit {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .circle {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 1;
  }
  
  .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  }
  
  /* Zoomed-in center image */
  .circle.active {
    transform: translate(10%, 0%) scale(2) !important;
    z-index: 10;
  }
  
  /* Arrow buttons */
  button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 22px;
    background-color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
  
  #left-btn {
    left: -60px;
  }
  #right-btn {
    right: -60px;
  }
  