    .chat-interface-container {
        height: 100%;
        width: 100%;
        border-radius: 1rem;
        /*background: radial-gradient(circle at top, rgb(3, 0, 95), rgb(0, 1, 36));*/
        background: rgba(0, 0, 0, 0.347);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        position:fixed;
        top:0%;
        /*transform: translateY(-50%);*/
        left:0%;
        margin:auto;
        z-index:100000;
    }

    /* Top Bar Header */
    .chat-header {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.077);
        display: flex;
        align-items: center;
        gap: 1rem;
        width:100%;
        position: relative;
    }

    .avatar {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #0072ff, #00c6ff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        box-shadow: 0 0 15px rgba(0, 114, 255, 0.4);
    }

    .header-info h2 {
        color: #ffffff00;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        background: linear-gradient(to right,aqua,rgb(0, 98, 255));;
        background-clip: text;
        
    }

    

    /* Message Stream Window */
    .messages-box {
        flex: 1;
        width:100%;
        overflow-y: auto;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relaitve;
        mask-image: linear-gradient(to bottom, transparent 5%, black 15%, black 85%, transparent);
    }

    /* Custom Scrollbar for modern look */
    .messages-box::-webkit-scrollbar {
        width: 6px;
    }
    .messages-box::-webkit-scrollbar-track {
        background: transparent;
    }
    .messages-box::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    /* Chat Bubbles */
    .message {
        max-width: 75%;
        padding: 1rem 1.25rem;
        border-radius: 1.25rem;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #e0e0e0;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* System/Ashish Message (Left Side) */
    .message.system {
        align-self: flex-start;
        background: rgba(255, 255, 255, 0.06);
        border-bottom-left-radius: 0.25rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* User Message (Right Side) */
    .message.user {
        align-self: flex-end;
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        color: #ffffff;
        border-bottom-right-radius: 0.25rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Dynamic Streaming Effect Element */
    .cursor {
        display: inline-block;
        width: 1px;
        height: 1rem;
        background: #00c6ff;
        margin-left: 2px;
        animation: blink 0.8s infinite;
    }
    @keyframes blink {
        50% { opacity: 0; }
    }

    /* Bottom Input Utility Bar */
    .input-container {
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.092);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1rem;
        background: rgba(0, 0, 20, 0.4);
        border-bottom-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }

    .input-container .input {
        width:100%;
        min-height:3rem;
        max-height: 6rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 1rem;
        color: #fff;
        font-size: 1rem;
        outline: none;
        resize: none;
        transition: all 0.3s ease;
        scrollbar-width: none;
        /*display: flex;
        flex-direction: row;
        align-items: center;
        /*justify-content: center;*/
        line-height: 1.5rem;
        overflow-y: auto;
        word-wrap: break-word;
        position: relative;
    }

    .input-container .input:empty::before{
        content: "Ask about Ashish's experience...";
        color: rgba(255, 255, 255, 0.4);
        position: absolute;
        left: 1rem;
        top: 1rem;
        pointer-events: none;
    }

    .input-container input:focus {
        border-color: #0072ff;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 15px rgba(0, 114, 255, 0.2);
    }

    .input-container button {
        background: linear-gradient(to right,aqua,rgb(0, 98, 255));
        color: white;
        border: none;
        font-size: 1rem;
        height:3rem;
        width:auto;
        padding: 0 1.75rem;
        border-radius: 1rem;
        font-weight: 600;
        cursor: pointer;
        place-self: end end;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .input-container button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4);
    }
    
    .input-container button:active {
        transform: translateY(0);
    }
    .hidden{
        display:none;
    }
    .greetings{
        font-size: 3rem;
        font-weight: 700;
        position:absolute;
        top:50%;
        transform: translateY(-50%);
        left:50%;
        transform: translateX(-50%);

    }
    .close-btn{
        justify-self: flex-end;
    }
    .close-btn {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.6); /* Soft color default */
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.2s ease;
        position: absolute;
        right:1rem;
        top:50%;
        transform: translateY(-50%);
    }

/* Glow and change color on hover/focus */
    .close-btn:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        /*transform: scale(1.05);*/
    }

    .fade-in{
        animation: fadein 200ms ease-in-out forwards;
    }

    .fade-out{
        animation: fadeout 100ms ease-in-out forwards;
    }

    @keyframes fadein {
        from{
            transform: scale(0);
            opacity: 0;
        }to{
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes fadeout {
        to{
            transform: scale(0);
            opacity: 0;
        }
    }

    
    @media (width<700px) {
        .greetings{
            font-size: 1.5rem;
            font-weight: 400;
        }
        .message{
            width:100%;
        }
    }