/* ===================================================
   centurion-cohort.ai — Custom Styles (alongside Tailwind)
   Only put things here that Tailwind can't handle.
   =================================================== */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Brand gradient utility */
.bg-brand-gradient {
  background: linear-gradient(135deg, #184B69, #0E7E78);
}

.bg-brand-gradient-dark {
  background: linear-gradient(135deg, #00263D, #184B69);
}

/* Mobile nav toggle animation */
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Feature card hover lift */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
