 /* ----- PORTFOLIO HERO ----- */
  .portfolio-hero {
    padding: 3rem 0 2.5rem 0;
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 50%, #f7f9fc 100%);
    position: relative;
    overflow: hidden;
  }
  .portfolio-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 95, 138, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  /* Breadcrumb */
  .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    color: #9aa3b8;
  }

  /* Hero Title */
  .portfolio-hero-title {
    font-weight: 700;
    font-size: 3.2rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #1a1e2b;
  }
  .hero-highlight.name {
    color: #2b5f8a;
    border-bottom: 4px solid rgba(43, 95, 138, 0.15);
    display: inline-block;
    padding-bottom: 2px;
  }
  .hero-subtitle-text {
    font-size: 1.4rem;
    font-weight: 400;
    color: #4a5168;
    letter-spacing: -0.01em;
  }

  /* Stats with icons */
  .portfolio-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }
  .portfolio-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-right: 1px solid #edf2f7;
    padding-right: 2rem;
  }
  .portfolio-stats .stat-item:last-child {
    border-right: none;
    padding-right: 0;
  }
  .stat-icon {
    font-size: 1.4rem;
    color: #2b5f8a;
    opacity: 0.6;
  }
  .portfolio-stats .stat-item .fw-bold {
    font-size: 1.4rem;
    color: #1a1e2b;
    display: block;
    line-height: 1.2;
  }
  .portfolio-stats .stat-item .text-secondary {
    font-size: 0.85rem;
    color: #4a5168 !important;
  }

  /* Profile Wrapper with ring */
  .profile-wrapper {
    position: relative;
    display: inline-block;
  }
  .profile-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b5f8a, #7c3aed, #2b5f8a);
    background-size: 300% 300%;
    animation: ring-spin 8s ease-in-out infinite;
    padding: 3px;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 2px));
  }
  @keyframes ring-spin {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .profile-wrapper .profile-img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  .profile-wrapper .profile-img:hover {
    transform: scale(1.02);
  }

  .status-badge {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid #edf2f7;
    border-radius: 60px;
    padding: 0.3rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1a1e2b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    z-index: 3;
    white-space: nowrap;
  }
  .status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }

  /* Social Links - circular */
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #2d3346;
    font-size: 1.1rem;
    border: 1.5px solid #edf2f7;
    transition: all 0.25s ease;
    text-decoration: none;
  }
  .social-link:hover {
    background: #2b5f8a;
    color: #ffffff;
    border-color: #2b5f8a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(43, 95, 138, 0.12);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .portfolio-hero-title {
      font-size: 2.6rem;
    }
    .hero-subtitle-text {
      font-size: 1.2rem;
    }
    .portfolio-stats {
      gap: 1rem 1.5rem;
    }
    .portfolio-stats .stat-item {
      padding-right: 1.2rem;
    }
  }

  @media (max-width: 768px) {
    .portfolio-hero {
      padding: 2rem 0 1.5rem 0;
    }
    .portfolio-hero-title {
      font-size: 2.2rem;
    }
    .hero-subtitle-text {
      font-size: 1rem;
    }
    .portfolio-stats .stat-item {
      padding-right: 0.8rem;
      border-right: none;
    }
    .portfolio-stats .stat-item .fw-bold {
      font-size: 1.2rem;
    }
    .profile-wrapper .profile-img {
      width: 160px;
      height: 160px;
    }
    .status-badge {
      font-size: 0.65rem;
      padding: 0.2rem 1rem;
    }
    .portfolio-hero::before {
      display: none;
    }
  }