
       

        .profile-card {
            max-width: 340px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .profile-image-container {
            position: relative;
            width: 100%;
            padding-top: 100%;
            background: #e9ecef;
            overflow: hidden;
        }

        .profile-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .badge-container {
            position: absolute;
            bottom: 15px;
            left: 15px;
            right: 15px;
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .icon-badge {
            width: 45px;
            height: 45px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.2s;
        }

        .icon-badge:hover {
            transform: scale(1.05);
        }

        .linkedin-badge {
            background: #0077b5;
        }

        .info-badge {
            background: var(--secondary-color);
        }

        .profile-info {
            padding: 20px 24px 24px;
        }

        .profile-name {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .profile-title {
            font-size: 16px;
            color: #666;
            margin-bottom: 4px;
        }

        .profile-date {
            font-size: 14px;
            color: #888;
        }

        /* Right Side Modal Styles */
        .modal.right .modal-dialog {
            position: fixed;
            margin: 0;
            width: 400px;
            height: 100%;
            right: -400px;
            transition: right 0.3s ease-in-out;
        }

        .modal.right.show .modal-dialog {
            right: 0;
        }

        .modal.right .modal-content {
            height: 100%;
            border-radius: 0;
            border: none;
        }

        .modal.right .modal-header {
            background: var(--primary-color);
            color: white;
        }

        .modal.right .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-backdrop.show {
            opacity: 0.5;
        }

        .info-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-label {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .info-value {
            color: #666;
            font-size: 15px;
        }

        @media (max-width: 768px) {
            .modal.right .modal-dialog {
                width: 100%;
                right: -100%;
            }
        }
