 
        /* ================= WHY US ================= */
        .epc-why-us-advanced {
            padding: 50px 0;
            background: #f6f6f6;
        }

        /* WHY CARD */
        .why-card {
            background: #fff;
            padding: 15px;
            height: 100%;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.35s ease;
        }

        .why-card i {
            font-size: 28px;
            color: #e10600;
            margin-bottom: 10px;
        }

        .why-card h6 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .why-card p {
            font-size: 13px;
            line-height: 1.5;
            color: #555;
        }

        /* HOVER */
        .why-card:hover {
            transform: translateY(-10px);
        }

        /* COUNTERS */
        .epc-stats {
            padding: 50px 0;
            background: #fff;
        }

        .epc-counter {
            background: #fff;
            padding: 15px;
            border-radius: 14px;
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
            transition: transform 0.35s ease;
        }

        .epc-counter:hover {
            transform: translateY(-2px);
        }

        /* ICON */
        .counter-icon {
            width: 40px;
            height: 40px;
            background: rgba(225, 6, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
        }

        .counter-icon i {
            font-size: 22px;
            color: #e10600;
        }

        /* NUMBER */
        .epc-counter h3 {
            font-size: 32px;
            font-weight: 700;
            color: #e10600;
            margin-bottom: 4px;
            position: relative;
        }

        /* PLUS SIGN */
        .epc-counter h3::after {
            content: "+";
            font-size: 13px;
            margin-left: 2px;
        }

        /* LABEL */
        .epc-counter span {
            font-size: 12px;
            color: #555;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .epc-counter h3 {
                font-size: 34px;
            }
        }


        /* ================= CAPABILITIES ================= */
        .epc-capabilities-advanced {
            padding: 50px 0;
            background: #ffff;
        }

        /* CARD */
        .capability-card {
            position: relative;
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            height: 180px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s ease;
        }

        /* COMMON CONTENT */
        .cap-content {
            position: absolute;
            inset: 0;
            padding: 0px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: all 0.45s ease;
        }

        /* ICON */
        .cap-default i {
            font-size: 36px;
            color: #e10600;
            margin-bottom: 10px;
        }

        /* DEFAULT (VISIBLE) */
        .cap-default {
            opacity: 1;
            transform: translateY(0);
        }

        /* HOVER CONTENT (HIDDEN INITIALLY) */
        .cap-hover {
            opacity: 0;
            transform: translateY(40px);
            color: #fff;
            background: #e10600;
        }

        /* HOVER EFFECT */
        .capability-card:hover .cap-default {
            opacity: 0;
            transform: translateY(-30px);
        }

        .capability-card:hover .cap-hover {
            opacity: 1;
            transform: translateY(0);
        }

        /* TEXT */
        .cap-hover p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        /* OPTIONAL HOVER LIFT */
        .capability-card:hover {
            transform: translateY(-8px);
        }

        .capability-card i {
            display: inline-block;
            animation: iconPulse 1.3s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.12);
                opacity: 0.85;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }