.popup-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            text-align: center;
            margin: auto;
        }
        
        .notification-bell {
            position: absolute;
            top: 67px;
            font-size: 24px;
            color: #ff6b6b;
            animation: ring 2s infinite;
            cursor: pointer;
            z-index: 10;
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .main_Outer_popup_bo {
            background: white;
            position: absolute;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: scale(0.9);
            opacity: 0;
            animation: popIn 0.6s forwards;
            animation-delay: 0.3s;
            z-index: 10000;
            left: 0;
            right: 0;
            border-top: 3px solid black;
            border-bottom: 3px solid black;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }
        
        .popup-header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff9e7d 100%);
            padding: 25px 20px;
            color: white;
            position: relative;
        }
        
        .icon-container {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            animation: pulse 2s infinite;
        }
        
        .main-icon {
            font-size: 40px;
            color: white;
        }
        
        .popup-header h2 {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .popup-header p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .popup-content {
            padding: 30px;
        }
        
        .message_box {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            border-left: 4px solid #ff6b6b;
        }
        
        .message_box h3 {
            color: #ff6b6b;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .message_box p {
            color: #64748b;
            line-height: 1.6;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff9e7d 100%);
            color: white;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid #ff6b6b;
            color: #ff6b6b;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .benefits {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 25px;
        }
        
        .benefit {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .benefit i {
            font-size: 20px;
            color: #ff6b6b;
            background: #fff4f4;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .benefit span {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.2);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        @keyframes ring {
            0% { transform: rotate(0); }
            5% { transform: rotate(15deg); }
            10% { transform: rotate(-15deg); }
            15% { transform: rotate(15deg); }
            20% { transform: rotate(-15deg); }
            25% { transform: rotate(0); }
            100% { transform: rotate(0); }
        }
        
        @keyframes popIn {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }
        
        .no-certificate-badge {
            position: absolute;
            /* top: -20px; */
            left: 19%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6b6b 0%, #ff9e7d 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: bounce 2s infinite;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }
        
        .floating-icon {
            position: absolute;
            opacity: 0..1;
            z-index: -1;
            font-size: 60px;
            color: #ff6b6b;
        }
        
        .floating-icon:nth-child(1) {
            top: 20%;
            left: 10%;
            animation: float 15s infinite;
        }
        
        .floating-icon:nth-child(2) {
            top: 60%;
            right: 10%;
            animation: float 18s infinite;
        }
        
        .floating-icon:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation: float 12s infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }
        
        
@media(max-width:500px){
    .popup-header {
       padding: 13px 10px !important;
        
    }
    
    .popup-header h2 {
       margin-bottom: 0 !important;
   }
   
   .popup-header p {
      margin: 0;
   }
   
   .popup-content {
       padding: 10px 14px !important;
    }
    
    .message_box h3 {
      margin: 0;
        
    }
    
.benefits {
    margin-top: -12px;
}

.no-certificate-badge {
    top: 21px;
    padding: 8px 10px !important;
    font-size: 11px !important;
}  

.notification-bell {
    top: 60px !important;
    left: 44px !important;
}
    
}