* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
  line-height: 1.6; */
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.font-serif {
  font-family: 'Lora', serif;
}

input,select{
    color:black!important;
}
input:focus,select:focus{
    outline: none;
}
@media (min-width: 1280px) {
    .container {
        max-width: 1280px!important;
    }
}

/* Stop mobile auto-zoom on inputs */
@media screen and (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
}

html, body {
  width: 100%;
}

:root {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f5f5f5;
    --bg-white:white;

    --text-primary: #1a1a1a;
    --text-secondary: #525252;
    --text-muted: #737373;
    --accent-primary: #a67c52;
    --accent-secondary: #b8936d;
    --border-color: #e5e5e5;
    --hover-bg: rgba(166, 124, 82, 0.08);
}

input{
    background-color: transparent;
}

input{
    color: var(--text-primary)!important;
}

.btn-primary {
    display: inline-block;
    background-color: var(--bg-primary);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #001f54;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

:root{
    --bg-primary:#002970;
}

.category-card {
    transition: all 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Scroll-reveal base states ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.reveal-left {
    transform: translateX(-50px);
}
.reveal.reveal-right {
    transform: translateX(50px);
}
.reveal.reveal-scale {
    transform: scale(0.90);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* stagger children delay helpers */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }
.stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}
.stagger.visible > * {
    opacity: 1;
    transform: none;
}

/* hero text entrance */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-label  { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.1s; }
.hero-h1     { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.25s; }
.hero-desc   { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.4s; }
.hero-btns   { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.55s; }
.hero-proof  { animation: fadeSlideUp 0.6s ease both; animation-delay: 0.7s; }

/* hero right */
.hero-stats  { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.35s; }
.hero-img    { animation: fadeSlideUp 0.7s ease both; animation-delay: 0.55s; }

/* stat counter pulse on enter */
@keyframes countPop {
    0%   { transform: scale(0.7); opacity: 0; }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1);   opacity: 1; }
}
.stat-pop { animation: countPop 0.6s cubic-bezier(.4,0,.2,1) both; }
.stat-pop:nth-child(2) { animation-delay: 0.15s; }
.stat-pop:nth-child(3) { animation-delay: 0.3s; }

/* floating badge on hero image */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
.float-badge { animation: float 3s ease-in-out infinite; }

/* step connector pulse */
@keyframes connectorPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}
.connector-pulse { animation: connectorPulse 2.5s ease-in-out infinite; }




/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in {
  animation: slideIn 0.5s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.4s ease-out;
}
