/* Project Process Custom CSS - Green Theme (Scoped) */

.project-process-green-area {
    background-color: #504680 !important;
    /* Deep Green */
    padding: 120px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.project-process-green-area .section-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.project-process-green-area .section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Grid Layout Container */
.project-impact-inner {
    display: grid;
    grid-template-columns: 28% 1fr;
    /* Title column takes ~28% */
    gap: 40px;
    align-items: center;
}

.impact-content {
    margin-bottom: 0;
    /* Remove bottom margin as it's side-by-side now */
    padding-right: 20px;
}

/* Inner Grid for Cards */
.process-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Default to 2x2 for better fit in 75% width */
    gap: 24px;
}

@media (min-width: 1400px) {
    .process-grid-4 {
        grid-template-columns: repeat(4, 1fr);
        /* Try 4 columns only on very large screens */
    }
}

/* Card Style */
.process-card-item {
    background-color: #FDFBF0;
    /* Cream/Off-white background matching image */
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content like image? No, image has left align text */
    /* text-align: center; */
    /* Actually image has text left aligned but icon centered? Let's check image again */
    /* Image shows: Title Left, Graphic Center/Fill, Text Left */
    text-align: center;
    min-height: 280px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Card Title (Top) */
.process-card-item .card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #504680;
    margin-top: 10px;
    margin-bottom: 0;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Icon/Graphic (Middle) */
.process-card-item .card-icon-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.process-card-item .card-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #e5e2f1;
    /* Light Green Circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #504680;
    transition: transform 0.4s ease;
}

.process-card-item:hover .card-icon-circle {
    transform: scale(1.1) rotate(5deg);
    background-color: #D1ECD8;
}

/* Card Description/Value (Bottom) */
.process-card-item .card-value {
    font-size: 1.4rem;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    width: 100%;
    border-top: none;
    padding-top: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .project-impact-inner {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    .impact-content {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        /* Use 2 columns for grid below title */
    }
}

@media (max-width: 768px) {
    .project-process-green-area {
        padding: 50px 0;
    }

    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .process-card-item {
        padding: 20px 10px;
        min-height: 170px;
    }

    .process-card-item .card-icon-circle {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .process-card-item .card-value {
        font-size: 0.9rem;
    }

    .process-card-item .card-label {
        font-size: 0.65rem;
    }

    .project-process-green-area .section-title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .project-process-green-area .section-desc {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
}