
.profile-box{
    display: block;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    min-height: 100vh;
}

.prof-img-sec{
    display: inline-flex;
    gap: 16px;
    margin-bottom: 20px;
}
.prof-img-sec img {
    width: 127px;
    height: 127px;
    object-fit: cover;
    border-radius: 30px;
}
.prof-title h2 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #000000;
}
.prof-title p {
    color: #383939;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.languages {
    display: block;
    margin-top: 15px;
    font-size: 14px;
}
.languages h3 {
    font-size: 14px;
    font-weight: 500;
    color: #23559B;
    margin-bottom: 10px;
}
.languages svg {
    margin-right: 8px;
}
.languages span {
    font-size: 14px;
    font-weight: 500;
    color: #383939;
}
.tab-buttons {
  display: flex;
  position: relative;
  padding-top: 50px;
  gap: 30px;
}
.tab-buttons button {
  padding: 20px 15px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
  border-bottom: 2px solid #cfcfcf;
  color: #86868B;
  position: relative;
  text-align: left;
}

.tab-buttons button.active {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    border-color: #000;
    padding: 12px 25px 12px 25px;
    background-color: #D0BB68;
    cursor: pointer;
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #23559b;
  transition: all 0.3s ease;
}

.tab-content {
  display: none;
  padding:20px;
  animation: fadeIn 0.4s ease-in-out;

}

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

.border-intro{
  border: 1px solid #D3E5FF;
  border-radius: 10px;
  padding: 8px 20px;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.tab-content-box {
    flex: 1;
    z-index: 1;
}
@media (max-width:767px) {
  .prof-img-sec{
    flex-direction: column;
  }
  .tab-buttons{
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .tab-buttons::-webkit-scrollbar{
    display: none;
  }
  .tab-buttons button {
    padding: 5px 15px;
    white-space: nowrap;
  }
  .tab-content{
    padding: 0;
  }
  .profile-box{
    padding: 15px;
  }
}