.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #131b26;
  border-top: 1px solid #1e293b;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 1000;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden; /* Ensures inner elements follow the rounded corners */
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-item i{
  width: 22px;
  height: 22px;
  color: #f71143;
  margin-bottom: 4px;
}

.nav-item:hover {
  color: #f71143;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
  }
}
