@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;605;700;800&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* Dynamic custom styling properties */
:root {
  --bs-primary: #2563eb;
  --bs-primary-rgb: 37, 99, 235;
  --bs-success: #10b981;
  --bs-success-rgb: 16, 185, 129;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f8fafc;
  color: #334155;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.font-mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace !important;
}

/* Custom visual refinements to complement Bootstrap */
.header-blur {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-content {
  transition: all 0.3s ease-in-out;
}

.chevron {
  transition: transform 0.3s ease-in-out;
}

.rotate-180 {
  transform: rotate(180deg);
}

.card-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.card-shadow:hover {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
  border-color: #93c5fd !important;
}

.nav-link {
  font-family: "Outfit", sans-serif;
}

.nav-link.active-nav {
  color: #2563eb !important;
  font-weight: 800;
  border-bottom: 2px solid #2563eb;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: background-color 0.2s;
}

.mobile-nav-link:hover {
  background-color: #f1f5f9;
}

.mobile-nav-link.active-nav {
  background-color: #eff6ff;
  color: #2563eb;
  border-left: 4px solid #2563eb;
  font-weight: 800;
}

.text-gradient {
  background: linear-gradient(135deg, #2563eb, #3b82f6, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h-0 {
  height: 0px !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.partner-logo {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: inline-flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  align-items: center;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
  100% { transform: translateY(0px) scale(1); }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.image-glow {
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-glow:hover {
  box-shadow: 0 35px 60px -10px rgba(37, 99, 235, 0.25);
  transform: scale(1.02);
}