/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #53565A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #002F6C;
}

/* Micro animations */
.hover-scale {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hover-scale:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hide scrollbar for category filter but allow scroll */
.hide-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.hide-scroll::-webkit-scrollbar {
  display: none;
}

/* Modal overlays */
.modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

/* Utilities for new header */
.gradient-text-blue {
    background: linear-gradient(135deg, #FEFEFE 0%, #3B82F6 50%, #002F6C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-bg-blue {
    background: linear-gradient(135deg, #002F6C 0%, #001E47 100%);
}
.card-glow:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 47, 108, 0.4);
}
