/* ============================================================
   drdarshanprofile.css — Single Profile Section Only
   All selectors scoped with .darshanprofile-* prefix
   No global CSS
   ============================================================ */

   @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,500;1,400;1,600&display=swap");

   /* ── CSS Variables scoped to section ── */
   .darshanprofile-section {
     --dp-navy: #0b1d3a;
     --dp-navy-mid: #122448;
     --dp-navy-light: #1a3260;
     --dp-gold: #b8922a;
     --dp-gold-light: #d4af60;
     --dp-gold-pale: #f5edd8;
     --dp-white: #ffffff;
     --dp-off-white: #f8f6f2;
     --dp-text: #1e2c3d;
     --dp-muted: #5a6a7e;
     --dp-border: rgba(184, 146, 42, 0.2);
     --dp-shadow: 0 24px 64px rgba(11, 29, 58, 0.13);
     --dp-shadow-sm: 0 6px 24px rgba(11, 29, 58, 0.08);
     --dp-radius: 16px;
     --dp-radius-sm: 10px;
     --dp-font-head: "Playfair Display", Georgia, serif;
     --dp-font-body: "Montserrat", sans-serif;
     --dp-font-italic: "Cormorant Garamond", Georgia, serif;
     --dp-ease: cubic-bezier(0.4, 0, 0.2, 1);
   
     font-family: var(--dp-font-body);
     background: var(--dp-off-white);
     padding: 40px 0;
     padding-top: 110px; /* push below fixed header */
     position: relative;
     overflow: hidden;
     height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     box-sizing: border-box;
   }
   
   /* Global Header Support */
   .clinic-logo-img {
     height: 65px;
     transform: scale(2);
     transition: 0.3s;
     filter: none !important;
   }
   .clinic-header {
     background: #ffffff !important;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
     padding: 10px 0 !important;
   }
   .clinic-header .nav-link {
     color: #333333 !important;
     text-shadow: none !important;
     font-weight: 600 !important;
   }
   .clinic-header.scrolled .header-phone {
     background: linear-gradient(135deg, #013578 0%, #136ab6 100%) !important;
   }
   
   .darshanprofile-work-col-title {
     white-space: nowrap;
   }
   
   /* Subtle radial background texture */
   .darshanprofile-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background-image:
       radial-gradient(
         ellipse 60% 50% at 80% 50%,
         rgba(184, 146, 42, 0.055) 0%,
         transparent 70%
       ),
       radial-gradient(
         ellipse 40% 60% at 10% 80%,
         rgba(11, 29, 58, 0.04) 0%,
         transparent 60%
       );
     pointer-events: none;
   }
   
   /* ── Main card ── */
   .darshanprofile-card {
     background: var(--dp-white);
     border-radius: 24px;
     overflow: hidden;
     box-shadow: var(--dp-shadow);
     display: flex;
     min-height: 560px;
     position: relative;
     animation: darshanprofile-fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
   }
   
   /* ── Left image panel ── */
   .darshanprofile-img-panel {
     width: 42%;
     flex-shrink: 0;
     background: linear-gradient(
       160deg,
       var(--dp-navy-light) 0%,
       var(--dp-navy) 100%
     );
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: flex-end;
     justify-content: center;
   }
   
   .darshanprofile-img-panel::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(
       180deg,
       transparent 50%,
       rgba(11, 29, 58, 0.65) 100%
     );
     pointer-events: none;
     z-index: 1;
   }
   
   .darshanprofile-img-panel img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top center;
     display: block;
     object-fit: cover;
     object-position: center 10%;
   }
   
   /* Placeholder when no image */
   .darshanprofile-img-placeholder {
     width: 100%;
     height: 100%;
     min-height: 500px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: rgba(184, 146, 42, 0.25);
     font-size: 5rem;
     gap: 1rem;
   }
   
   .darshanprofile-img-placeholder span {
     font-size: 0.72rem;
     font-family: var(--dp-font-body);
     color: rgba(255, 255, 255, 0.15);
     letter-spacing: 1.5px;
     text-transform: uppercase;
   }
   
   /* Name badge overlaid on image bottom */
   .darshanprofile-img-name-badge {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 2;
     padding: 1.5rem 1.8rem;
     background: linear-gradient(
       0deg,
       rgba(11, 29, 58, 0.92) 0%,
       transparent 100%
     );
   }
   
   .darshanprofile-img-name {
     font-family: var(--dp-font-head);
     font-size: 1.35rem;
     font-weight: 700;
     color: var(--dp-white);
     line-height: 1.15;
     margin-bottom: 4px;
   }
   
   .darshanprofile-img-degree {
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--dp-gold-light);
   }
   
   /* ── Gold vertical accent bar ── */
   .darshanprofile-accent-bar {
     width: 4px;
     background: linear-gradient(
       180deg,
       var(--dp-gold),
       var(--dp-gold-light),
       rgba(184, 146, 42, 0.1)
     );
     flex-shrink: 0;
   }
   
   /* ── Right content panel ── */
   .darshanprofile-content-panel {
     flex: 1;
     padding: 3rem 3rem 3rem 2.8rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     overflow: hidden;
   }
   
   /* Eyebrow label */
   .darshanprofile-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 3.5px;
     text-transform: uppercase;
     color: var(--dp-gold);
     margin-bottom: 0.7rem;
   }
   
   .darshanprofile-eyebrow::before {
     content: "";
     width: 28px;
     height: 2px;
     background: var(--dp-gold);
     border-radius: 1px;
     flex-shrink: 0;
   }
   
   /* Heading */
   .darshanprofile-heading {
     font-family: var(--dp-font-head);
     font-size: clamp(1.7rem, 2.8vw, 2.4rem);
     font-weight: 800;
     color: var(--dp-navy);
     line-height: 1.15;
     margin-bottom: 0.3rem;
   }
   
   .darshanprofile-heading .dp-gold {
     background: linear-gradient(135deg, var(--dp-gold), var(--dp-gold-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }
   
   .darshanprofile-tag {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     background: rgba(184, 146, 42, 0.08);
     border: 1px solid rgba(184, 146, 42, 0.25);
     border-radius: 50px;
     padding: 0.3rem 0.85rem;
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.3px;
     color: var(--dp-navy);
     transition: all 0.3s var(--dp-ease);
     cursor: default;
   }
   
   .darshanprofile-tag i {
     color: var(--dp-gold);
     font-size: 0.7rem;
   }
   
   .darshanprofile-tag:hover {
     background: rgba(184, 146, 42, 0.15);
     border-color: var(--dp-gold);
     color: var(--dp-gold);
   }
   
   /* Body text */
   .darshanprofile-body-text {
     font-size: 0.875rem;
     line-height: 1.85;
     color: var(--dp-muted);
     margin-bottom: 1rem;
   }
   
   /* CTA Buttons */
   .darshanprofile-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
   }
   
   .darshanprofile-btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: linear-gradient(135deg, var(--dp-gold), var(--dp-gold-light));
     color: var(--dp-navy);
     font-family: var(--dp-font-body);
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     text-decoration: none;
     border: none;
     border-radius: 50px;
     padding: 0.72rem 1.6rem;
     transition: all 0.3s var(--dp-ease);
     box-shadow: 0 6px 20px rgba(184, 146, 42, 0.35);
     cursor: pointer;
   }
   
   .darshanprofile-btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 32px rgba(184, 146, 42, 0.5);
     color: var(--dp-navy);
   }
   
   .darshanprofile-btn-outline {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: transparent;
     color: var(--dp-navy);
     font-family: var(--dp-font-body);
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     text-decoration: none;
     border: 1.5px solid rgba(11, 29, 58, 0.2);
     border-radius: 50px;
     padding: 0.72rem 1.6rem;
     transition: all 0.3s var(--dp-ease);
     cursor: pointer;
   }
   
   .darshanprofile-btn-outline:hover {
     border-color: var(--dp-gold);
     color: var(--dp-gold);
     transform: translateY(-3px);
   }
   
   /* ── Animations ── */
   @keyframes darshanprofile-fadeUp {
     from {
       opacity: 0;
       transform: translateY(30px);
     }
     to {
       opacity: 1;
       transform: translateY(0);
     }
   }
   
   /* ── Responsive ── */
   @media (max-width: 991.98px) {
     .darshanprofile-card {
       flex-direction: column;
       min-height: auto;
     }
     .darshanprofile-img-panel {
       width: 100%;
       height: 380px;
     }
     .darshanprofile-img-placeholder {
       min-height: 380px;
     }
     .darshanprofile-accent-bar {
       width: 100%;
       height: 4px;
     }
     .darshanprofile-content-panel {
       padding: 2.2rem 1.8rem;
     }
   }
   
   @media (max-width: 767px) {
     .darshanprofile-section {
       padding: 0;
       height: 100vh;
       height: 100dvh;
       overflow: hidden;
     }
     .darshanprofile-section .container {
       padding-left: 0;
       padding-right: 0;
       max-width: 100%;
       height: 100%;
     }
     .darshanprofile-card {
       height: 100%;
       border-radius: 0;
       box-shadow: none;
       animation: none;
       flex-direction: column;
       background: #fff;
     }
     .darshanprofile-img-panel {
       display: none;
     }
     .darshanprofile-accent-bar {
       display: none;
     }
     .darshanprofile-content-panel {
       flex: 1;
       min-height: 0;
       padding: 1rem 1.4rem;
       overflow: hidden;
       justify-content: center;
       align-items: center;
       text-align: center;
       display: flex;
       flex-direction: column;
       gap: 0.6rem;
     }
     .darshanprofile-content-panel::before {
       content: "";
       display: block;
       width: 200px;
       height: 200px;
       border-radius: 50%;
       background-image: url("../img/about-img.jpeg");
       background-size: cover;
       background-position: center 10%;
       border: 4px solid var(--dp-gold-pale);
       box-shadow: 0 8px 30px rgba(11, 29, 58, 0.15);
       flex-shrink: 0;
     }
     .darshanprofile-eyebrow {
       display: none;
     }
     .darshanprofile-designation {
       font-size: 0.85rem;
       margin-bottom: 0;
       text-align: center;
     }
     .darshanprofile-heading {
       font-size: 1.9rem;
       margin-bottom: 0;
       text-align: center;
     }
     .darshanprofile-body-text {
       font-size: 0.85rem;
       line-height: 1.7;
       margin-bottom: 0;
       text-align: center;
     }
     .darshanprofile-actions {
       justify-content: center;
       gap: 8px;
       flex-wrap: wrap;
       margin-top: 0.2rem;
     }
     .darshanprofile-btn-primary,
     .darshanprofile-btn-outline {
       font-size: 0.67rem;
       padding: 0.55rem 1.1rem;
     }
   }
   
   @media (max-width: 575.98px) {
     .darshanprofile-content-panel {
       padding: 0.8rem 1.2rem;
       gap: 0.5rem;
     }
     .darshanprofile-content-panel::before {
       width: 170px;
       height: 170px;
     }
     .darshanprofile-heading {
       font-size: 1.7rem;
     }
     .darshanprofile-body-text {
       font-size: 0.78rem;
       line-height: 1.65;
     }
   }
   
   /* ============================================================
      CREDENTIALS & QUALIFICATIONS SECTION
      Light Gradient Theme - Clean Background + Correct Scroll Fix
      All selectors scoped with .darshanprofile-cred-* prefix
      ============================================================ */
   
   .darshanprofile-cred-section {
     --dp-navy: #183153;
     --dp-navy-mid: #2a4a73;
     --dp-navy-light: #4f6f96;
     --dp-gold: #b8922a;
     --dp-gold-light: #d4af60;
     --dp-gold-soft: #f3e4b8;
     --dp-white: #ffffff;
     --dp-off-white: #fdfbf7;
     --dp-cream: #f8f4ec;
     --dp-text: #24364a;
     --dp-text-soft: #5f7084;
     --dp-border: rgba(24, 49, 83, 0.1);
     --dp-card-border: rgba(184, 146, 42, 0.18);
     --dp-shadow: 0 18px 45px rgba(24, 49, 83, 0.1);
     --dp-shadow-hover: 0 22px 50px rgba(24, 49, 83, 0.14);
     --dp-radius: 16px;
     --dp-radius-sm: 10px;
     --dp-font-head: "Playfair Display", Georgia, serif;
     --dp-font-body: "Montserrat", sans-serif;
     --dp-ease: cubic-bezier(0.4, 0, 0.2, 1);
   
     font-family: var(--dp-font-body);
     background: linear-gradient(135deg, #fdfbf7 0%, #f8f4ec 50%, #eef4fb 100%);
     padding: 40px 0 50px;
     position: relative;
     overflow: hidden;
     height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     box-sizing: border-box;
   }
   
   /* Smooth light overlay */
   .darshanprofile-cred-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(
       135deg,
       rgba(255, 255, 255, 0.22) 0%,
       rgba(255, 255, 255, 0.08) 45%,
       rgba(212, 175, 96, 0.05) 100%
     );
     pointer-events: none;
   }
   
   /* Gentle radial glow */
   .darshanprofile-cred-section::after {
     content: "";
     position: absolute;
     top: -20%;
     right: -10%;
     width: 500px;
     height: 500px;
     background: radial-gradient(
       circle,
       rgba(212, 175, 96, 0.14),
       transparent 65%
     );
     pointer-events: none;
   }
   
   /* ── Section Header ── */
   .darshanprofile-cred-header {
     text-align: center;
     margin-bottom: 3.5rem;
     position: relative;
     z-index: 1;
   }
   
   .darshanprofile-cred-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 3.5px;
     text-transform: uppercase;
     color: var(--dp-gold);
     margin-bottom: 0.75rem;
   }
   
   .darshanprofile-cred-eyebrow::before,
   .darshanprofile-cred-eyebrow::after {
     content: "";
     width: 30px;
     height: 1.5px;
     background: var(--dp-gold);
     border-radius: 1px;
     flex-shrink: 0;
   }
   
   .darshanprofile-cred-title {
     font-family: var(--dp-font-head);
     font-size: clamp(1.9rem, 3.5vw, 2.8rem);
     font-weight: 800;
     color: var(--dp-text);
     line-height: 1.15;
     margin-bottom: 0;
   }
   
   .darshanprofile-cred-title .dp-cred-gold {
     background: linear-gradient(135deg, var(--dp-gold), var(--dp-gold-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }
   
   .darshanprofile-cred-title-rule {
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, var(--dp-gold), var(--dp-gold-light));
     border-radius: 2px;
     margin: 1rem auto 0;
   }
   
   /* ── Three Column Grid ── */
   .darshanprofile-cred-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
     position: relative;
     z-index: 1;
     align-items: stretch;
   }
   
   /* ── Single Card ── */
   .darshanprofile-cred-card {
     background: rgba(255, 255, 255, 0.82);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid var(--dp-card-border);
     border-radius: var(--dp-radius);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition:
       border-color 0.35s var(--dp-ease),
       transform 0.35s var(--dp-ease),
       box-shadow 0.35s var(--dp-ease);
     box-shadow: var(--dp-shadow);
   }
   
   .darshanprofile-cred-card:hover {
     border-color: rgba(184, 146, 42, 0.38);
     transform: translateY(-6px);
     box-shadow: var(--dp-shadow-hover);
   }
   
   /* Card top gold bar on hover */
   .darshanprofile-cred-card-inner {
     position: relative;
   }
   
   .darshanprofile-cred-card-inner::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--dp-gold), var(--dp-gold-light));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s var(--dp-ease);
   }
   
   .darshanprofile-cred-card:hover .darshanprofile-cred-card-inner::before {
     transform: scaleX(1);
   }
   
   /* ── Card Header ── */
   .darshanprofile-cred-card-head {
     padding: 1rem 1.8rem 0.8rem;
     border-bottom: 1px solid rgba(24, 49, 83, 0.08);
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 0.9rem;
   }
   
   .darshanprofile-cred-icon-wrap {
     width: 60px;
     height: 60px;
     border-radius: 14px;
     background: rgba(184, 146, 42, 0.12);
     border: 1px solid rgba(184, 146, 42, 0.24);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: var(--dp-gold);
     transition: all 0.35s var(--dp-ease);
     flex-shrink: 0;
   }
   
   .darshanprofile-cred-card:hover .darshanprofile-cred-icon-wrap {
     background: linear-gradient(135deg, var(--dp-gold), var(--dp-gold-light));
     color: var(--dp-white);
     border-color: transparent;
     transform: scale(1.08) rotate(-4deg);
   }
   
   .darshanprofile-cred-card-title {
     font-family: var(--dp-font-head);
     font-size: 1.15rem;
     font-weight: 700;
     color: var(--dp-text);
     margin: 0;
   }
   
   /* ── Card Body ── */
   .darshanprofile-cred-card-body {
     padding: 1.5rem 1.8rem 1.8rem;
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
   }
   
   /* ── List Items ── */
   .darshanprofile-cred-list {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 0.85rem;
   }
   
   .darshanprofile-cred-list-item {
     display: flex;
     gap: 10px;
     align-items: flex-start;
     padding-bottom: 0.85rem;
     border-bottom: 1px solid rgba(24, 49, 83, 0.08);
     transition: border-color 0.3s ease;
   }
   
   .darshanprofile-cred-list-item:last-child {
     border-bottom: none;
     padding-bottom: 0;
   }
   
   .darshanprofile-cred-list-item:hover {
     border-bottom-color: rgba(184, 146, 42, 0.25);
   }
   
   .darshanprofile-cred-bullet {
     width: 6px;
     height: 6px;
     background: var(--dp-gold);
     border-radius: 50%;
     flex-shrink: 0;
     margin-top: 7px;
   }
   
   .darshanprofile-cred-item-text {
     font-size: 0.8rem;
     line-height: 1.7;
     color: var(--dp-text-soft);
     margin: 0;
     transition: color 0.3s ease;
   }
   
   .darshanprofile-cred-list-item:hover .darshanprofile-cred-item-text {
     color: var(--dp-text);
   }
   
   .darshanprofile-cred-item-text .dp-highlight {
     color: var(--dp-gold);
     font-weight: 700;
   }
   
   /* Publications / Certifications scrollable body */
   .darshanprofile-cred-card-body.dp-scrollable {
     max-height: 260px;
     overflow-y: auto;
     padding: 1.2rem 1.8rem 1.8rem;
     justify-content: flex-start;
     align-items: stretch;
     scrollbar-width: thin;
     scrollbar-color: rgba(184, 146, 42, 0.45) transparent;
   }
   
   .darshanprofile-cred-card-body.dp-scrollable .darshanprofile-cred-list {
     padding-top: 0;
     margin-top: 0;
   }
   
   .darshanprofile-cred-card-body.dp-scrollable::-webkit-scrollbar {
     width: 4px;
   }
   
   .darshanprofile-cred-card-body.dp-scrollable::-webkit-scrollbar-track {
     background: transparent;
   }
   
   .darshanprofile-cred-card-body.dp-scrollable::-webkit-scrollbar-thumb {
     background: rgba(184, 146, 42, 0.45);
     border-radius: 2px;
   }
   
   /* DOI badge */
   .darshanprofile-cred-doi {
     display: inline-block;
     margin-top: 4px;
     font-size: 0.67rem;
     font-weight: 600;
     color: var(--dp-gold);
     letter-spacing: 0.3px;
     opacity: 0.95;
   }
   
   .darshanprofile-cred-pubmed-badge {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     margin-left: 6px;
     background: rgba(184, 146, 42, 0.12);
     border: 1px solid rgba(184, 146, 42, 0.28);
     border-radius: 4px;
     padding: 1px 6px;
     font-size: 0.6rem;
     font-weight: 700;
     letter-spacing: 0.5px;
     color: var(--dp-gold);
     vertical-align: middle;
     text-transform: uppercase;
   }
   
   /* ── Reveal animation ── */
   .darshanprofile-cred-reveal {
     opacity: 0;
     transform: translateY(28px);
     transition:
       opacity 0.6s var(--dp-ease),
       transform 0.6s var(--dp-ease);
   }
   
   .darshanprofile-cred-reveal.dp-revealed {
     opacity: 1;
     transform: translateY(0);
   }
   
   /* ── Responsive ── */
   @media (max-width: 991.98px) {
     .darshanprofile-cred-grid {
       grid-template-columns: 1fr;
       gap: 1.2rem;
     }
   
     .darshanprofile-cred-card-body.dp-scrollable {
       max-height: 300px;
     }
   
     .darshanprofile-cred-section {
       padding: 60px 0 70px;
       height: auto;
     }
   }
   
   @media (max-width: 575.98px) {
     .darshanprofile-cred-section {
       padding: 48px 0 56px;
     }
   
     .darshanprofile-cred-title {
       font-size: 1.7rem;
     }
   
     .darshanprofile-cred-card-head {
       padding: 1.4rem 1.4rem 1rem;
     }
   
     .darshanprofile-cred-card-body {
       padding: 1.2rem 1.4rem 1.4rem;
     }
   
     .darshanprofile-cred-card-body.dp-scrollable {
       padding: 1rem 1.4rem 1.4rem;
       justify-content: flex-start;
     }
   }
   
   /* ============================================================
         PAST WORK EXPERIENCE & MEMBER OF SOCIETY SECTION
         All selectors scoped with .darshanprofile-work-* prefix
         ============================================================ */
   
   .darshanprofile-work-section {
     --dp-navy: #0b1d3a;
     --dp-navy-mid: #122448;
     --dp-gold: #b8922a;
     --dp-gold-light: #d4af60;
     --dp-white: #ffffff;
     --dp-off-white: #f8f6f2;
     --dp-muted: #5a6a7e;
     --dp-border: rgba(11, 29, 58, 0.1);
     --dp-shadow: 0 12px 40px rgba(11, 29, 58, 0.09);
     --dp-shadow-hover: 0 20px 55px rgba(11, 29, 58, 0.14);
     --dp-radius: 16px;
     --dp-font-head: "Playfair Display", Georgia, serif;
     --dp-font-body: "Montserrat", sans-serif;
     --dp-ease: cubic-bezier(0.4, 0, 0.2, 1);
   
     font-family: var(--dp-font-body);
     background: var(--dp-off-white);
     padding: 20px 0 20px;
     position: relative;
     overflow: hidden;
     height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     box-sizing: border-box;
   }
   
   /* Soft radial texture */
   .darshanprofile-work-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background-image:
       radial-gradient(
         ellipse 55% 50% at 15% 50%,
         rgba(11, 29, 58, 0.035) 0%,
         transparent 70%
       ),
       radial-gradient(
         ellipse 45% 55% at 85% 60%,
         rgba(184, 146, 42, 0.04) 0%,
         transparent 65%
       );
     pointer-events: none;
   }
   
   /* ── Two-column split layout ── */
   .darshanprofile-work-split {
     display: grid;
     grid-template-columns: 1fr 3px 1fr;
     gap: 0 3rem;
     position: relative;
     z-index: 1;
     align-items: start;
   }
   
   /* ── Central vertical divider ── */
   .darshanprofile-work-divider {
     background: linear-gradient(
       180deg,
       transparent 0%,
       rgba(184, 146, 42, 0.4) 15%,
       rgba(184, 146, 42, 0.4) 85%,
       transparent 100%
     );
     border-radius: 2px;
     align-self: stretch;
   }
   
   /* ── Column shared ── */
   .darshanprofile-work-col {
     display: flex;
     flex-direction: column;
   }
   
   /* ── Column header ── */
   .darshanprofile-work-col-head {
     margin-bottom: 0.8rem;
     text-align: center;
   }
   
   .darshanprofile-work-col-title {
     font-family: var(--dp-font-head);
     font-size: clamp(1.5rem, 2.5vw, 2rem);
     font-weight: 800;
     color: var(--dp-navy);
     line-height: 1.15;
     margin-bottom: 0.5rem;
   }
   
   .darshanprofile-work-col-rule {
     margin: 0 auto; /* 👈 center line */
     width: 48px;
     height: 3px;
     background: linear-gradient(90deg, var(--dp-gold), var(--dp-gold-light));
     border-radius: 2px;
   }
   
   /* ── Logo grid ── */
   .darshanprofile-work-logo-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 0.6rem;
     align-items: stretch;
   }
   
   .darshanprofile-work-logo-grid.dp-society-grid {
     grid-template-columns: repeat(2, 1fr);
   }
   
   .dp-society-grid .darshanprofile-work-logo-card {
     min-height: 120px;
   }
   
   /* ── Single logo card ── */
   .darshanprofile-work-logo-card {
     background: var(--dp-white);
     border: 1px solid var(--dp-border);
     border-radius: var(--dp-radius);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 1rem 1rem;
     gap: 0.5rem;
     min-height: 180px;
     height: 100%;
   }
   
   .darshanprofile-work-logo-card::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--dp-gold), var(--dp-gold-light));
     transform: scaleX(0);
     transform-origin: center;
     transition: transform 0.4s var(--dp-ease);
   }
   
   .darshanprofile-work-logo-card:hover {
     box-shadow: var(--dp-shadow-hover);
     border-color: rgba(184, 146, 42, 0.25);
     transform: translateY(-5px);
   }
   
   .darshanprofile-work-logo-card:hover::before {
     transform: scaleX(1);
   }
   
   /* Logo image wrap */
   .darshanprofile-work-img-wrap {
     width: 100%;
     height: 210px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
   }
   
   /* Logo image */
   .darshanprofile-work-logo-img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     object-position: center;
     transition: transform 0.35s var(--dp-ease);
   }
   
   .darshanprofile-work-logo-card:hover .darshanprofile-work-logo-img {
     transform: scale(1.07);
   }
   
   /* Fallback icon shown via onerror */
   .darshanprofile-work-img-fallback {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background: linear-gradient(
       135deg,
       rgba(11, 29, 58, 0.07),
       rgba(184, 146, 42, 0.1)
     );
     border: 2px dashed rgba(184, 146, 42, 0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     color: rgba(184, 146, 42, 0.5);
   }
   
   /* Logo placeholder (legacy, kept for safety) */
   .darshanprofile-work-logo-placeholder {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background: linear-gradient(
       135deg,
       rgba(11, 29, 58, 0.07),
       rgba(184, 146, 42, 0.1)
     );
     border: 2px dashed rgba(184, 146, 42, 0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     color: rgba(184, 146, 42, 0.5);
     flex-shrink: 0;
     transition: all 0.35s var(--dp-ease);
   }
   
   .darshanprofile-work-logo-card:hover .darshanprofile-work-logo-placeholder {
     background: linear-gradient(
       135deg,
       rgba(184, 146, 42, 0.12),
       rgba(184, 146, 42, 0.18)
     );
     border-color: var(--dp-gold);
     color: var(--dp-gold);
   }
   
   /* Card label */
   .darshanprofile-work-logo-label {
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--dp-navy);
     text-align: center;
     line-height: 1.45;
     letter-spacing: 0.1px;
   }
   
   .darshanprofile-work-logo-label .dp-sub {
     display: block;
     font-size: 0.78rem;
     font-weight: 400;
     color: var(--dp-muted);
     margin-top: 2px;
   }
   
   /* ── Reveal animation ── */
   .darshanprofile-work-reveal {
     opacity: 0;
     transform: translateY(24px);
     transition:
       opacity 0.6s var(--dp-ease),
       transform 0.6s var(--dp-ease);
   }
   
   .darshanprofile-work-reveal.dp-work-revealed {
     opacity: 1;
     transform: translateY(0);
   }
   
   /* ── Responsive ── */
   /* ── Responsive ── */
   @media (max-width: 991.98px) {
     .darshanprofile-section {
       padding-top: 50px;
     }
   
     /* HAMBURGER */
     .hamburger-lines {
       display: flex;
       height: 20px;
       width: 28px;
       flex-direction: column;
       justify-content: space-between;
       cursor: pointer;
       z-index: 2000;
       position: relative;
     }
   
     .hamburger-lines .line {
       display: block;
       height: 2px;
       width: 100%;
       background: #000 !important;
       border-radius: 10px;
     }
   
     .darshanprofile-work-split {
       grid-template-columns: 1fr;
       gap: 1rem 0;
     }
   
     .darshanprofile-work-divider {
       width: 100%;
       height: 3px;
       background: linear-gradient(
         90deg,
         transparent 0%,
         rgba(184, 146, 42, 0.4) 20%,
         rgba(184, 146, 42, 0.4) 80%,
         transparent 100%
       );
       align-self: auto;
     }
   
     .darshanprofile-work-section {
       height: 100vh;
       height: 100dvh;
       overflow: hidden;
       padding: 1.2rem 0;
       display: flex;
       flex-direction: column;
       justify-content: center;
       box-sizing: border-box;
     }
   
     /* Remove Bootstrap container side padding — full width */
     .darshanprofile-work-section .container {
       padding-left: 0.75rem;
       padding-right: 0.75rem;
       max-width: 100%;
     }
   
     .darshanprofile-work-col-title {
       font-size: 1.6rem;
       text-align: center;
       white-space: normal;
     }
   
     .darshanprofile-work-col-head {
       margin-bottom: 0.6rem;
       text-align: center;
     }
   
     .darshanprofile-work-logo-grid {
       grid-template-columns: repeat(2, 1fr);
       gap: 0.6rem;
     }
   
     /* Bigger cards — matching old design */
     .darshanprofile-work-logo-card {
       min-height: 140px;
       padding: 0.8rem;
     }
   
     .dp-society-grid .darshanprofile-work-logo-card {
       min-height: 140px;
     }
   
     .darshanprofile-work-img-wrap {
       height: 110px;
     }
   }
   
   @media (max-width: 575.98px) {
     .darshanprofile-work-section .container {
       padding-left: 0.6rem;
       padding-right: 0.6rem;
     }
   
     .darshanprofile-work-col-title {
       font-size: 1.4rem;
     }
   
     .darshanprofile-work-logo-card {
       min-height: 120px;
       padding: 0.6rem;
     }
   
     .dp-society-grid .darshanprofile-work-logo-card {
       min-height: 120px;
     }
   
     .darshanprofile-work-img-wrap {
       height: 90px;
     }
   }
   
   /* ============================================================
      HOSPITAL AFFILIATION SECTION
      All selectors scoped with .dpaffil-* prefix
      No global CSS
      ============================================================ */
   
   .dpaffil-section {
     --dpaffil-navy: #0b1d3a;
     --dpaffil-gold: #b8922a;
     --dpaffil-gold-light: #d4af60;
     --dpaffil-white: #ffffff;
     --dpaffil-border: rgba(184, 146, 42, 0.18);
     --dpaffil-shadow: 0 12px 40px rgba(11, 29, 58, 0.09);
     --dpaffil-shadow-hov: 0 22px 55px rgba(11, 29, 58, 0.15);
     --dpaffil-radius: 16px;
     --dpaffil-ease: cubic-bezier(0.4, 0, 0.2, 1);
     --dpaffil-font-head: "Playfair Display", Georgia, serif;
   
     font-family: "Montserrat", sans-serif;
     background: var(--dp-off-white, #f8f6f2);
     padding: 28px 0;
     position: relative;
     overflow: hidden;
     height: 100vh;
     height: 100dvh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     box-sizing: border-box;
   }
   
   /* Soft radial glow */
   .dpaffil-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background-image:
       radial-gradient(
         ellipse 55% 45% at 90% 10%,
         rgba(184, 146, 42, 0.07) 0%,
         transparent 65%
       ),
       radial-gradient(
         ellipse 40% 50% at 10% 90%,
         rgba(11, 29, 58, 0.04) 0%,
         transparent 60%
       );
     pointer-events: none;
   }
   
   /* ── Section header ── */
   .dpaffil-header {
     text-align: center;
     margin-bottom: clamp(1rem, 2.5vh, 2.2rem);
     position: relative;
     z-index: 1;
   }
   
   .dpaffil-title {
     font-family: var(--dpaffil-font-head);
     font-size: clamp(1.9rem, 3.5vw, 2.8rem);
     font-weight: 800;
     color: var(--dpaffil-navy);
     line-height: 1.15;
     margin-bottom: 0;
     text-transform: uppercase;
     letter-spacing: 1px;
   }
   
   .dpaffil-gold {
     background: linear-gradient(
       135deg,
       var(--dpaffil-gold),
       var(--dpaffil-gold-light)
     );
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }
   
   .dpaffil-title-rule {
     width: 60px;
     height: 3px;
     background: linear-gradient(
       90deg,
       var(--dpaffil-gold),
       var(--dpaffil-gold-light)
     );
     border-radius: 2px;
     margin: 1rem auto 0;
   }
   
   /* ── Rows ── */
   .dpaffil-row {
     display: grid;
     gap: clamp(0.5rem, 1.2vh, 1.25rem);
     position: relative;
     z-index: 1;
   }
   
   .dpaffil-row + .dpaffil-row {
     margin-top: clamp(0.5rem, 1.2vh, 1.25rem);
   }
   
   .dpaffil-row-4 {
     grid-template-columns: repeat(4, 1fr);
   }
   
   .dpaffil-row-5 {
     grid-template-columns: repeat(5, 1fr);
   }
   
   /* ── Single affiliation card ── */
   .dpaffil-card {
     background: var(--dpaffil-white);
     border: 1px solid var(--dpaffil-border);
     border-radius: var(--dpaffil-radius);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: clamp(0.8rem, 2vh, 1.4rem);
     min-height: clamp(170px, 30vh, 260px);
     position: relative;
     overflow: hidden;
     transition:
       transform 0.35s var(--dpaffil-ease),
       box-shadow 0.35s var(--dpaffil-ease),
       border-color 0.35s var(--dpaffil-ease);
     box-shadow: var(--dpaffil-shadow);
   }
   
   /* Bottom gold bar on hover */
   .dpaffil-card::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(
       90deg,
       var(--dpaffil-gold),
       var(--dpaffil-gold-light)
     );
     transform: scaleX(0);
     transform-origin: center;
     transition: transform 0.4s var(--dpaffil-ease);
   }
   
   .dpaffil-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--dpaffil-shadow-hov);
     border-color: rgba(184, 146, 42, 0.35);
   }
   
   .dpaffil-card:hover::after {
     transform: scaleX(1);
   }
   
   /* ── Image wrapper ── */
   .dpaffil-img-wrap {
     width: 100%;
     height: clamp(130px, 22vh, 210px);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
   }
   
   /* ── Logo image ── */
   .dpaffil-logo-img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     object-position: center;
     transition: transform 0.35s var(--dpaffil-ease);
   }
   
   .dpaffil-card:hover .dpaffil-logo-img {
     transform: scale(1.07);
   }
   
   /* ── Fallback icon ── */
   .dpaffil-fallback {
     width: 68px;
     height: 68px;
     border-radius: 50%;
     background: linear-gradient(
       135deg,
       rgba(11, 29, 58, 0.07),
       rgba(184, 146, 42, 0.1)
     );
     border: 2px dashed rgba(184, 146, 42, 0.35);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.7rem;
     color: rgba(184, 146, 42, 0.55);
   }
   
   /* ── Reveal animation ── */
   .dpaffil-reveal {
     opacity: 0;
     transform: translateY(26px);
     transition:
       opacity 0.6s var(--dpaffil-ease),
       transform 0.6s var(--dpaffil-ease);
   }
   
   .dpaffil-reveal.dpaffil-revealed {
     opacity: 1;
     transform: translateY(0);
   }
   
   /* ── Responsive ── */
   @media (max-width: 1199.98px) {
     .dpaffil-row-5 {
       grid-template-columns: repeat(3, 1fr);
     }
   }
   
   @media (max-width: 991.98px) {
     .dpaffil-row-4 {
       grid-template-columns: repeat(2, 1fr);
     }
     .dpaffil-row-5 {
       grid-template-columns: repeat(3, 1fr);
     }
     .dpaffil-section {
       height: 100vh;
       height: 100dvh;
       padding: 24px 0;
     }
   }
   
   @media (max-width: 575.98px) {
     .dpaffil-row-4,
     .dpaffil-row-5 {
       grid-template-columns: repeat(2, 1fr);
     }
     .dpaffil-section {
       height: 130vh;
       height: 130dvh;
       padding: 12px 0 20px;
     }
     .dpaffil-header {
       margin-bottom: 0.6rem;
     }
     .dpaffil-title {
       font-size: 1.35rem;
     }
     .dpaffil-card {
       min-height: clamp(80px, 12vh, 120px);
     }
     .dpaffil-img-wrap {
       height: clamp(100px, 15vh, 140px);
     }
     .dpaffil-row-5 .dpaffil-card:last-child {
       grid-column: 1 / -1;
       max-width: 50%;
       margin: 0 auto;
       width: 100%;
     }
   }
   