.profile-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
  }
  .profile-card {
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .profile-header {
    position: relative;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    overflow: hidden;
    height: 340px;
  }
  .profile-header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  .profile-pic-container {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
    z-index: 2;
  }
  .profile-pic-container:hover {
    transform: scale(1.1);
  }
  .profile-pic {
    width: 190px;
    height: 190px;
    border-radius: 2%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
  .profile-body {
    padding: 2.5rem;
  }
  .profile-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  .profile-info dt {
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
  }
  .profile-info dt i {
    margin-right: 0.5rem;
    color: #0d6efd;
  }
  .profile-info dd {
    color: #4a5568;
  }
  .action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .role-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: #e2e8f0;
    color: #2d3748;
    margin-top: 1rem;
  }
  .profile-completion {
    margin: 2rem 0;
    text-align: center;
  }
  .progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  .progress-circle svg {
    transform: rotate(-90deg);
  }
  .progress-circle .circle-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 8;
  }
  .progress-circle .circle-fg {
    fill: none;
    stroke: #0d6efd;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
  }
  .progress-circle .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: #2d3748;
  }
  .modal-left .modal-dialog {
    margin: 0;
    height: 100vh;
    max-width: 400px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .modal-left .modal-dialog.show {
    transform: translateX(0);
  }
  .modal-left .modal-content {
    border-radius: 0 10px 10px 0;
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow-y: auto;
  }
  .modal-left .modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #dee2e6;
    background: #0d6efd;
    color: #ffffff;
  }
  .modal-left .modal-body {
    padding: 20px;
  }
  .modal-left .modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #dee2e6;
  }
  .modal-left .form-label {
    font-weight: 500;
    color: #333;
  }
  .modal-left .form-control,
  .modal-left .form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease;
  }
  .modal-left .form-control:focus,
  .modal-left .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  }
  .modal-left .btn {
    border-radius: 6px;
    padding: 8px 16px;
  }
  .image-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    background: #f8fafc;
    transition: all 0.3s ease;
  }
  .image-upload-container.dragover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
  }
  .image-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .image-preview:hover {
    transform: scale(1.05);
  }
  .image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .image-preview-placeholder::before {
    content: "\e030";
    font-family: 'boxicons';
    font-size: 48px;
    color: #6b7280;
  }
  .custom-file-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #0d6efd;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .custom-file-label:hover {
    background-color: #1e40af;
  }
  .custom-file-label i {
    margin-right: 8px;
  }
  .remove-image-btn {
    background-color: #ef4444;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .remove-image-btn:hover {
    background-color: #dc2626;
  }
  .video-modal .modal-content {
    background: #ffffff;
    border-radius: 10px;
  }
  .video-modal .modal-body {
    padding: 0;
  }
  .video-modal video {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }
  @media (max-width: 640px) {
    .profile-container {
      margin: 1.5rem auto;
      padding: 0 1rem;
    }
    .profile-card {
      border-radius: 1rem;
    }
    .profile-header {
      padding: 2rem 1.5rem;
      height: 200px;
    }
    .profile-pic {
      width: 100px;
      height: 100px;
    }
    .profile-info {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .action-buttons {
      flex-direction: column;
      gap: 0.75rem;
    }
    .action-btn {
      width: 100%;
      justify-content: center;
    }
    .progress-circle {
      width: 60px;
      height: 60px;
    }
  }