.top-right-image {
    position: absolute;
    top: 20px;
    right: 90px;
    width: 170px;
    height: auto;
  }

.back-button-container {
  position: absolute;
  top: 35px;
  left: 100px;
  z-index: 100;
}

.back-button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #0056b3;
}

  .faculty-container {
      max-width: 90%;
      margin: 0px auto;
      background-color: #f0d267;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .faculty-container h1 {
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      font-size: 60px;
      text-align: center;
      margin-bottom: 10px;
    }
    
    .faculty-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      flex-wrap: nowrap;
    }
    
    .faculty-member {
      width: calc(30% - 20px);
      margin: 10px;
      background-color: #fff;
      border: 1px solid #ddd;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      flex-grow: 1;
    }
    
    .faculty-member:nth-child(1), .faculty-member:nth-child(2), .faculty-member:nth-child(3) {
      flex-basis: 0;
    }
    
    .faculty-image {
      width: 150px;
      margin: 0 auto;
    }
    
    .faculty-image img {
      width: 100%;
      height: 150px;
      border-radius: 50%;
      margin-bottom: 10px;
    }
    
    .faculty-image a {
      display: block;
    }
    
    .faculty-member h2 {
      font-size: 18px;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .faculty-details {
      font-family: Arial, Helvetica, sans-serif;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 20px;
    }
    
    .details-left, .details-right {
      width: 50%;
      padding: 10px;
    }
    
    .details-left {
      border-right: 1px solid #ddd;
    }
    
    .details-right {
      padding-left: 20px;
    }
    
    .faculty-details p {
      margin-bottom: 10px;
    }
    
    .faculty-details strong {
      font-weight: bold;
    }
    
    .faculty-details a {
      color: #337ab7;
      transition: color 0.2s ease;
    }



