/* Section Styling */
.expert-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 14px;
  color: #6c757d;
}

    .breadcrumb a {
        color: #0973a3;
        text-decoration: none;
    }

/* Expert Cards */
.expert-card {
    background-color: #fff;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s;
    min-height: 711px;
}

.expert-card:hover {
  transform: translateY(-5px);
}

.expert-image {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
}

.expert-name {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.expert-title {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.expert-description {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.expert-profile-link {
  display: inline-block;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.expert-profile-link:hover {
  text-decoration: underline;
}

.bannerContainer {
    background-image: url(../images/instructor.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 0px;
}

.bannerText {
    width: 100%;
    display: block;
    color: #fff;
}

.bannerText h1 {
    font-size: 35px;
    font-weight: 700;
    color: #0973a3;
    margin-bottom: 0px !important;
}


@media (max-width: 1025px) {
    .bannerText h1 {
    font-size: 25px;
  }
}


@media (max-width: 700px) {
  .bannerText h1 {
        font-size: 18px;
    }
}