        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        

        .mk-sample-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #667eea 180%, #764ba2 100%);
            color: white;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            cursor: pointer;
        }

        .mk-sample-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }


           
        /* Mharo Khujner Notification Popup Styles */
        .mk-notify-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(30,30,50,0.8));
            backdrop-filter: blur(25px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mk-notify-popup-overlay.mk-notify-active {
            opacity: 1;
            visibility: visible;
        }

        .mk-notify-popup-container {
            background: linear-gradient(135deg, #667eea 100%, #ffffff 10%);
            border-radius: 24px;
            width: 90%;
            max-width: 900px;
            min-height: 500px;
            position: relative;
            display: flex;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 
                        0 0 0 1px rgba(255, 255, 255, 0.1),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: translateY(50px) scale(0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mk-notify-popup-overlay.mk-notify-active .mk-notify-popup-container {
            transform: translateY(0) scale(1);
        }

        .mk-notify-popup-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 45%;
            width: 55%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 0 24px 24px 0;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
            z-index: 1;
            backdrop-filter: blur(10px);
        }

        .mk-notify-popup-container::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg at 50% 50%, transparent, rgba(255,255,255,0.03), transparent);
            animation: mk-notify-rotate 20s linear infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes mk-notify-rotate {
            to { transform: rotate(360deg); }
        }

        .mk-notify-close-btn {
            position: absolute;
            top: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 18px;
            z-index: 10;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mk-notify-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .mk-notify-left-section {
            flex: 1;
            padding: 80px 50px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .mk-notify-logo {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            opacity: 0;
            animation: mk-notify-slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        }

        @keyframes mk-notify-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .mk-notify-logo-icon {
            width: 56px;
            height: 56px;
            margin-right: 16px;
            background-image: url('https://mharokhujner.in/Asset/logobg.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
        }

        .mk-notify-logo-text {
            font-size: 26px;
            font-weight: 600;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .mk-notify-main-title {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 50px;
            line-height: 1.1;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            animation: mk-notify-slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }

        .mk-notify-step-indicator {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 32px;
            opacity: 0;
            animation: mk-notify-slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
        }

        .mk-notify-step {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            margin-right: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .mk-notify-step.mk-notify-step-active {
            background: #ffffff;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
        }

        .mk-notify-step.mk-notify-step-active::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: mk-notify-pulse 2s ease-in-out infinite;
        }

        @keyframes mk-notify-pulse {
            0%, 100% { opacity: 0; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        .mk-notify-form-container {
            margin-bottom: 20px;
            opacity: 0;
            animation: mk-notify-slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        .mk-notify-input-field {
            width: 100%;
            padding: 20px 24px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            font-size: 16px;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            margin-bottom: 24px;
            outline: none;
            color: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Inter', sans-serif;
        }

        .mk-notify-input-field::placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        .mk-notify-input-field:focus {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .mk-notify-btn {
            width: 100%;
            padding: 20px 24px;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .mk-notify-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mk-notify-btn:hover::before {
            opacity: 1;
        }

        .mk-notify-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .mk-notify-btn:active {
            transform: translateY(-1px);
        }

        .mk-notify-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .mk-notify-notice-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-weight: 400;
            letter-spacing: 0.2px;
        }

        .mk-notify-right-section {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            z-index: 2;
        }

        .mk-notify-model-image {
            width: 100%;
            max-width: 320px;
            height: auto;
            object-fit: cover;
            border-radius: 20px;
            float: right;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
            animation: mk-notify-floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both, mk-notify-float 6s ease-in-out infinite;
        }

        @keyframes mk-notify-floatIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes mk-notify-float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .mk-notify-image-placeholder {
            width: 320px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 16px;
            border: 2px dashed rgba(255, 255, 255, 0.2);
            float: right;
            backdrop-filter: blur(20px);
        }

        .mk-notify-success-message {
            text-align: center;
            padding: 40px 20px;
            opacity: 0;
            animation: mk-notify-successPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
        }

        @keyframes mk-notify-successPop {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .mk-notify-success-icon {
            font-size: 64px;
            margin-bottom: 24px;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
        }

        .mk-notify-success-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .mk-notify-success-text {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.6;
            font-weight: 400;
        }

        .mk-notify-hidden {
            display: none;
        }

        .mk-notify-loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: white;
            animation: mk-notify-spin 0.8s linear infinite;
            margin-right: 12px;
        }

        @keyframes mk-notify-spin {
            to { transform: rotate(360deg); }
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .mk-notify-popup-container {
                flex-direction: column;
                width: 95%;
                max-width: 420px;
                min-height: 600px;
            }

            .mk-notify-popup-container::before {
                display: none;
            }

            .mk-notify-left-section {
                padding: 50px 30px 30px;
            }

            .mk-notify-main-title {
                font-size: 42px;
            }

            .mk-notify-right-section {
                height: 250px;
                padding: 20px 30px 40px;
            }

            .mk-notify-model-image {
                max-width: 220px;
            }

            .mk-notify-image-placeholder {
                width: 220px;
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .mk-notify-left-section {
                padding: 40px 24px 24px;
            }

            .mk-notify-main-title {
                font-size: 36px;
            }

            .mk-notify-logo-text {
                font-size: 22px;
            }
        }

        /* Slide down animation for error messages */
        @keyframes mk-notify-slideDown {
            from { transform: translateX(-50%) translateY(-20px); opacity: 0; }
            to { transform: translateX(-50%) translateY(0); opacity: 1; }
        }