.chatbot-card {
    background: var(--darktheme-bg-gradient-box);
    border: 1px rgba(255, 255, 255, .2) solid;
    padding: 40px;
    width: 100%;
    border-radius: 12px;
    color: var(--darktheme-white);
    position: relative;
    overflow: hidden;
    padding-bottom: 300px;
}

@media screen and (max-width: 1024px) {
    .chatbot-card {
        padding: 20px;
        padding-bottom: 150px;
    }
}

@media screen and (max-width: 767px) {
    .chatbot-card {
        padding-bottom: 200px;
    }
}

.chatbot-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.chatbot-card .ch-custom-button {
    margin-top: 40px;
}

.chatbot-content h3 {
    font-family: var(--font-stack-heading);
    margin: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 300;
}

.chatbot-content p {
    font-size: 1rem;
    color: var(--darktheme-white);
    margin: 0;
}

.chatbot-card .circle-bg {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatbot-card .chat-icon {
    width: 80px;
    height: 80px;
    color: var(--darktheme-white);
	color: var(--darktheme-white);
    transform: translate(-15px, -15px);
}