/* ── BANNER ── */
.rk-about-banner {
  position: relative;
  height: 200px;
  background: linear-gradient(rgba(10,24,50,.92), rgba(10,24,50,.92)),
              url('../img/pagesbarner.jfif') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.rk-about-banner span {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
}
.rk-about-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #fff;
  font-weight: 500;
}
.rk-banner-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.rk-banner-divider span {
  width: 50px; height: 1px; background: rgba(255,255,255,.4);
}
.rk-banner-divider i { color: rgba(255,255,255,.6); font-size: 12px; }

/* ── ABOUT SECTION ── */
.rk-about-doctor {
  padding: 60px 5%;
  background: #fff;
}
.rk-about-container {
  max-width: 1200px;
  margin: auto;
  margin-left: 2%;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CARD */
.rk-doctor-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 15px 45px rgba(0,0,0,.09);
}
.rk-doctor-image {
  background: #fdf0f3;
  padding: 12px;
  text-align: center;
}
.rk-doctor-image img {
  width: 100%;
  max-height: 600px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.rk-doctor-info { padding: 14px 22px 18px; }
.rk-designation {
  display: block;
  color: #c0445f;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.rk-doctor-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 8px;
  color: #111;
}
.rk-doctor-info > p {
  color: #777;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.rk-doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.rk-doctor-tags span {
  padding: 6px 12px;
  border-radius: 30px;
  background: #fff6f8;
  border: 1px solid #f1d8de;
  font-size: 11.5px;
  font-weight: 600;
  color: #444;
}

/* RIGHT */
.rk-about-right { min-width: 0; }
.rk-section-title {
  display: block;
  color: #c0445f;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.rk-about-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #111;
}
.rk-about-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
}
.rk-about-right p {
  color: #555;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* MINI SERVICES */
.rk-mini-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.rk-mini-card {
  background: #fff7f8;
  border: 1px solid #f1d8de;
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  transition: .3s;
}
.rk-mini-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(192,68,95,.12); }
.rk-mini-card i { font-size: 24px; color: #c0445f; margin-bottom: 10px; display: block; }
.rk-mini-card h4 { font-size: 13px; color: #333; font-weight: 600; line-height: 1.4; }

/* ── INFO CARDS ── */
.rk-info-section { padding: 0 5% 60px; }
.rk-info-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rk-info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rk-info-icon {
  width: 68px; height: 68px;
  margin: auto;
  border-radius: 50%;
  background: #fff3f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rk-info-icon i { color: #c0445f; font-size: 24px; }
.rk-info-card h3 { margin: 16px 0 12px; font-size: 16px; color: #111; }
.rk-line { width: 38px; height: 2px; background: #c0445f; margin: 0 auto 16px; border-radius: 2px; }
.rk-info-card p { color: #555; line-height: 1.85; font-size: 14px; }

/* Checklist for Specialities & Expertise */
.rk-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  width: fit-content;
}
.rk-info-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  padding: 2px 0;
}
.rk-info-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #c0445f;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── AWARDS ── */
.rk-awards-section { padding: 60px 5%; background: #fafafa; }
.rk-awards-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 45px;
}
.rk-section-subtitle {
  color: #c0445f;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 700;
}
.rk-awards-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin: 14px 0 16px;
  color: #111;
}
.rk-awards-left p { color: #555; line-height: 1.9; font-size: 15px; }
.rk-awards-right { display: flex; flex-direction: column; gap: 16px; }
.rk-award-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.rk-award-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff3f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rk-award-icon i { font-size: 22px; color: #c0445f; }
.rk-award-card h3 { font-size: 15px; margin-bottom: 6px; color: #111; }
.rk-award-card p { color: #666; font-size: 13.5px; line-height: 1.75; }

/* style.css override */
.rk-about-doctor .rk-about-right {
  position: static !important;
  min-height: unset !important;
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
}

.rk-about-doctor .rk-about-right::before {
  display: none !important;
}

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {
  .rk-about-container {
    grid-template-columns: 440px 1fr;
    margin-left: 0;
  }
}
@media(max-width: 991px) {
  .rk-about-container, .rk-awards-container {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .rk-about-right { text-align: center; }
  .rk-mini-services { grid-template-columns: repeat(2,1fr); }
  .rk-info-grid { grid-template-columns: repeat(2,1fr); }
  .rk-info-card li { justify-content: flex-start; }
}
@media(max-width: 575px) {
  .rk-about-banner { height: 130px; }
  .rk-about-banner h1 { font-size: 28px; }
  .rk-about-right h2 { font-size: 30px; }
  .rk-about-right h3 { font-size: 20px; }
  .rk-mini-services, .rk-info-grid { grid-template-columns: 1fr; }
  .rk-award-card { flex-direction: column; text-align: center; }
}