.bod1{
    display: block;
}
.bod3{
    margin-top: -5%;
}
.bot{
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-top: 5%;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Main Container */
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
  }
  
  /* .profile-container:hover */
  .profile-container {
    width: 40%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    transition: 1s all ease;
    
  }
  
  .profile-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/src/person/1.png') no-repeat center center/cover;
    z-index: -1;
    opacity: 1;  
    transition: all .5s ease-in;
  }
  
  .profile-container:hover:before {
    opacity: 0;
    transition: all .5s ease;
  }
  .profile-container1 {
    width: 40%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    transition: 1s all ease;
    
  }
  .profile-container1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/src/person/2.png') no-repeat center center/cover;
    z-index: -1;
    opacity: 1;  
    transition: all .5s ease-in;
  }
  
  .profile-container1:hover:before {
    opacity: 0;
    transition: all .5s ease;
  }

  .profile-container2 {
    width: 40%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    transition: 1s all ease;
    
  }
  .profile-container2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/src/person/3.png') no-repeat center center/cover;
    z-index: -1;
    opacity: 1;  
    transition: all .5s ease-in;
  }
  
  .profile-container2:hover:before {
    opacity: 0;
    transition: all .5s ease;
  }

  .profile-container3 {
    width: 40%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    transition: 1s all ease;
    
  }
  .profile-container3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/src/person/4.png') no-repeat center center/cover;
    z-index: -1;
    opacity: 1;  
    transition: all .5s ease-in;
  }
  
  .profile-container3:hover:before {
    opacity: 0;
    transition: all .5s ease;
  }
  
  
  /* Profile Card Wrapper */
  .profile-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .profile-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #2371ae 0%, #bb47d4 100%);
    transform: skew(30deg) translateX(125%);
    opacity: 0.9;
    transition: all 0.6s ease;
  }
  
  .profile-wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #2371ae 0%, #bb47d4 100%);
    transform: skew(30deg) translateX(-125%);
    opacity: 0.9;
    transition: all 0.6s ease;
  }
  
  .profile-container:hover .profile-wrapper::after{
    transform: skew(30deg) translateX(125%);
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
    
  }
  .profile-container:hover .profile-wrapper::before{
    transform: skew(30deg) translateX(-125%);
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
  }
  .profile-container1:hover .profile-wrapper::after{
    transform: skew(30deg) translateX(125%);
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
    
  }
  .profile-container1:hover .profile-wrapper::before{
    transform: skew(30deg) translateX(-125%);
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
  }

  .profile-container2:hover .profile-wrapper::after{
    transform: skew(30deg) translateX(125%);
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
    
  }
  .profile-container2:hover .profile-wrapper::before{
    transform: skew(30deg) translateX(-125%);
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
  }

  .profile-container3:hover .profile-wrapper::after{
    transform: skew(30deg) translateX(125%);
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
    
  }
  .profile-container3:hover .profile-wrapper::before{
    transform: skew(30deg) translateX(-125%);
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
  }
  /* Profile Card */
  .profile-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 10px;
    position: relative;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .profile-container:hover .profile-card {
    opacity: 1;
    transition: all 0.6s ease;
    transition-delay: 0.2s;
  }
  .profile-container1:hover .profile-card {
    opacity: 1;
    transition: all 0.6s ease;
    transition-delay: 0.2s;
  }
  .profile-container2:hover .profile-card {
    opacity: 1;
    transition: all 0.6s ease;
    transition-delay: 0.2s;
  }
  .profile-container3:hover .profile-card {
    opacity: 1;
    transition: all 0.6s ease;
    transition-delay: 0.2s;
  }
  
  .profile-card .fav-icon {
    color: #ec0e0e;
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 21px;
    cursor: pointer;
  } 
  
  /* Profile Picture */
  .profile-card img {
    display: block;
    margin: 0 auto;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin: 1rem 0;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(to right, green, gold);
    background-origin: border-box;
    background-clip: content-box, border-box;
    /* border: 2px solid #1999; */
    position: relative;
  }
  
  .profile-card  h2 {
    line-height: 1.2;
    color: #222;
  }
  .profile-card  h4 {
    line-height: 1.5;
    color: #444;
  }
  
  .profile-card  p {
    line-height: 1.2;
    color: #333;
    margin: 10px 0;
    padding: 2%;
  }
  
  /* Profile Icons */
  .profile-card .icons {
    display: flex;
    color: #333;
    width: 90%;
    justify-content: space-evenly;
    font-size: 1.4rem;
    margin: 5px 0;
  }
  
  .profile-card .icons i:hover {
    background-image: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
  }
  
  /* Profile Button */
  .profile-card a {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 8px 20px;
    margin-top: 1rem;
    background: #2371ae;
    border-radius: 50px;
    background: linear-gradient(to right, #bb47d4 0%, #2371ae 100%);
  }
  @media(max-width: 800px){
    .profile-container {
        width: 80%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 5px;
        transition: 1s all ease;
        
      }
      .profile-container3 {
        width: 80%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 5px;
        transition: 1s all ease;
        
      }
      .profile-container1 {
        width: 80%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 5px;
        transition: 1s all ease;
        
      }
      .profile-container2 {
        width: 80%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 5px;
        transition: 1s all ease;
        
      }
  }
  