
.home-faculty {
  .swiper-slide{
   padding: 2px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    color: $primaryColor;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .swiper-wrapper {
    padding: 12px 0;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
  }

  .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 12px;
    height: 12px;
  }

  .swiper-pagination-bullet-active {
    background: $primaryColor
  }
}



.researcher-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    border: none;
    margin-bottom: 20px;
    @include custom-shade;
    text-align: center;

      .profile-bg {
    height: 150px;
    background: #05468b;
    position: relative;
    @include d-center;
    img{
      max-height: 120px;
      width: 100%;
      object-fit: contain;
     filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
  opacity: .2;
    }
  }

  .profile-image {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    border: 3px solid white;
    object-fit: cover;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  // .facuresearcherlty-card:hover .profile-image {
  //   transform: translateX(-50%) scale(1.05);
  //   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  // }

  .researcher-content {
    padding: 20px;
    text-align: center;
    margin-top: -110px;
    position: relative;
    z-index: 2;
  }
a{
   &:hover{
      text-decoration: underline;
    }
}
  .researcher-name {
    font-family: $secondaryFont;
    font-size: 18px;
    font-weight: 400;
    color: $blackColor;
    margin: 12px 0 5px 0;
   
  }
  .researcher-department {
    display: inline-block;
    color: $primaryColor;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .researcher-bio {
    font-size: 15px;
    color: $textColor;
    font-weight: 400;
    @include text-ellips-2 ;
  }

  .research-focus {
    font-size: 0.9rem;
    color: $primaryColor;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .research-topics {
    font-size: 14px;
    color: $textColor;
    opacity: 0.9;
    font-weight: 500;
    font-style: italic;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(66, 153, 225, 0.1);
    color: $primaryColor;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    background: $primaryColor;
    color: white;
    transform: translateY(-3px);
  }
  }

    .faculty-card:hover {
    transform: translateY(-10px);
  }