 /* === Reversed Hero Layout === */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      padding: 100px 0;
      flex-direction: row-reverse; /* ✅ reversed layout */
    }

    .hero-left {
      flex: 0 0 350px;
      display: flex;
      justify-content: center;
      position: relative;
    }

    /* === Glowing Animated Border for Profile === */
    .profile-ring {
      position: relative;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,179,255,0.1), transparent 70%);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: floatImage 6s ease-in-out infinite;
    }

    @keyframes floatImage {
      0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 25px rgba(0,179,255,0.3);
      }
      50% {
        transform: translateY(-10px);
        box-shadow: 0 0 45px rgba(0,179,255,0.6);
      }
    }

    .profile-ring::before {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      border: 3px solid rgba(0,179,255,0.4);
      animation: pulseRing 3s infinite ease-in-out;
    }

    @keyframes pulseRing {
      0%, 100% { transform: scale(1); opacity: 0.7; }
      50% { transform: scale(1.05); opacity: 1; }
    }

    .profile-img {
      width: 85%;
      height: 85%;
      border-radius: 50%;
      object-fit: cover;
      z-index: 2;
    }

    /* === Text Side === */
    .hero-right {
      flex: 1;
    }

    .intro {
      color: var(--muted);
      font-weight: 400;
      font-size: 1rem;
    }

    .hero-name {
      font-size: 2.8rem;
      font-weight: 700;
      margin: 8px 0;
    }

    .hero-profession {
      font-size: 1.3rem;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .hero-profession span {
      color: var(--accent);
      font-weight: 700;
    }

    .hero-desc {
      color: var(--muted);
      line-height: 1.6;
      max-width: 600px;
    }

    /* === Buttons & Socials same === */
    .hero-buttons {
      margin-top: 20px;
    }
    .btn {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      margin-right: 12px;
      transition: 0.3s;
    }
    .btn-primary {
      background: var(--accent);
      color: #000;
    }
    .btn-outline {
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--text);
    }
    .btn:hover {
      transform: translateY(-2px);
    }
    .socials {
      margin-top: 25px;
    }
    .socials a {
      color: var(--muted);
      margin-right: 14px;
      font-size: 1.1rem;
      transition: 0.3s;
    }
    .socials a:hover {
      color: var(--accent);
    }

    /* Responsive Adjustments */
    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .hero-left, .hero-right {
        order: unset;
        width: 100%;
      }
      .profile-ring {
        width: 260px;
        height: 260px;
      }
    }