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

.navbar {
  background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.navbar-brand {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  color: #ffffff !important;
  opacity: 0.9;
}

.navbar-nav > li > a {
  color: #fff !important;
  font-weight: 600;
  transition: 0.3s ease;
}

.navbar-nav > li > a:hover {
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #fff !important;
}

/* Toggle button */
.navbar-toggle {
  border-color: rgba(255,255,255,0.6);
}

.navbar-toggle .icon-bar {
  background-color: #fff;
}


/* ===============================
   FOOTER SECTION
=================================*/

.panel-footer-section {
  margin-top: 40px;
}

/* Footer cards */
.footer-card {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  padding: 28px;
  border-radius: 18px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-card p {
  opacity: 0.9;
  margin-bottom: 15px;
}

/* Footer buttons */
.footer-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  padding: 12px 18px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  margin-top: 12px;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
}

.footer-btn:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* Icon */
.footer-icon {
  width: 20px;
  height: 20px;
}

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

.footer-btn.notification::after {
  content: "1";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #ff3b3b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORCE NAVBAR BLUE GRADIENT */
.navbar-default {
  background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
  border: none !important;
}

/* Remove grey border */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border: none !important;
}

/* Navbar links white */
.navbar-default .navbar-nav > li > a {
  color: #ffffff !important;
  font-weight: 600;
}

/* Hover */
.navbar-default .navbar-nav > li > a:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  border-radius: 6px;
}

/* Brand text */
.navbar-default .navbar-brand {
  color: #ffffff !important;
  font-weight: 700;
}

/* Mobile toggle */
.navbar-default .navbar-toggle {
  border-color: rgba(255,255,255,0.5) !important;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #ffffff !important;
}
/* NAVBAR ACTIVE MENU STYLE */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  background: rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  border-radius: 8px;
  font-weight: 700;
}

/* HOVER EFFECT FOR MENU ITEMS */
.navbar-default .navbar-nav > li > a:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff !important;
  border-radius: 8px;
  transition: 0.2s ease;
}
/* BODY MESSAGE BOX (Payment Methods section) */
.panel-body-box {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 25px;
  background: #fff;
  margin-top: 20px;
}

/* spacing for lines inside authText */
.panel-body-box p {
  margin-bottom: 8px;
}

.main-message-scroll {
  max-height: 180px;   /* shows approx 5–7 lines */
  overflow-y: auto;
}
@media (max-width: 768px) {

  .nav-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
  }

  .nav-pills li {
    float: none !important;
    display: inline-block;
  }

}
