
  .profile-grid {
    padding-top: 25px;
    display: grid;
    grid-template-columns: 450px 1fr;
    align-items: start;
    min-height: calc(100vh - 49px);
    background-color: #fff;
    box-shadow: var(--card-shadow);
  }

  .profile-sidebar {
    position: sticky;
    top: 49px;
    height: calc(100vh - 49px);
    overflow-y: auto;
    background: var( --bg-card);
    border-right: 1px solid var(--border);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-md) transparent;
  }

  .profile-sidebar::-webkit-scrollbar {
    width: 4px;
  }

  .profile-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-md);
    border-radius: 4px;
  }


  .trust-header {
    text-align: center;
  }

  .avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
  }

  .avatar-squircle {
    width: 84px;
    height: 84px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-md);
  }

  .avatar-squircle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  }

  .avatar-online {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid var(--bg-surface);
  }

  .vendor-name {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 4px;
  }

  .vendor-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
  }

  .star-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 16px;
  }

  .stars {
    color: var(--amber);
    font-size: 12px;
    letter-spacing: 1px;
  }

  .rating-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
  }

  .rating-ct {
    font-size: 12px;
    color: var(--text-3);
  }


  .cta-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .sb-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .sb-section-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .sb-section-title i {
    color: var(--accent);
    font-size: 11px;
  }


  .verif-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .verif-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-1);
    font-weight: 500;
  }

  .verif-item i.check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(34, 201, 126, 0.12);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
  }

  .verif-item i.check::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }

  /* ─── Availability ─────────────────────────────────────────── */
  .avail-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 201, 126, 0.2);
    flex-shrink: 0;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      box-shadow: 0 0 0 3px rgba(34, 201, 126, 0.2);
    }

    50% {
      box-shadow: 0 0 0 6px rgba(34, 201, 126, 0.05);
    }
  }

  .status-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--green);
  }

  .hours-table {
    width: 100%;
    border-collapse: collapse;
  }

  .hours-table td {
    font-size: 12px;
    padding: 4px 0;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
  }

  .hours-table tr:last-child td {
    border-bottom: none;
  }

  .hours-table td:last-child {
    text-align: right;
    color: var(--text-1);
    font-weight: 500;
  }

  /* ─── Stats row ────────────────────────────────────────────── */
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-box {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 10px 12px;
    text-align: center;
  }

  .stat-val {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 2px;
  }

  .stat-lbl {
    font-size: 10px;
    color: var(--text-3);
    line-height: 1.3;
  }

  /* ─── Language row ─────────────────────────────────────────── */
  .lang-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .lang-chip {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 11px;
    border-radius: 20px;
    background: var(--bg-card2);
    border: 1px solid var(--border-md);
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .lang-chip i {
    color: var(--accent);
    font-size: 10px;
  }

  /* ─── Service pricing ──────────────────────────────────────── */
  .pricing-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 11px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    transition: border-color var(--transition);
  }

  .price-item:hover {
    border-color: var(--border-md);
  }

  .price-name {
    font-size: 12px;
    color: var(--text-2);
  }

  .price-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
  }

  .price-from {
    font-size: 10px;
    color: var(--text-3);
  }


  /* ══════════════════════════════════════════════════════════════
   RIGHT MAIN CONTENT
══════════════════════════════════════════════════════════════ */
  .profile-main {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
        background: var( --bg-card);
  }

  /* ─── Section wrapper ──────────────────────────────────────── */
  .section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 22px 24px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: fadeUp 0.4s ease both;
  }

  .section:nth-child(1) {
    animation-delay: 0.04s;
  }

  .section:nth-child(2) {
    animation-delay: 0.10s;
  }

  .section:nth-child(3) {
    animation-delay: 0.16s;
  }

  .section:nth-child(4) {
    animation-delay: 0.22s;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(16px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .section-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .section-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .section-title i {
    color: var(--accent);
    font-size: 13px;
  }

  .section-link {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    cursor: pointer;
  }

  .section-link:hover {
    text-decoration: underline;
  }

  /* ─── About ────────────────────────────────────────────────── */
  .about-text {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.75;
  }

  /* skill chips in about */
  .skill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
  }

  .sk-chip {
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(91, 127, 255, 0.1);
    border: 1px solid rgba(91, 127, 255, 0.18);
    color: var(--accent);
    transition: background var(--transition);
  }

  .sk-chip:hover {
    background: rgba(91, 127, 255, 0.18);
  }

  /* ─── Experience Timeline ──────────────────────────────────── */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tl-item {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 20px;
  }

  .tl-item:last-child {
    padding-bottom: 0;
  }

  .tl-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 32px;
  }

  .tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg-card);
    box-shadow: 0 0 0 3px rgba(91, 127, 255, 0.18);
    flex-shrink: 0;
    margin-top: 4px;
  }

  .tl-line {
    flex: 1;
    width: 1px;
    background: var(--border-md);
    margin-top: 4px;
  }

  .tl-item:last-child .tl-line {
    display: none;
  }

  .tl-body {
    flex: 1;
  }

  .tl-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 2px;
  }

  .tl-org {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 3px;
  }

  .tl-period {
    font-size: 11px;
    color: var(--text-3);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .tl-desc {
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.6;
  }

  /* ─── Portfolio Gallery ────────────────────────────────────── */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .port-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    cursor: pointer;
  }

  .port-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform var(--transition);
  }

  .port-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 13, 19, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transition: opacity var(--transition);
    backdrop-filter: blur(4px);
  }

  .port-item:hover .port-thumb {
    transform: scale(1.07);
  }

  .port-item:hover .port-overlay {
    opacity: 1;
  }

  .port-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 0 8px;
  }

  .port-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
  }

  .port-ico {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
  }

  /* port color accents */
  .p1 {
    background: linear-gradient(135deg, rgba(91, 127, 255, 0.15), rgba(124, 95, 255, 0.1));
  }

  .p2 {
    background: linear-gradient(135deg, rgba(34, 201, 126, 0.12), rgba(22, 168, 101, 0.08));
  }

  .p3 {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(201, 124, 10, 0.08));
  }

  .p4 {
    background: linear-gradient(135deg, rgba(242, 91, 91, 0.12), rgba(224, 64, 64, 0.08));
  }

  .p5 {
    background: linear-gradient(135deg, rgba(91, 127, 255, 0.1), rgba(34, 201, 126, 0.1));
  }

  .p6 {
    background: linear-gradient(135deg, rgba(124, 95, 255, 0.12), rgba(245, 166, 35, 0.08));
  }



  /* ─── Responsive ───────────────────────────────────────────── */
  @media (max-width: 1024px) {

    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .profile-grid {
      grid-template-columns: 1fr;
    }

    .profile-sidebar {
      position: static;
      height: auto;
      border-right: none;
      border-bottom: 1px solid var(--border);
    }

    .profile-main {
      padding: 18px;
      gap: 18px;
    }

    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
.section{
padding:0px;
  }

  @media (max-width: 480px) {
    .portfolio-grid {
      grid-template-columns: 1fr;
    }

    .stats-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }
