
  :root{
    --pj-navy-dark:   #16364a;
    --pj-navy:        #1f4e63;
    --pj-blue:        #4a86a8;
    --pj-blue-light:  #6fa3c2;
    --pj-cream:       #f6f3ec;
    --pj-gold:        #c8a04a;
    --pj-text-muted:  #6f8493;
  }

  .projects-section{
    background: var(--pj-cream);
    padding: 90px 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--pj-navy-dark);
    overflow: hidden;
  }

  /* ---------- Eyebrow ---------- */
  .pj-eyebrow{
    font-family: 'Poppins', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .25em;
    color: var(--pj-blue);
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  /* ---------- Header row ---------- */
  .pj-header-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 50px;
  }

  .pj-title{
    font-family: 'Poppins', serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: var(--pj-navy-dark);
    margin: 0;
    line-height: 1.15;
  }

  .pj-title em{
    font-style: italic;
    font-weight: 500;
    color: var(--pj-blue);
  }

  .pj-rule{
    width: 70px;
    height: 4px;
    background: var(--pj-gold);
    border-radius: 2px;
    margin-top: 18px;
  }

  .pj-intro{
    max-width: 420px;
    font-size: .92rem;
    line-height: 1.75;
    color: var(--pj-text-muted);
    text-align: right;
  }

  @media (max-width: 767px){
    .pj-intro{ text-align: left; max-width: 100%; }
  }

  /* ---------- Stat strip ---------- */
  .pj-stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 50px;
  }

  @media (max-width: 991px){
    .pj-stats{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px){
    .pj-stats{ grid-template-columns: 1fr; }
  }

  .pj-stat{
    background: var(--pj-navy-dark);
    border-radius: 6px;
    padding: 22px 26px;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
    position: relative;
    overflow: hidden;
  }

  .pj-stat::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(135deg, var(--pj-blue) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
  }

  .pj-stat:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(22,54,74,.25);
    background: var(--pj-navy);
  }

  .pj-stat:hover::after{ opacity: .35; }

  .pj-stat.is-accent{ background: var(--pj-blue); }
  .pj-stat.is-accent:hover{ background: var(--pj-blue-light); }

  .pj-stat-value{
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--pj-gold);
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .pj-stat.is-accent .pj-stat-value{
    color: #fff;
    font-family: 'Poppins', serif;
    /*font-style: italic;*/
  }

  .pj-stat-label{
    position: relative;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
  }

  /* ---------- Gallery ---------- */
  .pj-gallery{
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.1fr;
    gap: 16px;
  }

  @media (max-width: 991px){
    .pj-gallery{ grid-template-columns: 1fr 1fr; }
    .pj-gallery .pj-col:last-child{ grid-column: span 2; }
  }
  @media (max-width: 575px){
    .pj-gallery{ grid-template-columns: 1fr; }
    .pj-gallery .pj-col:last-child{ grid-column: span 1; }
  }

  .pj-col{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pj-img-wrap{
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #d9d4c8;
  }

  .pj-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform .6s cubic-bezier(.25,.8,.25,1), filter .6s ease;
  }

  .pj-img-wrap::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgba(22,54,74,.55) 0%, rgba(22,54,74,0) 55%);
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 1;
  }

  .pj-img-wrap::after{
    content: "\f00e"; /* search icon, fontawesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: 14px;
    left: 14px;
    color: #fff;
    font-size: .85rem;
    width: 34px;
    height: 34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease;
    z-index: 2;
  }

  .pj-img-wrap:hover img{
    transform: scale(1.07);
    filter: brightness(.92);
  }
  .pj-img-wrap:hover::before{ opacity: 1; }
  .pj-img-wrap:hover::after{ opacity: 1; transform: translateY(0); }

  .pj-h-tall   { aspect-ratio: 4 / 5; }
  .pj-h-short  { aspect-ratio: 4 / 2.4; }
  .pj-h-wide   { aspect-ratio: 16 / 10; }
  .pj-h-square { aspect-ratio: 1 / 1; }

  /* ---------- Footer credit ---------- */
  .pj-footer-note{
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(22,54,74,.12);
    display:flex;
    justify-content: space-between;
    align-items:center;
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pj-text-muted);
    flex-wrap: wrap;
    gap: 10px;
  }


    /* ── KAIA layout KAIA-Maintenance-Hangars.php ── */

  .kaia-section {
    background: var(--pj-cream);
    padding: 90px 0 60px;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
  }

  /* Header row: title left, intro right */
  .kaia-header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
  }

  .kaia-header-row .pj-title {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  }

  .kaia-intro {
    max-width: 380px;
    font-size: .85rem;
    line-height: 1.75;
    color: var(--pj-text-muted);
    text-align: right;
  }

  @media (max-width: 767px) {
    .kaia-intro { text-align: left; max-width: 100%; }
  }

  /* ── BODY: left stats grid | right image gallery ── */
  .kaia-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  @media (max-width: 767px) {
    .kaia-body { grid-template-columns: 1fr; }
  }

  /* Left: stat grid — 2 cols, last card full width */
  .kaia-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .kaia-stat {
    border-radius: 6px;
    padding: 20px 22px;
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .kaia-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(22,54,74,.2);
  }

  .kaia-stat.dark  { background: var(--pj-navy-dark); }
  .kaia-stat.blue  { background: var(--pj-blue); }
  .kaia-stat.outline {
    background: transparent;
    border: 1.5px solid rgba(22,54,74,.25);
    grid-column: span 2;
  }

  .kaia-stat-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .kaia-stat-val sup {
    font-size: .6rem;
    font-weight: 600;
    vertical-align: super;
  }

  .kaia-stat.dark  .kaia-stat-val,
  .kaia-stat.blue  .kaia-stat-val { color: #fff; }
  .kaia-stat.outline .kaia-stat-val { color: var(--pj-navy-dark); }

  .kaia-stat-lbl {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
  }

  .kaia-stat.dark  .kaia-stat-lbl,
  .kaia-stat.blue  .kaia-stat-lbl { color: rgba(255,255,255,.55); }
  .kaia-stat.outline .kaia-stat-lbl { color: var(--pj-text-muted); }

  /* Right: 2-col image gallery, left col has 2 stacked, right col has 2 stacked */
  .kaia-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .kaia-img-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .kaia-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #d9d4c8;
  }

  .kaia-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.8,.25,1), filter .5s ease;
  }

  .kaia-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,54,74,.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
  }

  .kaia-img-wrap:hover img {
    transform: scale(1.07);
    filter: brightness(.88);
  }

  .kaia-img-wrap:hover::before { opacity: 1; }

  .kaia-img-tall   { aspect-ratio: 4 / 3.2; }
  .kaia-img-short  { aspect-ratio: 4 / 2.4; }

  /* footer */
  .kaia-footer-note {
    margin-top: 52px;
    padding-top: 18px;
    border-top: 1px solid rgba(22,54,74,.12);
    display: flex;
    justify-content: space-between;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pj-text-muted);
    flex-wrap: wrap;
    gap: 8px;
  }


    /* ──layout MBC-Studio-Phase-1.php── */

  .sabic-section {
    background: var(--pj-cream);
    padding: 90px 0 0;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
  }

  /* Two columns: left = full-height image | right = content panel */
  .sabic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
  }

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

  /* ── LEFT: full-height image ── */
  .sabic-img {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    max-height: 700px;
  }

  .sabic-img a {
    display: block;
    height: 100%;
  }

  .sabic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform .8s cubic-bezier(.25,.8,.25,1), filter .6s ease;
  }

  .sabic-img:hover img {
    transform: scale(1.04);
    filter: brightness(.92);
  }

  /* ── RIGHT: content panel ── */
  .sabic-right {
    background: var(--pj-cream);
    padding: 60px 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  @media (max-width: 991px) {
    .sabic-right { padding: 48px 36px; }
  }

  @media (max-width: 767px) {
    .sabic-right { padding: 40px 24px; }
  }

  .sabic-right .pj-eyebrow {
    margin-bottom: 16px;
  }

  .sabic-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--pj-navy-dark);
    line-height: 1.15;
    margin: 0 0 4px;
  }

  .sabic-title-em {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--pj-blue);
    display: block;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .sabic-right .pj-rule {
    margin: 28px 0 28px;
  }

  .sabic-desc {
    font-size: .84rem;
    line-height: 1.82;
    color: var(--pj-text-muted);
    margin-bottom: 44px;
  }

  /* Vertical stat list — full width, stacked */
  .sabic-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
  }

  .sabic-stat {
    background: var(--pj-navy-dark);
    border-radius: 6px;
    padding: 18px 24px;
    transition: transform .35s ease, box-shadow .35s ease, background .3s ease;
  }

  .sabic-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(22,54,74,.22);
    background: var(--pj-navy);
  }

  .sabic-stat.blue {
    background: var(--pj-blue);
  }

  .sabic-stat.blue:hover {
    background: var(--pj-blue-light);
  }

  .sabic-stat-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--pj-gold);
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .sabic-stat.blue .sabic-stat-val {
    color: #fff;
  }

  .sabic-stat-val sup {
    font-size: .58rem;
    font-weight: 600;
    vertical-align: super;
  }

  .sabic-stat-lbl {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
  }

  /* footer */
  .sabic-footer-note {
    padding: 18px 0;
    margin-top: 0;
    border-top: 1px solid rgba(22,54,74,.12);
    display: flex;
    justify-content: space-between;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pj-text-muted);
    flex-wrap: wrap;
    gap: 8px;
  }

  .sabic-swiper .swiper-slide a {
  display: block;
  height: 100%;
}

.sabic-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sabic-swiper .swiper-button-prev,
.sabic-swiper .swiper-button-next {
  color: #fff;
}

.sabic-swiper .swiper-pagination-bullet-active {
  background: var(--pj-gold);
}
.sabic-swiper,
.sabic-swiper .swiper-wrapper,
.sabic-swiper .swiper-slide {
  height: 100% !important;
}

  /* ── layout MBC-Studio-Phase-2.php ── */

  .sabic-section {
    background: var(--pj-cream);
    padding: 90px 0 0;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
  }

  /* Two columns: left = full-height image | right = content panel */
  .sabic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
  }

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

  /* ── LEFT: full-height image ── */
  .sabic-img {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    max-height: 700px;
  }

  .sabic-img a {
    display: block;
    height: 100%;
  }

  .sabic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform .8s cubic-bezier(.25,.8,.25,1), filter .6s ease;
  }

  .sabic-img:hover img {
    transform: scale(1.04);
    filter: brightness(.92);
  }

  /* ── RIGHT: content panel ── */
  .sabic-right {
    background: var(--pj-cream);
    padding: 60px 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  @media (max-width: 991px) {
    .sabic-right { padding: 48px 36px; }
  }

  @media (max-width: 767px) {
    .sabic-right { padding: 40px 24px; }
  }

  .sabic-right .pj-eyebrow {
    margin-bottom: 16px;
  }

  .sabic-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--pj-navy-dark);
    line-height: 1.15;
    margin: 0 0 4px;
  }

  .sabic-title-em {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--pj-blue);
    display: block;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .sabic-right .pj-rule {
    margin: 28px 0 28px;
  }

  .sabic-desc {
    font-size: .84rem;
    line-height: 1.82;
    color: var(--pj-text-muted);
    margin-bottom: 44px;
  }

  /* Vertical stat list — full width, stacked */
  .sabic-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
  }

  .sabic-stat {
    background: var(--pj-navy-dark);
    border-radius: 6px;
    padding: 18px 24px;
    transition: transform .35s ease, box-shadow .35s ease, background .3s ease;
  }

  .sabic-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(22,54,74,.22);
    background: var(--pj-navy);
  }

  .sabic-stat.blue {
    background: var(--pj-blue);
  }

  .sabic-stat.blue:hover {
    background: var(--pj-blue-light);
  }

  .sabic-stat-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--pj-gold);
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .sabic-stat.blue .sabic-stat-val {
    color: #fff;
  }

  .sabic-stat-val sup {
    font-size: .58rem;
    font-weight: 600;
    vertical-align: super;
  }

  .sabic-stat-lbl {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
  }

  /* footer */
  .sabic-footer-note {
    padding: 18px 0;
    margin-top: 0;
    border-top: 1px solid rgba(22,54,74,.12);
    display: flex;
    justify-content: space-between;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pj-text-muted);
    flex-wrap: wrap;
    gap: 8px;
  }

  .sabic-swiper .swiper-slide a {
  display: block;
  height: 100%;
}

.sabic-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sabic-swiper .swiper-button-prev,
.sabic-swiper .swiper-button-next {
  color: #fff;
}

.sabic-swiper .swiper-pagination-bullet-active {
  background: var(--pj-gold);
}
.sabic-swiper,
.sabic-swiper .swiper-wrapper,
.sabic-swiper .swiper-slide {
  height: 100% !important;
}

  /* ── Abha-Entertainment-Center.php layout ── */

  .rs-section {
    background: var(--pj-cream);
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
    padding-top: 0;
  }

  /* ── HERO BANNER ── full-width image with overlaid title */
  .rs-hero {
    position: relative;
    width: 100%;
    height: clamp(280px, 42vw, 480px);
    overflow: hidden;
  }

  .rs-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform .8s cubic-bezier(.25,.8,.25,1);
  }

  .rs-hero:hover img {
    transform: scale(1.04);
  }

  /* dark gradient overlay so text is legible */
  .rs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(15,35,50,.35) 0%,
      rgba(15,35,50,.55) 60%,
      rgba(15,35,50,.75) 100%
    );
  }

  .rs-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 40px 36px;
  }

  .rs-hero-content .pj-eyebrow {
    color: rgba(255,255,255,.7);
    margin-bottom: 12px;
  }

  .rs-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin: 0;
    line-height: 1.15;
  }

  .rs-hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--pj-gold);
  }

  /* ── BODY ROW: left text | right 2x2 stats ── */
  .rs-body {
    padding: 52px 40px 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
  }

  @media (max-width: 767px) {
    .rs-body {
      grid-template-columns: 1fr;
      padding: 40px 24px;
      gap: 32px;
    }
    .rs-hero-content {
      padding: 24px 24px 28px;
    }
  }

  /* Left text block */
  .rs-left-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--pj-navy-dark);
    margin-bottom: 14px;
  }

  .rs-left-body {
    font-size: .85rem;
    line-height: 1.8;
    color: var(--pj-text-muted);
  }

  /* Right 2×2 stat grid */
  .rs-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .rs-stat {
    border-radius: 6px;
    padding: 20px 22px;
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .rs-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(22,54,74,.2);
  }

  /* filled dark cards */
  .rs-stat.dark {
    background: var(--pj-navy-dark);
  }

  .rs-stat.blue {
    background: var(--pj-blue);
  }

  /* outlined card */
  .rs-stat.outline {
    background: transparent;
    border: 1.5px solid var(--pj-navy-dark);
  }

  .rs-stat-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .rs-stat-val sup {
    font-size: .6rem;
    font-weight: 600;
    vertical-align: super;
  }

  .rs-stat.dark  .rs-stat-val,
  .rs-stat.blue  .rs-stat-val { color: #fff; }
  .rs-stat.outline .rs-stat-val {
    font-style: italic;
    font-weight: 500;
    color: var(--pj-navy-dark);
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .rs-stat-lbl {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
  }

  .rs-stat.dark  .rs-stat-lbl,
  .rs-stat.blue  .rs-stat-lbl { color: rgba(255,255,255,.55); }
  .rs-stat.outline .rs-stat-lbl { color: var(--pj-text-muted); }

  /* footer rule */
  .rs-footer-note {
    margin: 0 40px 0;
    padding: 18px 0;
    border-top: 1px solid rgba(22,54,74,.12);
    display: flex;
    justify-content: space-between;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pj-text-muted);
    flex-wrap: wrap;
    gap: 8px;
  }

  @media (max-width: 767px) {
    .rs-footer-note { margin: 0 24px; }
  }


  
  /* ── LEFT: full-height image ── */
  .sabic-img {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    max-height: 700px;
  }

  .sabic-img a {
    display: block;
    height: 100%;
  }

  .sabic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform .8s cubic-bezier(.25,.8,.25,1), filter .6s ease;
  }

  .sabic-img:hover img {
    transform: scale(1.04);
    filter: brightness(.92);
  }

  
  .sabic-swiper .swiper-slide a {
  display: block;
  height: 100%;
}

.sabic-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sabic-swiper .swiper-button-prev,
.sabic-swiper .swiper-button-next {
  color: #fff;
}

.sabic-swiper .swiper-pagination-bullet-active {
  background: var(--pj-gold);
}
.sabic-swiper,
.sabic-swiper .swiper-wrapper,
.sabic-swiper .swiper-slide {
  height: 100% !important;
}

/*------------*/
/* Give the grid a defined layout */
.sabic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  max-height: 700px;
}

@media (max-width: 767px) {
  .sabic-grid { 
    grid-template-columns: 1fr;
    max-height: none;
  }
}

/* Constrain the image column */
.sabic-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(280px, 42vw, 500px); /* same as rs-hero */
}

.sabic-swiper,
.sabic-swiper .swiper-wrapper,
.sabic-swiper .swiper-slide {
  height: 100% !important;
}

/* Fix swiper nav buttons being hidden behind content */
.sabic-swiper .swiper-button-prev,
.sabic-swiper .swiper-button-next {
  color: #fff;
  z-index: 10;
  background: rgba(22,54,74,.45);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  --swiper-navigation-size: 16px;
}

.sabic-swiper .swiper-button-prev { left: 8px; }
.sabic-swiper .swiper-button-next { right: 8px; }



  /* ── Bin-Zagar-Unilever.php & Jazan-Entertainment-Center.php layout ── */

  .pmh-section {
    background: var(--pj-cream);
    padding: 90px 0 0;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
  }

  /* Two columns: left gallery | right content */
  .pmh-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    min-height: 620px;
  }

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

.pmh-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1.4fr 1fr;
  gap: 4px;
  min-height: 580px;
}

.pmh-img-top-left { grid-column: 1 / 2; grid-row: 1 / 2; }
.pmh-img-top-main { grid-column: 2 / 4; grid-row: 1 / 2; }
.pmh-img-b1       { grid-column: 1 / 2; grid-row: 2 / 3; }
.pmh-img-b2       { grid-column: 2 / 3; grid-row: 2 / 3; }
.pmh-img-b3       { grid-column: 3 / 4; grid-row: 2 / 3; }
  .pmh-img-wrap {
    position: relative;
    overflow: hidden;
    background: #c9c4b8;
  }

  .pmh-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .pmh-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.8,.25,1), filter .5s ease;
  }

  .pmh-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(22,54,74,.35);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
  }

  .pmh-img-wrap:hover img {
    transform: scale(1.07);
    filter: brightness(.88);
  }

  .pmh-img-wrap:hover::before { opacity: 1; }

  /* ── RIGHT: content panel ── */
  .pmh-right {
    padding: 56px 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  @media (max-width: 991px) {
    .pmh-right { padding: 44px 32px; }
  }

  @media (max-width: 767px) {
    .pmh-right { padding: 36px 24px; }
  }

  .pmh-right .pj-eyebrow {
    margin-bottom: 16px;
  }

  .pmh-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    color: var(--pj-navy-dark);
    line-height: 1.15;
    margin: 0 0 2px;
  }

  .pmh-title-em {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    color: var(--pj-blue);
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .pmh-location {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: .85rem;
    color: var(--pj-gold);
    margin-bottom: 14px;
  }

  .pmh-right .pj-rule {
    margin: 0 0 24px;
  }

  .pmh-desc {
    font-size: .84rem;
    line-height: 1.82;
    color: var(--pj-text-muted);
    margin-bottom: 44px;
  }

  /* Project facts table */
  .pmh-facts-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pj-navy-dark);
    margin-bottom: 16px;
  }

  .pmh-facts {
    width: 100%;
    border-collapse: collapse;
  }

  .pmh-facts tr {
    border-top: 1px solid rgba(22,54,74,.12);
  }

  .pmh-facts tr:last-child {
    border-bottom: 1px solid rgba(22,54,74,.12);
  }

  .pmh-facts td {
    padding: 12px 4px;
    font-size: .82rem;
  }

  .pmh-facts td:first-child {
    color: var(--pj-text-muted);
    font-weight: 400;
    width: 40%;
  }

  .pmh-facts td:last-child {
    color: var(--pj-navy-dark);
    font-weight: 700;
    text-align: right;
  }

  /* footer */
  .pmh-footer-note {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(22,54,74,.12);
    display: flex;
    justify-content: space-between;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pj-text-muted);
    flex-wrap: wrap;
    gap: 8px;
  }

    /* ── KSP layout ── only new rules; reuses all existing pj-* variables */

  .ksp-section {
    background: var(--pj-cream);
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
    padding-top: 0;
  }
  @media (max-width: 991px){
    .ksp-section {
      padding-top: var(--header-height, 70px);
    }
  }

  /* Outer 3-column grid: left panel | center image | right stack */
  .ksp-grid {
    display: grid;
    grid-template-columns: 280px 1fr 220px;
    min-height: 600px;
  }

  /* ── LEFT PANEL ── */
  .ksp-left {
    background: var(--pj-navy-dark);
    padding: 48px 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  .ksp-left .pj-eyebrow {
    color: var(--pj-blue-light);
    margin-bottom: 18px;
  }

  .ksp-left .pj-title {
    color: #fff;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 0;
  }

  .ksp-left .pj-title em {
    color: var(--pj-blue-light);
  }

  .ksp-left .pj-rule {
    margin-top: 20px;
    margin-bottom: 28px;
  }

  .ksp-left-intro {
    font-size: .82rem;
    line-height: 1.75;
    color: rgba(255,255,255,.6);
    margin-bottom: 36px;
  }

  /* Vertical stat list */
  .ksp-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
  }

  .ksp-stat-item {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    transition: background .3s ease;
  }

  .ksp-stat-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .ksp-stat-item.is-accent {
    background: var(--pj-blue);
    margin: 0 -36px;
    padding: 16px 36px;
  }

  .ksp-stat-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--pj-gold);
    line-height: 1.1;
  }

  .ksp-stat-val sup {
    font-size: .65rem;
    font-weight: 600;
    color: var(--pj-gold);
    vertical-align: super;
  }

  .ksp-stat-item.is-accent .ksp-stat-val {
    color: #fff;
  }

  .ksp-stat-lbl {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
  }

  .ksp-footer-note {
    margin-top: 28px;
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
  }

  /* ── CENTER IMAGE ── */
  .ksp-center {
    position: relative;
    overflow: hidden;
  }

  .ksp-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.25,.8,.25,1);
  }

  .ksp-center:hover img {
    transform: scale(1.04);
  }

  .ksp-center a {
    display: block;
    height: 100%;
  }

  /* ── RIGHT STACK ── */
  .ksp-right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ksp-right-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .ksp-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.8,.25,1), filter .5s ease;
  }

  .ksp-right-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,54,74,.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
  }

  .ksp-right-img:hover img {
    transform: scale(1.07);
    filter: brightness(.88);
  }

  .ksp-right-img:hover::before {
    opacity: 1;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .ksp-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
    }
    .ksp-left {
      grid-column: 1 / -1;
    }
    .ksp-center {
      min-height: 320px;
    }
    .ksp-right {
      flex-direction: column;
    }
  }

  @media (max-width: 575px) {
    .ksp-grid {
      grid-template-columns: 1fr;
    }
    .ksp-center {
      min-height: 260px;
    }
    .ksp-right {
      flex-direction: row;
      min-height: 160px;
    }
    .ksp-stat-item.is-accent {
      margin: 0 -24px;
      padding: 16px 24px;
    }
    .ksp-left {
      padding: 36px 24px 28px;
    }
  }

    /* ── Red Sea / Shura Island layout same as Abha-Entertainment-Center.php ── */

  .rs-section {
    background: var(--pj-cream);
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
    padding-top: 0;
  }

  /* ── HERO BANNER ── full-width image with overlaid title */
  .rs-hero {
    position: relative;
    width: 100%;
    height: clamp(280px, 42vw, 480px);
    overflow: hidden;
  }

  .rs-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform .8s cubic-bezier(.25,.8,.25,1);
  }

  .rs-hero:hover img {
    transform: scale(1.04);
  }

  /* dark gradient overlay so text is legible */
  .rs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(15,35,50,.35) 0%,
      rgba(15,35,50,.55) 60%,
      rgba(15,35,50,.75) 100%
    );
  }

  .rs-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 40px 36px;
  }

  .rs-hero-content .pj-eyebrow {
    color: rgba(255,255,255,.7);
    margin-bottom: 12px;
  }

  .rs-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin: 0;
    line-height: 1.15;
  }

  .rs-hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--pj-gold);
  }

  /* ── BODY ROW: left text | right 2x2 stats ── */
  .rs-body {
    padding: 52px 40px 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
  }

  @media (max-width: 767px) {
    .rs-body {
      grid-template-columns: 1fr;
      padding: 40px 24px;
      gap: 32px;
    }
    .rs-hero-content {
      padding: 24px 24px 28px;
    }
  }

  /* Left text block */
  .rs-left-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--pj-navy-dark);
    margin-bottom: 14px;
  }

  .rs-left-body {
    font-size: .85rem;
    line-height: 1.8;
    color: var(--pj-text-muted);
  }

  /* Right 2×2 stat grid */
  .rs-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .rs-stat {
    border-radius: 6px;
    padding: 20px 22px;
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .rs-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(22,54,74,.2);
  }

  /* filled dark cards */
  .rs-stat.dark {
    background: var(--pj-navy-dark);
  }

  .rs-stat.blue {
    background: var(--pj-blue);
  }

  /* outlined card */
  .rs-stat.outline {
    background: transparent;
    border: 1.5px solid var(--pj-navy-dark);
  }

  .rs-stat-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .rs-stat-val sup {
    font-size: .6rem;
    font-weight: 600;
    vertical-align: super;
  }

  .rs-stat.dark  .rs-stat-val,
  .rs-stat.blue  .rs-stat-val { color: #fff; }
  .rs-stat.outline .rs-stat-val {
    font-style: italic;
    font-weight: 500;
    color: var(--pj-navy-dark);
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .rs-stat-lbl {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
  }

  .rs-stat.dark  .rs-stat-lbl,
  .rs-stat.blue  .rs-stat-lbl { color: rgba(255,255,255,.55); }
  .rs-stat.outline .rs-stat-lbl { color: var(--pj-text-muted); }

  /* footer rule */
  .rs-footer-note {
    margin: 0 40px 0;
    padding: 18px 0;
    border-top: 1px solid rgba(22,54,74,.12);
    display: flex;
    justify-content: space-between;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pj-text-muted);
    flex-wrap: wrap;
    gap: 8px;
  }

  @media (max-width: 767px) {
    .rs-footer-note { margin: 0 24px; }
  }