:root {
    --pd-green-deep: #063122;
    --pd-green: #1f4a3a;
    --pd-cream: #f7e7b1;
    --pd-cream-2: #f2ead9;
    --pd-gold: #a5741e;
    --pd-gold-dark: #75521f;
    --pd-charcoal: #2c2b26;
    --pd-muted: #6f6a5e;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 90px;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--pd-charcoal);
    background: var(--pd-cream);
    overflow-x: hidden;
}

h1,
h2,
h3,
.font-display {
    font-family: 'Cormorant Garamond', serif;
}

.eyebrow {
    letter-spacing: .28em;
    font-size: .72rem;
    font-weight: 500;
    color: var(--pd-gold-dark);
    text-transform: uppercase;
}



a {
    text-decoration: none;
}

/* ---------- Navbar ---------- */
.pd-navbar {
    background: transparent;
    padding: 1.1rem 0;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: background-color .35s ease, backdrop-filter .35s ease, padding .35s ease, border-color .35s ease;
}

/* Transparent always -- on scroll we only add a soft blur, never a solid fill */
.pd-navbar.pd-navbar--scrolled {
    background: rgba(22, 53, 42, .28);
    /* background: var(--pd-green-deep); */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: .7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.pd-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.pd-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pd-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-green-deep);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .5);
}

.pd-brand-text {
    line-height: 1.05;
}

.pd-brand-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: .03em;
    color: #fff;
}

.pd-brand-text .tag {
    font-size: .55rem;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
}

.pd-nav .nav-link {
    color: #000;
    font-weight: 500;
    font-size: .95rem;
    margin: 0 .85rem;
    position: relative;
}

.pd-nav .nav-link.active {
    color: var(--pd-gold);
    font-weight: 600;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .pd-navbar .navbar-collapse {
        background: rgba(22, 53, 42, .94);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 1rem;
        margin-top: .5rem;
    }
}

.btn-pd-gold {
    background: var(--pd-gold);
    border: 1px solid var(--pd-gold);
    color: #fff;
    font-weight: 500;
    padding: .55rem 1.4rem;
    border-radius: 2px;
    letter-spacing: .02em;
    transition: .25s ease;
    white-space: nowrap;
}

.btn-pd-gold:hover {
    background: var(--pd-gold-dark);
    border-color: var(--pd-gold-dark);
    color: #fff;
}

.btn-pd-outline {
    background: var(--pd-green-deep);
    border: none;
    color: #fff;
    font-weight: 500;
    padding: .6rem 1.6rem;
    border-radius: 2px;
    letter-spacing: .02em;
    transition: .25s ease;
}

.btn-pd-outline:hover {
    background: #fff;
    color: var(--pd-green-deep);
}

/* ---------- Hero ---------- */
.pd-hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.pd-hero .carousel,
.pd-hero .carousel-inner,
.pd-hero .carousel-item {
    height: 90vh;
    min-height: 90vh;
}

.pd-hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-hero .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 25, 20, .40) 0%, rgba(15, 25, 20, .15) 35%, rgba(10, 15, 12, .6) 100%);
}

.pd-hero-slide-1 {
    background-image: url('../img/Artboard2.jpeg');
}

.pd-hero-slide-2 {
    background-image: url('../img/Artboard4.jpg');
}

/* .pd-hero-slide-3 {
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1600&auto=format&fit=crop');
} */

.pd-hero-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

.pd-hero h1 {
    color: var(--pd-green-deep);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: .01em;
}

.pd-hero p.lead {
    color: var(--pd-green-deep);
    font-size: 1.02rem;
    max-width: 420px;
    font-weight: 500;
}

/* Bootstrap carousel indicator/control overrides */
.pd-hero .carousel-indicators {
    bottom: 1.75rem;
    z-index: 4;
    margin-bottom: 0;
}

.pd-hero .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .45);
    border: none;
    opacity: 1;
    margin: 0 5px;
    transition: width .3s ease, border-radius .3s ease, background-color .3s ease;
}

.pd-hero .carousel-indicators .active {
    background-color: #fff;
    width: 22px;
    border-radius: 5px;
}

.pd-hero .carousel-control-prev,
.pd-hero .carousel-control-next {
    width: 5%;
    z-index: 4;
    opacity: 0;
    transition: opacity .25s ease;
}

.pd-hero:hover .carousel-control-prev,
.pd-hero:hover .carousel-control-next {
    opacity: .85;
}

.pd-hero .carousel-control-prev-icon,
.pd-hero .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    background-size: 1.25rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    padding: 1.4rem;
}

/* ---------- Future strip ---------- */
.pd-future {
    background: var(--pd-cream);
    padding: 4rem 0 3rem;
}

.pd-future h2 {
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.pd-future-item {
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid rgba(0, 0, 0, .08);
    height: 100%;
}

.pd-future-item:last-child {
    border-right: none;
}

.pd-future-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pd-cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--pd-green-deep);
    font-size: 1.4rem;
}

.pd-future-item .ft-title {
    font-weight: 600;
    font-size: .88rem;
    color: var(--pd-charcoal);
    margin-bottom: .15rem;
}

.pd-future-item .ft-sub {
    font-size: .78rem;
    color: var(--pd-muted);
}

/* ---------- Featured Projects ---------- */
.pd-projects {
    padding: 1rem 0 5rem;
    background: var(--pd-cream);
}

.pd-projects h2 {
    text-align: center;
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-bottom: 2.5rem;
}

.pd-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 40, 30, .06);
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(30, 40, 30, .12);
}

.pd-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.pd-card-body {
    padding: 1.25rem 1.4rem 1.5rem;
}

.pd-card-tag {
    font-size: .68rem;
    letter-spacing: .14em;
    color: var(--pd-gold-dark);
    font-weight: 600;
    text-transform: uppercase;
}

.pd-card-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--pd-green-deep);
    margin: .35rem 0 .2rem;
    font-family: 'Jost', sans-serif;
}

.pd-card-sub {
    font-size: .85rem;
    color: var(--pd-muted);
    margin-bottom: .6rem;
}

.pd-card-link {
    color: var(--pd-green-deep);
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.pd-card-link i {
    transition: transform .2s ease;
}

.pd-card-link:hover i {
    transform: translateX(4px);
}

/* ---------- Footer ---------- */
.pd-footer {
    background: var(--pd-green-deep);
    color: rgba(255, 255, 255, .75);
    padding: 3rem 0 1.5rem;
}

.pd-footer h5 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.pd-footer a {
    color: rgba(255, 255, 255, .75);
}

.pd-footer a:hover {
    color: var(--pd-gold);
}

.pd-footer hr {
    border-color: rgba(255, 255, 255, .15);
}

.pd-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
}

.pd-social a:hover {
    background: var(--pd-gold);
    border-color: var(--pd-gold);
    color: #fff;
}

.eyebrow {
    letter-spacing: .28em;
    font-size: .72rem;
    font-weight: 500;
    color: var(--pd-gold-dark);
    text-transform: uppercase;
}

a {
    text-decoration: none;
}

.btn-pd-gold {
    background: var(--pd-gold);
    border: 1px solid var(--pd-gold);
    color: #fff;
    font-weight: 500;
    padding: .55rem 1.4rem;
    border-radius: 2px;
    letter-spacing: .02em;
    transition: .25s ease;
    white-space: nowrap;
}

.btn-pd-gold:hover {
    background: var(--pd-gold-dark);
    border-color: var(--pd-gold-dark);
    color: #fff;
}

/* ---------- About Hero Section ---------- */
.pd-about {
    padding: 7rem 0 4.5rem;
    background: var(--pd-cream);
}

.pd-about h1 {
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    line-height: 1.15;
    margin-bottom: 1.4rem;
}

.pd-about p.lead-text {
    color: var(--pd-muted);
    font-size: .98rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1.2rem;
    max-width: 520px;
}

.pd-about-media {
    position: relative;
    isolation: isolate;
}

.pd-about-media .frame {
    position: relative;
    border-radius: 220px 220px 12px 12px;
    overflow: hidden;
    border: 1px solid rgba(199, 154, 75, .55);
    padding: 14px;
}

.pd-about-media img {
    width: 100%;
    height: clamp(360px, 40vw, 560px);
    object-fit: cover;
    border-radius: 210px 210px 6px 6px;
    display: block;
}

/* ---------- Our Values ---------- */
.pd-values {
    margin-top: 2.6rem;
}

.pd-values .eyebrow {
    font-size: .78rem;
    display: block;
    margin-bottom: 1.1rem;
    color: var(--pd-green-deep);
    letter-spacing: .22em;
}

.pd-value-item {
    text-align: left;
}

.pd-value-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--pd-cream-2);
    border: 1px solid rgba(199, 154, 75, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-gold-dark);
    font-size: 1.25rem;
    margin-bottom: .8rem;
}

.pd-value-item .v-title {
    font-weight: 500;
    font-size: .9rem;
    color: var(--pd-charcoal);
}

/* ---------- Stats band ---------- */
.pd-stats {
    background: var(--pd-green-deep);
    padding: 2.2rem 0;
}

.pd-stat {
    text-align: center;
    color: #fff;
    padding: .6rem .5rem;
    border-right: 1px solid rgba(255, 255, 255, .14);
    height: 100%;
}

.pd-stat:last-child {
    border-right: none;
}

.pd-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    color: var(--pd-gold);
    line-height: 1;
    margin-bottom: .35rem;
}

.pd-stat .num i {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    vertical-align: middle;
    display: block;
    margin-bottom: .35rem;
    color: var(--pd-gold);
}

.pd-stat .lbl {
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .82);
    line-height: 1.3;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
    .pd-future-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .pd-future-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .pd-hero {
        min-height: 70vh;
    }

    .pd-about {
        padding: 6rem 0 4.5rem;
    }

    .pd-hero p.lead {
        max-width: 100%;
    }

    .pd-hero-slide-1 {
        background-image: url('../img/Artboard1.jpeg');
    }

    .pd-hero-slide-2 {
        background-image: url('../img/Artboard3.jpg');
    }
}


@media (max-width: 767.98px) {
    .pd-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        padding-bottom: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .pd-stat:last-child {
        border-bottom: none;
        padding-bottom: .6rem;
        margin-bottom: 0;
    }
}

/* ---------- Our Journey ---------- */
.pd-journey {
    padding: 4.5rem 0;
    background: var(--pd-cream);
    overflow: hidden;
}

.pd-journey h2 {
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-bottom: 1rem;
}

.pd-journey p {
    color: var(--pd-muted);
    font-size: .95rem;
    line-height: 1.75;
    max-width: 460px;
    font-weight: 300;
}

.pd-skyline {
    width: 100%;
    height: auto;
    display: block;
    opacity: .9;
}

.pd-skyline path,
.pd-skyline rect {
    stroke: var(--pd-gold-dark);
}

/* ---------- Footer ---------- */
.pd-footer {
    background: var(--pd-green-deep);
    color: rgba(255, 255, 255, .75);
    padding: 3rem 0 1.5rem;
}

.pd-footer h5 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.pd-footer a {
    color: rgba(255, 255, 255, .75);
}

.pd-footer a:hover {
    color: var(--pd-gold);
}

.pd-footer hr {
    border-color: rgba(255, 255, 255, .15);
}

.pd-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
}

.pd-social a:hover {
    background: var(--pd-gold);
    border-color: var(--pd-gold);
    color: #fff;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
    .pd-about-media {
        margin-top: 2.5rem;
    }

    .pd-about-media .frame {
        border-radius: 180px 180px 12px 12px;
    }

    .pd-about-media img {
        border-radius: 170px 170px 6px 6px;
    }
}

@media (max-width: 575.98px) {
    .pd-about-media .frame {
        border-radius: 120px 120px 10px 10px;
        padding: 10px;
    }

    .pd-about-media img {
        border-radius: 112px 112px 4px 4px;
        height: 320px;
    }

    .pd-value-item {
        text-align: center;
    }

    .pd-value-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/*
    New rules only for this page's markup (project tab filters, project
    badges, feature bullets, and the projects banner). Nothing above is
    redefined or overridden — every existing class from style.css
    (pd-card, eyebrow, font-display, btn-pd-gold, container, etc.) is
    reused as-is.
  */

.pd-projects-hero {
    padding: 7.5rem 0 2.5rem;
    background: var(--pd-cream);
    text-align: center;
}

.pd-projects-hero h1 {
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: clamp(2rem, 4vw, 2.9rem);
}

.pd-projects-hero .pd-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin-top: 1rem;
}

.pd-projects-hero .pd-divider span {
    width: 44px;
    height: 1px;
    background: rgba(199, 154, 75, .5);
}

.pd-projects-hero .pd-divider i {
    color: var(--pd-gold-dark);
    font-size: .7rem;
    transform: rotate(45deg);
}

/* ---------- Filter tabs ---------- */
.pd-filter-wrap {
    display: flex;
    justify-content: center;
    padding: 0 0 3rem;
    background: var(--pd-cream);
}

.pd-filter-tabs {
    display: inline-flex;
    justify-content: center;
    /* background: #fff; */
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 6px;
    padding: .3rem;
    gap: .25rem;
    max-width: 100%;
    flex-wrap: wrap;
}

.pd-filter-btn {
    border: none;
    background: transparent;
    color: var(--pd-charcoal);
    font-family: 'Jost', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    padding: .65rem 1.6rem;
    border-radius: 4px;
    transition: .25s ease;
    white-space: nowrap;
}

.pd-filter-btn:hover {
    color: var(--pd-green-deep);
}

.pd-filter-btn.active {
    background: var(--pd-green-deep);
    color: #fff;
}

@media (max-width:575.98px) {
    .pd-filter-btn {
        padding: .6rem .95rem;
        font-size: .78rem;
    }
}

/* ---------- Project cards (grid section) ---------- */
.pd-projects-grid {
    padding-bottom: 5rem;
    background: var(--pd-cream);
}

.pd-card-media {
    position: relative;
}

.pd-badge {
    position: absolute;
    top: .9rem;
    left: .9rem;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem .8rem;
    border-radius: 3px;
    color: #fff;
    z-index: 2;
}

.pd-badge-ongoing {
    background: var(--pd-gold-dark);
}

.pd-badge-upcoming {
    background: var(--pd-green);
}

.pd-badge-completed {
    background: var(--pd-green-deep);
}

.pd-card-loc {
    font-size: .8rem;
    color: var(--pd-muted);
    margin-bottom: .75rem;
}

.pd-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
}

.pd-card-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--pd-charcoal);
    margin-bottom: .4rem;
}

.pd-card-features i {
    color: var(--pd-gold-dark);
    font-size: .85rem;
}

/* ---------- Landmark banner ---------- */
.pd-projects-banner {
    position: relative;
    min-height: 340px;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url('../img/Artboard2.jpeg');
}

.pd-projects-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 20, 15, .72) 0%, rgba(6, 20, 15, .42) 45%, rgba(6, 20, 15, .12) 100%);
}

.pd-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2.75rem 2rem;
}

.pd-banner-content h3 {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    max-width: 460px;
    margin-bottom: 1.5rem;
}

.pd-projects-bottom {
    padding-bottom: 5.5rem;
    background: var(--pd-cream);
}

@media (max-width:767.98px) {
    .pd-projects-hero {
        padding: 6.5rem 0 2rem;
    }

    .pd-projects-banner {
        min-height: 300px;
    }

    .pd-banner-content {
        text-align: center;
        justify-content: center;
        padding: 2.25rem 1.25rem;
    }

    .pd-banner-content h3 {
        max-width: 100%;
    }
}




/* ===================================================== */
/* ======================  CAREERS  ===================== */
/* ===================================================== */

/* ---------- Careers Hero (full-bleed photo, text on top, like homepage) ---------- */
.pd-careers-hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background-image: url('../img/careers-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-careers-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 25, 20, .45) 0%, rgba(15, 25, 20, .2) 35%, rgba(10, 15, 12, .65) 100%);
}

.pd-careers-hero-content {
    position: relative;
    z-index: 2;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.pd-careers-hero .eyebrow--light {
    color: var(--pd-gold);
}

.pd-careers-hero h1 {
    color: var(--pd-green-deep);
    font-weight: 700;
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    line-height: 1.1;
}

.pd-careers-hero p.lead-text {
    color: var(--pd-green-deep);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75;
    max-width: 480px;
}

/* ---------- Why Work With Us ---------- */
.pd-why {
    background: var(--pd-cream);
    padding: 4.5rem 0;
}

.pd-why h2 {
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.pd-why-item {
    text-align: center;
    padding: 0 1rem;
}

.pd-why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-gold-dark);
    font-size: 1.6rem;
}

.pd-why-item .w-title {
    font-weight: 500;
    font-size: .88rem;
    color: var(--pd-charcoal);
    line-height: 1.4;
}

/* ---------- Careers CTA ---------- */
.pd-careers-cta {
    background: var(--pd-cream);
    padding: 0 0 4.5rem;
}

.pd-cta-card {
    background: var(--pd-cream-2);
    border-radius: 10px;
    padding: 1.8rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pd-cta-card p {
    color: var(--pd-green-deep);
    font-weight: 500;
    font-size: 1.02rem;
    line-height: 1.5;
    margin: 0;
}

.pd-cta-card .btn-pd-gold {
    flex-shrink: 0;
}

/* ---------- Apply Now Form ---------- */
.pd-apply {
    background: var(--pd-cream);
    padding: 1rem 0 5rem;
}

.pd-apply-sub {
    color: var(--pd-muted);
    font-size: .95rem;
    font-weight: 300;
    max-width: 480px;
    margin: .6rem auto 0;
}

.pd-apply-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(30, 40, 30, .06);
    padding: 2.5rem;
}

.pd-apply-card .form-label {
    font-weight: 500;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--pd-green-deep);
    margin-bottom: .5rem;
}

.pd-form-control {
    background: var(--pd-cream-2);
    border: 1px solid rgba(199, 154, 75, .3);
    border-radius: 4px;
    padding: .65rem .9rem;
    font-family: 'Jost', sans-serif;
    font-size: .92rem;
    color: var(--pd-charcoal);
}

.pd-form-control:focus {
    background: #fff;
    border-color: var(--pd-gold);
    box-shadow: 0 0 0 .18rem rgba(199, 154, 75, .2);
}

textarea.pd-form-control {
    resize: vertical;
}

.pd-form-hint {
    font-size: .78rem;
    color: var(--pd-muted);
    margin-top: .35rem;
}

.pd-apply-card .form-check-input:checked {
    background-color: var(--pd-gold);
    border-color: var(--pd-gold);
}

.pd-apply-card .form-check-input:focus {
    box-shadow: 0 0 0 .18rem rgba(199, 154, 75, .2);
}

@media (max-width: 575.98px) {
    .pd-apply-card {
        padding: 1.6rem;
    }
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 767.98px) {
    .pd-careers-hero {
        min-height: 90vh;
    }

    .pd-careers-hero-content {
        min-height: 90vh;
    }

    .pd-careers-hero p.lead-text {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .pd-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 1.6rem;
    }
}


/* ---------- Project detail page ---------- */


/* ---------- Back link ---------- */
.pd-back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--pd-muted);
    margin-bottom: 1.5rem;
}

.pd-back-link:hover {
    color: var(--pd-gold-dark);
}

/* ---------- Detail intro ---------- */
.pd-pdetail {
    padding: 6.5rem 0 3rem;
    background: var(--pd-cream);
}

.pd-detail-title {
    font-weight: 700;
    color: var(--pd-charcoal);
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: .5rem;
}

.pd-detail-location {
    font-size: .92rem;
    font-weight: 500;
    color: var(--pd-muted);
    margin-bottom: 1.2rem;
}

.pd-detail-location i {
    color: var(--pd-gold-dark);
    margin-right: .35rem;
}

.pd-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 2rem;
}

.pd-feature-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .92rem;
    font-weight: 500;
    color: var(--pd-charcoal);
    padding: .5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.pd-feature-list li:last-child {
    border-bottom: none;
}

.pd-feature-list li i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--pd-cream-2);
    border: 1px solid rgba(199, 154, 75, .35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-gold-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

.pd-detail-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: .5rem;
}

/* outline-gold button, new class, does not touch .btn-pd-gold / .btn-pd-outline */
.btn-pd-outline-gold {
    background: transparent;
    border: 1px solid var(--pd-gold-dark);
    color: var(--pd-gold-dark);
    font-weight: 500;
    padding: .6rem 1.6rem;
    border-radius: 2px;
    letter-spacing: .02em;
    transition: .25s ease;
}

.btn-pd-outline-gold:hover {
    background: var(--pd-gold-dark);
    color: #fff;
}

/* ---------- Gallery ---------- */
.pd-gallery-main {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(30, 40, 30, .12);
}

.pd-gallery-main .carousel-item img {
    width: 100%;
    height: clamp(280px, 42vw, 480px);
    object-fit: cover;
}

.pd-gallery-main .carousel-control-prev,
.pd-gallery-main .carousel-control-next {
    width: 6%;
}

.pd-gallery-main .carousel-control-prev-icon,
.pd-gallery-main .carousel-control-next-icon {
    width: 2.1rem;
    height: 2.1rem;
    background-color: rgba(6, 49, 34, .55);
    border-radius: 50%;
    background-size: 1.1rem;
    padding: 1.3rem;
}

.pd-gallery-thumbs {
    margin-top: .6rem;
}

.pd-gallery-thumb {
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s ease, opacity .2s ease;
}

.pd-gallery-thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    display: block;
    opacity: .85;
    transition: opacity .2s ease;
}

.pd-gallery-thumb.active {
    border-color: var(--pd-gold-dark);
}

.pd-gallery-thumb.active img,
.pd-gallery-thumb:hover img {
    opacity: 1;
}

/* ---------- Project highlights band ---------- */
.pd-highlights {
    background: var(--pd-cream-2);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.pd-highlights h2 {
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.pd-hl-item {
    text-align: center;
    padding: 0 .5rem;
}

.pd-hl-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(199, 154, 75, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .8rem;
    color: var(--pd-gold-dark);
    font-size: 1.35rem;
}

.pd-hl-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--pd-green-deep);
    margin-bottom: .15rem;
}

.pd-hl-lbl {
    font-size: .82rem;
    color: var(--pd-muted);
    line-height: 1.3;
}

/* ---------- Enquiry modal ---------- */
.pd-modal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: var(--pd-cream);
}

.pd-modal .modal-header {
    background: var(--pd-green-deep);
    border-bottom: none;
    padding: 1.4rem 1.6rem;
}

.pd-modal .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.pd-modal .modal-header .btn-close {
    filter: invert(1);
    opacity: .85;
}

.pd-modal .modal-body {
    padding: 1.8rem 1.6rem .5rem;
}

.pd-modal .modal-footer {
    border-top: none;
    padding: .5rem 1.6rem 1.8rem;
}

.pd-modal-sub {
    font-size: .85rem;
    color: var(--pd-muted);
    margin-bottom: 1.4rem;
}

.pd-form-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--pd-charcoal);
    margin-bottom: .35rem;
}

.pd-form-control {
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: 4px;
    padding: .65rem .9rem;
    font-family: 'Jost', sans-serif;
    font-size: .92rem;
    background: #fff;
}

.pd-form-control:focus {
    border-color: var(--pd-gold-dark);
    box-shadow: 0 0 0 .18rem rgba(199, 154, 75, .25);
}

.pd-form-control.is-invalid {
    border-color: #c0392b;
}

.pd-form-error {
    font-size: .76rem;
    color: #c0392b;
    margin-top: .3rem;
}

.pd-form-success {
    display: none;
    text-align: center;
    padding: 1.2rem 0 .5rem;
}

.pd-form-success i {
    font-size: 2.4rem;
    color: var(--pd-gold-dark);
    margin-bottom: .7rem;
    display: block;
}

.pd-form-success h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--pd-green-deep);
}

.pd-form-success p {
    font-size: .85rem;
    color: var(--pd-muted);
    margin-bottom: 0;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
    .pd-pdetail {
        padding-top: 5.5rem;
    }

    .pd-gallery-thumb img {
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .pd-detail-cta .btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .pd-gallery-thumbs .col-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 575.98px) {
    .pd-hl-item {
        margin-bottom: 1.4rem;
    }
}

/* contact us  */
/* ---------- Contact hero ---------- */
.pd-contact-hero {
    padding: 7.5rem 0 2.5rem;
    background: var(--pd-cream);
}

.pd-contact-hero h1 {
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin-bottom: .6rem;
}

.pd-contact-hero-rule {
    width: 70px;
    height: 1px;
    background: rgba(199, 154, 75, .55);
    position: relative;
    margin-top: .4rem;
}

.pd-contact-hero-rule::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pd-gold);
    transform: translate(-50%, -50%);
}

/* ---------- Get in touch + form section ---------- */
.pd-contact-main {
    position: relative;
    padding: 1rem 0 5rem;
    background: var(--pd-cream);
    overflow: hidden;
}

.pd-contact-skyline {
    position: absolute;
    right: -4%;
    bottom: 0;
    width: 38%;
    max-width: 420px;
    opacity: .55;
    pointer-events: none;
    z-index: 0;
}

.pd-contact-skyline path,
.pd-contact-skyline rect,
.pd-contact-skyline line {
    stroke: var(--pd-gold-dark);
}

.pd-contact-main .container {
    position: relative;
    z-index: 1;
}

.pd-contact-sub {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--pd-green-deep);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: .6rem;
}

.pd-contact-lead {
    color: var(--pd-muted);
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 1.8rem;
}

.pd-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pd-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pd-cream-2);
    border: 1px solid rgba(199, 154, 75, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-gold-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pd-contact-list .txt {
    font-size: .92rem;
    color: var(--pd-charcoal);
    line-height: 1.55;
    padding-top: .35rem;
}

.pd-contact-list a.txt {
    color: var(--pd-charcoal);
    display: block;
    padding-top: .35rem;
}

.pd-contact-list a.txt:hover {
    color: var(--pd-gold-dark);
}

/* ---------- Form card ---------- */
.pd-contact-form-wrap {
    background: #fff;
    border-radius: 6px;
    padding: 2rem 2rem 2.25rem;
    box-shadow: 0 10px 30px rgba(30, 40, 30, .06);
}

.pd-contact-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.pd-contact-form .form-control {
    background: var(--pd-cream-2);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: .92rem;
    color: var(--pd-charcoal);
    padding: .75rem 1rem;
}

.pd-contact-form .form-control::placeholder {
    color: var(--pd-muted);
}

.pd-contact-form .form-control:focus {
    background: #fff;
    border-color: var(--pd-gold);
    box-shadow: 0 0 0 .2rem rgba(199, 154, 75, .18);
}

.pd-contact-form textarea.form-control {
    resize: none;
}

/* ---------- Map ---------- */
.pd-contact-map {
    line-height: 0;
}

.pd-contact-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
    filter: grayscale(.15) contrast(1.02);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
    .pd-contact-skyline {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .pd-contact-form-wrap {
        padding: 1.5rem 1.25rem 1.75rem;
    }

    .pd-contact-hero {
        padding: 6.5rem 0 2rem;
    }
}

/* Aboutus section mission and vision */
/* ---------- Mission & Vision ---------- */
.pd-mv {
    padding: 4rem 0;
    background: var(--pd-cream);
}

.pd-mv-card {
    background: #fff;
    border: 1px solid rgba(199, 154, 75, .25);
    border-radius: 12px;
    padding: 2.4rem 2rem;
    height: 100%;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pd-mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(30, 40, 30, .1);
}

.pd-mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pd-cream-2);
    border: 1px solid rgba(199, 154, 75, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--pd-gold-dark);
    font-size: 1.6rem;
}

.pd-mv-title {
    font-weight: 700;
    color: var(--pd-green-deep);
    font-size: 1.4rem;
    margin-bottom: .8rem;
}

.pd-mv-text {
    color: var(--pd-muted);
    font-size: .95rem;
    line-height: 1.75;
    font-weight: 300;
    max-width: 420px;
    margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .pd-mv {
        padding: 3rem 0;
    }

    .pd-mv-card {
        padding: 2rem 1.5rem;
    }
}