/* Ayush Hospital - Master Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-navy: #0b1a30;
  --primary-navy-dark: #060e1b;
  --primary-navy-light: #162b4e;
  --accent-orange: #f25c05;
  --accent-orange-hover: #d94e00;
  --accent-orange-glow: rgba(242, 92, 5, 0.25);
  --accent-blue: #0284c7;
  --accent-cyan: #06b6d4;
  --bg-slate: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Classes */
.glass-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(241, 245, 249, 1);
  box-shadow: 0 10px 25px -5px rgba(11, 26, 48, 0.05), 0 8px 10px -6px rgba(11, 26, 48, 0.03);
}

.glass-card-dark {
  background: rgba(11, 26, 48, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Emergency Pulse Effect */
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.emergency-pulse {
  animation: pulse-red 2s infinite;
}

/* Gradient Utilities */
.bg-gradient-ayush {
  background: linear-gradient(135deg, #0b1a30 0%, #162b4e 50%, #0f172a 100%);
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #f25c05 0%, #ea580c 100%);
}

.bg-hero-mesh {
  background-color: #0b1a30;
  background-image: 
    radial-gradient(at 100% 0%, rgba(242, 92, 5, 0.22) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(14, 165, 233, 0.15) 0px, transparent 50%);
}

.text-gradient-orange {
  background: linear-gradient(135deg, #f25c05, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Hover Elevation */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(11, 26, 48, 0.12);
}

/* Smooth Image Zoom */
.img-zoom-wrapper {
  overflow: hidden;
}
.img-zoom-wrapper img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift:hover .img-zoom-wrapper img {
  transform: scale(1.06);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Custom Checkbox / Radio styling */
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #f25c05 !important;
  box-shadow: 0 0 0 3px rgba(242, 92, 5, 0.15) !important;
}

/* Badge Styling */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

/* Department Icon Box */
.icon-box-orange {
  background: #fff3ec;
  color: #f25c05;
  transition: all 0.3s ease;
}
.hover-lift:hover .icon-box-orange {
  background: #f25c05;
  color: #ffffff;
  transform: scale(1.1);
}

/* Continuous Marquee Animation for Doctor Cases */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

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

/* Continuous Vertical Marquee Animation */
@keyframes marquee-scroll-vertical {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

.animate-marquee-vertical {
  display: flex;
  flex-direction: column;
  animation: marquee-scroll-vertical 25s linear infinite;
  will-change: transform;
}

.marquee-container-vertical:hover .animate-marquee-vertical {
  animation-play-state: paused;
}

