/* Award Card */
        .award-card {
            position: relative;
            background: #fff;
            border: 1px solid #eee;
            padding: 45px 25px 30px;
            text-align: center;
            transition: 0.4s;
        }

        /* Hover Card */
        .award-card:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transform: translateY(-6px);
        }

        /* Icon Circle */
        .award-icon {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: #c11920;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 5px solid #fff;
            transition: 0.4s;
        }

        .award-icon i {
            color: #fff;
            font-size: 22px;
        }

        /* Hover Icon Change */
        .award-card:hover .award-icon {
            background: #1d1d1d;
        }

        /* Certificate Image */
        .award-image {
            margin-top: 20px;
        }

        .award-image img {
            width: 100%;
            max-width: 160px;
            margin: 0 auto 18px;
            display: block;
        }

        /* Content */
        .award-content h4 {
            font-size: 17px;
            font-weight: 600;
            color: #222;
            margin-bottom: 10px;
        }

        .award-content p {
            font-size: 14px;
            color: #666;
            line-height: 24px;
        }

        /* Responsive */
        @media (max-width: 767px) {
            .award-card {
                padding: 40px 20px 25px;
            }

            .award-icon {
                width: 55px;
                height: 55px;
            }

            .award-image img {
                max-width: 140px;
            }
        }