.doctor-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  margin: 20px;
}
.doctor-card:hover {
  transform: scale(1.03);
}
.doctor-img {
  height: 360px;
  object-fit: cover;
  width: 100%;
}
.doctor-info {
  text-align: center;
  padding: 15px;
}
.doctor-info h5 {
  margin: 5px 0;
  font-weight: bold;
}
.doctor-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
}

.certificates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  justify-items: center;
}

.certificate {
  text-align: center;
}

.certificate img {
  width: 140px; /* choti width */
  height: 90px; /* choti height */
  object-fit: cover;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.certificate img:hover {
  transform: scale(1.05);
}

.certificate h4 {
  margin: 8px 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.certificate p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}
/* Active button custom color */
    .btn-custom.active {
      background-color: #0d6efd !important; /* Blue */
      color: #fff !important;
    }



    .page-section1 {
      position: relative;
      color: #898798;
      overflow: hidden;
    }


    .page-banner1 {
      position: relative;
      margin-top: 16px;
      margin-bottom: 16px;
      height: 150px;
      background-color: #F6F5FC;
      color: #645F88;
      border-radius: 30px;
      z-index: 10;
  }