@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-navy: #0f172a;
  --secondary-navy: #1e3a8a;
  --primary-orange: #f97316;
  --accent-orange: #fb923c;
  --cream-light: #FFFDF8;
  --cream-dark: #FDF1DD;
  --text-dark: #1E293B;
  --text-muted: #64748B;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAFAFC;
  color: var(--text-dark);
}

.font-heading {
  font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
  border: 2px solid #F1F5F9;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(243, 112, 33, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(243, 112, 33, 0.7);
  }
}

@keyframes gradientBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Delay Utlities */
.animation-delay-100 { animation-delay: 100ms; }
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-300 { animation-delay: 300ms; }
.animation-delay-500 { animation-delay: 500ms; }

/* Interactive Hover Utilities */
.hover-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(11, 19, 32, 0.12);
}

.hover-scale {
  transition: all 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: all 0.3s ease;
}
.hover-glow:hover {
  animation: pulseGlow 1.5s infinite;
}

/* Glassmorphism Styles */
.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 30, 45, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Gradient Background Text and Accents */
.text-gradient-primary {
  background: linear-gradient(to right, #0f172a, #1e3a8a, #1e293b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(to right, #fb923c, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-navy {
  background: linear-gradient(to right, #0f172a, #1e3a8a, #1e293b) !important;
}

.bg-gradient-orange {
  background: linear-gradient(to right, #fb923c, #f97316, #ef4444) !important;
}

.bg-gradient-cream {
  background: linear-gradient(180deg, #FFFDF8 0%, #FDF1DD 100%);
}

/* Slider Custom Styles */
.slider-slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Floating WhatsApp Pulse */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    transform: scale(1);
  }
}

.whatsapp-pulse {
  animation: whatsapp-pulse 2s infinite;
}

/* success story overlay scale */
.story-card .story-overlay {
  opacity: 0;
  transition: all 0.3s ease;
}
.story-card:hover .story-overlay {
  opacity: 1;
}

/* Infinite Logo Scrolling Carousel */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  display: flex;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.animate-scroll:hover {
  animation-play-state: paused;
}

