        /* ===================================================
         Chatbot Widget – Multi-Step UI
         =================================================== */
        /* ---------- Container & Toggle Button ---------- */
        .chatbot-widget-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1049;
            font-family: "Open Sans", sans-serif;
        }

        .chatbot-button {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .chatbot-button:hover {
            transform: scale(1.05);
        }

        .chatbot-button.active .chatbot-avatar-wrap {
            /* box-shadow: 0 0 0 3px rgba(32, 135, 240, 0.35); */
            border-radius: 50%;
        }

        .chatbot-tooltip {
            background-color: #ffffff;
            color: #555;
            padding: 12px 20px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 500;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
            margin-right: 14px;
            position: relative;
            display: flex;
            align-items: center;
            white-space: nowrap;
            animation: tooltipPulse 2.5s ease-in-out infinite;
        }

        @keyframes tooltipPulse {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(-4px);
            }
        }

        .chatbot-tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid #ffffff;
        }

        .chatbot-avatar-wrap {
            position: relative;
            width: 62px;
            height: 62px;
            flex-shrink: 0;
        }

        .chatbot-avatar-wrap img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: none;
        }

        .online-dot {
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 16px;
            height: 16px;
            background-color: #2ed573;
            border: 3px solid #ffffff;
            border-radius: 50%;
            animation: onlinePulse 2s ease-in-out infinite;
        }

        @keyframes onlinePulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.5);
            }

            50% {
                box-shadow: 0 0 0 6px rgba(46, 213, 115, 0);
            }
        }

        /* ---------- Chatbot Window ---------- */
        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 400px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
            display: none;
            flex-direction: column;
            overflow: visible;
            transform-origin: bottom right;
            animation: chatbotSlideIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1049;
        }

        .chatbot-window.active {
            display: flex;
        }

        @keyframes chatbotSlideIn {
            from {
                opacity: 0;
                transform: scale(0.85) translateY(24px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* ---------- Header ---------- */
        .chatbot-header {
            padding: 10px 15x;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            border-bottom: none;
            border-radius: 8px 8px 0 0;
        }

        .chatbot-header-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .chatbot-header-info .header-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.35);
        }

        .header-text {
            display: flex;
            flex-direction: column;
        }

        .header-name {
            font-size: 15px;
            font-weight: 600;
            font-family: "Open Sans", sans-serif;
            color: #fff;
        }

        .header-status {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.85);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .status-dot {
            width: 7px;
            height: 7px;
            background: #2ed573;
            border-radius: 50%;
            display: inline-block;
        }

        .chatbot-header-actions {
            display: flex;
            gap: 5px;
            position: relative;
            top: 8px;
            right: 8px;
        }

        .chatbot-action-btn {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            cursor: pointer;
            padding: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .chatbot-action-btn:hover {
            background: rgba(255, 255, 255, 0.28);
        }

        .chatbot-action-btn img {
            width: 16px;
            height: 16px;
        }

        /* ---------- Chat Body ---------- */
        .chatbot-body {
            padding: 20px 16px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
            background-color: #ffffff;
            scroll-behavior: smooth;
            height: calc(100vh - 150px);
            max-height: 600px;
            border-radius: 0 0 8px 8px;
        }

        .chatbot-body:has(+ .chatbot-footer.active) {
            border-radius: 0;
            height: calc(100vh - 210px);
        }

        .chatbot-body::-webkit-scrollbar {
            width: 4px;
        }

        .chatbot-body::-webkit-scrollbar-track {
            background: transparent;
        }

        .chatbot-body::-webkit-scrollbar-thumb {
            background: #d0d5dd;
            border-radius: 4px;
        }

        /* ---------- Chat Messages ---------- */
        .chat-message {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .chat-message.bot {
            justify-content: flex-start;
        }

        .chat-message.user {
            justify-content: flex-end;
        }

        .chat-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .message-content {
            display: flex;
            flex-direction: column;
            max-width: 82%;
        }

        .message-content .chat-bubble .chat-thumb-icon {
            width: 24px !important;
            display: inline-block;
        }

        .chat-message.user .message-content {
            align-items: flex-end;
        }

        .chat-message.bot .message-content {
            align-items: flex-start;
        }

        .chat-bubble {
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 15.5px;
            line-height: 1.5;
            color: #455a64;
            word-break: break-word;
        }

        .chat-message.bot .chat-bubble {
            border-radius: 1.3em;
            border: 1px solid rgba(0, 0, 0, 0);
            padding: 10px 17px;
            transition: width 2s;
            word-break: break-word;
            line-height: 20px;
            background-color: #f8f8f8;
            text-align: initial;
            font-size: 15.5px;
            color: #455a64;
            font-family: "Open Sans", sans-serif;
        }

        .chat-message.user .chat-bubble {
            background-color: #7c3aed !important;
            color: #ffffff;
        }

        .chat-bubble.error-bubble {
            background-color: #fff0f0;
            border: 1px solid #ffcdd2;
            color: #d32f2f;
            font-size: 13px;
        }

        .chat-time {
            font-size: 11px;
            color: #a0a8b4;
            margin-top: 5px;
            padding: 0 4px;
        }

        .mt-2 {
            margin-top: 8px;
        }

        /* ---------- Fade-In Animation ---------- */
        .fade-in {
            animation: fadeInUp 0.4s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ---------- Typing Indicator ---------- */
        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 14px 20px;
            background-color: #ffffff;
            border: 1px solid #e8eaee;
            border-radius: 18px;
            border-bottom-left-radius: 4px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }

        .typing-indicator span {
            width: 8px;
            height: 8px;
            background-color: #a0a8b4;
            border-radius: 50%;
            display: inline-block;
            animation: typingBounce 1.4s ease-in-out infinite;
        }

        .typing-indicator span:nth-child(2) {
            animation-delay: 0.16s;
        }

        .typing-indicator span:nth-child(3) {
            animation-delay: 0.32s;
        }

        @keyframes typingBounce {

            0%,
            60%,
            100% {
                transform: translateY(0);
                opacity: 0.4;
            }

            30% {
                transform: translateY(-8px);
                opacity: 1;
            }
        }

        /* ---------- First Step Inline Layout ---------- */
        .first-step-container {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .first-step-container .chat-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .first-step-content {
            display: flex;
            flex-direction: column;
            max-width: 100%;
            align-items: flex-start;
            background-color: #f8f8f8;
            border-radius: 1.3em;
            padding: 12px 17px;
        }

        .first-step-content .chat-bubble {
            border: none;
            padding: 0;
            word-break: break-word;
            line-height: 20px;
            background-color: transparent;
            text-align: initial;
            font-size: 15.5px;
            color: #455a64;
            font-family: "Open Sans", sans-serif;
            margin-bottom: 4px;
        }

        .first-step-chips {
            gap: 8px;
            padding: 8px 0 4px 0;
        }

        .first-step-chips .chatbot-option-card {
            position: relative;
            display: block;
            align-items: center;
            gap: 8px;
            padding: 12px 20px 12px 40px;
            background-color: #ffffff;
            border: 1.5px solid #7c3aed;
            border-radius: 1.3rem;
            cursor: pointer;
            font-size: 15.5px;
            font-family: "Open Sans", sans-serif;
            color: #7c3aed;
            transition: all 0.22s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            outline: none;
            margin-bottom: 10px;
        }

        .first-step-chips .chatbot-option-card::after {
            content: "";
            background-color: #e1e1e1;
            width: 12px;
            height: 12px;
            position: absolute;
            left: 20px;
            top: 14px;
            border-radius: 50%;
        }

        .first-step-chips .chatbot-option-card:hover::after {
            background-color: #7c3aed;
        }

        .first-step-chips .chatbot-option-card:hover {
            border-color: #7c3aed;
            background-color: #f0f7ff;
            box-shadow: 0 3px 12px rgba(32, 135, 240, 0.12);
        }

        .first-step-chips .chatbot-option-card:active {
            transform: translateY(0) scale(0.98);
        }

        .first-step-chips .chatbot-option-card.selected {
            border-color: #7c3aed;
            background: #ffffff;
            color: #7c3aed;
            box-shadow: none;
        }

        .first-step-chips .chatbot-option-card:disabled {
            cursor: default;
            opacity: 0.6;
        }

        .first-step-chips .chatbot-option-card:disabled:hover {
            transform: none;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }

        .first-step-chips .chatbot-option-card:disabled:not(.selected) {
            border-color: #e2e5ea;
            background-color: #fafafa;
        }

        /* ---------- Option Cards ---------- */
        .chatbot-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 2px 0 4px 40px;
        }

        .chatbot-option-card {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background-color: #ffffff;
            border: 1.5px solid #e2e5ea;
            border-radius: 12px;
            cursor: pointer;
            font-size: 13px;
            font-family: "Open Sans", sans-serif;
            color: #333;
            transition: all 0.22s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            outline: none;
        }

        .chatbot-option-card:hover {
            border-color: #2087F0;
            background-color: #f0f7ff;
            box-shadow: 0 3px 12px rgba(32, 135, 240, 0.12);
            transform: translateY(-2px);
        }

        .chatbot-option-card:active {
            transform: translateY(0) scale(0.98);
        }

        .chatbot-option-card.selected {
            border-color: #2087F0;
            background: linear-gradient(135deg, #2087F0, #1a73e8);
            color: #ffffff;
            box-shadow: 0 4px 14px rgba(32, 135, 240, 0.3);
        }

        .chatbot-option-card.selected .card-icon {
            filter: brightness(1.2);
        }

        .chatbot-option-card:disabled {
            cursor: default;
            opacity: 0.6;
        }

        .chatbot-option-card:disabled:hover {
            transform: none;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }

        .chatbot-option-card:disabled:not(.selected) {
            border-color: #e2e5ea;
            background-color: #fafafa;
        }

        .card-icon {
            font-size: 18px;
            line-height: 1;
        }

        .card-label {
            font-size: 15.5px;
            line-height: 1.2;
        }

        .phone-input-wrap #chatbot-phone-input {
            padding-left: 5px !important;
        }

        /* ---------- Footer (Text / Phone input) ---------- */
        .chatbot-footer {
            padding: 0;
            border-top: 1px solid #eef0f3;
            display: none;
            align-items: center;
            background-color: #ffffff;
            min-height: 0;
            border-radius: 0 0 8px 8px;
            position: relative;
            overflow: visible;
        }

        .chatbot-footer.active {
            display: flex;
            padding: 12px 16px;
            min-height: 28px;
        }

        .chatbot-footer input[type="text"],
        .chatbot-footer input[type="email"] {
            flex: 1;
            border: none;
            outline: none;
            font-size: 14px;
            color: #333;
            background: transparent;
            font-family: inherit;
            padding: 0;
        }

        .chatbot-footer input::placeholder {
            color: #a0a8b4;
        }

        /* Phone input wrapper */
        .phone-input-wrap {
            flex: 1;
            display: flex;
            align-items: center;
        }

        .phone-input-wrap input[type="tel"] {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15.5px;
            color: #333;
            background: transparent;
            font-family: inherit;
            padding: 0;
        }

        /* intl-tel-input overrides inside chatbot */
        .chatbot-footer .iti {
            width: 100%;
            display: flex;
            align-items: center;

        }

        .chatbot-footer .iti__flag-container {
            position: relative;
        }

        .chatbot-footer .iti--separate-dial-code .iti__selected-flag {
            background: transparent;
            border-radius: 8px;
            padding: 0 6px 0 0;
        }

        .chatbot-footer .iti__selected-dial-code {
            font-size: 15.5px;
            color: #455a64;
            font-family: "Open Sans", sans-serif;
        }


        /* Country dropdown list — ensure it's visible above chatbot */
        .iti__dropdown-content {
            z-index: 99999 !important;
            border-radius: 12px !important;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
            border: 1px solid #e2e5ea !important;
            max-height: 220px !important;
            overflow-y: auto !important;
            background: #ffffff !important;

        }

        .iti__country-list {
            z-index: 99999 !important;
            border-radius: 12px !important;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
            border: 1px solid #e2e5ea !important;
            max-height: 220px !important;
            overflow-y: auto !important;
            background: #ffffff !important;
            right: -308px !important;
            max-width: 398px !important;
            overflow-x: hidden !important;
            margin-bottom: 25px !important;
        }

        .iti__search-input {
            font-size: 15.5px !important;
            padding: 8px 12px !important;
            border: none !important;
            border-bottom: 1px solid #eef0f3 !important;
            outline: none !important;
            font-family: inherit !important;
            background: #fafafa !important;
            border-radius: 12px 12px 0 0 !important;
            font-family: "Open Sans", sans-serif !important;
        }

        .iti__country {
            padding: 8px 12px !important;
            font-size: 15.5px !important;
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
            font-family: "Open Sans", sans-serif;
        }

        .iti__country:hover,
        .iti__country--highlight {
            background-color: #f0f7ff !important;
        }

        .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
            background-color: transparent !important;
        }

        .iti__country-name {
            font-size: 13px !important;
            color: #333 !important;
        }

        .iti__dial-code {
            color: #8b95a5 !important;
            font-size: 13px !important;
        }

        /* Send button */
        .send-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            transition: all 0.2s;
            flex-shrink: 0;
            margin-left: 10px;
            color: #2087F0;
        }

        .send-btn svg {
            width: 20px;
            height: 20px;
        }

        .send-btn:disabled {
            color: #ccc;
            cursor: default;
            pointer-events: none;
            transform: none !important;
            box-shadow: none !important;
            opacity: 0.6;
        }

        .send-btn:not(:disabled):hover {
            transform: scale(1.08);
            box-shadow: 0 3px 12px rgba(32, 135, 240, 0.35);
        }

        .send-btn:not(:disabled):active {
            transform: scale(0.95);
        }

        /* ---------- Shake Animation (Validation error) ---------- */
        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            15% {
                transform: translateX(-6px);
            }

            30% {
                transform: translateX(5px);
            }

            45% {
                transform: translateX(-4px);
            }

            60% {
                transform: translateX(3px);
            }

            75% {
                transform: translateX(-2px);
            }
        }

        .shake {
            animation: shake 0.45s ease-in-out;
        }

        /* ---------- Summary Card ---------- */
        .summary-card {
            background: #ffffff;
            border: 1px solid #e8eaee;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-left: 40px;
        }

        .summary-header {
            background: linear-gradient(135deg, #2087F0, #1a73e8);
            color: #fff;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .summary-header .summary-icon {
            font-size: 22px;
        }

        .summary-header h3 {
            margin: 0;
            font-size: 15px;
            font-family: "Goldplay-Alt-600", sans-serif;
            font-weight: 600;
        }

        .summary-body {
            padding: 16px 20px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px solid #f0f2f5;
            gap: 10px;
        }

        .summary-row:last-child {
            border-bottom: none;
        }

        .summary-label {
            font-size: 12px;
            text-transform: uppercase;
            color: #8b95a5;
            font-family: "Goldplay-Alt-600", sans-serif;
            letter-spacing: 0.5px;
            flex-shrink: 0;
        }

        .summary-value {
            font-size: 14px;
            color: #1a1a2e;
            font-family: "Goldplay-Alt-500", sans-serif;
            text-align: right;
            word-break: break-word;
        }

        /* ---------- Submit Button ---------- */
        .chatbot-submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #2087F0, #1a73e8);
            color: #ffffff;
            border: none;
            font-size: 15px;
            font-family: "Open Sans", sans-serif;
            cursor: pointer;
            transition: all 0.25s ease;
            border-radius: 0 0 16px 16px;
        }

        .chatbot-submit-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, #1a73e8, #155ab5);
            box-shadow: 0 4px 16px rgba(32, 135, 240, 0.35);
        }

        .chatbot-submit-btn:disabled {
            cursor: not-allowed;
            opacity: 0.75;
        }

        .chatbot-submit-btn.success {
            background: linear-gradient(135deg, #27ae60, #219a52);
        }

        .chatbot-submit-btn.error {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .btn-loader {
            display: inline-flex;
            align-items: center;
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 2.5px solid rgba(255, 255, 255, 0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ===================================================
         Responsive – Chatbot
         =================================================== */
        @media (max-width: 1480px) {
            .chatbot-body:has(+ .chatbot-footer.active) {

                height: calc(100vh - 210px);
            }

            .chatbot-body {
                height: calc(100vh - 150px);
                max-height: 100%;

            }
        }

        @media (max-width: 480px) {
            .chatbot-widget-container {
                bottom: 60px;
                right: 15px;
            }

            .iti--fullscreen-popup .iti__dropdown-content {
                position: absolute;
                top: auto;
                bottom: 100px;
                left: 10px;
                right: 10px;
            }

            .chatbot-tooltip {
                display: none !important;
            }

            .chatbot-avatar-wrap {
                width: 56px;
                height: 56px;
            }

            .chatbot-window {
                position: fixed;
                top: 50px;
                left: 0;
                right: 0;
                bottom: 58px;
                width: 100%;
                max-height: 100%;
                border-radius: 0;
                animation: chatbotSlideUp 0.3s ease-out;
            }

            .iti.iti--container {
                bottom: 100px !important;
            }

            .iti-mobile .iti__country-list {
                height: 100vh;
                max-height: 100% !important;
            }

            @keyframes chatbotSlideUp {
                from {
                    opacity: 0;
                    transform: translateY(100%);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .chatbot-body {
                height: calc(100vh - 140px);
                height: calc(100dvh - 140px);
                padding: 16px 12px;
                border-radius: 0 !important;
            }

            .chatbot-cards-container {
                padding-left: 0;
            }

            .first-step-content {
                max-width: 100%;
            }

            .first-step-chips .chatbot-option-card {
                padding: 10px 15px 10px 40px;
                font-size: 14px;
            }

            .summary-card {
                margin-left: 0;
            }

            .chatbot-option-card {
                padding: 9px 13px;
                font-size: 13px;
            }

            .first-step-chips .chatbot-option-card::after {


                left: 18px;
                top: 12px;

            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .chatbot-window {
                width: 360px;
                max-height: 560px;
            }

            .chatbot-body {
                height: 360px;
            }
        }

        .iti--container {
            z-index: 9999 !important;
        }

        .iti--inline-dropdown .iti__dropdown-content {
            max-height: 238px !important;
            width: 404px !important;
            left: -17px !important;
            bottom: 45px;
            overflow: hidden !important
        }

        @media (max-width: 991px) {
            .iti--inline-dropdown .iti__dropdown-content {

                left: -10px !important;

            }

            .iti__country-list {
                right: 0 !important;
                margin-bottom: 0px !important;
            }
        }

        /* Chatbot section Css end here  */