

    /* ── CLEAN HERO (From general-surgery-1) ── */
    .clean-hero {
      position: relative;
      background: url(images/pushpanjali-doctor.jpg) top/cover no-repeat fixed;
      min-height: 75vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .clean-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(253, 252, 252, 1) 0%, rgba(253, 252, 252, 0.85) 45%, rgba(253, 252, 252, 0) 100%);
      z-index: 1;
    }

    .ch-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 0 32px;
      animation: fadeRight 1s ease-out;
    }

    .ch-content {
      max-width: 650px;
    }

    .ch-tag {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--teal);
      margin-bottom: 16px;
      display: inline-block;
      background: color-mix(in srgb, var(--teal) 10%, transparent);
      padding: 6px 16px;
      border-radius: 30px;
    }

    .ch-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      color: var(--teal-dark);
      margin-bottom: 20px;
      line-height: 1.1;
      font-weight: 700;
    }

    .ch-content p {
      font-size: 1.15rem;
      color: var(--gray);
      margin-bottom: 30px;
      line-height: 1.7;
    }

    /* ── PAGE LAYOUT ── */
    .page-layout {
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 32px 100px;
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 60px;
      align-items: start;
    }

    /* Sidebar Nav */
    .sidebar-container {
      position: sticky;
      top: 120px;
    }

    .nav-widget {
      background: #fff;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      border: 1px solid var(--light-gray);
    }

    .nw-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--dark);
      margin-bottom: 20px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nw-title::before {
      content: '';
      display: block;
      width: 6px;
      height: 24px;
      background: var(--teal);
      border-radius: 4px;
    }

    .filter-links {
      list-style: none;
    }

    .filter-links li {
      margin-bottom: 12px;
    }

    .filter-links li:last-child {
      margin-bottom: 0;
    }

    .filter-btn {
      width: 100%;
      text-align: left;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: var(--light-gray);
      color: var(--gray);
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
    }

    .filter-btn::after {
      content: '→';
      opacity: 0;
      transition: all 0.3s;
      transform: translateX(-10px);
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--teal);
      color: #fff;
      box-shadow: 0 8px 20px color-mix(in srgb, var(--teal) 30%, transparent);
      padding-left: 24px;
    }

    .filter-btn:hover::after,
    .filter-btn.active::after {
      opacity: 1;
      transform: translateX(0);
    }

    /* Main Content - Horizontal Cards */
    .docs-list-header {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      color: var(--dark);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .docs-list-desc {
      font-size: 1.1rem;
      color: var(--gray);
      margin-bottom: 40px;
    }

    .doc-row {
      position: relative;
      display: flex;
      gap: 30px;
      background: #fff;
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.03);
      margin-bottom: 30px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .doc-row:hover {
      box-shadow: 0 20px 50px color-mix(in srgb, var(--teal) 15%, transparent);
      transform: translateY(-8px);
      border-color: transparent;
    }

    .doc-avatar {
      width: 240px;
      height: 280px;
      flex-shrink: 0;
      border-radius: 16px;
      overflow: hidden;
      background: var(--light-gray);
      position: relative;
    }

    .doc-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      object-position: top;
    }

    .doc-row:hover .doc-avatar img {
      transform: scale(1.05);
    }

    .doc-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .dd-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
      flex-wrap: wrap;
      gap: 10px;
      padding-right: 50px;
    }

    .dd-header h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      color: var(--teal-dark);
      font-weight: 700;
    }

    .doc-badge {
      background: color-mix(in srgb, var(--gold) 15%, transparent);
      color: var(--gold);
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .dd-degree {
      font-size: 1.05rem;
      color: var(--teal);
      font-weight: 600;
      margin-bottom: 12px;
    }

    .dd-desc {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .dd-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
      padding-top: 14px;
      border-top: 1px solid var(--light-gray);
      flex-wrap: wrap;
      gap: 16px;
    }

    .dd-schedule {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.95rem;
      color: var(--gray);
      font-weight: 500;
    }

    .dd-schedule .icon {
      font-size: 1.2rem;
      color: var(--teal-light);
    }

    .btn-outline-teal {
      border: 2px solid var(--teal);
      color: var(--teal);
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-outline-teal:hover {
      background: var(--teal);
      color: #fff;
      box-shadow: 0 8px 24px color-mix(in srgb, var(--teal) 30%, transparent);
    }

    /* ── CTA ── */
    .cta-section {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 10%, transparent) 0%, transparent 60%);
    }

    .cta-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 28px;
    }

    .cta-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .cta-text p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-ghost {
      background: transparent;
      border: 2px solid var(--gold);
      color: var(--gold-light);
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 0 20px color-mix(in srgb, var(--gold) 15%, transparent);
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-ghost:hover {
      background: var(--gold);
      color: var(--dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px color-mix(in srgb, var(--gold) 40%, transparent);
      border-color: var(--gold);
    }

    .btn-white {
      background: #fff;
      color: var(--teal-dark);
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.92rem;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    }



    
    /* Share Icon Styles */
    .card-share-wrap {
      position: absolute;
      top: 24px;
      right: 24px;
      z-index: 10;
    }

    .share-icon-btn {
      background: var(--light-gray);
      border: none;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--teal-dark);
      transition: all 0.3s;
    }

    .share-icon-btn:hover,
    .card-share-wrap:hover .share-icon-btn,
    .card-share-wrap:focus-within .share-icon-btn {
      background: var(--teal);
      color: #fff;
    }

    .social-icons-dropdown {
      position: absolute;
      top: 40px;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }

    .card-share-wrap:hover .social-icons-dropdown,
    .card-share-wrap:focus-within .social-icons-dropdown {
      opacity: 1;
      visibility: visible;
    }

    .social-icons-dropdown a {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transform: translateY(-10px) scale(0.8);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transition-delay: calc(0.05s * var(--i));
      text-decoration: none;
    }

    .card-share-wrap:hover .social-icons-dropdown a,
    .card-share-wrap:focus-within .social-icons-dropdown a {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .social-icons-dropdown a:hover {
      background: var(--teal);
      color: #fff;
    }




    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .page-layout {
        grid-template-columns: 250px 1fr;
        gap: 40px;
      }

      .doc-row {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 20px;
      }

      .doc-avatar {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        margin-bottom: 10px;
      }

      .dd-header {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding-right: 0;
      }

      .dd-schedule {
        justify-content: center;
        width: 100%;
        margin-bottom: 15px;
      }
    }

    @media(max-width:768px) {
      .ch-content h1 {
        font-size: 2rem;
      }

    .doctors-wrapper{
      width: 100vw;
      padding-right: 10px;
    }      

      .page-layout {
        grid-template-columns: 1fr;
        padding: 40px 15px;
      }

      .sidebar-container {
        position: static;
        margin-bottom: 20px;
        width: 100vw;
      }

      .filter-links {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
      }

      .filter-links li {
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .filter-btn {
        white-space: nowrap;
        padding: 10px 16px;
      }

      .filter-btn::after {
        display: none;
      }

      /* Enhanced mobile styling */
      .docs-list-header {
        font-size: 1.8rem;
        text-align: center;
      }
      
      .docs-list-desc {
        text-align: center;
      }

      .doc-row {
        display: flex;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 30px 15px !important;
        margin-bottom: 24px !important;
        border-radius: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .doc-avatar {
        width: 140px !important;
        height: 140px !important;
        border-radius: 50% !important;
        margin: 0 auto 15px auto !important;
        display: block !important;
      }

      .dd-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-right: 0 !important;
        width: 100% !important;
      }

      .dd-header h4 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
      }

      .doc-badge {
        margin-bottom: 15px !important;
      }

      .dd-bottom {
        flex-direction: column;
        align-items: stretch;
      }

      .dd-bottom > div[style*="display: flex"] {
        flex-direction: column !important;
        width: 100% !important;
      }

      .btn-outline-teal {
        width: 100%;
        text-align: center;
        padding: 12px 20px !important;
      }

      .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
      }

      .cta-actions {
        justify-content: center;
      }
      
      .cta-text h2 {
        font-size: 1.8rem;
      }
    }

    @media(max-width:480px) {
      .doc-row {
        padding: 24px 15px;
      }
      .doc-avatar {
        width: 130px;
        height: 130px;
      }
      .card-share-wrap {
        top: 16px;
        right: 16px;
      }
    }
