
        /* Chatbot Styles */
        .chatbot-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 350px;
            height: 500px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
            font-family: 'Arial', sans-serif;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .chatbot-container.active {
            transform: translateY(0);
            opacity: 1;
        }

        .chatbot-header {
            background-color:rgb(31, 46, 78);;
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: FortBook, Arial, sans-serif !important;
        }

        .chatbot-title {
            font-weight: bold;
            font-size: 18px;
            font-family: FortBook, Arial, sans-serif !important;
        }

        .chatbot-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .chatbot-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background-color: #f9f9f9;
            font-family: FortBook, Arial, sans-serif !important;
        }

        .message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 18px;
            line-height: 1.4;
            position: relative;
            font-size: 14px;
            font-family: FortBook, Arial, sans-serif !important;
        }

        .bot-message {
            background-color: #e6e6e6;
            color: #333;
            border-top-left-radius: 5px;
            align-self: flex-start;
            font-family: FortBook, Arial, sans-serif !important;
        }

        .user-message {
            background-color: #2c3e50;
            color: white;
            border-top-right-radius: 5px;
            margin-left: auto;
            font-family: FortBook, Arial, sans-serif !important;
        }

        .chatbot-input {
            display: flex;
            padding: 10px;
            border-top: 1px solid #ddd;
            background-color: white;
        }

        .chatbot-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
        }

        .chatbot-input button {
            background-color: #2c3e50;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 10px 15px;
            margin-left: 10px;
            cursor: pointer;
        }

        .chatbot-toggle {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            background-color: #2c3e50;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
        }

        .quick-reply {
            display: inline-block;
            margin: 5px;
            padding: 8px 12px;
            background-color: #f0f0f0;
            border-radius: 15px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.2s;
        }

        .quick-reply:hover {
            background-color: #2c3e50;
            color: white;
        }

        .typing-indicator {
            display: flex;
            padding: 10px 15px;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background-color: #999;
            border-radius: 50%;
            margin: 0 2px;
            animation: typingAnimation 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) {
            animation-delay: 0s;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingAnimation {

            0%,
            60%,
            100% {
                transform: translateY(0);
            }

            30% {
                transform: translateY(-5px);
            }
        }

        .car-specs {
            font-size: 12px;
            margin-top: 5px;
            color: #555;
        }

        .book-now-btnc {
            display: inline-block ;
            margin-top: 10px;
            padding: 5px 10px;
            background-color: #2c3e50;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-size: 12px;
            cursor: pointer;
            border: none;
        }

        .book-now-btnc:hover {
            background-color: #1a252f;
        }
    