
/* =========================
   CARD
========================= */
.doctor-profile-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* TOP BORDER */
.doctor-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;

  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--accent-red)
  );
}

/* =========================
   IMAGE
========================= */
.doctor-image {
  position: relative;
}

.doctor-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.doctor-image img:hover {
  transform: scale(1.02);
}

/* =========================
   CONTENT
========================= */
.doctor-content {
  padding-left: 25px;
}

/* BADGE */
.doctor-badge {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* NAME */
.doctor-name {
  font-size: 40px;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* =========================
   TABLE
========================= */
.profile-table-wrapper {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 25px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.profile-table td {
  padding: 16px 10px;
  vertical-align: top;
  color: var(--text-black);
  font-size: 16px;
  line-height: 1.7;
}

/* FIRST COLUMN */
.profile-table td:first-child {
  width: 220px;
  color: var(--primary-blue);
  font-weight: 700;
}

/* SECOND COLUMN */
.profile-table td:nth-child(2) {
  width: 20px;
  font-weight: 700;
  color: var(--accent-red);
}

/* NAME HIGHLIGHT */
.profile-name {
  color: var(--accent-red);
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .doctor-profile-card {
    padding: 30px;
  }

  .doctor-content {
    padding-left: 0;
    padding-top: 35px;
  }

  .doctor-name {
    font-size: 32px;
  }

}

@media (max-width: 768px) {

  .doctor-profile-section {
    padding: 60px 0;
  }

  .doctor-profile-card {
    padding: 22px;
    border-radius: 20px;
  }

  .doctor-name {
    font-size: 26px;
  }

  .doctor-badge {
    font-size: 12px;
    padding: 8px 18px;
  }

  .profile-table-wrapper {
    padding: 18px;
  }

  .profile-table td {
    font-size: 14px;
    padding: 12px 6px;
  }

  .profile-table td:first-child {
    width: 120px;
  }

}