
  body{
      background-color: #f4f4f4;
  }

    section.workforce-circle {
      padding: 60px 0;
      text-align: center;
    }

    .circle-wrapper {
      position: relative;
      width: 100%;
      max-width: 700px;
      aspect-ratio: 1;
      margin: auto;
    }

    .outer-ring {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid #e9e9e9;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .center-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      animation: float 3s ease-in-out infinite;
    }

    .center-logo img {
      max-width: 120px;
      height: auto;
    }

    @keyframes float {
      0%, 100% {
        transform: translate(-50%, -52%);
      }
      50% {
        transform: translate(-50%, -48%);
      }
    }

    .circle-item {
      position: absolute;
      width: 160px;
      text-align: center;
      color: #0b365d;
      font-weight: 500;
      font-size: 14px;
      transform: translate(-50%, -50%);
      z-index: 3;
      box-sizing: border-box;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      transform-origin: center center;
    }

    .circle-item:hover {
      transform: translate(-50%, -50%) scale3d(1.05, 1.05, 1);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .circle-item::before {
      content: '';
      display: block;
      margin: 0 auto 6px;
      width: 12px;
      height: 12px;
      background: #d5651c;
      border-radius: 50%;
      transition: all 0.3s ease-in-out;
    }

    .circle-item:hover::before {
      transform: scale(1.4);
      box-shadow: 0 0 8px #d5651c88;
    }

    .custom-tooltip {
      position: absolute;
      background-color: #ffffff;
      color: #0b365d;
      padding: 12px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.15);
      font-size: 13px;
      width: 200px;
      opacity: 0;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      z-index: 999;
    }

    .circle-item:hover .custom-tooltip {
      display: block;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .custom-tooltip i {
      margin-right: 6px;
      color: #d5651c;
    }

    /* Circular positioning */
  .item-1 { top: 3.5%;    left: 50%; }
  .item-2 { top: 18%;   left: 85%; }
  .item-3 { top: 50%;   left: 100%; }
  .item-4 { top: 82%;   left: 91%; }
  .item-5 { top: 103%;  left: 50%; }
  .item-6 { top: 82%;   left: 9%; }
  .item-7 { top: 50%;   left: 0%; }
  .item-8 { top: 18%;   left: 15%; }

    @media (max-width: 576px) {
      .center-logo {
        width: 150px;
        height: 150px;
      }

      .center-logo img {
        max-width: 90px;
      }

      .circle-item {
        width: 120px;
        font-size: 12px;
      }
    }
  