
.enquiry-btn{
  position:fixed;
  right:0;
  top:40%;
  background:#d70006;
  color:#fff;
  padding:12px 18px;
  font-weight:600;
  cursor:pointer;
  border-radius:6px 0 0 6px;
  z-index:9999;

  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-align: center;
  letter-spacing: 1px;
}

.enquiry-btn:hover {
  background: #000;
  transition: 0.3s;
}




.popup-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:99999;
  justify-content:center;
  align-items:center;
}

.popup-box{
  background:#fff;
  width:95%;
  max-width:380px;
  border-radius:12px;
  padding:15px;
  position:relative;
}

.popup-header{
  background:#003366;
  color:#fff;
  padding:12px;
  text-align:center;
  border-radius:8px;
}

.close-btn{
  position:absolute;
  right:12px;
  top:10px;
  font-size:22px;
  cursor:pointer;
}

.popup-box input,
.popup-box button{
  width:100%;
  padding:10px;
  margin-top:10px;
  border-radius:6px;
  border:1px solid #ccc;
}

.popup-box button{
  background:#003366;
  color:#fff;
  border:none;
  font-size:16px;
}

.two-input{
  display:flex;
  gap:10px;
}
