/*phone*/
@media (max-width: 614px)  {
 
}
 /*ipad*/
@media (min-width: 992px) {
	 
}
 /*desktop*/
@media (min-width:1025px) { 
}

/* Styling for the Mobile Navigation Bar */
.mobile-bottom-nav {
   position:fixed;
  bottom: 20px;  
  left: 50%;
  transform: translateX(-50%);  
  
  width: 90%; 
  max-width: 450px;
  background-color: #e2e8f0;  
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 10px;
  border-radius: 30px;  
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  direction: rtl;
    z-index: 99999;
}

 .main-box-mob {
     margin: 0 auto;
}

 .nav-item-box-mob {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #64748b;
  font-size: 11px;
  transition: all 0.2s ease-in-out;
  flex: 1;
}

.nav-icon-box-mob {
  width: 22px;
  height: 22px;
  margin-bottom: 3px;
}

.nav-item-box-mob:hover,
.nav-item-box-mob.active {
  color: #0284c7;
}

/* ------------------------------------------------ */
/* Media Query: Hide on Desktop, Show on Mobile     */
/* ------------------------------------------------ */

@media screen and (min-width: 769px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
}