        /* Chatbot Icon */
.chatbot-icon {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background: none;          /* remove gradient */
    border-radius: 0;          /* remove circle */
    padding: 0;                /* remove extra space */
    width: auto;               /* auto size */
    height: auto;
    box-shadow: none;          /* remove shadow */
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s ease;
    display: inline-block;
}

.chatbot-icon:hover {
    transform: scale(1.05);
}

.chatbot-icon img {
    width: 100px;        /* adjust size as needed */
    height: auto;
    display: block;
}

        /* Tooltip */
        .tooltip-text {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            white-space: nowrap;
            background-color: #333;
            padding: 15px 20px;
            border-radius: 8px;
            color: #fff;
            font-size: 14px;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .chatbot-icon:hover .tooltip-text {
            opacity: 1;
            pointer-events: auto;
        }

        /* Chatbot Window */
        .chatbot-window {
            display: none;
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 400px;
            max-width: 90vw;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            overflow: hidden;
            animation: slideIn 0.5s ease-out;
        }

        .chatbot-window.show {
            display: flex;
            flex-direction: column;
        }
        
        /* Animation for opening the chatbot */
        @keyframes slideIn {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .chatbox-header {
            background: #6e1299;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 18px;
            letter-spacing: 1px;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .chatbox-header-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .chatbox-header img {
            width: 60px;
            height: 60px;
        }

        .header-text h5 {
            color: #fff;
            text-shadow: 0px 6px 5px rgb(0 0 0);
            margin-bottom: 5px;
            font-size: 18px;
        }

        .header-text p {
            color: #fcf6f6;
            font-size: 12px;
            margin: 0;
        }

        .close-chat-btn {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            top: 10px;
            right: 15px;
            transition: transform 0.3s ease;
            line-height: 1;
        }

        .close-chat-btn:hover {
            transform: rotate(90deg);
        }

        .chatbox-body {
            padding: 20px;
            height: 400px;
            overflow-y: auto;
            font-weight: 500;
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            background: #f7f9fc;
        }

        /* Chat Message Wrapper */
        .chat-message {
            display: flex;
            width: 100%;
            margin-bottom: 15px;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* USER â€“ right (blue) */
        .chat-message.user {
            justify-content: flex-end;
        }

        .chat-message.user {
            background: #5D866C;
            color: #fff;
            float:right;
            padding: 12px 16px;
            border-radius: 18px 18px 0px 18px;
            max-width: 75%;
            word-wrap: break-word;
            font-size: 14px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            
        }

        /* BOT â€“ left (gradient) */
        .chat-message.bot {
            justify-content: flex-start;
        }

        .chat-message.bot {
            background: #C0B236;
            color: #fff;
            padding: 12px 16px;
            border-radius: 18px 18px 18px 0px;
            max-width: 75%;
            word-wrap: break-word;
            font-size: 14px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            float:left;
        }

        /* Markdown styling for bot messages */
        .bubble h1, .bubble h2, .bubble h3 {
            margin-top: 12px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .bubble h1 { font-size: 1.3em; }
        .bubble h2 { font-size: 1.2em; }
        .bubble h3 { font-size: 1.1em; }
        
        .bubble p {
            margin-bottom: 10px;
        }
        
        .bubble ul, .bubble ol {
            margin-left: 20px;
            margin-bottom: 10px;
        }
        
        .bubble li {
            margin-bottom: 5px;
        }

        .bubble a {
            color: #fff901;
            text-decoration: underline;
        }

        .bubble a:hover {
            color: #ffff99;
        }

        /* Typing indicator */
        .bubble.typing {
            background: #007bff;
            padding: 12px 16px;
        }

        .bubble.typing::after {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            margin-left: 3px;
            border-radius: 50%;
            background-color: #fff;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 20%, 50%, 80%, 100% { opacity: 0; }
            10%, 30%, 60%, 90% { opacity: 1; }
        }

        .chatbox-footer {
            display: flex;
            padding: 15px;
            background-color: #f9f9f9;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            gap: 10px;
        }

        .chatbox-footer input {
            flex: 1;
            padding: 5px 16px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .chatbox-footer input:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        .chatbox-footer button {
            background: coral;
            color: white;
            padding: 5px 24px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .chatbox-footer button:hover:not(:disabled) {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(42, 39, 218, 0.3);
        }

        .chatbox-footer button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Scrollbar Styling */
        .chatbox-body::-webkit-scrollbar {
            width: 8px;
        }

        .chatbox-body::-webkit-scrollbar-thumb {
            background-color: #104b8b;
            border-radius: 10px;
        }

        .chatbox-body::-webkit-scrollbar-thumb:hover {
            background-color: #0056b3;
        }

        .chatbox-body::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        /* Empty State */
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #666;
            text-align: center;
            padding: 20px;
        }
        
        .empty-state-icon {
            font-size: 48px;
            margin-bottom: 12px;
        }
        
        .empty-state h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #333;
        }
        
        .empty-state p {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }
        
        .suggestion-chips {
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }
        
        .chip {
            background: white;
            border: 1px solid #e5e5e5;
            padding: 10px 16px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 13px;
            text-align: left;
        }
        
        .chip:hover {
            background: ORANGE;
            color: white;
            border-color: transparent;
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .chatbot-window {
                width: 90vw;
                right: 5vw;
                bottom: 90px;
            }

            .chatbot-icon {
                right: 20px;
                bottom: 20px;
            }

            .chatbox-body {
                height: 350px;
            }
        }
        .user-msg{
    text-align:right;
    margin:10px;
}

.bot-msg{
    text-align:left;
    margin:10px;
}
/*cahtbot end  */
    #topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #00229e;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Hover effect (desktop) */
#topBtn:hover {
    background: #333;
    transform: translateY(-3px);
}

/* ðŸ“± Mobile Responsive */
@media (max-width: 768px) {
    #topBtn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}
@media (max-width:768px){

    .social-wrapper{
        top:300px;   /* move icons lower */
        left:5px;
        z-index:1000;
    }

    .social-icon{
        width:40px;
        height:40px;
        font-size:16px;
    }

}

/*social media */
 .social-container {
            position: relative;
            left: 10%;
            top: 58%;
            /*transform: translateY(-50%);*/
            z-index: 1000;
        }

        .social-item {
            position: relative;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        }

        .social-label {
            position: absolute;
            left: 50px;
            background: white;
            padding: 8px 20px;
            border-radius: 25px;
            color: #333;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
            pointer-events: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .social-item:hover .social-label {
            opacity: 1;
            transform: translateX(10px);
        }

        /* Social Media Colors */
        .facebook { background: linear-gradient(135deg, #1877f2, #0d5dbf); }
        .twitter { background: linear-gradient(135deg, #1da1f2, #0c85d0); }
        .instagram { background: linear-gradient(135deg, #e4405f, #d6249f, #ffdd55); }
        .youtube { background: linear-gradient(135deg, #ff0000, #cc0000); }
        .linkedin { background: linear-gradient(135deg, #0077b5, #005582); }
        .whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
        .telegram { background: linear-gradient(135deg, #0088cc, #006699); }
        .github { background: linear-gradient(135deg, #333, #000); }

        /* Mobile Responsive - Keep on Left */
        @media (max-width: 768px) {
            .social-container {
               left: 8px;
        top: 64%;
        transform: translateY(-4%);
            }

            .social-item {
                margin-bottom: 12px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .social-label {
                font-size: 12px;
                padding: 6px 15px;
            }
        }

        @media (max-width: 480px) {
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .social-item {
                margin-bottom: 10px;
            }
        }
.social-wrapper{
    position:fixed;
    left:10px;
    top:200px;
}

.social-toggle{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#333;
    color:white;
    font-size:22px;
    cursor:pointer;
    margin-bottom:10px;
}

.social-container{
    display:none;
    flex-direction:column;

}