
    /* =========================================================
       ORIGINAL DESIGN PAINTING - SEO PAGE
       ========================================================= */

:root {
    --odp-navy: #002A5C;
    --odp-blue: #0e65b6;
    --odp-orange: #FFA903;
    --odp-dark: #17202a;
    --odp-text: #53606d;
    --odp-light: #f5f7fa;
    --odp-border: #e4e9ef;
    --odp-white: #ffffff;
}

/* =========================================================
   PAGE HEADER
   ========================================================= */

.page_header_content {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page_header_content:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 42, 92, .92) 0%,
                    rgba(0, 42, 92, .72) 45%,
                    rgba(0, 42, 92, .30) 100%
            );
}

.page_header_content .container {
    position: relative;
    z-index: 2;
}

.page_header_content .heading {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: capitalize !important;
    text-shadow: 0 3px 15px rgba(0,0,0,.20);
}

/* orange accent below title */

.page_header_content .heading:after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    margin-top: 24px;
    background: var(--odp-orange);
}


/* =========================================================
   MAIN CONTENT AREA
   ========================================================= */

.project_details {
    padding-top: 80px;
    padding-bottom: 90px;
}

.project_details_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.post_content {
    color: var(--odp-text);
    font-size: 17px;
    line-height: 1.85;
}

.post_content p {
    margin-bottom: 25px;
}


/* =========================================================
   HEADINGS
   ========================================================= */

.post_content h1,
.post_content h2,
.post_content h3 {
    color: var(--odp-navy);
    font-weight: 800;
    line-height: 1.25;
}

.post_content h1 {
    font-size: 38px;
    margin-top: 55px;
    margin-bottom: 22px;
}

.post_content h2 {
    position: relative;
    font-size: 29px;
    margin-top: 55px;
    margin-bottom: 24px;
    padding-bottom: 14px;
}

.post_content h2:after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    background: var(--odp-orange);
    margin-top: 13px;
}

.post_content h2.text-center:after {
    margin-left: auto;
    margin-right: auto;
}

.post_content h3 {
    font-size: 25px;
    margin-top: 45px;
    margin-bottom: 25px;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.post_content > p:first-child {
    font-size: 20px;
    line-height: 1.8;
    color: #364454;
    font-weight: 400;
    padding: 30px 35px;
    background: #f6f8fb;
    border-left: 5px solid var(--odp-orange);
    border-radius: 0 10px 10px 0;
    margin-bottom: 30px;
}


/* =========================================================
   PROJECT GALLERY
   ========================================================= */

.projectPics {
    margin: 35px 0 55px;
}

.projectPics .text-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.projectPics .projpics {
    width: 100% !important;
    height: 240px;
    margin: 0 !important;
    display: block !important;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 42, 92, .12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.projectPics .projpics:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 42, 92, .20);
}

/* Five images - make last two larger */

.projectPics .projpics:nth-child(4),
.projectPics .projpics:nth-child(5) {
    height: 280px;
}


/* =========================================================
   BUTTONS / CTA
   ========================================================= */

.post_content .btn-primary {
    background: var(--odp-orange);
    border: 2px solid var(--odp-orange);
    color: #17202a;
    padding: 15px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 8px 20px rgba(255,169,3,.22);
    transition: all .25s ease;
}

.post_content .btn-primary:hover,
.post_content .btn-primary:focus {
    background: var(--odp-navy);
    border-color: var(--odp-navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,42,92,.20);
}

.post_content .text-center:has(.btn) {
    margin: 35px 0 45px;
}


/* =========================================================
   ORDERED LISTS
   ========================================================= */

.post_content ol {
    counter-reset: odp-counter;
    list-style: none;
    padding: 0;
    margin: 30px 0 45px;
}

.post_content ol > li {
    counter-increment: odp-counter;
    position: relative;
    background: #fff;
    border: 1px solid var(--odp-border);
    border-radius: 8px;
    margin-bottom: 14px;
    padding: 20px 22px 20px 70px;
    box-shadow: 0 4px 16px rgba(0,42,92,.05);
}

.post_content ol > li:before {
    content: counter(odp-counter);
    position: absolute;
    left: 20px;
    top: 17px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--odp-navy);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}


/* =========================================================
   NORMAL LISTS
   ========================================================= */

.post_content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px;
}

.post_content ul li {
    position: relative;
    padding: 11px 15px 11px 38px;
    margin-bottom: 5px;
    border-bottom: 1px solid #edf0f3;
}

.post_content ul li:before {
    content: "✓";
    position: absolute;
    left: 8px;
    top: 10px;
    color: var(--odp-orange);
    font-weight: 900;
    font-size: 17px;
}


/* =========================================================
   REVIEW
   ========================================================= */

.schema.review {
    position: relative;
    background: var(--odp-navy);
    color: rgba(255,255,255,.88);
    padding: 35px 40px;
    margin: 20px 0 50px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,42,92,.15);
}

.schema.review:before {
    content: "“";
    position: absolute;
    right: 25px;
    top: -10px;
    color: rgba(255,255,255,.08);
    font-family: Georgia, serif;
    font-size: 130px;
    line-height: 1;
}

.schema.review .review-stars {
    color: var(--odp-orange) !important;
    font-size: 23px !important;
    letter-spacing: 3px;
}

.schema.review .testimonialBody {
    display: block;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.7;
}

.schema.review .testimonialAuthor {
    color: #fff;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 5px;
}

.schema.review a {
    color: var(--odp-orange);
}


/* =========================================================
   LINKS
   ========================================================= */

.post_content a:not(.btn) {
    color: var(--odp-blue);
    font-weight: 600;
}

.post_content a:not(.btn):hover {
    color: var(--odp-orange);
}


/* =========================================================
   HORIZONTAL RULE
   ========================================================= */

.post_content hr {
    border: 0;
    width: 70px !important;
    height: 3px;
    background: var(--odp-orange);
    opacity: 1;
    margin: 35px auto;
}


/* =========================================================
   PAINTING PROCESS AREA
   ========================================================= */

/*
 Makes the repeated process headings visually look like
 separate steps without changing your existing PHP/HTML.
*/

.post_content h2:not(.text-center) + ul {
    background: #f7f9fb;
    border: 1px solid var(--odp-border);
    border-top: 4px solid var(--odp-navy);
    padding: 12px 25px;
    border-radius: 0 0 8px 8px;
    margin-top: -15px;
    margin-bottom: 35px;
}

.post_content h2:not(.text-center) + ul li:last-child {
    border-bottom: 0;
}


/* =========================================================
   LAST LOCAL SEO SECTION
   ========================================================= */

.post_content > h1:last-of-type {
    background: var(--odp-navy);
    color: #fff;
    padding: 35px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.post_content > h1:last-of-type + p {
    background: #f6f8fb;
    padding: 35px;
    border: 1px solid var(--odp-border);
    border-top: 0;
    border-radius: 0 0 10px 10px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .page_header_content {
        min-height: 350px;
    }

    .projectPics .text-center {
        grid-template-columns: repeat(2, 1fr);
    }

    .projectPics .projpics {
        height: 220px;
    }

    .post_content {
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    .page_header_content {
        min-height: 300px;
    }

    .page_header_content .heading {
        font-size: 34px;
    }

    .project_details {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .post_content > p:first-child {
        padding: 22px;
        font-size: 17px;
    }

    .post_content h1 {
        font-size: 30px;
    }

    .post_content h2 {
        font-size: 24px;
    }

    .post_content h3 {
        font-size: 21px;
    }

    .projectPics .text-center {
        grid-template-columns: 1fr;
    }

    .projectPics .projpics,
    .projectPics .projpics:nth-child(4),
    .projectPics .projpics:nth-child(5) {
        height: 260px;
    }

    .schema.review {
        padding: 28px 24px;
    }

    .post_content ol > li {
        padding: 18px 18px 18px 62px;
    }
}

@media (max-width: 480px) {

    .page_header_content {
        min-height: 260px;
    }

    .page_header_content .heading {
        font-size: 29px;
    }

    .projectPics .projpics,
    .projectPics .projpics:nth-child(4),
    .projectPics .projpics:nth-child(5) {
        height: 220px;
    }
}