body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f1f1f1;
    }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000; /* ya jo bhi navbar ka color ho */
}

.menu-icon {
  position: absolute; /* ya relative to navbar */
  top: 12px;
  left: 12px;
  font-size: 35px;
  cursor: pointer;
  color: white;
  z-index: 1100;
}
    .menu-icon.move-right {
      left: 293px;
      color:red;
      font-size:50px;
    }

    .sidebar {
      width: 280px;
      height: 100vh;
      background-color: white;
      border-right: 1px solid #ccc;
      position: fixed;
      top: 0;
      left: -280px;
      overflow-y: auto;
      z-index: 1000;
      transition: left 0.3s ease;
    }

    .sidebar.open {
      left: 0;
    }

    .sidebar-header {
      background:blue;
      color: white;
      padding: 10px;
      font-size: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sidebar-header img {
      width: 40px;
      height: 40px;
    }

    .sidebar ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .sidebar ul li {
      padding: 14px 20px;
      border-bottom: 1px solid #eee;
      color: #333;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: background 0.2s ease;
      font-size: 18px;
    }

    .sidebar ul li:hover {
      background-color: #f1f1f1;
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f9f9f9;
    }

    .main-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px;
    }

    .slider-container {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .slider {
      display: flex;
      transition: transform 0.5s ease;
      touch-action: pan-y;
    }

    .slide {
      min-width: 100%; 
      box-sizing: border-box;
      background: #fff;
    }

    .slide a {
      display: block;
    }

    .slide img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      object-fit: cover;
    }

    .slide img:hover {
      transform: scale(1.02);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .dots {
      display: flex;
      justify-content: center;
      margin: 10px 0;
    }

    .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: background-color 0.3s;
}

.dot.active-dot {
  background-color: #ff6600;
  width: 50px;
  animation: progressAnim 3s linear forwards;
  border-radius: 5px;
}

@keyframes progressAnim {
  0% {
    width: 10px;
    background-color: #ccc;
  }
  100% {
    width: 50px;
    background-color: #ff6600;
  }
}

    .category-slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      background: #fff;
      padding: 15px 10px;
      border-radius: 10px;
    }

    .category-slider::-webkit-scrollbar {
      display: none;
    }

    .category {
      flex: 0 0 auto;
      scroll-snap-align: center;
      text-align: center;
      margin: 0 10px;
      text-decoration: none;
      color: inherit;
    }

    .category img {
      width: 100px;
      height: 60px;
      border-radius: 15%;
      margin-bottom: 5px;
    }

    .category span {
      font-size: 13px;
      color: #333;
    }
    
.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #8b5cf6, #6366f1);
  color: white;
  font-weight: bold;
  font-size: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info p {
  margin: 0;
}

.info p:first-child {
  font-weight: 600;
  font-size: 20px;
  color: #1f2937;
}

.info p:last-child {
  font-size: 20px;
  color: #6b7280;
}
