/* Project Impact Stats Styles */

.project-impact-area {
    background-color: #F8F9FA;
    /* Light background color from screenshot */
    padding: 100px 0;
}

.project-impact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.impact-content {
    flex: 1;
}

.impact-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--font_recoleta);
}

.impact-title .highlight-green {
    color: #e33a7d;
    /* Green color match */
    display: block;
}

.impact-desc {
    font-size: 18px;
    color: #555;
    font-family: var(--font_dmsans);
}

.impact-stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stat-item .stat-icon {
    width: 40px;
}

.stat-icon {
    font-size: 30px;
    color: #e33a7d;
    /* Green icon color */
    flex-shrink: 0;
    line-height: 1;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
    font-family: var(--font_dmsans) !important;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-family: var(--font_dmsans);
    text-transform: capitalize;
    font-weight: 400;
}


@media only screen and (max-width: 991px) {
    .project-impact-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .impact-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 575px) {
    .impact-stats-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .impact-title {
        font-size: 36px;
    }
}

/* --- Tech Stack / Expertise Section --- */
.tech-stack-area {
    padding: 100px 0;
    background-color: #111;
    color: #fff;
    border-bottom: none;
}

.tech-stack-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.tech-headers {
    flex: 0 0 40%;
}

.tech-label-small {
    font-size: 12px;
    font-weight: 700;
    color: #e33a7d;
    /* Green match */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    font-family: var(--font_dmsans);
}

.tech-title {
    font-size: 42px;
    font-family: var(--font_recoleta);
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.tech-tags-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
    /* Align rights like screenshot? Actually screenshot implies right list */
}

.tech-tag-pill {
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    font-family: var(--font_dmsans);
    background: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tech-tag-pill:hover {
    border-color: #e33a7d;
    /* Green hover */
    color: #e33a7d;
    transform: translateY(-2px);
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

@media only screen and (max-width: 991px) {
    .tech-stack-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .tech-tags-list {
        justify-content: flex-start;
        width: 100%;
    }

    .tech-headers {
        margin-bottom: 30px;
    }

    .tech-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .tech-stack-area {
        padding: 60px 0;
    }

    .tech-title {
        font-size: 26px;
    }

    .tech-headers {
        margin-bottom: 25px;
    }

    .tech-tags-list {
        gap: 10px;
    }

    .tech-tag-pill {
        padding: 8px 18px;
        font-size: 14px;
    }

    .project-impact-area {
        padding: 60px 0;
    }

    .impact-title {
        font-size: 28px;
    }

    .impact-desc {
        font-size: 16px;
    }
}