/* ===== PAGE SECTION ===== */
        .project-page {
            padding: 50px 0;
        }

        /* HERO IMAGE */
        .project-hero-img img {
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
        }

        /* FEATURE GRID */
        .project-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 0;
        }

        .project-feature {
            background: #fff;
            padding: 22px;
            border-radius: 14px;
            box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
            transition: .35s ease;
        }

        .project-feature:hover {
            transform: translateY(-6px);
        }

        .project-feature i {
            font-size: 28px;
            color: #e10600;
            margin-bottom: 10px;
        }

        /* HIGHLIGHT STRIP */
        .project-highlight {
            background: #f6f6f6;
            padding: 16px 20px;
            border-left: 5px solid #e10600;
            margin: 30px 0;
            font-weight: 500;
        }

        /* SIDEBAR */
        .project-sidebar {
            background: #fff;
            padding: 28px;
            border-radius: 16px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
            position: sticky;
            top: 120px;
        }

        .project-sidebar h5 {
            margin-bottom: 16px;
        }

        .project-links a {
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: #111;
            text-decoration: none;
            transition: .3s ease;
        }

        .project-links a:hover {
            color: #e10600;
            padding-left: 6px;
        }

        .project-cta {
            background: #e10600;
            color: #fff;
            padding: 18px;
            border-radius: 12px;
            text-align: center;
            margin-top: 25px;
        }

        .project-cta a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        .project-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
            margin: 45px 0;
        }

        .project-feature {
            background: #fff;
            padding: 26px 24px;
            border-radius: 16px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
            transition: .35s ease;
            position: relative;
            overflow: hidden;
        }

        /* subtle red accent bar */
        .project-feature::before {
            content: "";
            width: 4px;
            height: 100%;
            background: #e10600;
            position: absolute;
            left: 0;
            top: 0;
            opacity: .8;
        }

        .project-feature:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
        }

        /* icon circle */
        .feature-icon {
            width: 52px;
            height: 52px;
            background: rgba(225, 6, 0, .1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .feature-icon i {
            font-size: 26px;
            color: #e10600;
        }

        .project-feature h6 {
            font-weight: 600;
            margin-bottom: 6px;
        }

        .project-feature p {
            font-size: 14px;
            color: #555;
            margin: 0;
        }

        /* responsive */
        @media(max-width:768px) {
            .project-features {
                grid-template-columns: 1fr;
            }
        }


        @media(max-width:768px) {
            .project-features {
                grid-template-columns: 1fr;
            }
        }