.cover {
    position: relative;
    height: 270px;
    overflow: hidden;
  }
  
  .cover-photo {
    position: relative;
    height: 180px;
  }
  
  .cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
  }
  
  .edit-cover-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #fff;
    
    border: none;
    color: #333;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .profile-photo {
    position: absolute;
    bottom: 0;
    left: 450px;
    border: 5px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
  }
  
  .profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .edit-profile-photo {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
  
  .edit-profile-photo label {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  .edit-profile-photo label:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .edit-profile-photo i {
    margin-right: 5px;
  }
  
  .profile-photo:hover + .edit-profile-photo {
    opacity: 1;
  }
  
  .user-info {
    position: absolute;
    bottom: 0;
   
    right: 430px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    }
    
    .user-info h1 {
    font-size: 24px;
    margin: 0;
    }
    
    .user-info p {
    font-size: 16px;
    margin: 5px 0 0;
    }
    
    .timeline {
    margin: 0 auto;
    margin-bottom: 50px;
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 5px;
    margin-top: -40px;
    }
    
    .timeline .post {
    margin-bottom: 20px;
    }
    
    .timeline .post .post-header {
    display: flex;
    align-items: center;
    }
    
    .timeline .post .post-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    }
    
    .timeline .post .post-header h2 {
    font-size: 18px;
    margin: 0;
    }
    
    .timeline .post .post-content {
    margin-top: 10px;
    }
    
    .timeline .post .post-content p {
    margin: 0;
    line-height: 1.5;
    } 
    hr{
      background-color: #ccc; 
      margin: 0 auto;
    }
    .row{
      display: flex;
      flex-wrap: wrap;
    }
    .logo{
      position: fixed;
        bottom: 0;
        top: 30px;
        left: 40px;
        border: 3px groove rgba(255, 255, 255, 0.066);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        width: 90px;
        height: 90px;
        overflow: hidden;
        border-radius: 50%;
        z-index: 9999;
        background-color: #fcb;
        
    }





    @media (max-width: 992px){
      .user-info{
        right: 20px;
      }
      .profile-photo {
        position: absolute;
        bottom: 0;
        left: 20px;
        border: 5px solid #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        width: 120px;
        height: 120px;
        overflow: hidden;
        border-radius: 50%;
      }
      .logo{
        left: 10px;
        width: 50px;
        height: 50px;
      }

      .verification-badge {
        position: absolute;
        top: -24px;
        right: 10px;
        transform: translate(100%, -40%);
    }


      
    }
    


 