/* ── HERO ─────────────────────────────────── */
/* ── HERO ─────────────────────────────────── */
.sk-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f0f4f8;
}
.sk-hero-bg {
  position: absolute; inset: 0;
  background: url('../img/Background.png') left center/cover no-repeat;
  z-index: 0;
}

/* Right-side white fade — image dhundla hota jaata hai right ki taraf */
.sk-hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(240,244,248,0) 0%,
    rgba(240, 244, 248, 0.185) 35%,
    rgba(240,244,248,0.92) 55%,
    rgba(240,244,248,1) 70%
  );
  z-index: 1;
}

.sk-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  padding: 44px 32px;
  display: flex;
  justify-content: flex-end; /* card right side pe */
}

/* Doctor info card — right aligned, light background */
.sk-hero-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Photo */
.sk-hero-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}
.sk-hero-photo-box {
  width: 130px; height: 130px; border-radius: 50%;
  border: 4px solid #0a1f44;
  background: linear-gradient(135deg, #c8d8ec, #a8bdd4);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.sk-hero-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* <-- yeh add karo */
}

/* Name & role below photo */
.sk-hero-doc-name {
  font-size: 17px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 3px;
}
.sk-hero-doc-role {
  font-size: 12.5px;
  color: #5a6278;
  margin-bottom: 0;
}

/* Main heading */
.sk-hero-heading {
  font-size: 26px;
  color: #0a1f44;
  font-weight: 800;
  line-height: 1.3;
  margin: 14px 0 14px;
  text-align: center;
}

/* Qualifications — centered, no bullet, bold */
.sk-hero-quals {
  list-style: none;
  padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.sk-hero-quals li {
  font-size: 13.5px;
  font-weight: 600;
  color: #0a1f44;
  text-align: center;
  padding: 2px 0;
}
.sk-hero-quals li strong {
  color: #0a1f44;
}

/* Description */
.sk-hero-desc {
  font-size: 13px;
  color: #5a6278;
  line-height: 1.75;
  text-align: center;
  max-width: 460px;
}

/* ── RESPONSIVE — Tablet ────────── */
@media (max-width: 900px) {
  .sk-hero-fade {
    background: linear-gradient(
      to right,
      rgba(240,244,248,0) 0%,
      rgba(240,244,248,0.75) 30%,
      rgba(240,244,248,1) 55%
    );
  }
  .sk-hero-inner { padding: 36px 24px; }
  .sk-hero-heading { font-size: 22px; }
}

/* ── RESPONSIVE — Mobile ────────── */
@media (max-width: 640px) {
  .sk-hero-bg {
    opacity: 0.18; /* mobile pe image bahut fade */
  }
  .sk-hero-fade { display: none; }
  .sk-hero-inner {
    justify-content: center;
    padding: 28px 16px;
  }
  .sk-hero-card { max-width: 100%; }
  .sk-hero-heading { font-size: 19px; }
  .sk-hero-photo-box { width: 100px; height: 100px; }
  .sk-hero-photo-box svg { width: 62px; height: 62px; }
  .sk-hero-doc-name { font-size: 15px; }
}

/* ── BREADCRUMB ───────────────────────────── */
.sk-breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid #e2e6ed;
  padding: 10px 32px;
  font-size: 12.5px; color: #5a6278;
}
.sk-breadcrumb a { color: #0a1f44; text-decoration: none; }
.sk-breadcrumb a:hover { text-decoration: underline; }
.sk-breadcrumb span { margin: 0 6px; }

/* ── PAGE BODY ────────────────────────────── */
.sk-page-body {
  max-width: 1100px; margin: 0 auto;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

/* ── SIDEBAR ──────────────────────────────── */
.sk-sidebar {
  background: #ffffff;
  border: 1px solid #e2e6ed;
  border-radius: 10px;
  overflow: hidden;
  position: sticky; top: 100px;
  width: 100%; min-width: 0;
}
.sk-sidebar-item {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #0a1f44;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e2e6ed;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  /* FIX: force normal horizontal text */
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  line-height: 1.45;
  box-sizing: border-box;
}
.sk-sidebar-item:last-child { border-bottom: none; }
.sk-sidebar-item:hover {
  background: #fdf0ef; color: #0a1f44;
}
.sk-sidebar-item.sk-active {
  background: #0a1f44; color: #ffffff; font-weight: 600;
}

/* ── CONTENT AREA ─────────────────────────── */
.sk-content-area { display: flex; flex-direction: column; gap: 0; min-width: 0; }
.sk-section-card {
  background: #ffffff;
  border: 1px solid #e2e6ed;
  border-radius: 10px;
  padding: 26px 30px;
  display: none;
  min-width: 0;
}
.sk-section-card.sk-visible { display: block; }
.sk-sec-heading {
  font-size: 18px; color: #0a1f44; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid #fdf0ef;
}

/* ── OVERVIEW ─────────────────────────────── */
.sk-ov-header {
  display: flex; flex-direction: column;
  align-items: center; margin-bottom: 20px; text-align: center;
}
.sk-ov-avatar {
  width: 170px; height: 170px; border-radius: 50%;
  border: 3px solid #e63946;
  background: linear-gradient(135deg, #c8d8ec, #a0b8d0);
  margin-bottom: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sk-ov-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* <-- yeh bhi add karo */
}
.sk-ov-name {
  font-size: 20px; color: #0a1f44;
  font-weight: 700; margin-bottom: 3px;
}
.sk-ov-sub { font-size: 13px; color: #5a6278; }
.sk-ov-body {
  font-size: 14px; color: #5a6278;
  line-height: 1.75; text-align: center; margin-bottom: 12px;
}

/* Tags */
.sk-tag-row {
  display: flex; flex-wrap: wrap; gap: 7px;
  justify-content: center; margin-top: 14px;
}
.sk-tag {
  background: #fdf0ef; color: #0a1f44;
  font-size: 12px; font-weight: 600;
  padding: 4px 11px; border-radius: 100px;
  border: 1px solid #f5b7b1;
}

/* Memberships */
.sk-mem-list { list-style: none; padding: 0; }
.sk-mem-list li {
  padding: 9px 0;
  border-bottom: 1px solid #e2e6ed;
  font-size: 14px; color: #0d1b2a;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.sk-mem-list li:last-child { border-bottom: none; }
.sk-mem-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #0a1f44; flex-shrink: 0; margin-top: 6px;
}
.sk-mem-bold { font-weight: 600; }

/* Contact grid */
.sk-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 16px;
}
.sk-contact-item {
  background: #f7f8fa; border: 1px solid #e2e6ed;
  border-radius: 8px; padding: 12px 14px;
}
.sk-contact-lbl {
  font-size: 11px; font-weight: 600; color: #5a6278;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px;
}
.sk-contact-val { font-size: 13.5px; color: #0d1b2a; font-weight: 500; }
.sk-contact-val a { color: #0a1f44; text-decoration: none; }

/* ── VISION BOX ───────────────────────────── */
.sk-vision-box {
  background: #fdf0ef;
  border-left: 4px solid #e63946;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px; margin-bottom: 18px;
  font-size: 14.5px; color: #0d1b2a; line-height: 1.75;
}
.sk-vision-box p + p { margin-top: 12px; }

/* ── EDUCATION TABLE ──────────────────────── */
.sk-edu-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.sk-edu-table thead th {
  background: #0a1f44; color: #ffffff;
  padding: 10px 14px; text-align: left;
  font-weight: 600; font-size: 13px;
}
.sk-edu-table thead th:first-child { border-radius: 6px 0 0 0; }
.sk-edu-table thead th:last-child  { border-radius: 0 6px 0 0; }
.sk-edu-table tbody tr { border-bottom: 1px solid #e2e6ed; }
.sk-edu-table tbody tr:last-child { border-bottom: none; }
.sk-edu-table tbody tr:hover { background: #fdf0ef; }
.sk-edu-table td { padding: 12px 14px; color: #0d1b2a; vertical-align: top; }
.sk-edu-table td:first-child { font-weight: 600; color: #0a1f44; }

/* ── WORK ─────────────────────────────────── */
.sk-work-section-title {
  font-size: 13px; font-weight: 700; color: #0a1f44;
  text-transform: uppercase; letter-spacing: 0.07em; margin: 16px 0 10px;
}
.sk-work-item { padding: 14px 0; border-bottom: 1px solid #e2e6ed; }
.sk-work-item:last-child { border-bottom: none; }
.sk-work-role  { font-size: 15px; font-weight: 700; color: #0a1f44; }
.sk-work-place { font-size: 13.5px; color: #0d1b2a; margin-top: 2px; }
.sk-work-period { font-size: 12px; font-weight: 600; color: #0a1f44; margin: 4px 0 6px; }
.sk-work-desc  { font-size: 13px; color: #5a6278; line-height: 1.65; }

/* ── PROFESSIONAL QUAL ────────────────────── */
.sk-pq-list { list-style: none; padding: 0; }
.sk-pq-list > li {
  padding: 9px 0; border-bottom: 1px solid #e2e6ed;
  font-size: 14px; color: #0d1b2a;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
}
.sk-pq-list > li:last-child { border-bottom: none; }
.sk-bullet-blue {
  width: 7px; height: 7px; border-radius: 50%;
  background: #0a1f44; flex-shrink: 0; margin-top: 7px;
}

/* ── PUBLICATIONS ─────────────────────────── */
.sk-pub-item {
  padding: 13px 0; border-bottom: 1px solid #e2e6ed;
  display: flex; gap: 14px;
}
.sk-pub-item:last-child { border-bottom: none; }
.sk-pub-num { font-size: 14px; font-weight: 700; color: #0a1f44; flex-shrink: 0; min-width: 22px; }
.sk-pub-text { font-size: 13px; color: #0d1b2a; line-height: 1.65; }
.sk-pub-text em { font-style: italic; font-weight: 600; color: #0a1f44; }

/* ── AWARDS ───────────────────────────────── */
.sk-award-item {
  padding: 10px 0; border-bottom: 1px solid #e2e6ed;
  font-size: 14px; color: #0d1b2a;
  display: flex; gap: 12px; line-height: 1.6;
}
.sk-award-item:last-child { border-bottom: none; }
.sk-award-num { font-weight: 700; color: #e63946; flex-shrink: 0; min-width: 20px; }

/* ── WORKSHOPS ────────────────────────────── */
.sk-ws-item {
  padding: 10px 0; border-bottom: 1px solid #e2e6ed;
  font-size: 14px; color: #0d1b2a;
  display: flex; gap: 10px; line-height: 1.6;
}
.sk-ws-item:last-child { border-bottom: none; }
.sk-ws-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #0a1f44; flex-shrink: 0; margin-top: 7px;
}

/* ── RESPONSIVE — Tablet (≤900px) ────────── */
@media (max-width: 900px) {
  .sk-page-body {
    grid-template-columns: 190px minmax(0, 1fr);
    padding: 18px 20px; gap: 16px;
  }
  .sk-sidebar-item { font-size: 12px; padding: 10px 12px; }
  .sk-hero-inner { padding: 36px 24px; gap: 30px; }
  .sk-hero-photo-box { width: 160px; height: 160px; }
  .sk-hero-photo-box svg { width: 95px; height: 95px; }
}

/* ── RESPONSIVE — Mobile (≤640px) ────────── */
@media (max-width: 640px) {
  .sk-hero-inner { flex-direction: column; padding: 24px 16px; gap: 18px; }
  .sk-hero-photo-box { width: 130px; height: 130px; }
  .sk-hero-photo-box svg { width: 80px; height: 80px; }
  .sk-hero-heading { font-size: 18px; }
  .sk-hero-quals li { font-size: 12.5px; }

  .sk-page-body { grid-template-columns: 1fr; padding: 12px 14px; gap: 14px; }

  /* Sidebar: horizontal scrollable row on mobile */
  .sk-sidebar {
    position: static;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #0a1f44 #f5f5f5;
  }
  .sk-sidebar::-webkit-scrollbar { height: 3px; }
  .sk-sidebar::-webkit-scrollbar-thumb { background: #0a1f44; border-radius: 2px; }

  .sk-sidebar-item {
    flex-shrink: 0;
    width: auto;
    border-bottom: none;
    border-right: 1px solid #e2e6ed;
    font-size: 12px;
    padding: 11px 14px;
    text-align: center;
    white-space: nowrap !important;
    word-break: keep-all !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .sk-sidebar-item:last-child { border-right: none; }

  .sk-section-card { padding: 16px; }
  .sk-contact-grid { grid-template-columns: 1fr; }
  .sk-edu-table { font-size: 11.5px; }
  .sk-edu-table td, .sk-edu-table th { padding: 7px 8px; }
  .sk-hero-photo-badge { font-size: 11px; padding: 5px 13px; }
}


/* ===== EXACT BUG FIX ===== */

/* parent reset */
.sk-sidebar {
  display: block !important;
  transform: none !important;
}

/* button reset */
.sk-sidebar-item {
  display: block !important;
  transform: none !important;

  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;

  white-space: normal !important;
  word-break: break-word !important;
}












   /* ── Section Header ── */
    .section-header {
      text-align: center;
      margin-bottom: 52px;
    }
 
    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
      position: relative;
    }
    .section-label::before,
    .section-label::after {
      content: '';
      display: inline-block;
      width: 28px;
      height: 1.5px;
      background: var(--red);
      vertical-align: middle;
      margin: 0 10px;
    }
 
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 5vw, 44px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-title span { color: var(--red); }
 
    .section-desc {
      max-width: 580px;
      margin: 0 auto;
      font-size: 15px;
      color: #5a6a85;
      line-height: 1.7;
    }
 
    /* ── Grid ── */
    
 
    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
 
    .card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
    }
 
    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
 
    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.18) 55%,
        rgba(0,0,0,0.08) 100%
      );
    }
 
    .card-title {
      position: absolute;
      bottom: 16px;
      left: 16px;
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }
 
    @media (max-width: 700px) {
      .conditions-grid { grid-template-columns: repeat(2, 1fr); }
      .card-title { font-size: 13px; }
    }
    /* CTA */
    .section-cta {
      text-align: center;
      margin-top: 48px;
    }
    .btn {
      display: inline-block;
      padding: 14px 38px;
      border-radius: 50px;
      background: var(--red);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: .5px;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(230,48,48,.35);
      transition: background .25s, transform .25s, box-shadow .25s;
    }
    .btn:hover {
      background: #c4262a;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(230,48,48,.45);
    }
 
    /* Stagger animation */
    .card {
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp .6s forwards;
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    .card:nth-child(1) { animation-delay: .05s; }
    .card:nth-child(2) { animation-delay: .12s; }
    .card:nth-child(3) { animation-delay: .19s; }
    .card:nth-child(4) { animation-delay: .26s; }
    .card:nth-child(5) { animation-delay: .33s; }
    .card:nth-child(6) { animation-delay: .40s; }
    .card:nth-child(7) { animation-delay: .47s; }
    .card:nth-child(8) { animation-delay: .54s; }
 
    @media (max-width: 600px) {
      .conditions-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .card-title { font-size: 16px; }
    }





    /* ================================================================
   PRESENTATIONS CSS
   Apni existing CSS file ke END mein paste karo
   ================================================================ */

/* ── PRESENTATIONS ────────────────────────────────────────────── */
.sk-pres-item {
  padding: 10px 0;
  border-bottom: 1px solid #e2e6ed;
  font-size: 13px;
  color: #0d1b2a;
  display: flex;
  gap: 12px;
  line-height: 1.6;
}
.sk-pres-item:last-child { border-bottom: none; }

.sk-pres-num {
  font-weight: 700;
  color: #e63946;
  flex-shrink: 0;
  min-width: 24px;
}

.sk-pres-text {
  flex: 1;
}

/* Mobile */
@media (max-width: 640px) {
  .sk-pres-item { font-size: 13px; gap: 8px; }
}