
body {

   height: 100%;

}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    outline: none!important;

}
section{
    background-image: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), url("../img/agro5.jpg");
    background-size: cover;

}


.btn{
    box-shadow: none!important;
    outline: none!important;
    margin-left: 3em;
}
.btn-light{

    cursor: pointer;


}

ul{
    color: #444;
    display: flex;
}

.dropdown-menu{
    min-width: 60px!important;
    font-size: xx-small;
    text-align: center;
    background-color: transparent;
    border-color: black!important;
    padding:0 0;
}
.dropdown-item {
    width:97px;
    padding: 5px;
}

.searchInputBox{
    outline: none;
    padding-left: 5px;
    background-color: transparent!important;

}


::placeholder{
    color:black;

}

.text{
    display: flex;
    margin: auto;
    position: relative;
    font-size: x-large;
    color: black;


}

.article{
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    vertical-align: middle;

}
.article h5{
    text-align: center!important;
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {

    .text{
        font-size:medium ;
    }
    .article div p{
        font-size: xx-small;
    }
    .article div h5{
        font-size: small;

    }
    .article img{
        width: 100%;
    }



}
/*for chat text in widgets*/
.conversation-section{
    align-items: flex-start;
    gap: 30px;
}

.service-image{
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.content-side{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-desc{
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.chat-box{
    display: flex;
    flex-direction: column;
    gap: 10px;   /* reduced from 14px */
    margin-top: 8px;
}
.bubble{
    max-width: 90%;
    padding: 4px 15px;   /* reduced from 14px 18px */
    border-radius: 18px;
    font-size: 13px;      /* reduced from 14px */
    line-height: 1.2;     /* reduced from 1.6 */
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.question{
    background: #f1f1f1;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.answer{
    background: #dff4e4;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.role{
    font-size: 10px;      /* slightly smaller */
    margin-bottom: 4px;
}
.message{
    font-size: 11px;
}

.highlight{
    font-weight: bold;
    color: #1d7a32;
}

@media only screen and (max-width: 768px){

    .conversation-section{
        flex-direction: column;
    }

    .bubble{
        max-width: 100%;
    }

    .content-side{
        width: 100%;
    }
}

.explore-arrow{
    display: inline-flex;
    align-items: center;
    margin-left: 8px; /* small space from text */
    color: inherit;
    text-decoration: none;
}

@media print {
    .bubble {
        box-shadow: none !important;
        break-inside: avoid;
    }
}