 /* Profile Card Container */
      .custom-profile-card .profile-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: none;
        text-align: center;
        position: relative;
        background:transparent;
        padding: 0;
        
      }
      
      .custom-profile-card .profile-card:hover {
         box-shadow: none   
      }
      

      /* Profile Image */
      .custom-profile-card .profile-image {
        position: relative;
      }

      .custom-profile-card .profile-image img {
        width: 100%;
        object-fit: cover;
        height:390px;
        border-bottom: 1px solid #ddd;
      }

      /* Social Media Icons */
      .custom-profile-card .social-icons {
        position: absolute;
        bottom: 7px;
        right: -3px;
        display: flex;
        flex-direction: column;
        align-items: end;
    justify-content: end;
        opacity: 1;
        transition: all 0.3s ease;
        height: 180px;
      }

      .custom-profile-card .social-icons a {
        width: 40px;
        height: 40px;
        opacity: 0;
        background: #6e89b4;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        transition: background 0.3s ease;
      }
      .custom-profile-card .social-icons a:last-child {
        border-radius: 0px 0px 8px 0px;
        opacity: 1;
      }

      .custom-profile-card .social-icons:hover a {
        opacity: 1;
      }
      .custom-profile-card .social-icons a:hover {
        background: #1d3557;
      }

      /* Profile Details */
      .custom-profile-card .profile-details {
        padding: 10px;
      }

      .custom-profile-card .profile-details h2 {
        margin: 0;
        font-size: 20px;
        font-weight: bold;
        color: #333;
      }

      .custom-profile-card .profile-details p {
        margin: 0;
        font-size: 14px;
        color: #777;
      }