#jee-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Style for the chatbot icon itself */
.chatbot-icon {
    background-color: #2575fc;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

/* Style for the chatbot window */
.chatbot-window {
    width: 350px;
    height: 450px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 80px; /* Position above the icon */
    right: 0;
}

/* Class to hide the window */
.hidden {
    display: none;
}
body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            text-align: center;
            margin: 0;
            padding: 0;
        }

        /* Container to center all content vertically and horizontally */
        .welcome-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
            padding: 20px;
        }

        /* Heading styles with responsive font size */
        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 0.5rem;
        }

        /* Subtitle/paragraph styling with responsive font size */
        p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Container for the buttons */
        .button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Styles for the new 'a' tags, mimicking button behavior */
        .class-button {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 20px;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            text-decoration: none; /* Removes the underline from links */
            display: inline-block; /* Allows padding and other button-like properties */
        }

        /* Hover effect for the buttons */
        .class-button:hover {
            background-color: white;
            color: #2575fc;
            transform: scale(1.05);
        }

        /* Responsive styles for smaller screens */
        @media (max-width: 600px) {
            .button-container {
                flex-direction: column;
                align-items: center;
            }
        }