/* =========================
   GLOBAL THEME
========================= */

html, body {
  background-color: #0B132B;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  background-color: #0B132B !important;
}

/* =========================
   HERO SECTION
========================= */



/* =========================
   BUTTONS
========================= */

.btn-warning {
  background-color: #D4A017 !important;
  border: none !important;
  color: #000 !important;
  font-weight: 600;
}

.btn-outline-warning {
  border: 2px solid #D4A017 !important;
  color: #D4A017 !important;
  font-weight: 600;
}

/* =========================
   FLOATING CARDS
========================= */

.action-section {
  margin-top: -90px;
  padding-bottom: 80px;
}

.action-card {
  background: #ffffff;
  color: #000;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: transform .3s ease;
}

.action-card:hover {
  transform: translateY(-10px);
}

.action-card p {
  color: #555;
}

/* =========================
   DARK SECTION
========================= */

.section-dark {
  background-color: #0B132B;
  padding: 90px 0;
}

/* =========================
   CATEGORY CARDS
========================= */

.category-card {
  background-color: #1C2541;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform .3s ease;
}

.category-card:hover {
  transform: scale(1.04);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category-card h5 {
  padding: 18px;
}

/* =========================
   NOTIFICATION
========================= */

.notification-wrapper {
  position: relative;
  margin-right: 15px;
}

.notification-bell {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.notif-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* =========================
   SERVICES UI (IMPORTANT)
========================= */

.category-box {
  background: linear-gradient(180deg, rgba(18,36,64,.85), rgba(11,22,37,.95));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 25px;
}

.vendor-card,
.card {
  background: linear-gradient(180deg,#0c1728,#0a1422);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 25px rgba(0,0,0,.35);
  border-radius: 18px;
  padding: 15px;
}

.vendor-logo img,
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-btn,
.btn {
  background: linear-gradient(135deg,#f7b500,#ffcc33);
  color: #000 !important;
  font-weight: 800;
  border: none !important;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}

.vendor-rating,
.rating {
  color: #f7b500;
  font-weight: 700;
}

.filters {
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 15px 30px rgba(0,0,0,.4);
  border-radius: 18px;
  padding: 18px;
}

/* =========================
   PAGINATION
========================= */

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.pagination a {
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}

.pagination a:hover {
  background: rgba(255,255,255,.08);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .vendor-grid, .grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
  }
}


