.tabs-icon path {
 fill: var(--light-text);
}
.tab.active .tabs-icon path {
  fill: var(--light-text);
}
.tab.active p {
  color: var(--light-text);
}
.tab img {
  height: 15px;
}
.tabs-icon {
  height: 15px;
  margin-right:8px;
}
.project-icon {
  height: 15px;
  margin-right:8px;
}
.tab p {
  margin: 0;
  font-family: 'biryaniregular';
  color: var(--light-text);
}
.tab-container {
    position: relative;
    display: flex;
    border: 1px solid var(--light-border);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin-bottom: 30px;
    width: 100%;
    background: #fbfbfb;
  }

  .tab {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    flex: 1;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  .tab i {
    margin-right: 8px;
    font-style: normal; /* placeholder for icons */
  }

  .tab.active {
    color: #000;
  }

  /* Sliding highlight */
  .highlight {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc((100% - 10px) / 3); /* adjust for 3 tabs */
    background: #f0f0f0;
    background: linear-gradient(47deg,rgb(240, 240, 240) 0%, rgb(243, 243, 243) 100%);
    border-radius: 50px;
    
    transition: transform 0.3s ease;
  }

  /* Tab content */
  .tab-content {
 
    
    display: none;
    animation: fadeIn 0.3s ease;
  }

  .tab-content.active {
    display: block;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }