  
        .profile-card {
            width: 1000px;
            background: #ffffff;
            display: flex;
            padding: 40px;
            min-height: auto;
        }
        .left-section {
            width: 340px;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top:200px;
            padding-right: 30px;
            border-right: 1px solid #e8ecf1;
        }
        .avatar-container {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #f0f4f8;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .avatar-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hospital-badge {
            margin-top: 20px;
            text-align: center;
        }
        .hospital-badge .hospital-name {
            font-size: 16px;
            color: #1a4a7a;
            font-weight: bold;
            letter-spacing: 2px;
        }
        .hospital-badge .hospital-tag {
            font-size: 12px;
            color: #888;
            margin-top: 6px;
        }
        .right-section {
            flex: 1;
            padding-left: 35px;
        }
        .name-row {
            margin-bottom: 6px;
        }
        .name {
            font-size: 36px;
            font-weight: bold;
            color: #1a3a5c;
            letter-spacing: 4px;
        }
        .title {
            font-size: 18px;
            color: #2a6da3;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .divider {
            height: 1px;
            background: linear-gradient(to right, #d0dae6, transparent);
            margin: 10px 0;
        }
        .tag-bar {
            display: inline-flex;
            gap: 8px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .tag {
            background: #e8f1f8;
            color: #2a6da3;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
        }
        .mentor-info {
            font-size: 15px;
            color: #555;
            margin-bottom: 8px;
        }
        .section {
            margin-bottom: 18px;
        }
        .section-title {
            font-size: 17px;
            font-weight: bold;
            color: #1a3a5c;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .section-title::before {
            content: "";
            display: inline-block;
            width: 4px;
            height: 18px;
            background: #2a6da3;
            margin-right: 8px;
            border-radius: 2px;
        }
        .achievement-box {
            background: #f5f8fb;
            border-radius: 8px;
            padding: 12px 16px;
        }
        .achievement-box ul {
            list-style: none;
            padding: 0;
        }
        .achievement-box li {
            font-size: 14px;
            color: #444;
            line-height: 1.8;
            padding-left: 14px;
            position: relative;
        }
        .achievement-box li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #2a6da3;
            font-weight: bold;
        }
       .achievement-box li  p{
           text-indent:10px;
        }

        .achievement-box .sub-line {
            padding-left: 28px;
            color: #666;
            font-size: 13px;
        }
        .expertise-text {
            font-size: 14.5px;
            color: #444;
            line-height: 1.9;
            text-align: justify;
        }
        .positions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 20px;
        }
        .position-item {
            font-size: 13.5px;
            color: #444;
            line-height: 1.7;
            padding-left: 12px;
            position: relative;
        }
        .position-item::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #2a6da3;
        }
        .footer-bar {
            margin-top: 20px;
            padding-top: 12px;
            border-top: 1px solid #e8ecf1;
            text-align: right;
            font-size: 12px;
            color: #aaa;
        }

