
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial;
    background:#f4f7fc;
    overflow:hidden;

}

/* MAIN LAYOUT */

.main-container{

    display:flex;
    height:100vh;

}

/* SIDEBAR */

.sidebar{

    width:260px;
    background:#111827;
    color:white;
    padding:30px 20px;

}

.logo{

    font-size:28px;
    font-weight:bold;
    margin-bottom:40px;
    color:#0d6efd;

}

.logo-img{

    width:180px;
    height:auto;
    object-fit:contain;

}


@media(max-width:768px){

    .logo-img{

        width:70px;

    }

}

.menu{

    list-style:none;
    padding:0;

}

.menu li{

    padding:15px;
    border-radius:12px;
    margin-bottom:12px;
    background:rgba(255,255,255,0.05);
    cursor:pointer;
    transition:0.3s;

}

.menu li:hover{

    background:#0d6efd;

}

.menu li i{

    margin-right:10px;

}

/* CONTENT */

.content{

    flex:1;
    display:flex;
    flex-direction:column;

}

/* TOPBAR */

.topbar{

    background:white;
    padding:20px 30px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.topbar h4{

    margin:0;

}

/* CHAT AREA */

.chat-area{

    flex:1;
    overflow-y:auto;
    padding:30px;

}

/* WELCOME CARD */

.welcome-card{

    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    max-width:900px;
    margin:auto;

}

.ai-icon{

    width:90px;
    height:90px;
    background:#0d6efd;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:20px;

}

.welcome-title{

    font-size:34px;
    font-weight:bold;
    margin-bottom:15px;

}

.welcome-text{

    color:#666;
    line-height:1.9;
    font-size:17px;

}

/* SUGGESTIONS */

.suggestion-box{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;

}

.suggestion{

    background:#eef4ff;
    padding:14px 20px;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
    font-size:15px;

}

.suggestion:hover{

    background:#0d6efd;
    color:white;

}

/* CHAT BOX */

#chat-box{

    margin-top:30px;

}

.user-message{

    text-align:right;
    margin-bottom:25px;

}

.user-message .msg{

    background:#0d6efd;
    color:white;
    display:inline-block;
    padding:14px 20px;
    border-radius:18px;
    max-width:70%;
    text-align:left;

}

.ai-message{

    text-align:left;
    margin-bottom:25px;

}

.ai-message .msg{

    background:white;
    padding:14px 20px;
    border-radius:18px;
    display:inline-block;
    max-width:75%;
    box-shadow:0 3px 12px rgba(0,0,0,0.05);
    line-height:1.8;

}

/* INPUT AREA */

.input-box{

    background:white;
    padding:20px;
    display:flex;
    gap:12px;
    border-top:1px solid #ddd;

}

.input-box input{

    flex:1;
    padding:16px;
    border:1px solid #ddd;
    border-radius:15px;
    font-size:16px;

}

.input-box button{

    width:140px;
    border:none;
    background:#0d6efd;
    color:white;
    border-radius:15px;
    font-size:16px;

}

.input-box button:hover{

    background:#0056d2;

}

/* MOBILE */

@media(max-width:768px){

.sidebar{

    display:none;

}

.chat-area{

    padding:15px;

}

.welcome-card{

    padding:20px;

}

.welcome-title{

    font-size:26px;

}

.input-box button{

    width:100px;

}

}

.ai-response-card{

    background:white;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}

.ai-header{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;

}

.ai-avatar{

    width:65px;
    height:65px;
    background:#0d6efd;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;

}

.ai-header h3{

    margin:0;
    font-size:24px;

}

.ai-header span{

    color:#666;

}

.feature-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
    margin-top:20px;
    margin-bottom:25px;

}

.feature-box{

    background:#eef4ff;
    padding:18px;
    border-radius:15px;
    text-align:center;
    font-weight:bold;

}

.feature-box i{

    display:block;
    font-size:24px;
    margin-bottom:10px;
    color:#0d6efd;

}

.solution-card{

    background:#f8fafc;
    padding:20px;
    border-radius:18px;
    margin-top:20px;

}

.solution-card h4{

    margin-bottom:20px;

}

.solution-card ul{

    padding-left:20px;

}

.solution-card li{

    margin-bottom:20px;
    line-height:1.8;

}

.contact-card{

    margin-top:30px;
    background:#111827;
    color:white;
    padding:25px;
    border-radius:20px;

}

.contact-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;

}

.contact-buttons a{

    text-decoration:none;
    padding:14px 20px;
    border-radius:12px;
    color:white;
    font-weight:bold;

}

.sales-btn{

    background:#0d6efd;

}

.service-btn{

    background:#00b894;

}
.business-card{

    background:white;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}

.business-header{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;

}

.business-logo{

    width:70px;
    height:70px;
    background:#0d6efd;
    color:white;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;

}

.website-links{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;

}

.website-links a{

    background:#0d6efd;
    color:white;
    padding:14px 20px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;

}

.contact-info{

    margin-top:25px;
    font-size:20px;
    font-weight:bold;

}

/* map card */

.location-card{

    background:white;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}

.location-header{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;

}

.location-icon{

    width:70px;
    height:70px;
    background:#dc3545;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;

}

.location-header h3{

    margin:0;
    font-size:24px;

}

.location-header span{

    color:#666;

}

.location-body{

    line-height:1.9;

}

.map-container{

    margin-top:20px;
    overflow:hidden;
    border-radius:15px;

}

.location-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;

}

.location-buttons a{

    text-decoration:none;
    color:white;
    padding:14px 22px;
    border-radius:12px;
    font-weight:bold;

}

.direction-btn{

    background:#0d6efd;

}

.call-btn{

    background:#198754;

}

/* Director */

.director-card{

    background:white;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}

.director-header{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;

}

.director-avatar{

    width:80px;
    height:80px;
    background:#0d6efd;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;

}

.director-header h3{

    margin:0;
    font-size:28px;

}

.director-header span{

    color:#666;

}

.director-body{

    line-height:1.9;

}

.director-body h2{

    margin-bottom:15px;

}

.director-contact{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;

}

.director-contact a{

    text-decoration:none;
    color:white;
    padding:14px 22px;
    border-radius:12px;
    font-weight:bold;

}

.director-btn{

    background:#198754;

}

.website-btn{

    background:#0d6efd;

}

/* brochure-card */

.brochure-card{

    background:white;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}

.brochure-header{

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;

}

.brochure-icon{

    width:80px;
    height:80px;
    background:#dc3545;
    color:white;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;

}

.brochure-header h3{

    margin:0;
    font-size:28px;

}

.brochure-header span{

    color:#666;

}

.brochure-body{

    line-height:1.9;

}

.brochure-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;

}

.brochure-buttons a{

    text-decoration:none;
    color:white;
    padding:15px 25px;
    border-radius:12px;
    font-weight:bold;

}

.download-btn{

    background:#dc3545;

}

.contact-btn{

    background:#0d6efd;

}

.brochure-contact{

    margin-top:25px;
    font-size:20px;
    font-weight:bold;

}

/*
=====================================
BUTTONS
=====================================
*/

.sales-btn,
.service-btn{

    display:inline-block;
    text-decoration:none;
    color:white;
    padding:14px 22px;
    border-radius:12px;
    font-weight:bold;
    margin-top:10px;
    margin-right:10px;
    transition:0.3s;

}

/*
=====================================
SALES BUTTON
=====================================
*/

.sales-btn{

    background:#0d6efd;

}

.sales-btn:hover{

    background:#0056d2;
    color:white;

}

/*
=====================================
SERVICE BUTTON
=====================================
*/

.service-btn{

    background:#198754;

}

.service-btn:hover{

    background:#0f6b3c;
    color:white;

}

/*
=====================================
Mic BUTTON
=====================================
*/

.input-actions{

    display:flex;
    gap:10px;

}

.mic-btn{

    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#dc3545;
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;

}

.mic-btn:hover{

    background:#b02a37;

}
.mic-listening{

    animation:pulse 1s infinite;

}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
    }

}


/*
=====================================
MOBILE RESPONSIVE DESIGN
=====================================
*/

@media(max-width:768px){

    /*
    BODY
    */

    body{

        overflow-x:hidden;

    }

    /*
    SIDEBAR
    */

    .sidebar{

        width:100%;
        height:auto;
        position:relative;
        padding:15px;

    }

    /*
    MAIN CONTENT
    */

    .main-content{

        margin-left:0;
        width:100%;
        padding:15px;

    }

    /*
    WELCOME CARD
    */

    .welcome-card{

        width:100%;
        padding:20px;
        border-radius:20px;

    }

    /*
    CHAT AREA
    */

    .chat-container{

        width:100%;
        padding:10px;

    }

    /*
    CHAT MESSAGE
    */

    .msg{

        width:100%;
        max-width:100%;
        font-size:15px;
        padding:15px;

    }

    /*
    QUICK BUTTONS
    */

    .quick-questions{

        display:flex;
        flex-wrap:wrap;
        gap:10px;

    }

    .quick-questions button{

        width:100%;
        font-size:15px;
        padding:14px;

    }

    /*
    INPUT AREA
    */

    .input-area{

        width:100%;
        padding:10px;
        gap:10px;
        position:fixed;
        bottom:0;
        left:0;
        background:white;
        z-index:999;

    }

    /*
    INPUT BOX
    */

    .input-area input{

        width:100%;
        font-size:16px;
        height:55px;

    }

    /*
    SEND BUTTON
    */

    .input-area button{

        min-width:60px;
        height:55px;

    }

    /*
    MIC BUTTON
    */

    .mic-btn{

        width:55px;
        height:55px;

    }

    /*
    AI RESPONSE CARD
    */

    .ai-response-card{

        padding:15px;
        border-radius:18px;

    }

    /*
    AI HEADER
    */

    .ai-header{

        flex-direction:column;
        align-items:flex-start;
        gap:10px;

    }

    /*
    AI TITLE
    */

    .ai-header h3{

        font-size:22px;

    }

    /*
    BUTTONS
    */

    .sales-btn,
    .service-btn{

        width:100%;
        text-align:center;
        margin-right:0;

    }

    /*
    FIX HORIZONTAL SCROLL
    */

    *{

        max-width:100%;

    }

}

.chat-area{

    flex:1;
    overflow-y:auto;
    padding:30px;

    height:100vh;
    scroll-behavior:smooth;

}
