  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Avenir' !important;
  }

  /* FULL WIDTH HERO */
  .hero-project {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  /* Background Image */
  .hero-project img,
  .hero-project .hero-project__banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Mobile-only hero (optional); desktop/tablet keep default hero */
  .hero-project.has-mobile-hero .hero-project__banner--mobile {
    display: none;
  }

  @media (max-width: 767px) {
    .hero-project.has-mobile-hero .hero-project__banner--desktop {
      display: none;
    }

    .hero-project.has-mobile-hero .hero-project__banner--mobile {
      display: block;
    }
  }

  /* Overlay */
  .hero-project::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 35%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
  }

  /* INNER CONTAINER (1300px) */
  .hero-project .container,
  .project-nav-section .container,
  .section-tow-colm .container,
  .challenge-section .container,
  .Outcome-section .container,
  .gallery-section .container,
  .cta-section .container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
  }

  .hero-project .container {
    height: 100%;
  }

  .project-nav-section {
    padding: 42px 20px 0;
  }

  .project-nav-section .project-nav-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .project-nav-section .project-nav-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid #b6453f;
    color: #5a3a2d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .project-nav-section .project-nav-arrow:hover {
    background-color: #5a3a2d;
    border-color: #5a3a2d;
    color: #fff;
  }

  .project-nav-section .project-nav-arrow.is-disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  /* CONTENT */
  .hero-project .hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    max-width: 800px;
    padding: 20px;
  }

  .hero-project .hero-content h1 {
    margin-bottom: 25px;
    font-size: 51px;
    font-weight: 700;
    line-height: 66px;
    color: #fff;
  }

  .hero-project .hero-content .project-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .hero-project .hero-content .project-breadcrumb a,
  .hero-project .hero-content .project-breadcrumb .current {
    color: inherit;
    text-decoration: none;
  }

  .hero-project .hero-content .project-breadcrumb a:hover {
    color: #fff;
  }

  .hero-project .hero-content .project-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
  }

  .hero-project .hero-content p {
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .hero-project .hero-content .highlight {
    margin-top: 25px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
  }

  /* GRID 45 / 55 */
  .section-tow-colm .row {
  display: flex;
    align-items: start;
    gap: 50px;
    margin: 120px 20px;
  }

  .section-tow-colm .row.is-right {
    flex-direction: row-reverse;
  }

/* Hardening against theme/Elementor .row overrides on this CPT */
body.single-rizq_projects .section-tow-colm .row {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
}
body.single-rizq_projects .section-tow-colm .row.is-right {
  flex-direction: row-reverse !important;
}

  /* LEFT CONTENT 45% */
  .section-tow-colm .content {
    flex: 0 0 45%;
    margin-top: 80px;
  }

  /* RIGHT IMAGE 55% */
  .section-tow-colm .image {
    flex: 0 0 55%;
  }

  .section-tow-colm .image img {
    width: 100%;
    border-radius: 16px;
    display: block;
  }

  /* HEADING STYLE */
  .section-tow-colm .heading {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }

  .section-tow-colm .heading::before {
    content: '';
    width: 4px;
    height: 30px;
    background: #4b2a1e;
    margin-right: 15px;
  }

  .section-tow-colm .heading h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 31px;
    color: #000000;
  }

  .section-tow-colm .heading span {
    color: #7a4a3a;
  }

  /* TEXT */
  .section-tow-colm .project-overview-description {
    border-top: 1px solid #c9a899;
    padding-top: 20px;
    color: #2a2a2a;
    font-size: 16px;
    line-height: 1.8;
  }

  .section-tow-colm .project-overview-description p {
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    color: inherit;
    line-height: inherit;
    font-size: inherit;
  }

  .section-tow-colm .project-overview-description p:last-child {
    margin-bottom: 0;
  }

  .section-tow-colm .project-overview-description ul,
  .section-tow-colm .project-overview-description ol {
    margin: 0 0 12px 22px;
    padding: 0;
    color: inherit;
  }

  .section-tow-colm .project-overview-description li {
    margin: 0 0 10px;
    color: inherit;
    line-height: inherit;
  }

  .section-tow-colm .project-overview-description li:last-child {
    margin-bottom: 0;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
  .section-tow-colm .row,
  body.single-rizq_projects .section-tow-colm .row,
  body.single-rizq_projects .section-tow-colm .row.is-right {
    flex-direction: column !important;
    flex-wrap: nowrap;
    }

    .section-tow-colm .content,
  .section-tow-colm .image,
  body.single-rizq_projects .section-tow-colm .content,
  body.single-rizq_projects .section-tow-colm .image {
      flex: 0 0 100% !important;
      width: 100%;
    }

  .section-tow-colm .content {
    margin-top: 0;
  }
  }

  /* FULL SECTION */
  .challenge-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* DARK OVERLAY */
  .challenge-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
  }

  /* CONTAINER */
  .challenge-section .container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
  }

  /* HEADING */
  .challenge-section .heading {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }

  .challenge-section .heading::before {
    content: '';
    width: 4px;
    height: 35px;
    background: #000;
    margin-right: 15px;
  }

  .challenge-section .heading h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 31px;
    color: #fff;
  }

  /* DIVIDER LINE */
  .challenge-section .divider {
    height: 1px;
    background: #906E50;
    margin: 20px 0 20px;
    width: 100%;
  }

  /* TEXT */
  .challenge-section .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    border-top: 0;
    padding-top: 0;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .challenge-section .heading h2 {
      font-size: 30px;
    }
    .challenge-section .content p {
      font-size: 16px;
    }
  }

  /* FULL SECTION */
  .Outcome-section {
    width: 100%;
    padding: 120px 20px;
  }

  /* CONTAINER */
  .Outcome-section .container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
  }

  /* HEADING */
  .Outcome-section .heading {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }

  .Outcome-section .heading::before {
    content: '';
    width: 4px;
    height: 35px;
    background: #000;
    margin-right: 15px;
  }

  .Outcome-section .heading h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 31px;
    color: #000000;
  }

  /* DIVIDER LINE */
  .divider {
    height: 1px;
    background: #906E50;
    margin: 20px 0 20px;
    width: 100%;
  }

  /* TEXT */
  .Outcome-section .content p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.8;
    border-top: 0;
    padding-top: 0;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .Outcome-section .heading h2 {
      font-size: 30px;
    }
    .Outcome-section .content p {
      font-size: 16px;
    }
  }

  .gallery-section {
    width: 100%;
    padding: 100px 20px 120px;
    background-color: transparent;
    background-image: linear-gradient(0deg, #FFFFFF 0%, #FAF7F5 100%);
  }

  .gallery-section .main-slider {
    margin-top: 50px;
  }

  /* Main gallery prev/next (Slick) — overlaid on image */
  .gallery-section .main-slider .rizq-gallery-main-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  }

  .gallery-section .main-slider .rizq-gallery-main-arrow:hover {
    background: rgba(90, 58, 45, 0.85);
    color: #fff;
  }

  .gallery-section .main-slider .rizq-gallery-main-arrow:focus {
    outline: none;
  }

  .gallery-section .main-slider .rizq-gallery-main-arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }

  .gallery-section .main-slider .rizq-gallery-main-arrow svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .gallery-section .main-slider .slick-prev.rizq-gallery-main-arrow {
    left: 14px;
  }

  .gallery-section .main-slider .slick-next.rizq-gallery-main-arrow {
    right: 14px;
  }

  .gallery-section .main-slider .slick-prev.rizq-gallery-main-arrow:before,
  .gallery-section .main-slider .slick-next.rizq-gallery-main-arrow:before {
    display: none;
    content: none;
  }

  .gallery-section .main-slider img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
  }

  .gallery-section .thumb-slider {
    margin-top: 15px;
  }

  .gallery-section .thumb-slider .item {
    padding: 5px;
  }

  .gallery-section .thumb-slider img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.4;
    transition: 0.3s;
  }

  .gallery-section .thumb-slider .slick-center img {
    opacity: 1;
    border: 2px solid #fff;
    transform: scale(1.1);
  }

  .cta-section {
    background: #FAF7F5;
    padding: 100px 20px;
  }
  /* CTA BOX */
  .cta-section .cta-box h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
  }

  /* LEFT BORDER LINE */
  .cta-section .cta-box h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 28px;
    background: #000;
  }

  /* BUTTON */
  .cta-section .cta-btn {
    display: inline-block;
    background: #6b3b2a;
    color: #fff;
    padding: 18px 30px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
  }

  .cta-section .cta-btn:hover {
    background: #8a4b34;
  }

  @media (max-width: 767px) {
    .project-nav-section {
      padding: 26px 16px 0;
    }

    .project-nav-section .project-nav-arrow {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }

    .hero-project {
      height: 72vh;
      min-height: 520px;
    }
    .hero-project .hero-content {
      max-width: 100%;
      padding: 20px;
    }
    .hero-project .hero-content h1 {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 18px;
    }
    .section-tow-colm .row {
      margin: 35px 16px;
      gap: 22px;
    }
    .section-tow-colm .heading h2 {
      font-size: 34px;
      line-height: 40px;
    }
    .section-tow-colm .content p {
      line-height: 1.6;
      word-break: break-word;
    }
    .challenge-section,
    .Outcome-section,
    .gallery-section,
    .cta-section {
      padding-left: 16px;
      padding-right: 16px;
    }
  }

  @media (max-width: 475px) {
    .hero-project .hero-content h1 {
      font-size: 28px;
      line-height: 36px;
    }
    .section-tow-colm .row {
      margin: 40px 20px;
    }
    .Outcome-section {
      padding: 40px 20px;
    }
    .gallery-section {
      padding: 50px 20px 60px;
    }
    .gallery-section .main-slider img {
      height: auto;
    }
    .gallery-section .thumb-slider img {
      height: 90px;
    }
    .cta-section {
      padding: 60px 20px;
    }
    .section-tow-colm .content {
      margin-top: 0;
    }
  }

  .main-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: grab;
  }

  .main-slider .slick-slide {
    overflow: hidden;
  }

  body.single-rizq_projects .main-slider .slick-slide img {
    width: 100%;
    transition: none !important;
    transform-origin: center center;
    user-select: none;
    transform: none !important;
  }

  /* Disable hover zoom in gallery main slider */
  body.single-rizq_projects .main-slider .slick-slide:hover img {
    transform: none !important;
  }

