/* General Reset */

  /* Profile Section */
  .profile-section {
    padding: 20px;
  }
  
  .profile-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border: 0px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
   
  }
  
  /* Left Container */
  .left-container {
    flex: 1.2;
    
    padding: 0px;
  }
  
  .left-image {
    width: 90%; /* Reduced to 80% */
    border-radius: 10px;
    object-fit: cover;
  
  }
  
  /* Right Container */
  .right-container {
    flex: 1;
    background-color: #f0f0f0; /* Grey background added */
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 25px;
  }
  
  .profile-header {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  
  .profile-picture {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
  }
  
  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .navigation-buttons {
    display: flex;
    gap: 10px;
  }

  .text-heading{
    display:flex;
    
  }

  
  
  .nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #b6aa95;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .nav-button:hover {
    background-color: #9e917d;
    transform: scale(1.1);
  }
  
  .profile-info h3 {
    margin: 0;
    color: #777;
    font-size: 1rem;
  }
  
  .profile-info h2 {
    margin: 5px 0;
    color: #333;
    font-size: 1.5rem;
  }
  
  .profile-info p,
  .profile-info a {
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    margin: 5px 0;
  }
  
  .description {
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
  }
  
  .profile-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .profile-details h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .profile-details ul {
    padding: 0;
    list-style-type: none;
  }
  
  .profile-details ul li {
    font-size: 0.9rem;
    color: #555;
    margin: 5px 0;
  }
  
  .profile-footer {
    margin-top: 20px;
  }
  
  .vcard-link {
    padding: 10px 20px;
    background-color: #ddd;
    color: #555;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    
  }
  
  .vcard-link:hover {
    background-color: #bbb;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .profile-container {
      flex-direction: column;
    }
  
    .profile-details {
      flex-direction: column;
    }
  }
  