html {
    scroll-behavior: smooth;
}
/* Base Styles */
body {
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #1f2937;
}

/* Buttons */
.btn-primary {
  background: #0A8CD8;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(10, 140, 216, 0.2);
}

.btn-primary:hover {
  background: #0a2a73;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: #ffffff;
  color: #374151;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-ghost {
  color: #4b5563;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: #f3f4f6;
  color: #111827;
}

/* Inputs */
.input-field {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #0A8CD8;
  box-shadow: 0 0 0 3px rgba(10, 140, 216, 0.15);
}

/* Layout Helpers */
.section-padding {
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
}

/* Cards */
.card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* Logo Font */
.font-logo {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 700;
}

.brand-logo .text-logo {
  color: #ffffff;
}

/* Responsive */
@media (min-width: 640px) {
  .section-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  .section-padding {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* Default Hero State */
.logo-primary {
  fill: #ffffff;
  transition: fill .3s ease;
}

.logo-accent {
  fill: #ffffff;
  transition: fill .3s ease;
}

/* Scrolled Header State */
.header-scrolled .logo-primary {
  fill: #0a2a73;
}

.header-scrolled .logo-accent {
  fill: #1fa8ff;
}

/* Default Hero State */

.nav-link{
    color:#d1d5db; /* gray-300 */
}

.nav-link:hover{
    color:#ffffff;
    background:rgba(255,255,255,.05);
}

/* Scrolled Header State */

.header-scrolled .nav-link{
    color:#4b5563; /* gray-600 */
}

.header-scrolled .nav-link:hover{
    color:#111827; /* gray-900 */
    background:#f9fafb; /* gray-50 */
}

.svg-primary-fill{
	fill: #1fa8ff;
}