 .epc-project-showcase {
            padding: 50px 0;
            background: #fff;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .project-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
            transition: transform .35s ease;
        }

        .project-card:hover {
            transform: translateY(-6px);
        }

        .project-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

        .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 18px;
            background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
            color: #fff;
        }

        .project-info h5 {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .project-info span {
            font-size: 13px;
            opacity: .85;
        }

        /* ================== CTA ================== */

        .project-cta {
            background: #f6f6f6;
            color: #000;
            padding: 50px 0;
            text-align: center;
        }

        .project-cta a {
            background: #fff;
            color: #e10600;
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
        }
        @media (max-width: 575px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 16px; 
    }
}