
/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
  box-shadow:none !important;
}

/* সার্চ বারটি ফিক্সড করার কারণে নিচের কন্টেন্ট যেন ঢাকা না পড়ে, 
তাই বডিতে প্যাডিং দেওয়া হয়েছে। 
*/
body {
    padding-top: 135px; /* আপনার হেডারের উচ্চতা অনুযায়ী এটি পরিবর্তন হতে পারে */
}

/* ================= WRAPPER (FIXED POSITION) ================= */
.search-wrapper{
  width: 100%;
  max-width: 100%; 
  margin: 0;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
/* পজিশন ফিক্সড এবং নেভ মেনুর নিচে অবস্থান */
  position: fixed;
  top: 50px; /* আপনার মেইন নেভ মেনুর উচ্চতা যদি ৫০পিএক্স হয় */
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 998; /* নেভ মেনুর z-index থেকে ১ কম রাখুন */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

/* সার্চ বারের ভেতরের কন্টেন্টকে নির্দিষ্ট উইডথে রাখা */
.search-inner-container {
    display: flex;
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================= SEARCH FORM ================= */
.search-form{
  display:flex;
  flex:1;
  min-width:260px;
}

.input-wrapper{
  position:relative;
  flex:1;
}

.input-wrapper i{
  position:absolute;
  top:50%;
  left:14px;
  transform:translateY(-50%);
  color:#666;
}

#search{
  width:100%;
  padding:14px 14px 14px 42px;
  border:1px solid #ccc;
  border-radius:10px 0 0 10px;
  font-size:16px;
  outline:none;
  text-align:left;
  background:#eef4ff;
}

.search-btn{
  padding:14px 26px;
  border:none;
  background:#007bff;
  color:#fff;
  font-size:16px;
  border-radius:0 10px 10px 0;
  cursor:pointer;
  transition:.3s;
}

.search-btn:hover{
  background:#000;
}

/* ================= TOP BUTTONS ================= */
.top-buttons{
  display:flex;
  align-items:center;
  gap:12px;
}

.top-buttons a{
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 16px;
  font-size:17px;
  font-weight:600;
  text-decoration:none;
  border-radius:12px;
  white-space:nowrap;
  transition:0.3s ease;
}

.top-buttons .call{
  background:#1e293b;
  color:#ffffff;
}

.top-buttons .whatsapp{
  background:#25D366;
  color:#ffffff;
}

.top-buttons a:hover{
  opacity:0.85;
}

/* ================= FLOATING WHATSAPP ================= */
.floating-wa{
  position:fixed;
  bottom:35px;
  right:20px;
  padding:14px 22px;
  border-radius:50px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:600;
  color:#fff;
  background:#008000;
  animation:pulse 2s infinite;
  z-index:9999;
}

@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

.floating-wa:hover{
  background:#F54927;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  body {
    padding-top: 185px; /* মোবাইলে সার্চ বার নিচে নামে তাই প্যাডিং বাড়ানো হয়েছে */
  }
  .search-wrapper{
    top: 50px; /* মোবাইলেও নেভ মেনুর নিচে থাকবে */
    padding: 10px;
  }
  .search-inner-container {
    flex-direction: column;
    gap: 10px;
  }
  .search-form{
    width:100%;
  }
  .top-buttons{
    width: 100%;
    justify-content: center;
    
  }
  .top-buttons a {
    flex: 1;
    justify-content: center;
    font-size: 15px;
  }
}

/*-----div clear start here------->*/
.clear{
  clear: both;
} 
/*<!-----div clear end here------->*/