/* =========================
   NAVBAR BASE
========================= */
.user-navbar {
  background: #bae6fd;
  border-bottom: 1px solid #7dd3fc;
  padding: 0.7rem 0;
}
.user-navbar .navbar-brand {
  color: #1e3a8a;
  font-size: 1.4rem;
}
.user-navbar .navbar-brand:hover {
  color: #0ea5e9;
}
.user-navbar .nav-link {
  color: #3b82f6;
  font-weight: 500;
  transition: all 0.2s ease;
}
.user-navbar .nav-link:hover {
  color: #0ea5e9;
}
.user-navbar .nav-link.active {
  color: #0ea5e9;
  font-weight: 600;
}
.user-navbar .btn-outline-primary {
  border-color: #0ea5e9;
  color: #0ea5e9;
}
.user-navbar .btn-outline-primary:hover {
  background: #0ea5e9;
  color: #fff;
}
.user-navbar .btn-primary {
  background: #0ea5e9;
  border: none;
}
.user-navbar .btn-primary:hover {
  background: #0284c7;
}

/* =========================
   TOGGLER (HAMBURGER)
========================= */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: #1e3a8a;
  position: relative;
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #1e3a8a;
  left: 0;
  transition: 0.3s;
}
.navbar-toggler-icon::before {
  top: -7px;
}
.navbar-toggler-icon::after {
  top: 7px;
}

/* =========================
   MOBILE STYLING
========================= */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #bae6fd;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 10px;
  }
  .nav-link {
    padding: 0.6rem 0;
  }
  .d-flex {
    flex-direction: column;
    margin-top: 1rem;
  }
  .d-flex .btn {
    width: 100%;
  }
}
/* =========================
   LOADER OVERLAY
========================= */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 242, 254, 0.85);
  backdrop-filter: blur(6px);
  transition: opacity 0.4s ease;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================
   WRAPPER (IMPORTANT FIX)
========================= */
.spinner-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   BOOTSTRAP SPINNER (RING)
========================= */
.loader-spinner {
  width: 100%;
  height: 100%;
  animation: spin 1.4s linear infinite;
  border-width: 0.25rem;
  color: #0ea5e9;
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   CENTER ICON (FLOAT INSIDE)
========================= */
.loader-icon {
  position: absolute;
  font-size: 1.7rem;
  color: #0ea5e9;
  animation: bounce 1s ease-in-out infinite;
}

/* =========================
   BOUNCE ANIMATION
========================= */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.4);
  }
}
/* =========================
   FOOTER BASE
========================= */
.user-footer {
  background: #bae6fd;
  border-top: 1px solid #7dd3fc;
  color: #1e3a8a;
  position: relative;
}

/* =========================
   BRAND
========================= */
.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0ea5e9;
}

/* =========================
   TEXT
========================= */
.footer-text {
  color: #3b82f6;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   TITLES
========================= */
.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

/* =========================
   LINKS
========================= */
.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-links a:hover {
  color: #0ea5e9;
  padding-left: 4px;
}

/* =========================
   CONTACT
========================= */
.footer-contact {
  font-size: 0.9rem;
  color: #3b82f6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact i {
  color: #0ea5e9;
}

/* =========================
   SOCIALS
========================= */
.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  transition: all 0.3s ease;
}
.footer-socials a:hover {
  background: #0ea5e9;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom {
  background: rgba(14, 165, 233, 0.08);
  font-size: 0.85rem;
  color: #3b82f6;
}

/* =========================
   BACK TO TOP BUTTON
========================= */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #0ea5e9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  background: #0284c7;
  transform: translateY(-3px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-text {
    font-size: 0.9rem;
  }
  .footer-brand {
    font-size: 1.3rem;
  }
}

/*# sourceMappingURL=header.css.map */
