.elementor-1734 .elementor-element.elementor-element-98ba897{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1734 .elementor-element.elementor-element-ae37610{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-1734 .elementor-element.elementor-element-ae37610.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-ae37610 *//* Main card */
.staff-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f9fbfd;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
  max-width: 700px;
  margin-bottom: 20px;
}

/* Hover effect */
.staff-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.staff-card .staff-photo img {
  width: 160px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #ccc;
}

/* Details section */
.staff-details {
  flex: 1;
}

.staff-name {
  font-weight: 700;
  color: #123a63;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}

.designation {
  font-weight: 600;
  margin: 0 0 8px 0;
}

/* Contact icons */
.staff-contact {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.staff-contact-manoj a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0078d7;
  color: #0078d7;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.staff-contact-manoj a:hover {
  background-color: #0078d7;
  color: #fff;
}

/* Tooltip */
.staff-contact-manoj a .tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #222;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  z-index: 10;
}

.staff-contact-manoj a:hover .tooltip {
  visibility: visible;
  opacity: 1;
}/* End custom CSS */