.image-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.below-bread img {
  margin-top: -100px;
  border-radius: 20px;
}

.card-container {
  display: flex;
  gap: 20px;
}

.card {
  position: relative;
  width: 250px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15);

  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;

}

.card-content {
  padding: 15px;
  text-align: center;
}

.card-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.card-content p {
  margin: 5px 0 0 !important;
  font-size: 14px !important;
  color: #555 !important;
}

.card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007ac7;
  color: white !important;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-hover {
  opacity: 1;
}

.card-hover h4 {
  margin-top: 0 !important;
  font-size: 18px !important;
}

.card-hover p {
  font-size: 14px !important;
  margin: 8px 0;
  color: #fff !important;
}

.card-hover a {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background: white !important;
  color: #007ac7;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;

  font-weight: bold;
}

.team-title-hv {
  color: #fff !important;
}

.breadcrumb-area {
  background-image: url(../images/banner/breadcrumb-banner-specialist.png);
  background-size: cover;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-30 {
  margin-top: 30px;
}


/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: #f0fbff;
  border: 1px solid #0087c0;
  margin: 10% auto;
  padding: 22px;
  border-radius: 10px;
  max-width: 735px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

.modal-content img {
  width: 180px;
  border-radius: 8px;
  float: left;
  margin-right: 20px;
}

.modal-content h2 {
  margin-top: 0;
}

/*.modal-content p {*/
/*  margin: 5px 0;*/
/*}*/

.highlight {
  color: #e91e63;
  font-weight: bold;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  opacity: 1;
  cursor: pointer;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  /* Add left margin for indentation */
}

li {
  display: list-item;
  list-style: disc;
}

.sec-title {
    margin-top: -3px;
    padding-bottom: 50px;
    position: relative;
}

@media (max-width: 600px) {
  .modal-content {
    margin: 25% 10px;
    padding: 15px;
  }

  .modal-content img {
    float: none;
    display: block;
    margin: 0 auto 15px;
  }

  .below-bread img {
    margin-top: 0px;
    border-radius: 20px;
  }

  .pb-50 {
    padding-bottom: 50px !important;
  }
}