#complete-section{height:100%}.complete-main{height:100%;display:flex;justify-content:center;align-items:center;margin-top:-50px}.success-animation-container{display:flex;justify-content:center;align-items:center;height:250px}.button-wrapper{position:relative;display:flex;justify-content:center;align-items:center}.report-icon-circle{width:180px;height:180px;background-color:#4caf50;border-radius:50%;display:flex;justify-content:center;align-items:center;z-index:2;animation:circleScale .4s cubic-bezier(.175,.885,.32,1.275) forwards}.check-mark{stroke-dasharray:30;stroke-dashoffset:30;animation:drawCheck .8s ease-out .2s forwards}.glow-ring{position:absolute;width:200px;height:200px;border-radius:50%;background-color:rgba(76,175,80,.4);z-index:1;animation:glowPulse 1s ease-out forwards}@keyframes circleScale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}@keyframes drawCheck {
    0% {
        stroke-dashoffset: 30;
    }

    100% {
        stroke-dashoffset: 0;
    }
}@keyframes glowPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}.complete-module{padding:10px;width:100%}.complete-title{text-align:center;font-family:'Poppins',sans-serif;font-weight:bold;font-size:18px}.complete-description{text-align:center;font-family:'Poppins',sans-serif;color:#fff;font-size:14px}.report-id{text-align:center;font-family:'Poppins',sans-serif;color:#a0a0a0;font-size:13px}.nav-done-container{position:fixed;bottom:20px;left:50%;transform:translateX(-50%);text-align:center;z-index:10000;width:100%}.done-complete-btn{background-color:#eb4e3e;width:200px;color:#fff;font-family:'Poppins',sans-serif;font-weight:bold;font-size:15px;border-radius:30px}.done-complete-btn:hover{background-color: #ffff;color:#eb4e3e;border:#eb4e3e 1px solid}