/* =========================
   GLOBAL BASE STYLES
========================= */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Bengali", "Arial", sans-serif;
  background: #1f1f1b;
  color: #d7d7d0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   TOPBAR
========================= */
.velki-topbar {
  background: #0f0f0e;
  color: #bfbfbf;
  font-size: 12px;
}
.velki-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.velki-topbar .toplink {
  color: #bfbfbf;
  margin-left: 8px;
  text-decoration: none;
  font-size: 13px;
}
.velki-topbar .sep {
  color: rgba(255,255,255,0.06);
  margin: 0 8px;
}

/* =========================
   HEADER
========================= */
.velki-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 0;
}
.velki-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.velki-brand .brand-logo {
  height: 44px;
  display: block;
}

/* =========================
   NAVIGATION MENU
========================= */
.velki-nav { flex: 1; margin-left: 20px; }
.velki-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.velki-menu li a {
  color: #dcdccc;
  text-decoration: none;
  padding: 8px 10px;
  font-weight: 600;
  font-size: 13px;
}
.velki-menu li a:hover {
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  color: #fff;
}

/* =========================
   HEADER ACTIONS
========================= */
.velki-actions { display: flex; align-items: center; gap: 12px; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #10100f;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.03);
}
.velki-mobile-toggle { display: none; }

/* =========================
   MOBILE MENU
========================= */
.velki-mobile-menu { display: none; }
.velki-mobile-menu ul {
  list-style: none;
  padding: 8px;
  margin: 0;
}
.velki-mobile-menu li a {
  display: block;
  padding: 8px 12px;
  color: #dcdccc;
  text-decoration: none;
}

/* =========================
   AGENTS TABLE FIX (WHITE TEXT)
========================= */
.agents-table td,
.agents-table th {
  color: #ffffff;
}
.agents-table td a {
  color: #ffffff !important;
  text-decoration: none;
}
.agents-table td a:hover {
  color: #00ffe5;
}

/* =========================
   FOOTER (FINAL)
========================= */
.velki-footer {
  background: #111;
  color: #fff;
  padding: 25px 0;
  margin-top: 40px;
  border-top: 1px solid #222;
}
.velki-footer-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  height: 40px;
}
.foot-desc {
  margin: 0;
  font-size: 13px;
  color: #bbbbbb;
}
.footer-right { text-align: right; }
.footer-links { margin-top: 5px; }
.footer-links a {
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffc107;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .velki-menu { display: none; }
  .velki-mobile-toggle { display: block; }
}
@media (max-width: 768px) {
  .velki-footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    margin-top: 10px;
  }
}
