.chat-search-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:30px;
}

#chatSearchForm{
  width:100%;
  max-width:720px;
  position:relative;
  
}

#chatSearchForm input{
  width:100%;
  
  font-size:18px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  outline:none;
  margin: 0 10px 10px;
  transition:.2s;
  background-color: #ffffff;
}

#chatSearchForm input:focus{
  border-color:#2563eb;
  
}

#chatSearchForm button{
  position:absolute;
  top:42%;
  right:8px;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;
  background:#16a34a;
  color:white;
  font-size:20px;
  cursor:pointer;
  margin: 0 10px 10px;
}

#chatSearchForm button:hover{
  
}

/* Mobile – even bigger & friendly */
@media(max-width:768px){
  #chatSearchForm input{
    font-size:20px;
    
  }
  #chatSearchForm button{
    width:36px;
    height:36px;
    font-size:22px;
  }
}

#chatSearchForm button{
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatSearchForm button i{
  line-height: 1;
 
}
/* add space for left + and right mic */


/* + button (left side) */
#chatSearchForm .plus-btn{
  left:10px;
  right:auto;
  background:#f3f4f6;
  color:#111;
}

/* mic button (right side before send) */
#chatSearchForm .mic-btn{
  right:54px;
  background:#f3f4f6;
  color:#111;
}

/* send button stays far right */
#chatSearchForm .send-btn{
  right:3px;
  background:#000000;
  color:#fff;
	font-weight: 400;
}

/* hover styles */
#chatSearchForm .plus-btn:hover,
#chatSearchForm .mic-btn:hover{
  background:#fff;
}

/* mobile spacing */
@media(max-width:768px){
  #chatSearchForm input{
    padding-left:10px !important;
    padding-right:10px !important;
  }
}

/* make room inside input */
#chatSearchForm input{
  padding-left:50px !important;
  padding-right:50px !important;
}

/* + button LEFT */
#chatSearchForm .plus-btn{
  position:absolute;
  left:10px;
  right:auto;
  top:42%;
  
  background:#ffffff;
  color:#000000;
  z-index:2;
}

/* mic button */
#chatSearchForm .mic-btn{
  position:absolute;
  right:54px;
  top:42%;
  
  background:#ffffff;
  color:#000000;
  z-index:2;
}

/* send button stays */
#chatSearchForm .send-btn{
  right:8px;
}

/* ChatGPT-style mic */
#chatSearchForm .mic-btn{
  position:absolute;
  right:54px;
  top:42%;
  
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;
  background:#ffffff;
  color:#444;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s;
}

#chatSearchForm .mic-btn:hover{
  background:#fff;
}

/* recording state */
#chatSearchForm .mic-btn.recording{
  background:#fff;
  color:#000;
}
#chatSearchForm .plus-btn svg,
#chatSearchForm .send-btn svg{
  width:18px;
  height:18px;
  stroke-width:1.4;
}

/* even lighter on hover */
#chatSearchForm .plus-btn:hover svg,
#chatSearchForm .send-btn:hover svg{
  stroke-width:1.4;
}

.chat-topbar{
  position:absolute;
  top:14px;
  left:20px;
  right:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:5;
	
}
.chat-topbar{
  gap:2px;
}
.chat-logo img{
    height:36px;
}
/* right side container */
.chat-actions{
  display:flex;
  align-items:center;
  gap:4px;
}
/* logo */
.chat-logo img{
  height:34px;
}
/* login */
.login-btn{
  padding:4px 8px;
  border-radius:20px;
  border:none;
  background:#111;
  color:#fff;
  font-size:10px;
  cursor:pointer;
  white-space:nowrap;
}
/* help ? */
.help-btn{
  width:32px;
  height:32px;
  border-radius:50%;
  border:none;
  background:#eee;
  font-weight:600;
  cursor:pointer;
}



.chat-input-wrap{
    position:absolute;
    bottom:0;
    width:100%;
}
@media (max-width:1200px){

  .chat-topbar{
    flex-wrap:wrap;
    gap:4px;
  }

  .chat-actions{
    margin-left:auto;
  }

}
@media (max-width:768px){

  .chat-logo img{
    height:28px;
  }

  .login-btn{
    font-size:8px;
    padding:1px 9px;
  }

  .help-btn{
    width:26px;
    height:26px;
    font-size:12px;
  }

}
.hero-inner{
	position: relative;
  background:#fff;
  border: 1px solid #e0e0e0;
  border-radius: 35px;
  margin-bottom: 30px;
  height: 270px;
	
	
}
.hero-inner-title{
	position: absolute;
	margin-left:17px;
	top: 67px;
}
.hero-content {
  position: relative;
  top: -10px;
  margin-left: 0px;
}
@media (max-width: 1025px) {
  .hero-content {
    margin: 30px 0 0;
    max-width: 600px;
  }
}
.hero-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 29px;
}
@media (max-width: 769px) {
	.hero-inner-title{
	
	margin-left:10px;
	top :67px;
}
	.hero-inner{
	margin-bottom: 30px;
	margin-top: 30px;
	
}
  .hero-content p {
    margin-bottom: 30px;
  }
}
/* Default (desktop) */
.chat-actions{
  display:flex;
  align-items:center;
  gap:6px;
}

/* Mobile */
@media (max-width:768px){
  .chat-actions{
    gap:4px;   /* reduce space */
  }

  .login-btn{
    margin-right:0;
  }
}
/* Placeholder style */
#chatSearchForm input::placeholder{
  font-size:14px;        /* reduce size */
  color:#9ca3af;         /* lighter grey */
  font-weight:400;
}

/* For Safari/older browsers */
#chatSearchForm input::-webkit-input-placeholder{
  font-size:14px;
  color:#9ca3af;
}

#chatSearchForm input:-ms-input-placeholder{
  font-size:14px;
  color:#9ca3af;
}
/* FIX iPhone oval button */
.send-btn{
  width:44px;
  height:44px;
  min-width:44px;
  min-height:44px;
  border-radius:50%;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1 / 1;   /* keeps it perfectly round */
}

/* prevent Safari stretch */
.send-btn svg{
  width:18px;
  height:18px;
  display:block;
}

/* remove iOS default styles */
button{
  -webkit-appearance:none;
  appearance:none;
}
.send-btn{
  flex-shrink:0;
  line-height:0;
}
/* ===== CHAT INPUT WRAPPER ===== */
#chatSearchForm{
  width:100%;
  max-width:720px;
  margin:0 auto;
  position:relative;
  display:flex;
  align-items:center;
}

/* ===== INPUT FIELD ===== */
#chatSearchForm input{
  width:100%;
  height:64px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.15);
  
  font-size:18px;
  outline:none;
  background:#fff;
  
  transition:.2s;
}

#chatSearchForm input:focus{
  border-color:#2563eb;
  
}

/* placeholder */
#chatSearchForm input::placeholder{
  font-size:14px;
  color:#9ca3af;
  font-weight:400;
}

/* ===== LEFT PLUS BUTTON ===== */
.plus-btn{
  position:absolute;
  left:14px;
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;
  background:transparent;
  color:#6b7280;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* ===== MIC BUTTON ===== */
.mic-btn{
  position:absolute;
  right:56px;
  width:36px;
  height:36px;
  border-radius:50%;
  border:none;
  background:transparent;
  color:#6b7280;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* ===== SEND BUTTON ===== */
.send-btn{
  position:absolute;
  right:10px;
  width:44px;
  height:44px;
  min-width:44px;
  min-height:44px;
  border-radius:50%;
  border:none;
  background:#16a34a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  aspect-ratio:1/1;
  padding:0;
  flex-shrink:0;
  line-height:0;
}

/* SVG inside send */
.send-btn svg{
  width:18px;
  height:18px;
  display:block;
}

/* iOS fix */
button{
  -webkit-appearance:none;
  appearance:none;
}

/* hover */
.send-btn:hover{
  transform:scale(1.05);
}
@media(max-width:768px){

  #chatSearchForm input{
    height:62px;
    font-size:14px;
    padding:0 0 0 0px;
  }

  .plus-btn{
    width:34px;
    height:34px;
    left:12px;
  }

  .mic-btn{
    width:34px;
    height:34px;
    right:54px;
  }

  .send-btn{
    width:42px;
    height:42px;
    right:8px;
  }

}
/* NEW CHAT ICON */
.newchat-btn{
  width:26px;
  height:26px;
  border-radius:10px;
  border:none;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#111;
}

.newchat-btn:hover{
  background:#fff;
}

/* spacing next to logo */
.chat-topbar{
  display:flex;
  align-items:center;
  gap:6px;
}

.chat-logo{
  margin-left:2px;
}
@media(max-width:768px){
  .chat-topbar{
    gap:3px;
  }

  .chat-logo{
    margin-left:1px;
  }
}

.chat-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LEFT GROUP */
.chat-left{
  display:flex;
  align-items:center;
  gap:4px;   /* controls icon ↔ logo spacing */
}

/* remove extra logo margin */
.chat-logo{
  margin:0;
}
/* desktop */
.chat-left{
  gap:4px;
}

/* large screens */
@media(min-width:1200px){
  .chat-left{
    gap:6px;
  }
}

/* mobile */
@media(max-width:768px){
  .chat-left{
    gap:3px;
  }
}

/* HEADER aligned with input */
.chat-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin: 15px 10px;
  padding-left:8px;
  padding-right:8px;
}