/* Breadcrumb */
.breadcrumb-section {
  /*background: url("./images/hair1.webp") no-repeat center center;*/
  /*background-size: cover;*/
  background-color: #4580cc;
  padding: 10px 0;
  position: relative;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.breadcrumb-item.active {
  color: white;
}

.doctor-highlights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight-cards {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInLeft 1s ease;
}

.highlight-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease;
  margin-top: -20px;
}

.highlight-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  margin-top: 30px;
}

.highlight-card {
  background: #f8f9fa;
  border-left: 5px solid var(--primary-color);
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card i {
  font-size: 24px;
  color: var(--primary-color) !important;
  margin-top: 5px;
}

.highlight-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.new-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  min-height: 300px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.new-card:hover {
  transform: translateY(-10px);
}

.new-card p {
  text-align: justify;
}

.new-card.new-card1 {
  background-color: var(--primary-color);
  color: white;
}
.new-card.new-card2 {
  background-color: var(--secondary-color);
}
.new-card.new-card3 {
  background-color: var(--primary-color);
  color: white;
}

.new-card .icon-round {
  position: absolute;
  top: 0;
  width: 80px;
  height: 70px;
  border-radius: 0 0 50px 50px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-card #icon-round2 {
  background-color: var(--primary-color);
}

.new-card #icon-round2 i {
    color: white !important;
}

.new-card .icon-round i {
  color: var(--secondary-color) !important;
}

/* Team Section */
.team-section {
  margin-top: 30px;
  text-align: center;
}

.team-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #1c5797;
}

.team-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1 30%;
}

.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
  margin-bottom: 8px;
  font-size: 2rem;
  color: #0b0a0a;
}

.team-card p {
  color: #0c0b0b;
  font-size: 1rem;
}

/* gallery section */
.gallery-item {
  max-width: 300px;
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item p {
  padding: 10px;
  color: #090707;
  font-weight: 500;
  background-color: #fafafa;
  font-size: 1rem;
}
