/* ============================================================
   drdishaprofile.css — Single Profile Section Only
   All selectors scoped with .dishaprofile-* 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 ── */
   .dishaprofile-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;
     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; }
   
   /* Subtle radial background texture */
   .dishaprofile-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 ── */
   .dishaprofile-card {
     background: var(--dp-white);
     border-radius: 24px;
     overflow: hidden;
     box-shadow: var(--dp-shadow);
     display: flex;
     min-height: 420px;
     max-height: 520px;
     position: relative;
     animation: dishaprofile-fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
   }
   
   /* ── Left image panel ── */
   .dishaprofile-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;
   }
   
   .dishaprofile-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;
   }
   
   .dishaprofile-img-panel img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center 10%;
     display: block;
   }
   
   /* Name badge overlaid on image bottom */
   .dishaprofile-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%
     );
   }
   
   .dishaprofile-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;
   }
   
   .dishaprofile-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 ── */
   .dishaprofile-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 ── */
   .dishaprofile-content-panel {
     flex: 1;
     padding: 3rem 3rem 3rem 2.8rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     overflow: hidden;
   }
   
   /* Eyebrow label */
   .dishaprofile-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;
   }
   
   .dishaprofile-eyebrow::before {
     content: "";
     width: 28px;
     height: 2px;
     background: var(--dp-gold);
     border-radius: 1px;
     flex-shrink: 0;
   }
   
   /* Heading */
   .dishaprofile-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;
   }
   
   .dishaprofile-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;
   }
   
   /* Body text */
   .dishaprofile-body-text {
     font-size: 0.875rem;
     line-height: 1.85;
     color: var(--dp-muted);
     margin-bottom: 0.75rem;
   }
   
   /* CTA Buttons */
   .dishaprofile-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     margin-top: 0.5rem;
   }
   
   .dishaprofile-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;
   }
   
   .dishaprofile-btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 32px rgba(184, 146, 42, 0.5);
     color: var(--dp-navy);
   }
   
   .dishaprofile-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;
   }
   
   .dishaprofile-btn-outline:hover {
     border-color: var(--dp-gold);
     color: var(--dp-gold);
     transform: translateY(-3px);
   }
   
   /* ── Animations ── */
   @keyframes dishaprofile-fadeUp {
     from {
       opacity: 0;
       transform: translateY(30px);
     }
     to {
       opacity: 1;
       transform: translateY(0);
     }
   }
   
   /* ── Responsive ── */
   @media (max-width: 991.98px) {
   
       /* 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;
       border-radius: 10px;
     }
   
     .dishaprofile-card {
       flex-direction: column;
       min-height: auto;
     }
     .dishaprofile-img-panel {
       width: 100%;
       height: 380px;
     }
     .dishaprofile-accent-bar {
       width: 100%;
       height: 4px;
     }
     .dishaprofile-content-panel {
       padding: 2.2rem 1.8rem;
     }
   }
   
   @media (max-width: 767px) {
     .dishaprofile-section {
       padding: 0;
       height: 100vh;
       height: 100dvh;
       overflow: hidden;
     }
     .dishaprofile-section .container {
       padding-left: 0;
       padding-right: 0;
       max-width: 100%;
       height: 100%;
     }
     .dishaprofile-card {
       height: 100%;
       max-height: 100%;
       border-radius: 0;
       box-shadow: none;
       animation: none;
       flex-direction: column;
       background: #fff;
     }
     .dishaprofile-img-panel {
       display: none;
     }
     .dishaprofile-accent-bar {
       display: none;
     }
     .dishaprofile-content-panel {
       flex: 1;
       min-height: 0;
       padding: 0.6rem 1.4rem 0.8rem;
       overflow: hidden;
       justify-content: center;
       align-items: center;
       text-align: center;
       display: flex;
       flex-direction: column;
       gap: 0.35rem;
     }
     .dishaprofile-content-panel::before {
       content: "";
       display: block;
       width: 150px;
       height: 150px;
       border-radius: 50%;
       background-image: url("../src/Dr_Disha_Bafna.jpg");
       background-size: cover;
       background-position: center top;
       border: 4px solid var(--dp-gold-pale);
       box-shadow: 0 8px 30px rgba(11, 29, 58, 0.15);
       flex-shrink: 0;
     }
     .dishaprofile-eyebrow {
       display: none;
     }
     .dishaprofile-heading {
       font-size: 1.7rem;
       margin-bottom: 0;
       text-align: center;
     }
     .dishaprofile-body-text {
       font-size: 0.78rem;
       line-height: 1.6;
       margin-bottom: 0;
       text-align: center;
     }
     .dishaprofile-actions {
       justify-content: center;
       gap: 8px;
       flex-wrap: wrap;
       margin-top: 0.1rem;
     }
     .dishaprofile-btn-primary,
     .dishaprofile-btn-outline {
       font-size: 0.67rem;
       padding: 0.5rem 1rem;
     }
   }
   
   @media (max-width: 575.98px) {
     .dishaprofile-content-panel {
       padding: 0.5rem 1.2rem 0.6rem;
       gap: 0.3rem;
     }
     .dishaprofile-content-panel::before {
       width: 130px;
       height: 130px;
       background-position: center top;
     }
     .dishaprofile-heading {
       font-size: 1.5rem;
     }
     .dishaprofile-body-text {
       font-size: 0.73rem;
       line-height: 1.55;
     }
   }
   
   /* ============================================================
         PAST WORK EXPERIENCE SECTION
         All selectors scoped with .dishaprofile-work-* prefix
         ============================================================ */
   
   .dishaprofile-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;
     position: relative;
     overflow: hidden;
     height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     box-sizing: border-box;
   }
   
   .dishaprofile-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;
   }
   
   .dishaprofile-work-col-head {
     margin-bottom: 1.2rem;
     text-align: center;
   }
   
   .dishaprofile-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;
   }
   
   .dishaprofile-work-col-rule {
     margin: 0 auto;
     width: 48px;
     height: 3px;
     background: linear-gradient(90deg, var(--dp-gold), var(--dp-gold-light));
     border-radius: 2px;
   }
   
   .dishaprofile-work-logo-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 0.8rem;
     align-items: stretch;
     max-width: 720px;
     margin: 0 auto;
   }
   
   .dishaprofile-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;
     min-height: 160px;
     height: 100%;
     position: relative;
     transition: box-shadow 0.35s var(--dp-ease), border-color 0.35s var(--dp-ease),
       transform 0.35s var(--dp-ease);
   }
   
   .dishaprofile-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));
     border-radius: 0 0 var(--dp-radius) var(--dp-radius);
     transform: scaleX(0);
     transform-origin: center;
     transition: transform 0.4s var(--dp-ease);
   }
   
   .dishaprofile-work-logo-card:hover {
     box-shadow: var(--dp-shadow-hover);
     border-color: rgba(184, 146, 42, 0.25);
     transform: translateY(-5px);
   }
   
   .dishaprofile-work-logo-card:hover::before {
     transform: scaleX(1);
   }
   
   .dishaprofile-work-img-wrap {
     width: 100%;
     height: 180px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
   }
   
   .dishaprofile-work-logo-img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     object-position: center;
     transition: transform 0.35s var(--dp-ease);
   }
   
   .dishaprofile-work-logo-card:hover .dishaprofile-work-logo-img {
     transform: scale(1.07);
   }
   
   .dishaprofile-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);
   }
   
   .dishaprofile-work-reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.6s var(--dp-ease), transform 0.6s var(--dp-ease);
   }
   
   .dishaprofile-work-reveal.dp-work-revealed {
     opacity: 1;
     transform: translateY(0);
   }
   
   @media (max-width: 991.98px) {
     .dishaprofile-work-section {
       height: 100vh;
       height: 100dvh;
       overflow: hidden;
       padding: 0;
       justify-content: center;
     }
     .dishaprofile-work-section .container {
       padding-left: 0.75rem;
       padding-right: 0.75rem;
       max-width: 100%;
     }
     .dishaprofile-work-col-title {
       font-size: 1.6rem;
     }
     .dishaprofile-work-col-head {
       margin-top: -2rem;
       margin-bottom: 0.4rem;
     }
     .dishaprofile-work-logo-grid {
       gap: 0.5rem;
       max-width: 100%;
       margin-top: 2rem;
     }
     .dishaprofile-work-logo-card {
       min-height: 220px;
       padding: 0.8rem;
     }
     .dishaprofile-work-img-wrap {
       height: 190px;
     }
   }
   
   @media (max-width: 575.98px) {
     .dishaprofile-work-section .container {
       padding-left: 0.6rem;
       padding-right: 0.6rem;
     }
     .dishaprofile-work-col-title {
       font-size: 1.3rem;
     }
     .dishaprofile-work-col-head {
       margin-top: -1.5rem;
       margin-bottom: 0.3rem;
     }
     .dishaprofile-work-logo-grid {
       margin-top: 1.5rem;
     }
     .dishaprofile-work-logo-card {
       min-height: 195px;
       padding: 0.6rem;
     }
     .dishaprofile-work-img-wrap {
       height: 165px;
     }
   }
   