﻿/*==================================================
    DATA ANALYTICS PROJECTS PAGE
==================================================*/


/*==================================================
    HERO
==================================================*/

.analytics-projects-hero {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    padding: 150px 0 85px;
    border-bottom: 4px solid var(--secondary);
}

    .analytics-projects-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -230px;
        right: -100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .analytics-projects-hero::after {
        content: "";
        position: absolute;
        width: 270px;
        height: 270px;
        right: 180px;
        bottom: -200px;
        background: rgba(200, 162, 74, 0.08);
        border-radius: 50%;
    }

.analytics-projects-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.analytics-projects-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.analytics-projects-header h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.analytics-projects-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.analytics-projects-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.analytics-github-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .analytics-github-button:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
    }

.analytics-project-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
}


/*==================================================
    CONTENT
==================================================*/

.analytics-projects-content {
    background: var(--light);
    padding: 85px 0 100px;
    min-height: 500px;
}

.analytics-projects-introduction {
    max-width: 760px;
    margin-bottom: 42px;
}

    .analytics-projects-introduction > span {
        display: block;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .analytics-projects-introduction h2 {
        color: var(--primary);
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .analytics-projects-introduction p {
        color: #66717f;
        font-size: 1.03rem;
        line-height: 1.8;
        margin: 0;
    }


/*==================================================
    PROJECT GRID
==================================================*/

.analytics-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/*==================================================
    PROJECT CARD
==================================================*/

.analytics-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 290px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .analytics-project-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: var(--secondary);
    }

    .analytics-project-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 162, 74, 0.38);
        box-shadow: 0 22px 52px rgba(12, 35, 64, 0.14);
    }

.analytics-project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 28px 30px 0 35px;
}

.analytics-project-type {
    display: inline-block;
    padding: 7px 13px;
    background: rgba(200, 162, 74, 0.13);
    color: #88671f;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.analytics-project-extension {
    color: #8a939f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.analytics-project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px 32px 35px;
}

.analytics-project-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

.analytics-project-card p {
    color: #68727f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.analytics-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    margin-top: auto;
    padding: 12px 23px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .analytics-project-button:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 9px 22px rgba(12, 35, 64, 0.18);
    }


/*==================================================
    EMPTY STATE
==================================================*/

.analytics-projects-empty {
    max-width: 780px;
    margin: 20px auto;
    padding: 70px 40px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    text-align: center;
}

    .analytics-projects-empty > span {
        display: inline-block;
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .analytics-projects-empty h2 {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .analytics-projects-empty p {
        color: #68727f;
        font-size: 1.02rem;
        line-height: 1.8;
        margin: 0;
    }


/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width: 991px) {

    .analytics-projects-hero {
        padding: 135px 0 72px;
    }

    .analytics-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .analytics-projects-hero {
        padding: 120px 0 62px;
    }

    .analytics-projects-content {
        padding: 65px 0 80px;
    }

    .analytics-projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .analytics-project-card {
        min-height: 270px;
    }

    .analytics-project-card-header {
        padding: 25px 25px 0 30px;
    }

    .analytics-project-card-body {
        padding: 22px 25px 28px 30px;
    }
}

@media (max-width: 480px) {

    .analytics-projects-header p {
        font-size: 1rem;
    }

    .analytics-projects-empty {
        padding: 52px 25px;
    }

        .analytics-projects-empty h2 {
            font-size: 1.65rem;
        }
}


/*css for software and webapp page*/
/*==================================================
    WEB APPS AND SOFTWARE PAGE
==================================================*/


/*==================================================
    HERO
==================================================*/

.software-projects-hero {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    padding: 150px 0 85px;
    border-bottom: 4px solid var(--secondary);
}

    .software-projects-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -230px;
        right: -100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .software-projects-hero::after {
        content: "";
        position: absolute;
        width: 270px;
        height: 270px;
        right: 180px;
        bottom: -200px;
        background: rgba(200, 162, 74, 0.08);
        border-radius: 50%;
    }

.software-projects-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.software-projects-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.software-projects-header h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.software-projects-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.software-projects-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.software-github-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .software-github-button:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
    }

.software-project-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
}


/*==================================================
    CONTENT
==================================================*/

.software-projects-content {
    background: var(--light);
    padding: 85px 0 100px;
    min-height: 500px;
}

.software-projects-introduction {
    max-width: 760px;
    margin-bottom: 42px;
}

    .software-projects-introduction > span {
        display: block;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .software-projects-introduction h2 {
        color: var(--primary);
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .software-projects-introduction p {
        color: #66717f;
        font-size: 1.03rem;
        line-height: 1.8;
        margin: 0;
    }


/*==================================================
    PROJECT GRID
==================================================*/

.software-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/*==================================================
    PROJECT CARD
==================================================*/

.software-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 290px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .software-project-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: var(--secondary);
    }

    .software-project-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 162, 74, 0.38);
        box-shadow: 0 22px 52px rgba(12, 35, 64, 0.14);
    }

.software-project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 28px 30px 0 35px;
}

.software-project-type {
    display: inline-block;
    padding: 7px 13px;
    background: rgba(200, 162, 74, 0.13);
    color: #88671f;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.software-project-extension {
    color: #8a939f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.software-project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px 32px 35px;
}

.software-project-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

.software-project-card p {
    color: #68727f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.software-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    margin-top: auto;
    padding: 12px 23px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .software-project-button:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 9px 22px rgba(12, 35, 64, 0.18);
    }


/*==================================================
    EMPTY STATE
==================================================*/

.software-projects-empty {
    max-width: 780px;
    margin: 20px auto;
    padding: 70px 40px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    text-align: center;
}

    .software-projects-empty > span {
        display: inline-block;
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .software-projects-empty h2 {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .software-projects-empty p {
        color: #68727f;
        font-size: 1.02rem;
        line-height: 1.8;
        margin: 0;
    }


/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width: 991px) {

    .software-projects-hero {
        padding: 135px 0 72px;
    }

    .software-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .software-projects-hero {
        padding: 120px 0 62px;
    }

    .software-projects-content {
        padding: 65px 0 80px;
    }

    .software-projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .software-project-card {
        min-height: 270px;
    }

    .software-project-card-header {
        padding: 25px 25px 0 30px;
    }

    .software-project-card-body {
        padding: 22px 25px 28px 30px;
    }
}

@media (max-width: 480px) {

    .software-projects-header p {
        font-size: 1rem;
    }

    .software-projects-empty {
        padding: 52px 25px;
    }

        .software-projects-empty h2 {
            font-size: 1.65rem;
        }
}

/*==================================================
    PORTFOLIO WEBSITES PAGE
==================================================*/

.portfolio-projects-hero {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    padding: 150px 0 85px;
    border-bottom: 4px solid var(--secondary);
}

    .portfolio-projects-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -230px;
        right: -100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .portfolio-projects-hero::after {
        content: "";
        position: absolute;
        width: 270px;
        height: 270px;
        right: 180px;
        bottom: -200px;
        background: rgba(200, 162, 74, 0.08);
        border-radius: 50%;
    }

.portfolio-projects-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.portfolio-projects-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.portfolio-projects-header h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.portfolio-projects-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.portfolio-projects-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.portfolio-github-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .portfolio-github-button:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
    }

.portfolio-project-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
}

.portfolio-projects-content {
    background: var(--light);
    padding: 85px 0 100px;
    min-height: 500px;
}

.portfolio-projects-introduction {
    max-width: 760px;
    margin-bottom: 42px;
}

    .portfolio-projects-introduction > span {
        display: block;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .portfolio-projects-introduction h2 {
        color: var(--primary);
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .portfolio-projects-introduction p {
        color: #66717f;
        font-size: 1.03rem;
        line-height: 1.8;
        margin: 0;
    }

.portfolio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 290px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .portfolio-project-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: var(--secondary);
    }

    .portfolio-project-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 162, 74, 0.38);
        box-shadow: 0 22px 52px rgba(12, 35, 64, 0.14);
    }

.portfolio-project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 28px 30px 0 35px;
}

.portfolio-project-type {
    display: inline-block;
    padding: 7px 13px;
    background: rgba(200, 162, 74, 0.13);
    color: #88671f;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-project-extension {
    color: #8a939f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.portfolio-project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px 32px 35px;
}

.portfolio-project-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

.portfolio-project-card p {
    color: #68727f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.portfolio-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    margin-top: auto;
    padding: 12px 23px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .portfolio-project-button:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 9px 22px rgba(12, 35, 64, 0.18);
    }

.portfolio-projects-empty {
    max-width: 780px;
    margin: 20px auto;
    padding: 70px 40px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    text-align: center;
}

    .portfolio-projects-empty > span {
        display: inline-block;
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .portfolio-projects-empty h2 {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .portfolio-projects-empty p {
        color: #68727f;
        font-size: 1.02rem;
        line-height: 1.8;
        margin: 0;
    }

@media (max-width: 991px) {

    .portfolio-projects-hero {
        padding: 135px 0 72px;
    }

    .portfolio-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .portfolio-projects-hero {
        padding: 120px 0 62px;
    }

    .portfolio-projects-content {
        padding: 65px 0 80px;
    }

    .portfolio-projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio-project-card {
        min-height: 270px;
    }

    .portfolio-project-card-header {
        padding: 25px 25px 0 30px;
    }

    .portfolio-project-card-body {
        padding: 22px 25px 28px 30px;
    }
}

@media (max-width: 480px) {

    .portfolio-projects-header p {
        font-size: 1rem;
    }

    .portfolio-projects-empty {
        padding: 52px 25px;
    }

        .portfolio-projects-empty h2 {
            font-size: 1.65rem;
        }
}
/*==================================================
    PORTFOLIO WEBSITES PAGE
==================================================*/

.portfolio-projects-hero {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    padding: 150px 0 85px;
    border-bottom: 4px solid var(--secondary);
}

    .portfolio-projects-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -230px;
        right: -100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .portfolio-projects-hero::after {
        content: "";
        position: absolute;
        width: 270px;
        height: 270px;
        right: 180px;
        bottom: -200px;
        background: rgba(200, 162, 74, 0.08);
        border-radius: 50%;
    }

.portfolio-projects-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.portfolio-projects-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.portfolio-projects-header h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.portfolio-projects-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.portfolio-projects-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.portfolio-github-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .portfolio-github-button:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
    }

.portfolio-project-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
}

.portfolio-projects-content {
    background: var(--light);
    padding: 85px 0 100px;
    min-height: 500px;
}

.portfolio-projects-introduction {
    max-width: 760px;
    margin-bottom: 42px;
}

    .portfolio-projects-introduction > span {
        display: block;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .portfolio-projects-introduction h2 {
        color: var(--primary);
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .portfolio-projects-introduction p {
        color: #66717f;
        font-size: 1.03rem;
        line-height: 1.8;
        margin: 0;
    }

.portfolio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 290px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .portfolio-project-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: var(--secondary);
    }

    .portfolio-project-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 162, 74, 0.38);
        box-shadow: 0 22px 52px rgba(12, 35, 64, 0.14);
    }

.portfolio-project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 28px 30px 0 35px;
}

.portfolio-project-type {
    display: inline-block;
    padding: 7px 13px;
    background: rgba(200, 162, 74, 0.13);
    color: #88671f;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-project-extension {
    color: #8a939f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.portfolio-project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px 32px 35px;
}

.portfolio-project-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

.portfolio-project-card p {
    color: #68727f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.portfolio-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    margin-top: auto;
    padding: 12px 23px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .portfolio-project-button:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 9px 22px rgba(12, 35, 64, 0.18);
    }

.portfolio-projects-empty {
    max-width: 780px;
    margin: 20px auto;
    padding: 70px 40px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    text-align: center;
}

    .portfolio-projects-empty > span {
        display: inline-block;
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .portfolio-projects-empty h2 {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .portfolio-projects-empty p {
        color: #68727f;
        font-size: 1.02rem;
        line-height: 1.8;
        margin: 0;
    }

@media (max-width: 991px) {

    .portfolio-projects-hero {
        padding: 135px 0 72px;
    }

    .portfolio-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .portfolio-projects-hero {
        padding: 120px 0 62px;
    }

    .portfolio-projects-content {
        padding: 65px 0 80px;
    }

    .portfolio-projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio-project-card {
        min-height: 270px;
    }

    .portfolio-project-card-header {
        padding: 25px 25px 0 30px;
    }

    .portfolio-project-card-body {
        padding: 22px 25px 28px 30px;
    }
}

@media (max-width: 480px) {

    .portfolio-projects-header p {
        font-size: 1rem;
    }

    .portfolio-projects-empty {
        padding: 52px 25px;
    }

        .portfolio-projects-empty h2 {
            font-size: 1.65rem;
        }
}
/*==================================================
    PORTFOLIO WEBSITES PAGE
==================================================*/

.portfolio-projects-hero {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    padding: 150px 0 85px;
    border-bottom: 4px solid var(--secondary);
}

    .portfolio-projects-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -230px;
        right: -100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .portfolio-projects-hero::after {
        content: "";
        position: absolute;
        width: 270px;
        height: 270px;
        right: 180px;
        bottom: -200px;
        background: rgba(200, 162, 74, 0.08);
        border-radius: 50%;
    }

.portfolio-projects-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.portfolio-projects-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.portfolio-projects-header h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.portfolio-projects-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.portfolio-projects-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.portfolio-github-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .portfolio-github-button:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
    }

.portfolio-project-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
}

.portfolio-projects-content {
    background: var(--light);
    padding: 85px 0 100px;
    min-height: 500px;
}

.portfolio-projects-introduction {
    max-width: 760px;
    margin-bottom: 42px;
}

    .portfolio-projects-introduction > span {
        display: block;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .portfolio-projects-introduction h2 {
        color: var(--primary);
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .portfolio-projects-introduction p {
        color: #66717f;
        font-size: 1.03rem;
        line-height: 1.8;
        margin: 0;
    }

.portfolio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 290px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .portfolio-project-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: var(--secondary);
    }

    .portfolio-project-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 162, 74, 0.38);
        box-shadow: 0 22px 52px rgba(12, 35, 64, 0.14);
    }

.portfolio-project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 28px 30px 0 35px;
}

.portfolio-project-type {
    display: inline-block;
    padding: 7px 13px;
    background: rgba(200, 162, 74, 0.13);
    color: #88671f;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-project-extension {
    color: #8a939f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.portfolio-project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px 32px 35px;
}

.portfolio-project-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

.portfolio-project-card p {
    color: #68727f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.portfolio-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    margin-top: auto;
    padding: 12px 23px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .portfolio-project-button:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 9px 22px rgba(12, 35, 64, 0.18);
    }

.portfolio-projects-empty {
    max-width: 780px;
    margin: 20px auto;
    padding: 70px 40px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    text-align: center;
}

    .portfolio-projects-empty > span {
        display: inline-block;
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .portfolio-projects-empty h2 {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .portfolio-projects-empty p {
        color: #68727f;
        font-size: 1.02rem;
        line-height: 1.8;
        margin: 0;
    }

@media (max-width: 991px) {

    .portfolio-projects-hero {
        padding: 135px 0 72px;
    }

    .portfolio-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .portfolio-projects-hero {
        padding: 120px 0 62px;
    }

    .portfolio-projects-content {
        padding: 65px 0 80px;
    }

    .portfolio-projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio-project-card {
        min-height: 270px;
    }

    .portfolio-project-card-header {
        padding: 25px 25px 0 30px;
    }

    .portfolio-project-card-body {
        padding: 22px 25px 28px 30px;
    }
}

@media (max-width: 480px) {

    .portfolio-projects-header p {
        font-size: 1rem;
    }

    .portfolio-projects-empty {
        padding: 52px 25px;
    }

        .portfolio-projects-empty h2 {
            font-size: 1.65rem;
        }
}
/*==================================================
    PORTFOLIO WEBSITES PAGE
==================================================*/

.portfolio-projects-hero {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    padding: 150px 0 85px;
    border-bottom: 4px solid var(--secondary);
}

    .portfolio-projects-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -230px;
        right: -100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .portfolio-projects-hero::after {
        content: "";
        position: absolute;
        width: 270px;
        height: 270px;
        right: 180px;
        bottom: -200px;
        background: rgba(200, 162, 74, 0.08);
        border-radius: 50%;
    }

.portfolio-projects-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.portfolio-projects-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.portfolio-projects-header h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.portfolio-projects-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.portfolio-projects-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.portfolio-github-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .portfolio-github-button:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
    }

.portfolio-project-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
}

.portfolio-projects-content {
    background: var(--light);
    padding: 85px 0 100px;
    min-height: 500px;
}

.portfolio-projects-introduction {
    max-width: 760px;
    margin-bottom: 42px;
}

    .portfolio-projects-introduction > span {
        display: block;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .portfolio-projects-introduction h2 {
        color: var(--primary);
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .portfolio-projects-introduction p {
        color: #66717f;
        font-size: 1.03rem;
        line-height: 1.8;
        margin: 0;
    }

.portfolio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 290px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .portfolio-project-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: var(--secondary);
    }

    .portfolio-project-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 162, 74, 0.38);
        box-shadow: 0 22px 52px rgba(12, 35, 64, 0.14);
    }

.portfolio-project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 28px 30px 0 35px;
}

.portfolio-project-type {
    display: inline-block;
    padding: 7px 13px;
    background: rgba(200, 162, 74, 0.13);
    color: #88671f;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-project-extension {
    color: #8a939f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.portfolio-project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px 32px 35px;
}

.portfolio-project-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

.portfolio-project-card p {
    color: #68727f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.portfolio-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    margin-top: auto;
    padding: 12px 23px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .portfolio-project-button:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 9px 22px rgba(12, 35, 64, 0.18);
    }

.portfolio-projects-empty {
    max-width: 780px;
    margin: 20px auto;
    padding: 70px 40px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    text-align: center;
}

    .portfolio-projects-empty > span {
        display: inline-block;
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .portfolio-projects-empty h2 {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .portfolio-projects-empty p {
        color: #68727f;
        font-size: 1.02rem;
        line-height: 1.8;
        margin: 0;
    }

@media (max-width: 991px) {

    .portfolio-projects-hero {
        padding: 135px 0 72px;
    }

    .portfolio-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .portfolio-projects-hero {
        padding: 120px 0 62px;
    }

    .portfolio-projects-content {
        padding: 65px 0 80px;
    }

    .portfolio-projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio-project-card {
        min-height: 270px;
    }

    .portfolio-project-card-header {
        padding: 25px 25px 0 30px;
    }

    .portfolio-project-card-body {
        padding: 22px 25px 28px 30px;
    }
}

@media (max-width: 480px) {

    .portfolio-projects-header p {
        font-size: 1rem;
    }

    .portfolio-projects-empty {
        padding: 52px 25px;
    }

        .portfolio-projects-empty h2 {
            font-size: 1.65rem;
        }
}
/*==================================================
    PORTFOLIO WEBSITES PAGE
==================================================*/

.portfolio-projects-hero {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
    padding: 150px 0 85px;
    border-bottom: 4px solid var(--secondary);
}

    .portfolio-projects-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -230px;
        right: -100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .portfolio-projects-hero::after {
        content: "";
        position: absolute;
        width: 270px;
        height: 270px;
        right: 180px;
        bottom: -200px;
        background: rgba(200, 162, 74, 0.08);
        border-radius: 50%;
    }

.portfolio-projects-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.portfolio-projects-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.portfolio-projects-header h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.portfolio-projects-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.portfolio-projects-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.portfolio-github-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .portfolio-github-button:hover {
        background: var(--white);
        border-color: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
    }

.portfolio-project-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
}

.portfolio-projects-content {
    background: var(--light);
    padding: 85px 0 100px;
    min-height: 500px;
}

.portfolio-projects-introduction {
    max-width: 760px;
    margin-bottom: 42px;
}

    .portfolio-projects-introduction > span {
        display: block;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .portfolio-projects-introduction h2 {
        color: var(--primary);
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .portfolio-projects-introduction p {
        color: #66717f;
        font-size: 1.03rem;
        line-height: 1.8;
        margin: 0;
    }

.portfolio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 290px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .portfolio-project-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: var(--secondary);
    }

    .portfolio-project-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 162, 74, 0.38);
        box-shadow: 0 22px 52px rgba(12, 35, 64, 0.14);
    }

.portfolio-project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 28px 30px 0 35px;
}

.portfolio-project-type {
    display: inline-block;
    padding: 7px 13px;
    background: rgba(200, 162, 74, 0.13);
    color: #88671f;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-project-extension {
    color: #8a939f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.portfolio-project-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px 32px 35px;
}

.portfolio-project-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

.portfolio-project-card p {
    color: #68727f;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.portfolio-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    margin-top: auto;
    padding: 12px 23px;
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .portfolio-project-button:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 9px 22px rgba(12, 35, 64, 0.18);
    }

.portfolio-projects-empty {
    max-width: 780px;
    margin: 20px auto;
    padding: 70px 40px;
    background: var(--white);
    border: 1px solid rgba(12, 35, 64, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(12, 35, 64, 0.08);
    text-align: center;
}

    .portfolio-projects-empty > span {
        display: inline-block;
        margin-bottom: 15px;
        color: var(--secondary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .portfolio-projects-empty h2 {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .portfolio-projects-empty p {
        color: #68727f;
        font-size: 1.02rem;
        line-height: 1.8;
        margin: 0;
    }

@media (max-width: 991px) {

    .portfolio-projects-hero {
        padding: 135px 0 72px;
    }

    .portfolio-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .portfolio-projects-hero {
        padding: 120px 0 62px;
    }

    .portfolio-projects-content {
        padding: 65px 0 80px;
    }

    .portfolio-projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio-project-card {
        min-height: 270px;
    }

    .portfolio-project-card-header {
        padding: 25px 25px 0 30px;
    }

    .portfolio-project-card-body {
        padding: 22px 25px 28px 30px;
    }
}

@media (max-width: 480px) {

    .portfolio-projects-header p {
        font-size: 1rem;
    }

    .portfolio-projects-empty {
        padding: 52px 25px;
    }

        .portfolio-projects-empty h2 {
            font-size: 1.65rem;
        }
}