/* Global Refinements */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bs-primary: #0d6efd;
  --bs-primary-rgb: 13, 110, 253;
}

body {
  font-family: 'Inter', sans-serif;
  color: #334155;
  background-color: #f8fafc;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.025em;
}

.tracking-tight {
  letter-spacing: -0.05em;
}

/* Transitions & Effects */
.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hov-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hov-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.hov-primary:hover {
  color: var(--bs-primary) !important;
}

/* Navbar Fixes */
.sticky-top {
  z-index: 1020;
}

.animate-fade-in {
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content Area */
.min-vh-75 {
  min-height: 75vh;
}

/* Utility overrides */
.rounded-4 {
  border-radius: 1rem !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}


/* Loader strip at top */
#stripLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #002cff 0%, #ffffff 50%, #007bff 100%);
    background-size: 200% 100%;
    animation: moveStrip 1.5s linear infinite;
    z-index: 9999;
}

@keyframes moveStrip {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: -200% 0%;
    }
}

/* Optional: fade out effect */
#stripLoader.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}