
/*==========================================================
                HERO
==========================================================*/
html,
body {
    margin: 0;
    padding: 0;
}

.project-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .78));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    z-index: 5;
}

.hero-content .container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding-bottom: 120px;
}

.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 15px;
}

.project-breadcrumb a {
    color: #fff;
    opacity: .85;
}

.project-breadcrumb span {
    color: #ddd;
}

.project-badge {
    display: inline-flex;
    padding: 11px 24px;
    background: #b77f65;
    color: #fff;
    border-radius: 40px;
    margin-bottom: 22px;
}

.project-hero h1 {
    font-size: clamp(48px, 6vw, 78px);
    max-width: 820px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 26px;
    letter-spacing: -2px;
}

.project-hero p {
    max-width: 620px;
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .92);
    margin: 0;
}

.container {
    max-width: 1140px;
}

.project-hero .container {
    max-width: 1320px;
}

/*==========================================================
            RESPONSIVE
==========================================================*/

/* Large Laptop */
@media (max-width:1200px) {
    .project-hero .container {
        max-width: 1140px;
    }

    .hero-content .container {
        padding-bottom: 90px;
    }

    .project-hero h1 {
        font-size: 58px;
        max-width: 760px;
    }

    .project-hero p {
        font-size: 19px;
        max-width: 580px;
    }
}


/* Tablet Landscape */
@media (max-width:992px) {
    .project-hero {
        min-height: 650px;
        height: 80vh;
    }

    .hero-content .container {
        padding-bottom: 70px;
    }

    .project-breadcrumb {
        margin-bottom: 20px;
        font-size: 14px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .project-badge {
        padding: 9px 20px;
        font-size: 14px;
        margin-bottom: 18px;
    }

    .project-hero h1 {
        font-size: 48px;
        max-width: 100%;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .hero-divider {
        width: 70px;
        margin-bottom: 20px;
    }

    .project-hero p {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.8;
    }
}


/* Tablet */
@media (max-width:768px) {
    .project-hero {
        height: 75vh;
        min-height: 560px;
    }

    .hero-content .container {
        padding-bottom: 55px;
    }

    .project-breadcrumb {
        display: none;
    }

    .project-badge {
        font-size: 13px;
        padding: 8px 18px;
        margin-bottom: 16px;
    }

    .project-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .hero-divider {
        width: 60px;
        height: 3px;
        margin-bottom: 18px;
    }

    .project-hero p {
        font-size: 16px;
        line-height: 1.75;
    }
}

/* Mobile */
@media (max-width:576px) {
    .project-hero {
        height: 70vh;
        min-height: 480px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, .35),
                rgba(0, 0, 0, .85));
    }

    .hero-content .container {
        padding-bottom: 40px;
    }

    .project-badge {
        font-size: 12px;
        padding: 7px 16px;
        margin-bottom: 15px;
    }

    .project-hero h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-divider {
        width: 50px;
        margin-bottom: 16px;
    }

    .project-hero p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* Small Mobile */
@media (max-width:400px) {
    .project-hero {
        min-height: 430px;
    }

    .hero-content .container {
        padding-bottom: 30px;
    }

    .project-hero h1 {
        font-size: 26px;
    }

    .project-hero p {
        font-size: 14px;
    }

}

.hero-content .container {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width:576px) {
    .hero-content .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/*==========================================================
                    PROJECT FACTS
==========================================================*/
.project-facts {
    position: relative;
    margin-top: -90px;
    z-index: 20;
    display: flex;
    justify-content: center;
}

.facts-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border-radius: 30px;
    padding: 45px 55px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.fact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.fact-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #f8f4f2;
    transition: .35s;
}

.fact-item:hover .fact-icon {
    background: #b77f65;
    transform: translateY(-4px);
}

.fact-item:hover .fact-icon i {
    color: #fff;
}

.fact-icon i {
    color: #b77f65;
    font-size: 28px;
    transition: .35s;
}

.fact-content {
    min-width: 0;
}

.fact-content span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.fact-content h4 {
    margin: 0;
    color: var(--primary);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

.fact-divider {
    width: 1px;
    height: 75px;
    background: #ececec;
    flex-shrink: 0;
}

/*==========================================================
            RESPONSIVE
==========================================================*/
@media (max-width:1200px) {
    .facts-wrapper {
        padding: 35px;
        gap: 15px;
    }

    .fact-content h4 {
        font-size: 18px;
    }
}

@media (max-width:992px) {
    .project-facts {
        margin-top: -90px;
        flex-direction: column;
    }

    .facts-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 35px;
    }

    .fact-divider {
        display: none;
    }
}

@media (max-width:768px) {
    .facts-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .fact-item {
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .fact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .fact-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .fact-icon i {
        font-size: 24px;
    }

    .fact-content h4 {
        font-size: 18px;
    }
}


@media (max-width:576px) {
    .project-facts {
        margin-top: -90px;
        flex-direction: column;
    }

    .facts-wrapper {
        padding: 22px;
        border-radius: 22px;
    }

    .fact-item {
        gap: 15px;
    }

    .fact-icon {
        width: 55px;
        height: 55px;
    }

    .fact-icon i {
        font-size: 20px;
    }

    .fact-content span {
        font-size: 12px;
    }

    .fact-content h4 {
        font-size: 16px;
    }
}

/*==========================================================
                    PROJECT OVERVIEW
==========================================================*/

.project-overview {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    background: #fff;
}

.content-box {
    padding-right: 50px;
    padding-bottom: 30px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(183, 127, 101, .12);
    color: #b77f65;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.content-box h2 {
    font-size: clamp(36px, 4vw, 52px);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    max-width: 700px;
}

.content-box p {
    font-size: 18px;
    line-height: 2;
    color: #666;
    margin: 0;
}

/*==========================================================
            SCOPE CARD
==========================================================*/
.scope-card {
    position: sticky;
    top: 110px;
    background: #fff;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    border: 1px solid #f2f2f2;
}

.scope-card h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 18px;
}

.scope-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: #b77f65;
    border-radius: 20px;
}

.scope-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-card li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #efefef;
    transition: .3s;
}

.scope-card li:last-child {
    border-bottom: none;
}

.scope-card li:hover {
    padding-left: 8px;
}

.scope-card i {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #b77f65;
    color: #fff;
    font-size: 13px;
}

.scope-card span {
    font-size: 17px;
    color: #444;
    font-weight: 500;
}

/*==========================================================
            RESPONSIVE
==========================================================*/
@media (max-width:1200px) {
    .content-box {
        padding-right: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .scope-card {
        padding: 35px;
    }
}

@media (max-width:992px) {
    .project-overview {
        padding: 90px 0;
        margin-right: 20px;
        margin-left: 20px;

    }

    .content-box {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .scope-card {
        position: relative;
        top: auto;
    }

    .content-box h2 {
        font-size: 38px;
    }

}

@media (max-width:768px) {

    .project-overview {
        padding: 70px 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section-label {
        font-size: 12px;
        padding: 8px 18px;
    }

    .content-box h2 {
        font-size: 30px;
    }

    .content-box p {
        font-size: 16px;
        line-height: 1.9;
    }

    .scope-card {
        padding: 28px;
        border-radius: 22px;
    }

    .scope-card h3 {
        font-size: 24px;
    }

    .scope-card li {
        padding: 15px 0;
    }
}

@media (max-width:576px) {
    .scope-card h3::after {
        left: 40%;
    }

    .project-overview {
        padding: 60px 0;
        text-align: center;
        margin-left: 20px;
        margin-right: 20px;
    }

    .content-box h2 {
        font-size: 26px;
    }

    .scope-card {
        padding: 24px;
    }

    .scope-card i {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .scope-card span {
        font-size: 15px;
    }
}

        /*==========================================================
                CHALLENGES & CONTRIBUTION
==========================================================*/

.project-value {
    padding: 90px 0;
    display: flex;
    background: #f8f9fb;
    justify-content: center;
}

/*=========================
SECTION TITLE
=========================*/

.section-title {
    max-width: 760px;

}

.section-title h2 {

    font-size: 48px;

    color: var(--primary);

    margin: 18px 0;

}

.section-title p {

    color: #666;

    line-height: 1.9;

    font-size: 17px;

}

/*=========================
CARDS
=========================*/
.row.g-4 {
    display: flex;
    
}

.value-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    transition: .45s;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

/* Left Border */
.value-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
}

.challenges::before {
    background: #d35454;
}

.contribution::before {
    background: #2e8b57;
}

/*=========================
ICON
=========================*/
.value-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: #b77f65;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.value-icon i {
    color: #fff;
    font-size: 30px;
}

/*=========================
TEXT
=========================*/
.value-card h3 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card p {
    color: #666;
    line-height: 2;
    margin-bottom: 30px;
}

/*=========================
LIST
=========================*/
.value-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #efefef;
    color: #555;
    font-weight: 500;
}

.value-card li:last-child {
    border: none;
}

.value-card li::before {
    content: "✓";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #b77f65;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    flex-shrink: 0;
}

/*=========================
RESPONSIVE
=========================*/
@media (max-width:1200px) {
    .value-card {
        padding: 42px;
        margin-left: 20px;
        margin-right: 20px;
    }

/*     .row.g-4 {
        flex-direction: column;
    } */
}

@media (max-width:991px) {

    /* .row.g-4 {
        flex-direction: column;
    } */

    .project-value {
        padding: 90px 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .value-card {
        padding: 36px;
    }
}

@media (max-width:768px) {

    .row.g-4 {
        flex-direction: column;
    }

    .project-value {
        padding: 70px 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 16px;
    }

    .value-card {
        padding: 30px;
    }

    .value-card h3 {
        font-size: 26px;
    }
}

@media (max-width:576px) {

    .row.g-4 {
        flex-direction: column;
    }

    .project-value {
        padding: 60px 0;
        text-align: center;
        margin-left: 20px;
        margin-right: 20px;
    }

    .value-icon {
        margin: 0 auto 20px auto;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .value-card {
        padding: 24px;
        border-radius: 22px;
    }

    .value-icon {
        width: 65px;
        height: 65px;
        border-radius: 18px;
    }

    .value-icon i {
        font-size: 24px;
    }

    .value-card h3 {
        font-size: 22px;
    }

    .value-card li {
        font-size: 15px;
        padding: 12px 0;
    }
}

/*==========================================================
            PROJECT GALLERY
==========================================================*/
.project-gallery {
    padding: 90px 0;
    display: flex;
    justify-content: center;
}

/*=========================
TITLE
=========================*/
.section-title-center {
    max-width: 760px;
}

.section-title-center h2 {
    font-size: 48px;
    color: var(--primary);
    margin: 18px 0;
}

.section-title-center p {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

/*=========================
GRID
=========================*/
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 300px;
    gap: 22px;
}

.gallery-large {
    grid-row: span 2;
}

/*=========================
ITEM
=========================*/
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    display: block;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

/*=========================
OVERLAY
=========================*/
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(183, 127, 101, .20),
            rgba(183, 127, 101, .75));
    opacity: 0;
    transition: .45s;
}

.gallery-overlay i {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #fff;
    color: #b77f65;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    transform: scale(.7);
    transition: .45s;
}

/*=========================
HOVER
=========================*/
.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover {
    transform: translateY(-6px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:1200px) {
    .gallery-grid {
        grid-auto-rows: 260px;
    }
}

@media(max-width:991px) {
    .project-gallery {
        padding: 90px 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section-title-center {
        margin-bottom: 50px;
    }

    .section-title-center h2 {
        font-size: 38px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: auto;
        height: 420px;
    }
}

@media(max-width:768px) {
    .project-gallery {
        padding: 70px 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large {
        grid-column: auto;
        height: 300px;
    }

    .gallery-item {
        height: 260px;
    }
}

@media(max-width:576px) {
    .project-gallery {
        padding: 60px 0;
        text-align: center;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section-title-center {
        margin-bottom: 40px;
    }

    .section-title-center h2 {
        font-size: 30px;
    }

    .gallery-grid {
        gap: 18px;
    }

    .gallery-item {
        border-radius: 18px;
        height: 220px;
    }

    .gallery-large {
        height: 250px;
    }

    .gallery-overlay i {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

/*==========================================================
        RELATED PROJECTS
==========================================================*/

.related-projects {
    padding: 90px 0;
    display: flex;
    justify-content: center;
    background: #f8f9fb;
}

/*=========================
CARD
=========================*/
.related-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
    transition: .45s;
}

.related-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .14);
}

/*=========================
IMAGE
=========================*/
.related-image {
    position: relative;
    overflow: hidden;
    height: 270px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.related-card:hover .related-image img {
    transform: scale(1.12);
}

.related-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .35));
}

/*=========================
BADGE
=========================*/
.related-sector {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    padding: 9px 18px;
    background: #b77f65;
    color: #fff;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}

/*=========================
BODY
=========================*/
.related-body {
    padding: 32px;
}

.related-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8c8c8c;
    font-size: 15px;
    margin-bottom: 18px;
}

.related-location i {
    color: #b77f65;
}

.related-body h3 {
    color: var(--primary);
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 30px;
    min-height: 78px;
    transition: .3s;
}

.related-card:hover h3 {
    color: #b77f65;
}

/*=========================
BUTTON
=========================*/
.related-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #b77f65;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

.related-btn i {
    transition: .35s;
}

.related-btn:hover {
    color: var(--primary);
}

.related-btn:hover i {
    transform: translateX(8px);
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:1200px) {
    .related-image {
        height: 240px;
    }
}

@media(max-width:991px) {
    .related-projects {
        padding: 90px 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .related-body {
        padding: 28px;
    }

    .related-body h3 {
        font-size: 24px;
        min-height: auto;
    }
}

@media(max-width:768px) {
    .related-projects {
        padding: 70px 0;
        margin-left: 20px;
        margin-right: 20px;
    }

    .related-image {
        height: 230px;
    }
}

@media(max-width:576px) {
    .related-projects {
        padding: 60px 0;
        text-align: center;
        margin-left: 20px;
        margin-right: 20px;
    }

    .related-image {
        height: 210px;
    }

    .related-body {
        padding: 24px;
    }

    .related-body h3 {
        font-size: 22px;
    }

    .related-sector {
        font-size: 12px;
        padding: 8px 16px;
    }
}