.content{
 background: url(../assets/bluebg.jpg) repeat;
        object-fit: cover;
        background-attachment: fixed;
}    
.certificate-sec {
        /* overflow-x: hidden; */
        overflow: hidden;
        background: url(../assets/bluebg.jpg) repeat;
        object-fit: cover;
        background-attachment: fixed;

    }



    .certificateScene {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .certificatestage {
        position: relative;
        width: 70%;
        max-width: 100%;
    }

    /* certificate */
    .certificate {
        width: 100%;
        display: block;
        transform: translateY(300px) scale(.94);
        opacity: 0;
    }

    /* signaturepen */
    .signaturepen {
        position: absolute;
        width: 210px;
        /* left:49%; */
        left: 66%;
        top: 31%;
        /* 🔴 blank line ke hisaab se thoda upar-neeche karo */
        transform: translate(-50%, 360px) rotate(-35deg);
        opacity: 0;
        z-index: 5;
        pointer-events: none;
    }

    /* sign reveal system */
    .sign-mask {
        position: absolute;
        left: 36%;
        top: 52%;
        /* 🔴 blank line ke hisaab se adjust karo */
        width: 0%;
        overflow: hidden;
        z-index: 3;
    }

    .sign-img {
        width: 400px;
        /* 🔴 apni sign image ke size ke hisaab se */
        display: block;
    }

    /* gold badgegold */
    .badgegold {
        position: absolute;
        width: 320px;
        left: 2%;
        top: auto;
        bottom: 8%;
        opacity: 0;
        transform: translateX(-200px) scale(0.8);
        z-index: 5;
        pointer-events: none;
        /* filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); */
    }

    @media (max-width:1024px) {
        .certificatestage {
            width: 620px;
            max-width: 92%;
        }

        .sign-img {
            width: 300px;
        }

        .signaturepen {
            position: absolute;
            width: 125px;
            left: 78%;
            top: 35%;
        }
    }

    @media (max-width:767px) {
        .badgegold {
            position: absolute;
            width: 120px;
        }

        .sign-img {
            width: 168px;
            display: block;
        }

        .signaturepen {
            width: 85px;
            left: 102%;
        }

        .certificatestage {
            max-width: 95%;
        }
    }

    @media (min-width:480px) and (max-width:767px) {
        .signaturepen {
            width: 95px;
            left: 88%;
        }
    }

    @media (max-width:480px) {
        .signaturepen {
            width: 85px;
            left: 102%;
            top: 32%;
        }
    }

    .cta-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: url(../assets/bluebg.jpg) repeat;
        object-fit: cover;
         background-attachment: fixed;

    }

    .cta-grid div {
        background-color: #f0b800;
        border-radius: 3px;
        color: #000;
        display: inline-block;
        font-size: 15px;
        line-height: 1;
        padding: 12px 24px;
        text-align: center;
        transition: all .3s;
        text-transform: capitalize;
    }

    .cta-grid div:hover {
        background-color: #000;
        color: #fff;
        transition: .3s;
        transform: scale(1.1);
    }