* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}


.whole-card {
  width: 700px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #000000;
}


.krishi-card {

  color: white;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: bold; 
  border-radius: 1rem;
   
}

.title img{
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  padding: 0.1rem 0.2rem 0.1rem 0.1rem;
  border-radius: 0.4rem;
  background:linear-gradient(to right, #831796d3, #271434d9);
}

.title h2 {
  font-size: 20px;
  color: #eef4f2;
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.title h3 {
  font-size: 16px;
  font-weight: 500;
  color: #eef4f2;
  text-align: center;
  white-space: nowrap;
  margin-bottom:1rem;
}

.title .highlight {
  background: linear-gradient(to right, #b267b9,#9918a5); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #8e14cb; */
  font-size: 17px;
  font-weight: 700;
}




.fixed-question-section{
  margin-top: 2rem;
    padding: 20px;
}


.options {
  display: grid;
  grid-template-columns:repeat(2, 50%);
  justify-content: space-evenly;
  gap: 0.5rem;
  margin-bottom: 16px;
}

.option {
  background:linear-gradient(to right, #9e3d451a, #74399c34);
  border: solid 0.1px rgba(118, 115, 115, 0.17);
  padding: 1rem;
  font-size: 14px;
  border-radius: 0.6rem;
  cursor: pointer;
  color: rgba(208, 204, 204, 0.739);
  transition: background-color 0.2s ease-in-out;
  display: flex ;
  text-align: start;
  justify-content: start;
  align-items: center;
  
}

.options img{
  width: 1.7rem;
  height: 1.7rem;
  padding: 0.4rem;
  border-radius: 0.3rem;
  margin-right: 1.25rem;
  opacity: 0.5;
  background:linear-gradient(to right, #d667e0,#6c249fab);
}


.custom-response{
  margin: 3rem auto 0 auto;
  width: 98%;
  
  
}

.input-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background:linear-gradient(to right, #9e3d451a, #74399c34);
  border-radius: 0.6rem;
  padding: 8px 0px 10px 16px;
  border: solid 0.1px rgba(118, 115, 115, 0.17);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.input-box input::placeholder {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(110, 108, 108, 0.583);
}


.input-box:focus-within {
  border: 0.1px solid #421058b6 ;
  box-shadow: 0 0 4px 1px #681377;
}


.input-box input {
  flex: 1;
  background:linear-gradient(to right, #39232500, #3c304500);
  border: none;
  outline: none;
  font-size: 14px;
  color: rgba(195, 192, 192, 0.638);
  
}

.send-btn {
  
  background: linear-gradient(to right,  #831796d3, #271434d9);
  border: none;
 padding: 0.2rem 0.2rem 0.2rem 0.2rem;
  border-radius: 0.4rem;

  cursor: pointer;
  display: flex;              
  justify-content: center;   
  align-items: center;
  margin-right: 1rem;
}


.send-btn img{
  height: 1.4rem;
    width: 1.4rem;
    
}


.second-last-line h3{
  color: rgba(253, 253, 253, 0.558);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  
}

.second-last-line img{
  width: 1.9rem;
  height: 1.9rem;
  margin-left: 0.2rem;
  opacity: 0.5;
}

.last-line h3{
  color: rgba(182, 179, 179, 0.53);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-top: 7rem;
  text-transform: capitalize;
}


@media (min-width: 375px) and (max-width: 500px) {

.whole-card {
  width: 350px;
}


.krishi-card {

  color: white;
  padding: 0.5rem;
  margin-top: 1rem;
  
   
}



.title img{
  width: 3rem;
  height: 3rem;
  margin-right: 0.8rem;
  padding: 0.1rem 0.2rem 0.1rem 0.1rem;
  border-radius: 0.4rem;
  background:linear-gradient(to right, #831796d3, #271434d9);
}

.title h2 {
  font-size: 1.4rem;
  color: #eef4f2;
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.title h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #eef4f2;
  text-align: center;
  white-space: nowrap;
  margin-bottom:0.8rem;
}

.title .highlight {
  background: linear-gradient(to right, #b267b9,#9918a5); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #8e14cb; */
  font-size: 1rem;
  font-weight: 700;
}




.fixed-question-section{
  margin-top: 1rem;
    padding: 20px;
}


.options {
  display: grid;
  grid-template-columns:repeat(1, 100%);
  justify-content: space-evenly;
  gap: 0.5rem;
  margin-bottom: 16px;
}

.option {
  background:linear-gradient(to right, #9e3d451a, #74399c34);
  border: solid 0.1px rgba(118, 115, 115, 0.17);
  padding: 0.5rem;
  font-size: 0.77rem;
  border-radius: 0.6rem;
  cursor: pointer;
  color: rgba(208, 204, 204, 0.739);
  transition: background-color 0.2s ease-in-out;
  display: flex ;
  text-align: start;
  justify-content: start;
  align-items: center;
  
}

.options img{
  width: 1.4rem;
  height: 1.4rem;
  padding: 0.3rem;
  border-radius: 0.3rem;
  margin-right: 0.8rem;  
}


.custom-response{
  margin-top: 1.4rem;
}

.input-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background:linear-gradient(to right, #9e3d451a, #74399c34);
  border-radius: 0.6rem;
  padding: 4px 0px 6px 12px;
  border: solid 0.1px rgba(118, 115, 115, 0.17);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.input-box input::placeholder {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(97, 92, 92, 0.583);
}

.input-box input {
  flex: 1;
  background:linear-gradient(to right, #39232500, #3c304500);
  border: none;
  outline: none;
  font-size: 0.8rem;
  color: rgba(195, 192, 192, 0.638);
  
}

.send-btn {
  
  background: linear-gradient(to right,  #831796d3, #271434d9);
  border: none;
 padding: 0.2rem 0.2rem 0.2rem 0.2rem;
  border-radius: 0.4rem;

  cursor: pointer;
  display: flex;              
  justify-content: center;   
  align-items: center;
  margin-right: 0.3rem;
}


.send-btn img{
  height: 1.2rem;
    width: 1.2rem;
    
}


.second-last-line h3{
  color: rgba(253, 253, 253, 0.558);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 400;
  
}

.second-last-line img{
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.1rem;
  opacity: 0.5;
}

.last-line h3{
  color: rgba(182, 179, 179, 0.721);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  margin-top: 3.5rem;
  text-transform: capitalize;
}

}



@media (min-width: 320px) and (max-width: 374px) {

.whole-card {
  width: 320px;
  height: auto;
}


.krishi-card {

  color: white;
  padding: 0.5rem;
  /* margin-top: 0rem; */
  
   
}



.title img{
  width: 3rem;
  height: 3rem;
  margin-right: 0.8rem;
  padding: 0.1rem 0.2rem 0.1rem 0.1rem;
  border-radius: 0.4rem;
  background:linear-gradient(to right, #831796d3, #271434d9);
}

.title h2 {
  font-size: 1.3rem;
  color: #eef4f2;
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.title h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #eef4f2;
  text-align: center;
  white-space: nowrap;
  margin-bottom:0.8rem;
}

.title .highlight {
  background: linear-gradient(to right, #b267b9,#9918a5); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #8e14cb; */
  font-size: 1rem;
  font-weight: 700;
}




.fixed-question-section{
  margin-top: 0.8rem;
    padding: 20px;
}


.options {
  display: grid;
  grid-template-columns:repeat(1, 100%);
  justify-content: space-evenly;
  gap: 0.5rem;
  margin-bottom: 16px;
}

.option {
  background:linear-gradient(to right, #9e3d451a, #74399c34);
  border: solid 0.1px rgba(118, 115, 115, 0.17);
  padding: 0.5rem;
  font-size: 0.77rem;
  border-radius: 0.6rem;
  cursor: pointer;
  color: rgb(230, 228, 228);
  transition: background-color 0.2s ease-in-out;
  display: flex ;
  text-align: start;
  justify-content: start;
  align-items: center;
  
}

.options img{
  width: 1.4rem;
  height: 1.4rem;
  padding: 0.3rem;
  border-radius: 0.3rem;
  margin-right: 0.8rem;  
}


.custom-response{
  margin-top: 1.4rem;
}

.input-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background:linear-gradient(to right, #9e3d451a, #74399c34);
  border-radius: 0.6rem;
  padding: 4px 0px 6px 12px;
  border: solid 0.1px rgba(118, 115, 115, 0.17);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.input-box input::placeholder {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(195, 194, 194, 0.691);
}

.input-box input {
  flex: 1;
  background:linear-gradient(to right, #39232500, #3c304500);
  border: none;
  outline: none;
  font-size: 0.8rem;
  color: rgba(234, 234, 234, 0.922);
  
}

.send-btn {
  
  background: linear-gradient(to right,  #831796d3, #271434d9);
  border: none;
 padding: 0.2rem 0.2rem 0.2rem 0.2rem;
  border-radius: 0.4rem;

  cursor: pointer;
  display: flex;              
  justify-content: center;   
  align-items: center;
  margin-right: 0.3rem;
}


.send-btn img{
  height: 1.2rem;
    width: 1.2rem;
    
}


.second-last-line h3{
  color: rgba(253, 253, 253, 0.558);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 400;
  
}

.second-last-line img{
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.1rem;
  opacity: 0.5;
}

.last-line h3{
  color: rgba(182, 179, 179, 0.53);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  margin-top: 2.5rem;
  text-transform: capitalize;
}

}