/* Navigation Wrapper */
.nav-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Company Name */
  .company-name {
    font-size: 2rem;
    font-weight: bold;
    color: #FF6600;
    margin: 1rem 0;
  }
  
  /* Navigation Tabs */
  .tab-container {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 600px;
    background-color: #f0f2f5;
    border-radius: 9px;
    padding: 2px;
  }
  
  .tab_label {
    flex: 1;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
  }
  
  .tab_label.active,
  .tab_label:hover {
    color: #FF6600;
  }
  
  /* Indicator */
  .indicator {
    position: absolute;
    top: 2px;
    height: 36px;
    width: 25%;
    background-color: #fff;
    border-radius: 7px;
    border: 0.5px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12), 0px 3px 1px rgba(0, 0, 0, 0.04);
    transition: left 0.3s ease-out;
  }
  