.gradient-text {
    background: linear-gradient(90deg, #5b73e9, #a873c2, #d86e6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-button {
    background: linear-gradient(90deg, #5b73e9, #a873c2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.chatbot-button:hover {
    transform: scale(1.1);
}

.chat-window {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chat-header {
    background: linear-gradient(90deg, #5b73e9, #a873c2);
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 15px;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #eee;
}