.Team_Page_List{
    position: relative;
    overflow: hidden;
  }
  .Team_Page_List .Team_Head_Image{
    position: absolute;
    width: 330px;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }
  
  .Team_Page_List .all_team_list .team_Custome_card .img_border{
    border: 2px solid #E77025;
    z-index: 1;
    position: relative;
  }
  .Team_Page_List .all_team_list .team_Custome_card .img_border img {
    position: relative;
    left: 0px;
    top: 0px;
    transition: all 0.3s ease-in-out; /* Smooth transition */
  }
  
  .Team_Page_List .all_team_list .team_Custome_card:hover .img_border img {
    position: relative;
    left: -10px;
    top: -10px;
  }
  
  .Team_Page_List .all_team_list .team_Custome_card .hover_Text{
    opacity: 0;
  }
  
  .Team_Page_List .all_team_list .team_Custome_card:hover .hover_Text {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  .Team_Page_List .all_team_list{
    margin-top: -200px;
  }
  .Team_Page_List .zoom_main_sec{
    overflow: hidden;
  }
  
  
  .zoom_black_bot {
    transition: height 0.5s ease-in-out;
  }
  
  .zoom-circle {
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
  }
  
  .zoom-heading {
    mix-blend-mode: difference;
    color: white;
    font-size: 6vw;
  }
  
  .zoom-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .zoom {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
  }
  
  .zoom-circle {
    height: 30vw;
    width: 30vw;
    border-radius: 100vw;
    background-color: white;
    mix-blend-mode: difference;
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-self: center;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .zoom-content {
    color: white;
    mix-blend-mode: difference;
    position: absolute;
    justify-self: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5vw;
    margin: 0;
  }
  
  .zoom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
  }

  @media (max-width: 768px) {
    .zoom-circle {
        transform: scale(0);
        transition: transform 0s ease-in-out;
    }
}