           .chatbot-btn {
                position: fixed;
                bottom: 20px;
                left: 20px;
                background-color: transparent;
                padding: 12px;
                border-radius: 50%;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
                transition: all 0.3s ease-in-out;
                z-index: 1001;
                cursor: pointer;
            }

            /* Reduce button size for mobile */
            @media (max-width: 768px) {
                .chatbot-btn {
                    bottom: 15px;
                    left: 15px;
                    padding: 8px;
                }
            }

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

            /* Chatbot Icon */
            .chatbot-icon {
                width: 40px;
                height: 40px;
                object-fit: cover;
                border-radius: 50%;
            }

            /* Reduce chatbot icon size on mobile */
            @media (max-width: 768px) {
                .chatbot-icon {
                    width: 45px;
                    height: 45px;
                }
            }

            /* Chatbot Box */
            .chatbot-box {
                display: none;
                position: fixed;
                bottom: 80px;
                left: 20px;
                width: 25%;
                height: 55%;
                background-color: #fff;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                overflow: hidden;
                z-index: 1000;
            }

            /* Make Chatbot Box Responsive */
            @media (max-width: 768px) {
                .chatbot-box {
                    width: 85%;
                    left: 7%;
                    bottom: 70px;
                }
            }

            @media (max-width: 480px) {
                .chatbot-box {
                    width: 95%;
                    left: 2.5%;
                    bottom: 50px;
                }
            }

            /* Chatbot Header */
            .chatbot-header {
                background-color: #007bff;
                color: white;
                padding: 10px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-weight: bold;
            }

            /* Close Button */
            .close-btn {
                background: none;
                border: none;
                color: white;
                font-size: 20px;
                cursor: pointer;
            }

            /* Chatbot Body */
            .chatbot-body {
                padding: 15px;
                display: flex;
                flex-direction: column;
                height: 250px;
            }

         .chatbot-messages {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}

            /* Chatbot Input */
            .chatbot-input {
                padding: 10px;
                border-radius: 20px;
                border: 1px solid #ddd;
                width: 100%;
                font-size: 14px;
                outline: none;
            }

            /* Focus effect on input */
            .chatbot-input:focus {
                border-color: #007bff;
            }

            /* Responsive Chatbot Input */
            @media (max-width: 768px) {
                .chatbot-input {
                    font-size: 12px;
                    padding: 8px;
                }
            }
/* User message style */
.user-message {
    background-color: #4CAF50;
    color: white;
    float: right;
    clear: both;
}
      /* Bot message style */
.bot-message {
    background-color: #f1f1f1;
    color: #333;
    float: left;
    clear: both;
}
            /* Collapsible Course List */
            .collapsible {
                background-color: #007bff;
                color: white;
                cursor: pointer;
                padding: 10px;
                width: 100%;
                border: none;
                text-align: left;
                outline: none;
                font-size: 16px;
            }
            .collapsible:hover {
                background-color: #0056b3;
            }

            .collapsible-content {
                padding: 10px;
                display: none;
                overflow: hidden;
                background-color: #f1f1f1;
            }

            .collapsible-content p {
                margin: 5px 0;
            }

            /* Make collapsible text smaller on mobile */
            @media (max-width: 768px) {
                .collapsible {
                    font-size: 14px;
                    padding: 8px;
                }
            }
               .icon-container {
    position: fixed; /* Keeps it fixed when scrolling */
    bottom: 80px; /* Move it higher from the bottom */
    right: 20px; /* Keep it aligned to the right */
    display: flex;
    align-items: center;
    flex-direction: column; /* Stack icons vertically */
    gap: 15px; /* Space between icons */
    z-index: 9999; /* Ensure it's above all content */
}

/* WhatsApp Button */
.whatsapp_float_btn {
    width: 80px; /* Default size */
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Increase size on hover */
.whatsapp_float_btn:hover {
    transform: scale(1.2); /* Slightly increase on hover */
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .icon-container {
        bottom: 75px; /* Adjust position for mobile */
        right: 10px; /* Keep it near the right side */
        gap: 5px; /* Reduce space between icons */
    }

    .whatsapp_float_btn {
        width: 60px; /* Reduce button size for mobile */
    }
}

/* Chatbot Header with image and text */
.chatbot-header {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: #047cec;
    color: white;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
}

.chatbot-header-img {
    width: 50px;
    height: 50px;
    margin-right: 5px;
    border-radius: 50%;
}

.chatbot-header-text {
    display: flex;
    flex-direction: column;
}

.chatbot-header-name {
    font-size: 25px;
}
.user-message, .bot-message {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
    display: inline-block;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.4;
}

/* User message style */
.user-message {
    background-color: #4CAF50;
    color: white;
    float: right;
    clear: both;
}

/* Bot message style */
.bot-message {
    background-color: #f1f1f1;
    color: #333;
    float: left;
    clear: both;
}

.chatbot-messages {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}




        