 /* ============================================================
   PAGE-SPECIFIC STYLES — About page only.
   Kept inline here so the shared style.css / main.js stay untouched.
   ============================================================ */

    /* STORY SPLIT — 50/50 text + image */
    .story-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .story-text p {
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 20px;
      color: var(--ink-muted);
    }

    .story-text p:last-child {
      margin-bottom: 0;
    }

    .story-text .story-emphasis {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 500;
      font-size: 21px;
      color: var(--ink);
      line-height: 1.4;
    }

    .story-media img {
      width: 100%;
      height: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: grayscale(1);
    }

    @media (max-width: 800px) {
      .story-split {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .story-media {
        order: -1;
      }
    }

    /* VISION / MISSION BLOCKS */
    .vm-divider {
      border: none;
      border-top: 1px solid var(--line);
      max-width: 1140px;
      margin: 0 auto 56px;
    }

    .vm-block {
      max-width: 1140px;
      margin: 0 auto 40px;
    }

    .vm-block:last-child {
      margin-bottom: 0;
    }

    .vm-block h3 {
      font-size: 24px;
      margin-bottom: 14px;
    }

    .vm-block .vm-quote {
      font-size: 17px;
      line-height: 1.75;
      color: var(--ink-muted);
      font-style: italic;
    }

    /* BOARD OF DIRECTORS — dark cards */
    .director-grid {
      gap: 28px;
      border: none;
    }

    .dcard {
      background: var(--ink);
      border: 1px solid rgba(255, 255, 255, 0.14);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    }

    .dcard:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    }

    .dcard img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      filter: grayscale(1);
      transition: transform 0.5s var(--ease);
    }

    .dcard:hover img {
      transform: scale(1.04);
    }

    .dcard-body {
      padding: 20px 22px 26px;
    }

    .dcard-body h3 {
      font-family: var(--font-body);
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      color: var(--paper);
      letter-spacing: 0.01em;
    }

    .dcard-body p {
      font-size: 11px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 6px;
    }

    .dcard-read {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      font-family: var(--font-body);
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
    }

    .dcard:hover .dcard-read {
      color: var(--paper);
    }

    /* SENIOR MANAGEMENT — light cards, 12 in 3x4 */
    .mgmt-grid {
      gap: 24px;
    }

    .mcard {
      border: 1px solid var(--line);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    }

    .mcard:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

    .mcard img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      filter: grayscale(1);
      transition: transform 0.5s var(--ease);
    }

    .mcard:hover img {
      transform: scale(1.04);
    }

    .mcard h3 {
      font-family: var(--font-body);
      font-style: normal;
      font-weight: 600;
      font-size: 14.5px;
      color: var(--ink);
      margin: 16px 20px 0;
    }

    .mcard p {
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin: 6px 20px 16px;
    }

    .mcard-read {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin: 0 20px 18px;
      font-family: var(--font-body);
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-muted);
    }

    .mcard:hover .mcard-read {
      color: var(--ink);
    }

    /* ── PERSON POPUP MODAL ─────────────────────────────────── */
    .person-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.52);
      z-index: 900;
      align-items: center;
      justify-content: center;
      padding: 24px;
      backdrop-filter: blur(4px);
    }

    .person-overlay.open {
      display: flex;
    }

    .person-modal {
      background: var(--paper);
      max-width: 820px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      animation: modalIn 0.3s ease;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .person-modal-info {
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .person-modal-name-block {
      border-left: 3px solid #2a6dbc;
      padding-left: 18px;
      margin-bottom: 28px;
    }

    .person-modal-name-block h2 {
      font-size: 22px;
      font-family: var(--font-body);
      font-weight: 600;
      color: var(--ink);
      margin: 0 0 6px;
      font-style: normal;
    }

    .person-modal-name-block p {
      font-size: 13px;
      color: var(--ink-muted);
      letter-spacing: 0.01em;
      margin: 0;
    }

    .person-modal-bio {
      font-size: 14.5px;
      line-height: 1.75;
      color: var(--ink);
    }

    .person-modal-photo {
      position: relative;
      overflow: hidden;
    }

    .person-modal-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1);
      display: block;
    }

    .person-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border: 1px solid var(--line);
      background: var(--paper);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--ink);
      z-index: 10;
      line-height: 1;
    }

    .person-modal-close:hover {
      background: var(--ink);
      color: var(--paper);
    }

    @media (max-width: 680px) {
      .person-modal {
        grid-template-columns: 1fr;
      }

      .person-modal-photo {
        aspect-ratio: 1/1;
      }
    }

    /* OUR GLOBAL NETWORK */
    .network-grid {
      gap: 0;
    }

    .ncard {
      padding: 32px 36px 32px 0;
      border-right: 1px solid var(--line);
    }

    .network-grid.grid>.ncard:last-child {
      border-right: none;
    }

    .network-grid.grid>.ncard:not(:first-child) {
      padding-left: 36px;
    }

    .ncard h3 {
      font-size: 19px;
      margin-bottom: 12px;
    }

    .ncard .ntag {
      display: block;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .ncard p {
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--ink-muted);
    }

    .ncard .ncontact {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 18px;
      font-size: 13px;
      color: var(--ink);
    }

    @media (max-width: 800px) {
      .network-grid.grid {
        grid-template-columns: 1fr;
      }

      .ncard,
      .network-grid.grid>.ncard:not(:first-child) {
        padding: 28px 0;
        border-right: none;
      }

      .network-grid.grid>.ncard {
        border-bottom: 1px solid var(--line);
      }

      .network-grid.grid>.ncard:last-child {
        border-bottom: none;
      }
    }

    /* READ MORE — article cards */
    .readmore-grid {
      gap: 32px 40px;
    }

    .rcard {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .rcard img {
      width: 130px;
      height: 95px;
      object-fit: cover;
      flex-shrink: 0;
      filter: grayscale(1);
      transition: transform 0.4s var(--ease);
    }

    .rcard:hover img {
      transform: scale(1.04);
    }

    .rcard-body {
      display: flex;
      flex-direction: column;
    }

    .rcard .rtag {
      display: inline-block;
      align-self: flex-start;
      font-size: 10.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: 1px solid var(--line);
      padding: 3px 10px;
      color: var(--ink-muted);
      margin-bottom: 8px;
    }

    .rcard h3 {
      font-family: var(--font-body);
      font-style: normal;
      font-weight: 600;
      font-size: 15.5px;
      color: var(--ink);
      line-height: 1.35;
    }

    .rcard .rdate {
      font-size: 12px;
      color: var(--ink-muted);
      margin-top: 8px;
    }

    @media (max-width: 640px) {
      .readmore-grid {
        grid-template-columns: 1fr;
      }
    }
	
	
/* ============================================================
   PAGE-SPECIFIC STYLES — MPCVD page only.
   Kept inline here so the shared style.css / main.js stay untouched.
   ============================================================ */

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .why-item {
      padding: 36px 32px;
    }

    .why-item:not(:nth-child(3n)) {
      border-right: 1px solid var(--line);
    }

    .why-item:not(:nth-last-child(-n+3)) {
      border-bottom: 1px solid var(--line);
    }

    .why-item h3 {
      font-size: 18px;
      margin-bottom: 12px;
    }

    .why-item p {
      font-size: 14.5px;
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-item:not(:nth-child(3n)) {
        border-right: none;
      }

      .why-item:not(:nth-child(2n)) {
        border-right: 1px solid var(--line);
      }

      .why-item:not(:nth-last-child(-n+3)) {
        border-bottom: none;
      }

      .why-item:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid var(--line);
      }
    }

    @media (max-width: 600px) {
      .why-grid {
        grid-template-columns: 1fr;
      }

      .why-item:not(:nth-child(2n)) {
        border-right: none;
      }

      .why-item {
        border-right: none !important;
        border-bottom: 1px solid var(--line) !important;
      }

      .why-item:last-child {
        border-bottom: none !important;
      }
    }

    /* ============================================================
   ANNOTATED SYSTEM DIAGRAM
   ============================================================ */

    .diagram-frame {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
    }

    .diagram-frame>img {
      width: 100%;
      display: block;
    }

    .dg-placeholder {
      aspect-ratio: 16/9;
      border: 1.5px dashed var(--line);
      background: var(--smoke);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: var(--ink-muted);
    }

    .dg-placeholder svg {
      opacity: 0.5;
    }

    .dg-placeholder span {
      font-size: 12.5px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .dg-point {
      position: absolute;
    }

    .dg-dot {
      position: absolute;
      top: 0;
      left: 0;
      width: 8px;
      height: 8px;
      margin: -4px;
      border-radius: 50%;
      background: var(--ink);
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
    }

    .dg-line {
      position: absolute;
      top: -1px;
      height: 4px;
      stroke: var(--ink);
      stroke-width: 1.5;
    }

    .dg-line line {
      vector-effect: non-scaling-stroke;
    }

    .dg-line-r {
      left: 4px;
      width: 70px;
    }

    .dg-line-l {
      right: 4px;
      width: 70px;
    }

    .dg-label {
      position: absolute;
      top: -8px;
      white-space: nowrap;
      font-family: var(--font-body);
      font-size: 11.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink);
      font-weight: 500;
    }

    .dg-label-r {
      left: 78px;
    }

    .dg-label-l {
      right: 78px;
    }

    @media (max-width: 700px) {
      .dg-label {
        font-size: 9px;
      }

      .dg-line-r,
      .dg-line-l {
        width: 36px;
      }

      .dg-label-r {
        left: 44px;
      }

      .dg-label-l {
        right: 44px;
      }
    }
	
	
	
	  /* ============================================================
   PAGE-SPECIFIC STYLES — Diamonds page only.
   Kept inline here so the shared style.css / main.js stay untouched.
   ============================================================ */

    /* HERO IMAGE PLACEHOLDER */
    .hero-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: var(--ink);
      color: rgba(255, 255, 255, 0.45);
    }

    .hero-placeholder svg {
      opacity: 0.6;
    }

    .hero-placeholder span {
      font-size: 12.5px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* BLACK BANNER — left-aligned, line-separated, reduced side margins */
    .band-banner {
      padding: 44px 0;
    }

    .band-wrap {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .pill-row-lines {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .pill-plain {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.85);
      padding-right: 18px;
      border-right: 1px solid rgba(255, 255, 255, 0.25);
    }

    .pill-plain:last-child {
      border-right: none;
      padding-right: 0;
    }

    .band-banner .band-text {
      max-width: 720px;
      margin: 18px 0 0;
      text-align: left;
      font-size: 15.5px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.72);
    }

    .band-banner .btn-row {
      margin-top: 24px;
      justify-content: flex-start;
    }

    /* FIND YOUR CUT — light variant of cut-selector */
    .cut-selector-light {
      grid-template-columns: repeat(10, 1fr);
    }

    .cut-selector-light .cut-item {
      background: var(--paper);
      border: none;
      text-decoration: none;
      display: block;
      color: var(--ink);
    }

    .cut-selector-light .cut-item img {
      filter: none;
      transition: filter 0.25s ease;
    }

    .cut-selector-light .cut-item .cname {
      color: var(--ink);
    }

    .cut-selector-light .cut-item:hover {
      background: var(--paper);
    }

    .cut-selector-light .cut-item:hover img {
      filter: none;
      transform: scale(1.15);
    }

    .cut-selector-light .cut-item:hover .cname {
      color: var(--ink);
    }

    @media (max-width: 1100px) {
      .cut-selector-light {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    @media (max-width: 600px) {
      .cut-selector-light {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* WHICH SUITS YOUR BUSINESS — transparent boxes, equal size, heading above image */
    .split-cards-transparent {
      background: transparent;
      border: none;
      gap: 32px;
    }

    .split-cards-transparent .scard {
      background: transparent !important;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
    }

    .split-cards-transparent .scard:first-child,
    .split-cards-transparent .scard:first-child h3 {
      color: var(--ink);
    }

    .split-cards-transparent .scard:first-child p {
      color: var(--ink-muted);
    }

    .scard-heading {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 500;
      font-size: 24px;
      color: var(--ink);
      margin-bottom: 18px;
    }

    .split-cards-transparent .scard p {
      color: var(--ink-muted);
      font-size: 15px;
      line-height: 1.7;
      flex-grow: 1;
    }

    .scard-media {
      aspect-ratio: 16/9;
      overflow: hidden;
      margin-bottom: 20px;
      position: relative;
    }

    .scard-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .scard-media svg {
      opacity: 0.5;
    }

    .scard-media span {
      font-size: 11.5px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    @media (max-width: 800px) {
      .split-cards-transparent {
        grid-template-columns: 1fr;
      }
    }

    /* WHY ANJALI LABTECH — same structure as MPCVD page */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .why-item {
      padding: 36px 32px;
    }

    .why-item:not(:nth-child(3n)) {
      border-right: 1px solid var(--line);
    }

    .why-item:not(:nth-last-child(-n+3)) {
      border-bottom: 1px solid var(--line);
    }

    .why-item h3 {
      font-size: 18px;
      margin-bottom: 12px;
    }

    .why-item p {
      font-size: 14.5px;
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-item:not(:nth-child(3n)) {
        border-right: none;
      }

      .why-item:not(:nth-child(2n)) {
        border-right: 1px solid var(--line);
      }

      .why-item:not(:nth-last-child(-n+3)) {
        border-bottom: none;
      }

      .why-item:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid var(--line);
      }
    }

    @media (max-width: 600px) {
      .why-grid {
        grid-template-columns: 1fr;
      }

      .why-item:not(:nth-child(2n)) {
        border-right: none;
      }

      .why-item {
        border-right: none !important;
        border-bottom: 1px solid var(--line) !important;
      }

      .why-item:last-child {
        border-bottom: none !important;
      }
    }
	
	 .cert-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--paper);
      margin-bottom: 22px;
    }

    .cert-sep {
      color: rgba(255, 255, 255, 0.3);
    }

    .cert-copy {
      font-size: 17px;
      line-height: 1.6;
      max-width: 920px;
      margin-bottom: 32px;
      color: var(--paper);
    }

    .mangalsutra-card {
      margin-bottom: 28px;
      border: none !important;
      padding: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      transform: none !important;
    }

    .mangalsutra-card .feature-row {
      grid-template-columns: 0.70fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .mangalsutra-card .feature-row img {
      aspect-ratio: 4/3;
      object-fit: cover;
      width: 100%;
      display: block;
    }

    @media (max-width: 760px) {
      .mangalsutra-card .feature-row {
        grid-template-columns: 1fr;
      }
    }

    /* Tighten gap between hero text and next section */
    .hero-content {
      padding-bottom: 36px;
    }

    .hero+.bg-navy {
      padding-top: 40px;
    }
	
	/* ============================================================
   PAGE-SPECIFIC STYLES — Knowledge Center (LGD) page only.
   Kept inline here so the shared style.css / main.js stay untouched.
   ============================================================ */

    .feature-quote {
      margin-top: 22px;
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 500;
      font-size: 18px;
      line-height: 1.5;
      color: var(--ink);
    }

    /* BENEFITS ICON ROW */
    .benefit-icon-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
      text-align: center;
    }

    .bicon-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .bicon-item svg {
      color: var(--ink);
    }

    .bicon-item p {
      font-size: 13.5px;
      line-height: 1.5;
      color: var(--ink-muted);
      max-width: 150px;
    }

    @media (max-width: 900px) {
      .benefit-icon-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 20px;
      }
    }

    @media (max-width: 540px) {
      .benefit-icon-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }
	
	
style>
    /* ============================================================
   PAGE-SPECIFIC STYLES — Jewellery Manufacturing Process page only.
   Kept inline here so the shared style.css / main.js stay untouched.
   ============================================================ */

    .pstep-card {
      display: flex;
      flex-direction: column;
    }

    .pstep-media {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      margin-bottom: 18px;
    }

    .pstep-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1);
    }

    .pstep-no {
      position: absolute;
      top: 12px;
      left: 12px;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--paper);
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 600;
      font-size: 19px;
      color: var(--ink);
    }

    .pstep-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .pstep-card p {
      font-size: 13.5px;
      line-height: 1.65;
      color: var(--ink-muted);
    }

    /* STEP GRID — flat 12-card grid, 3 per row, slide-in-from-right reveal */
    .step-grid-12 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px 32px;
    }

    @media (max-width: 800px) {
      .step-grid-12 {
        grid-template-columns: 1fr 1fr;
        gap: 32px 22px;
      }
    }

    @media (max-width: 540px) {
      .step-grid-12 {
        grid-template-columns: 1fr;
      }
    }

    .slide-right.reveal {
      transform: translateX(60px);
      transition: opacity 1.6s var(--ease), transform 1.6s var(--ease);
    }

    .slide-right.reveal.in {
      transform: translateX(0);
    }

    .step-grid-12 .slide-right:nth-child(3n+1) {
      transition-delay: 0ms;
    }

    .step-grid-12 .slide-right:nth-child(3n+2) {
      transition-delay: 280ms;
    }

    .step-grid-12 .slide-right:nth-child(3n+3) {
      transition-delay: 560ms;
    }
	
.plf-0 .why-item:first-child {
    padding-left: 0;
}
.plf-0 .why-item {
    flex: 1;
    padding: 0 36px;
}
.cinfo-global .ncard:first-child {
    padding-left: 0;
}
.cinfo-global .ncard {
    flex: 1;
    padding: 0 32px;
}
section.cinfo-global {
    background: #fff;
}
section.cinfo-global .ncard p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
section.cinfo-global .ncard .ntag {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 14px;
}
section.cinfo-global .ncard h3{
	    font-size: 21px;
    margin-bottom: 4px;
}
.forminator-label{
	display: block;
    font-size: 11.5px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
	font-weight: 400  !important;
    color:rgba(0, 0, 0, 0.6);
    margin-bottom: 7px !important;
} 

.forminator-ui.forminator-custom-form[data-design=default] select.forminator-select2+.forminator-select {
    background: #fff; 
} 

.forminator-ui#forminator-module-623.forminator-design--default .forminator-select2 + .forminator-select .selection .select2-selection--single[role="combobox"] {
    border:1px solid var(--line) !important;
}
.forminator-select.forminator-select-dropdown-container--open .forminator-select-dropdown.forminator-dropdown--default {
    background: #fff !important;
}



 /* ── JEWELLERY CATEGORY BANNER ── */
    .cat-banner {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--paper);
      overflow-x: auto;
      scrollbar-width: none;
    }

    .cat-banner::-webkit-scrollbar {
      display: none;
    }

    .cat-banner-inner {
      display: flex;
      align-items: stretch;
      justify-content: center;
      min-width: max-content;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .cat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 18px 28px;
      text-decoration: none;
      color: var(--ink-muted);
      font-family: var(--font-body);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.25s;
      flex-shrink: 0;
      border-bottom: 2px solid transparent;
    }

    .cat-item::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .cat-item:hover {
      color: var(--ink);
    }

    .cat-item:hover::after {
      transform: scaleX(1);
    }

    .cat-item.active {
      color: var(--ink);
      border-bottom-color: var(--ink);
    }

    .cat-item.active::after {
      display: none;
    }

    .cat-thumb {
      width: 52px;
      height: 52px;
      overflow: hidden;
      background: var(--smoke);
      flex-shrink: 0;
    }

    .cat-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1);
      transition: transform 0.5s ease;
      display: block;
    }

    .cat-item:hover .cat-thumb img {
      transform: scale(1.1);
    }

    .cat-item.active .cat-thumb {
      outline: 1.5px solid var(--ink);
      outline-offset: 2px;
    }

    /* Style filter sidebar */
    .ring-shop {
      display: flex;
      gap: 56px;
      align-items: flex-start;
    }

    .ring-filter {
      width: 260px;
      flex-shrink: 0;
      position: sticky;
      top: 28px;
      align-self: flex-start;
      max-height: calc(100vh - 48px);
      overflow-y: auto;
    }

    .ring-filter h3 {
      font-size: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 6px;
    }

    .ring-filter-list {
      display: flex;
      flex-direction: column;
    }

    .ring-filter-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: none;
      border: none;
      border-bottom: 1px solid var(--line);
      padding: 16px 0;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--ink);
      text-align: left;
    }

    .ring-filter-list .ring-filter-item:last-child {
      border-bottom: none;
    }

    .ring-radio {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1.5px solid var(--ink);
      flex-shrink: 0;
      position: relative;
    }

    .ring-filter-item.active .ring-radio::after {
      content: '';
      position: absolute;
      inset: 3px;
      border-radius: 50%;
      background: var(--ink);
    }

    .ring-clear-row {
      margin-top: 18px;
    }

    .ring-clear-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: 1px solid var(--ink);
      padding: 10px 18px;
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--ink);
      cursor: pointer;
    }

    .ring-clear-btn:hover {
      background: var(--ink);
      color: var(--paper);
    }

    /* Ring cards */
    .ring-results {
      flex: 1;
      min-width: 0;
    }

    .ring-count {
      font-size: 13.5px;
      color: var(--ink-muted);
      margin-bottom: 20px;
    }

    .ring-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .ring-card {
      background: var(--paper);
      border: 1px solid var(--line);
      overflow: hidden;
      transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    }

    .ring-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    }

    .ring-card-media {
      aspect-ratio: 1/1;
      background: var(--smoke);
      overflow: hidden;
    }

    .ring-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover; 
    }

    .ring-card:hover .ring-card-media img {
      transform: scale(1.06);
    }

    .ring-card-body {
      padding: 20px 22px 22px;
    }

    .ring-card-body h3 {
      font-size: 19px;
      margin-bottom: 6px;
    }

    .ring-spec {
      font-size: 13.5px;
      color: var(--ink-muted);
    }

    .ring-sku {
      font-size: 12.5px;
      color: var(--ink-muted);
      margin-top: 2px;
      margin-bottom: 18px;
    }

    .ring-order-btn {
      display: inline-block;
      width: 100%;
      text-align: center;
      background: none;
      border: 1px solid var(--ink);
      padding: 13px 0;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--ink);
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s var(--ease);
    }

    .ring-order-btn:hover {
      background: var(--ink);
      color: var(--paper);
    }

    /* Pagination */
    .ring-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 48px;
    }

    .ring-page-btn {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: 1px solid var(--line);
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--ink);
      cursor: pointer;
    }

    .ring-page-btn.active {
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
    }

    .ring-page-btn:hover:not(.active) {
      border-color: var(--ink);
    }

    .ring-page-arrow {
      border: none;
      background: none;
      font-size: 16px;
      color: var(--ink);
      cursor: pointer;
      padding: 0 4px;
    }

    .ring-page-arrow:disabled {
      color: var(--line);
      cursor: default;
    }

    @media (max-width: 900px) {
      .ring-shop {
        flex-direction: column;
      }

      .ring-filter {
        width: 100%;
        position: static;
        max-height: none;
      }

      .ring-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .ring-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Shop layout */
    .dmd-shop {
      display: flex;
      gap: 56px;
      align-items: flex-start;
    }

    .dmd-filter {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 28px;
    align-self: flex-start;
    overflow-y: auto;
    max-height: 100vh;
}

    /* Accordion sections */
    .dmd-acc {
      border-bottom: 1px solid var(--ink);
      padding-bottom: 14px;
      margin-bottom: 22px;
    }

    .dmd-acc-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0 0 14px;
      font-family: var(--font-display);
      font-size: 21px;
      color: var(--ink);
      text-align: left;
    }

    .dmd-acc-head .info-q {
      font-size: 13px;
      color: var(--ink-muted);
      border: 1px solid var(--ink-muted);
      border-radius: 50%;
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 6px;
      font-family: var(--font-body);
    }

    .dmd-acc-chevron {
      font-size: 14px;
      transition: transform 0.3s var(--ease);
      color: var(--ink);
    }

    .dmd-acc.open .dmd-acc-chevron {
      transform: rotate(180deg);
    }

    .dmd-acc-body {
      display: none;
      padding-top: 4px;
    }

    .dmd-acc.open .dmd-acc-body {
      display: block;
    }

    .dmd-acc.no-toggle .dmd-acc-head {
      cursor: default;
    }

    /* Shape grid */
    .shape-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }

    .shape-btn {
      aspect-ratio: 1/1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--smoke);
      border: 1.5px solid transparent;
      cursor: pointer;
      padding: 10px;
    }

    .shape-btn svg {
      width: 100%;
      height: 100%;
      stroke: var(--ink);
      fill: none;
      stroke-width: 1.3;
    }

    .shape-btn.active {
      border-color: var(--ink);
      background: var(--paper);
    }

    .shape-btn:hover {
      border-color: var(--ink-muted);
    }

    .shape-label {
      font-size: 11px;
      text-align: center;
      margin-top: 6px;
      color: var(--ink-muted);
      display: none;
    }

    /* Carat slider */
    .carat-slider-wrap {
      padding: 14px 2px 4px;
    }

    .carat-slider {
      position: relative;
      height: 36px;
    }

    .carat-slider .track-bg {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--line);
      transform: translateY(-50%);
      border-radius: 2px;
    }

    .carat-slider .range-fill {
      position: absolute;
      top: 50%;
      height: 2px;
      background: var(--ink);
      transform: translateY(-50%);
      border-radius: 2px;
    }

    .carat-slider input[type="range"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 36px;
      margin: 0;
      padding: 0;
      background: transparent;
      border: none;
      outline: none;
      pointer-events: none;
    }

    .carat-slider input[type="range"]::-webkit-slider-runnable-track {
      -webkit-appearance: none;
      height: 36px;
      background: transparent;
      border: none;
      box-shadow: none;
    }

    .carat-slider input[type="range"]::-moz-range-track {
      height: 36px;
      background: transparent;
      border: none;
      box-shadow: none;
    }

    .carat-slider input[type="range"]::-moz-range-progress {
      background: transparent;
    }

    .carat-slider input[type="range"]::-ms-track {
      height: 36px;
      background: transparent;
      border-color: transparent;
      color: transparent;
    }

    .carat-slider input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      pointer-events: auto;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--paper);
      border: 2px solid var(--ink);
      cursor: pointer;
      margin-top: 9px;
      box-shadow: none;
    }

    .carat-slider input[type="range"]::-moz-range-thumb {
      pointer-events: auto;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--paper);
      border: 2px solid var(--ink);
      cursor: pointer;
      box-shadow: none;
    }

    .carat-inputs {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }

    .carat-inputs input {
      width: 84px;
      flex: none;
      border: 1px solid var(--line);
      padding: 11px 14px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--ink);
      background: var(--paper);
    }

    /* Checkbox-style filter lists (Cut / Colour / Clarity) */
    .check-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14.5px;
      color: var(--ink);
      cursor: pointer;
    }

    .check-box {
      width: 16px;
      height: 16px;
      border: 1.5px solid var(--ink-muted);
      flex-shrink: 0;
      position: relative;
    }

    .check-item input {
      display: none;
    }

    .check-item input:checked+.check-box {
      background: var(--ink);
      border-color: var(--ink);
    }

    .check-item input:checked+.check-box::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 1px;
      width: 4px;
      height: 8px;
      border: solid var(--paper);
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .dmd-clear-row {
      margin-top: 8px;
    }

    .dmd-clear-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: 1px solid var(--ink);
      padding: 10px 18px;
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--ink);
      cursor: pointer;
    }

    .dmd-clear-btn:hover {
      background: var(--ink);
      color: var(--paper);
    }

    /* Results column */
    .dmd-results {
      flex: 1;
      min-width: 0;
    }

    .dmd-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      flex-wrap: wrap;
      gap: 14px;
    }

    .cert-toggle {
      display: inline-flex;
      border: 1px solid var(--line);
    }

    .cert-toggle-btn {
      background: var(--paper);
      border: none;
      padding: 12px 22px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--ink-muted);
      cursor: pointer;
      border-right: 1px solid var(--line);
    }

    .cert-toggle-btn:last-child {
      border-right: none;
    }

    .cert-toggle-btn.active {
      background: var(--smoke);
      color: var(--ink);
    }

    .view-toggle {
      display: flex;
      gap: 8px;
    }

    .view-toggle-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      background: var(--paper);
      cursor: pointer;
      color: var(--ink-muted);
    }

    .view-toggle-btn.active {
      border-color: var(--ink);
      color: var(--ink);
      background: var(--smoke);
    }

    .view-toggle-btn svg {
      width: 18px;
      height: 18px;
    }

    /* Diamond cards */
    .dmd-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .dmd-grid.list-view {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .dmd-card {
      background: var(--paper);
      border: 1px solid var(--line);
      overflow: hidden;
      transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    }

    .dmd-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    }

    .dmd-card-media {
      aspect-ratio: 1/1;
      background: var(--smoke);
      overflow: hidden;
    }

    .dmd-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease);
    }

    .dmd-card:hover .dmd-card-media img {
      transform: scale(1.06);
    }

    .dmd-card-body {
      padding: 20px 22px 22px;
    }

    .dmd-card-body h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .dmd-spec {
      font-size: 13.5px;
      color: var(--ink-muted);
      margin-bottom: 18px;
    }

    .dmd-view-btn {
      display: inline-block;
      width: 100%;
      text-align: center;
      background: none;
      border: 1px solid var(--ink);
      padding: 13px 0;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--ink);
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s var(--ease);
    }

    .dmd-view-btn:hover {
      background: var(--ink);
      color: var(--paper);
    }

    /* List view layout overrides */
    .dmd-grid.list-view .dmd-card {
      display: flex;
      align-items: center;
    }

    .dmd-grid.list-view .dmd-card-media {
      width: 140px;
      height: 140px;
      aspect-ratio: auto;
      flex-shrink: 0;
    }

    .dmd-grid.list-view .dmd-card-body {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 24px;
    }

    .dmd-grid.list-view .dmd-card-body h3 {
      margin-bottom: 2px;
    }

    .dmd-grid.list-view .dmd-spec {
      margin-bottom: 0;
    }

    .dmd-grid.list-view .dmd-view-btn {
      width: auto;
      padding: 13px 26px;
      flex-shrink: 0;
    }

    .dmd-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 48px;
    }

    .dmd-page-btn {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: 1px solid var(--line);
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--ink);
      cursor: pointer;
    }

    .dmd-page-btn.active {
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
    }

    .dmd-page-arrow {
      border: none;
      background: none;
      font-size: 16px;
      color: var(--ink);
      cursor: pointer;
      padding: 0 4px;
    }

    .dmd-page-arrow:disabled {
      color: var(--line);
      cursor: default;
    }

    @media (max-width: 900px) {
      .dmd-shop {
        flex-direction: column;
      }

      .dmd-filter {
        width: 100%;
        position: static;
      }

      .dmd-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .dmd-grid.list-view .dmd-card {
        flex-direction: column;
      }

      .dmd-grid.list-view .dmd-card-media {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
      }

      .dmd-grid.list-view .dmd-card-body {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 560px) {
      .dmd-grid {
        grid-template-columns: 1fr;
      }

      .shape-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
	.ring-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
}

span.page-numbers.current {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.ring-pagination a.prev.page-numbers , .ring-pagination a.next.page-numbers {
    border: none;
    background: none;
    font-size: 16px;
    color: var(--ink);
    cursor: pointer;
    padding: 0 4px;
}


.diamond-specs {
    width: 100%;
    max-width: 450px;     margin-bottom: 10px;
}

.diamond-specs .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.diamond-specs .spec-label {
    color: #8b8b8b;
    font-size: 14px;
    font-weight:500;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.diamond-specs .spec-value {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: right;
}

/* List View Layout */
.dmd-grid.list-view .dmd-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dmd-grid.list-view .dmd-card-media {
    flex: 0 0 180px;
}

.dmd-grid.list-view .dmd-card-media img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.dmd-grid.list-view .dmd-card-body {
    flex: 1;
}

.dmd-grid.list-view .dmd-card-body h3 {
    margin: 0 0 15px;
}


/* Specs display below title in list view */
.dmd-grid .diamond-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.dmd-grid .diamond-specs .spec-row {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
}

.dmd-grid .diamond-specs .spec-row:not(:last-child)::after {
    content: ",";
    margin-left: 4px;
}

.dmd-grid .diamond-specs .spec-label {margin-right: 10px;}

.dmd-grid .diamond-specs .spec-value {
    font-size: 15px;color:rgba(0, 0, 0, 0.6);
}
.connect-with-right .section-head {
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.connect-with-right .card {
    text-align: center;
}
.connect-with-right img {
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 42px;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    color: #0093ab;
}
.app-grid-desc {
    font-size: 14px;
    color: var(--ink-muted);
    letter-spacing: 0.01em;
    line-height: 1.75;
    margin-top: 10px;
}
@media (max-width: 900px) {
	.connect-with-right .grid.grid-3 {
		grid-template-columns: repeat(1, 1fr);
	}
}

/*** 

====================================================================
  Breadcrumb css
====================================================================

***/
.breadcrumb-wrap { padding: 16px 0;}
.breadcrumb { display: flex; align-content: center; margin: 0; padding: 0; list-style: none;}
.breadcrumb li { position: relative; font-size: 15px; color: #374B5C; font-weight: 400;}
.breadcrumb li a {color: #374B5C;}
.breadcrumb li a:hover {color: var(--default);}
.breadcrumb li:not(:last-child) { padding-right: 20px;}
.breadcrumb li:not(:last-child):before { position: absolute; right: 7px; top: 1px;color: var(--default); content: "/";}
/*** 

====================================================================
  Blog Detail css
====================================================================

***/
/* Single Blog Page */
.single-post .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0px 15px;
}

/* Featured Image */
.single-post .img-holder {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 10px;
}

.single-post .img-holder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Blog Meta */
.blog-summery {
    font-size: 14px;
    color: #777;
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

/* Blog Content */
.single-post .wp-block-paragraph {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 22px;
}

/* Headings */
.single-post .wp-block-heading {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    margin: 40px 0 20px;
}

.single-post h3.wp-block-heading {
    font-size: 26px;
}

.single-post h4.wp-block-heading {
    font-size: 22px;
}

/* Lists */
.single-post .wp-block-list {
    margin: 20px 0 30px;
    padding-left: 25px;
}

.single-post .wp-block-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

/* Links */
.single-post .wp-block-paragraph a,
.single-post .wp-block-list a {
    color: #0066cc;
    text-decoration: underline;
}

.single-post .wp-block-paragraph a:hover,
.single-post .wp-block-list a:hover {
    color: #000;
}


/* Block Quote */
.single-post blockquote {
    border-left: 4px solid #111;
    padding: 15px 25px;
    margin: 30px 0;
    background: #f7f7f7;
    font-size: 18px;
    line-height: 1.6;
}


/* Mobile Responsive */
@media(max-width:767px){

    .single-post .container {
        padding: 25px 15px;
    }

    .single-post .wp-block-heading {
        font-size: 26px;
        margin-top: 30px;
    }

    .single-post .wp-block-paragraph,
    .single-post .wp-block-list li {
        font-size: 16px;
    }

    .blog-summery {
        font-size: 13px;
    }
}

/* Post Navigation */
.single-post .post-navigation {
    margin: 60px 0px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.single-post .post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.single-post .post-navigation .nav-previous,
.single-post .post-navigation .nav-next {
    width: 50%;
}

.single-post .post-navigation a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.single-post .meta-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 150px;
}

.single-post .nav-next .meta-nav {
    flex-direction: row-reverse;
    text-align: right;
}

.single-post .meta-nav:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* Post Image */
.single-post .meta-nav img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Date + Title */
.single-post .meta-summery {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    color: #222;
}


/* Arrow Icon */
.single-post .meta-nav svg {
    width: 35px !important;
    height: 35px;
    flex-shrink: 0;
    color: #111;
}


/* Screen Reader Hide */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* Mobile */
@media(max-width:767px){

    .single-post .post-navigation .nav-links {
        flex-direction: column;
    }

    .single-post .post-navigation .nav-previous,
    .single-post .post-navigation .nav-next {
        width:100%;
    }

    .single-post .meta-nav,
    .single-post .nav-next .meta-nav {
        flex-direction: row;
        text-align: left;
    }

    .single-post .meta-nav img {
        width:80px;
        height:80px;
    }

    .single-post .meta-summery {
        font-size:14px;
    }

    .single-post .meta-nav svg {
        width:25px !important;
    }
}/* Blog Social Share */
.single-post .social-share{
	 margin: 35px 0;
}
.single-post .social-media {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin:15px 0;
}

.single-post .social-media li {
    margin: 0;
}

.single-post .social-media li a {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #fff;
}

.single-post .social-media li a svg {
    max-width: 20px;
    max-height: 20px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.single-post .social-media li a:hover {
    background: #111;
    border-color: #111;
}

.single-post .social-media li a:hover svg path {
    fill: #fff;
}
.meta-summery {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.post-date {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

.post-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #222;
}
.byb-btn .btn-row {
    text-align: center;
    display: block;
}

/* Mobile */
@media(max-width:767px){

    .single-post .social-media {
        margin: 25px 0;
        gap: 10px;
    }

    .single-post .social-media li a {
        width: 36px;
        height: 36px;
    }

    .single-post .social-media li a svg {
        max-width: 16px;
        max-height: 16px;
    }
    
    .dmd-results .dmd-grid.list-view {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .dmd-results .dmd-grid.list-view .dmd-card {
        flex-direction: row;
        display: flex;
        align-items: flex-start;
        align-content: center;
    	 gap:5px;
    }
    .dmd-results .dmd-grid.list-view .dmd-card-media {
        flex: 0 0 120px;
        aspect-ratio: auto;
    }
    .dmd-results .dmd-grid.list-view .dmd-card-body h3 {
        margin: 0 0 8px;
    }
    .dmd-results .dmd-grid.list-view .dmd-card-body{
        padding: 5px 15px;
    }
}

@media (max-width: 900px) {
    .nav-toggle { 
        top:-50px; font-size: 26px;
    }
	.logo-row { 
		padding-top: 0px;
	}
	.site-header nav.nav-row {
		padding: 0;
	}.dropdown-caret{
		font-size:24px;margin-left: 10px;
	}.video-abt-intro video {
    order: 2;
}

.shape-btn svg {
    width:65%;
    height:65%; 
}.shape-grid { 
      gap:2px;
    }

}
.ring-order-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: none;
    border: 1px solid #888888;
    padding: 4px 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: #888;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    max-width: 125px;
    margin-top: 10px;
}
.nav-toggle{
    font-size: 26px;
}
/* Prevent body scroll */
body.menu-open {
    overflow: hidden;
} 
/* Toggle Button */
 button.nav-toggle {
    z-index: 999;
}
.nav-links.open{
    	overflow-y: auto;
}

.cat-item.active {
    border: 0px;
}

.cat-item:hover {
    border: 0px !important;
}
.cat-item::after,
.cat-item:hover::after {
    height: 0px  !important;
    content:none;
    transform: none !important; 
}

.our-impact-glance .inum {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.our-impact-glance .inum.animate {
    opacity: 1;
    transform: translateY(0);
}
@media(max-width:1000px){
.where-diamonds .grid.grid-3.reveal.in {
    grid-template-columns: 1fr;
}
}
@media(max-width:900px){
    .why-anjali .why-grid {
        grid-template-columns: 1fr !important;
    }
    .network-grid.grid>.ncard {
        padding: 28px 0;
        border-right: none;
    }
    .why-anjali .why-grid .why-item {padding: 15px;border-bottom: 1px solid var(--line) !important;border-right: 0px !important;}
   
    .why-anjali-labtech.why-anjali .why-grid {
          grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .why-anjali-labtech.why-anjali .why-grid .why-item {
             padding: 36px 32px;
    }
    
    .why-anjali-labtech.why-anjali .why-item:not(:nth-child(2n)) {
        border-right: 1px solid var(--line) !important;
    }
    
  .has-dropdown:hover .dropdown-caret{
        transform: none  !important;
    }
  .nav-links.open  li.has-dropdown.open .dropdown-caret{
            transform: translateY(1px) rotate(180deg)  !important;
    }
}

@media(max-width:800px){
    .three_industries  .divided-cols {
      grid-template-columns: 1fr !important;
    }
    
    .divided-cols .dcol:nth-child(-n+2) {
        border-top: 1px solid var(--line) !important;
    }
    
    .divided-cols .dcol:first-child {
        border-top: 0px !important;
    }
}
/* Mobile */
@media(max-width:767px){
    .grid.grid-3.events-grid , .jewe-collection .grid.grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .why-anjali-labtech.why-anjali .why-grid{
        gap: 0px !important;
    }
    .why-anjali-labtech.why-anjali .why-grid .why-item { 
        border-bottom: 1px solid var(--line) !important;
        padding: 22px 16px;
    }
     .jewe-collection .grid.grid-3 .btn-row a.btn {
        padding: 0px;
        word-break: break-word;
        display: block;font-size: 11px;
    }
    .jewe-collection .grid.grid-3 .card {
        padding: 10px;
    }
    .grid.grid-3 {
        grid-template-columns: 1fr !important;
    }
}


@media (max-width: 480px) {
    .person-modal-photo {
        aspect-ratio: unset;
        height: 300px;
        order: -1;
        overflow: hidden;
    }
    .person-modal-info {
        padding: 16px 16px 20px;
        min-width: 0;
        overflow: hidden;
    }
}