/* =============================================
   TAILWIND-LIKE UTILITIES + CUSTOM STYLES
   ============================================= */

/* Imports from Google Fonts handled in HTML */

:root {
  --primary-blue: #1d4ed8; /* Tailwind blue-700 */
  --accent-amber: #fbbf24; /* Tailwind amber-400 */
}

body {
  font-family: 'Inter', sans-serif;
  color: #334155;
  background-color: #f8fafc;
}

.font-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Animations */
@keyframes pulse-fast {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse-fast {
  animation: pulse-fast 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes morph {
  0% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
}
.animate-morph {
  animation: morph 8s ease-in-out infinite;
}

/* Safe area padding for mobile bottom bar */
.pb-safe {
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

@media (max-width: 767px) {
  body {
    padding-bottom: 76px;
  }
}

/* Tailwind base layer resets (simulated) */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
html { line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 100%; font-family: ui-sans-serif, system-ui, sans-serif; }
body { margin: 0; line-height: inherit; }
hr { height: 0; color: inherit; border-top-width: 1px; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
p { margin: 0; }
img, svg { display: block; vertical-align: middle; max-width: 100%; height: auto; }

/* Custom utility classes mimicking Tailwind */
.container { width: 100%; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0px; }
.top-0 { top: 0px; }
.bottom-0 { bottom: 0px; }
.left-0 { left: 0px; }
.right-0 { right: 0px; }
.-top-20 { top: -5rem; }
.-right-20 { right: -5rem; }
.-left-4 { left: -1rem; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-96 { width: 24rem; }
.h-96 { height: 24rem; }
.h-\[500px\] { height: 500px; }
.w-full { width: 100%; }
.h-auto { height: auto; }

.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-tight { line-height: 1.25; }

/* Colors */
.bg-white { background-color: #ffffff; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-400 { background-color: #fbbf24; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce3; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-600 { background-color: #dc2626; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-purple-600 { background-color: #9333ea; }
.bg-\[\#25D366\] { background-color: #25D366; }

.text-white { color: #ffffff; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-blue-100 { color: #dbeafe; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-amber-300 { color: #fcd34d; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-red-600 { color: #dc2626; }
.text-emerald-700 { color: #047857; }
.text-purple-700 { color: #7e22ce; }
.text-\[\#25D366\] { color: #25D366; }

/* Borders & Rounded */
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-bl-lg { border-bottom-left-radius: 0.5rem; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }

.border-white { border-color: #ffffff; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-800 { border-color: #1e293b; }
.border-blue-200 { border-color: #bfdbfe; }
.border-blue-600 { border-color: #2563eb; }
.border-blue-700 { border-color: #1d4ed8; }

.ring-1 { --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 0 1px var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
.ring-blue-600 { --tw-ring-color: #2563eb; }

/* Effects */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.drop-shadow-sm { filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); }

.shadow-blue-700\/20 { --tw-shadow-color: rgba(29, 78, 216, 0.2); --tw-shadow: var(--tw-shadow-colored); }
.shadow-green-500\/20 { --tw-shadow-color: rgba(34, 197, 94, 0.2); --tw-shadow: var(--tw-shadow-colored); }
.shadow-green-500\/30 { --tw-shadow-color: rgba(34, 197, 94, 0.3); --tw-shadow: var(--tw-shadow-colored); }
.shadow-\[0_-4px_20px_rgba\(0\,0\,0\,0\.05\)\] { --tw-shadow: 0 -4px 20px rgba(0,0,0,0.05); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }

.blur-3xl { filter: blur(64px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-60 { opacity: 0.6; }
.grayscale { filter: grayscale(100%); }

.overflow-hidden { overflow: hidden; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Transforms & Transitions */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-x-4 { --tw-translate-x: 1rem; }
.translate-y-4 { --tw-translate-y: 1rem; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Group / Hover variants */
.group:hover .group-hover\:scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.group:hover .group-hover\:bg-blue-600 { background-color: #2563eb; }
.group:hover .group-hover\:bg-amber-400 { background-color: #fbbf24; }
.group:hover .group-hover\:bg-emerald-500 { background-color: #10b981; }
.group:hover .group-hover\:bg-purple-600 { background-color: #9333ea; }
.group:hover .group-hover\:bg-slate-800 { background-color: #1e293b; }
.group:hover .group-hover\:bg-red-500 { background-color: #ef4444; }

.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:text-slate-900 { color: #0f172a; }
.group:hover .group-hover\:text-blue-800 { color: #1e40af; }

.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-blue-800:hover { background-color: #1e40af; }
.hover\:bg-amber-500:hover { background-color: #f59e0b; }
.hover\:bg-green-50:hover { background-color: #f0fdf4; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-700:hover { background-color: #334155; }
.hover\:bg-\[\#20bd5a\]:hover { background-color: #20bd5a; }

.hover\:text-blue-700:hover { color: #1d4ed8; }
.hover\:text-green-700:hover { color: #15803d; }

.hover\:border-green-500:hover { border-color: #22c55e; }

.hover\:-translate-y-0\.5:hover { --tw-translate-y: -0.125rem; }
.hover\:-translate-y-1:hover { --tw-translate-y: -0.25rem; }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Responsive utility */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:w-auto { width: auto; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:pt-24 { padding-top: 6rem; }
  .lg\:pb-32 { padding-bottom: 8rem; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  .lg\:max-w-lg { max-width: 32rem; }
  .lg\:-left-12 { left: -3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:text-left { text-align: left; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:justify-start { justify-content: flex-start; }
}

/* =============================================
   CUSTOM TWEAKS & ANIMATIONS
   ============================================= */

/* Floating Animation for Rating Card */
.animate-float {
  animation: float-slow 4s ease-in-out infinite;
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Avatar Overlaps */
.-space-x-3 > :not([hidden]) ~ :not([hidden]) {
  margin-left: -0.75rem;
}
.mr-4 { margin-right: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.fill-current { fill: currentColor; }

/* Premium Gradients */
.bg-gradient-blue {
  background-image: linear-gradient(to right, #1d4ed8, #2563eb);
}
.hover\:bg-gradient-blue-dark:hover {
  background-image: linear-gradient(to right, #1e40af, #1d4ed8);
}
.bg-gradient-green {
  background-image: linear-gradient(to right, #25D366, #20bd5a);
}
.hover\:bg-gradient-green-dark:hover {
  background-image: linear-gradient(to right, #20bd5a, #1da851);
}

/* Scroll Reveal Animations disabled in favor of AOS */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.active {
  opacity: 1;
  transform: none;
}

/* =============================================
   NEW PREMIUM VISUAL ENHANCEMENTS
   ============================================= */

/* Glassmorphism utility */
.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

/* Rating Card Wrapper for Mobile / Tablet positioning */
.rating-card-wrapper {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  z-index: 20;
}
@media (min-width: 640px) {
  .rating-card-wrapper {
    left: 1rem;
    transform: translateX(0);
    bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .rating-card-wrapper {
    left: -3rem;
    bottom: 3rem;
  }
}

/* Decorative Background Orbs */
.orb-1 {
  position: absolute; top: 0%; left: -5%; width: 20rem; height: 20rem; background-color: #3b82f6;
  border-radius: 50%; filter: blur(80px); opacity: 0.25; animation: blob 8s infinite; pointer-events: none;
}
.orb-2 {
  position: absolute; top: 10%; right: -5%; width: 18rem; height: 18rem; background-color: #a855f7;
  border-radius: 50%; filter: blur(80px); opacity: 0.25; animation: blob 8s infinite; animation-delay: 2s; pointer-events: none;
}
.orb-3 {
  position: absolute; bottom: -10%; left: 30%; width: 22rem; height: 22rem; background-color: #f59e0b;
  border-radius: 50%; filter: blur(80px); opacity: 0.25; animation: blob 8s infinite; animation-delay: 4s; pointer-events: none;
}

@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(20px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

/* Service Card Enhancements */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(to right, #1d4ed8, #a855f7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::after {
  transform: scaleX(1);
}

/* Premium Glowing Buttons */
.btn-glow-blue {
  box-shadow: 0 0 15px rgba(29, 78, 216, 0.4), 0 10px 15px -3px rgba(29, 78, 216, 0.2);
  transition: all 0.3s ease;
}
.btn-glow-blue:hover {
  box-shadow: 0 0 25px rgba(29, 78, 216, 0.6), 0 15px 25px -5px rgba(29, 78, 216, 0.3);
  transform: translateY(-2px);
}
.bg-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

/* Force Icon Fixes */
.icon-white {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

.icon-blue {
  stroke: #60a5fa !important;
  color: #60a5fa !important;
}

/* ================= NEW PREMIUM FEATURES ================= */

/* 1. Pulse Animations for Buttons */
@keyframes glow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); transform: scale(1); }
  50% { box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

@keyframes glow-pulse-amber {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6); transform: scale(1); }
  50% { box-shadow: 0 0 20px 10px rgba(251, 191, 36, 0); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); transform: scale(1); }
}

.animate-pulse-btn-wa {
  animation: glow-pulse 2s infinite;
}

.animate-pulse-btn-call {
  animation: glow-pulse-amber 2s infinite;
  animation-delay: 1s; /* stagger */
}

/* 2. Service Card Advanced Hover */
.service-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.3) !important; /* Subtle blue ring */
  z-index: 10;
}

/* 3. Slider Animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-300px * 4 - 1.5rem * 4)); /* Move horizontally by 4 full card widths + gap */ }
}
.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}

/* 4. Global Dark Mode Overrides */
html.dark, html.dark body {
  background-color: #0f172a;
  color: #f8fafc;
}
html.dark .bg-slate-50 {
  background-color: #1e293b !important;
}
html.dark .bg-white {
  background-color: #0f172a !important;
  border-color: #334155 !important;
}
html.dark .text-slate-900 {
  color: #f8fafc !important;
}
html.dark .text-slate-800 {
  color: #e2e8f0 !important;
}
html.dark .text-slate-600, html.dark .text-slate-500 {
  color: #94a3b8 !important;
}
html.dark .border-slate-100, html.dark .border-slate-200 {
  border-color: #334155 !important;
}
html.dark .service-card {
  background-color: #1e293b !important;
}
html.dark .service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
html.dark .navbar {
  background-color: rgba(15, 23, 42, 0.95) !important;
}
html.dark .hero {
  background-color: #0f172a !important;
}
html.dark .btn-outline-blue {
  background-color: rgba(37, 99, 235, 0.1);
}
html.dark .btn-outline-blue:hover {
  background-color: rgba(37, 99, 235, 0.2);
}
html.dark #chat-window {
  background-color: #1e293b !important;
  border-color: #334155 !important;
}
html.dark #chat-messages {
  background-color: #0f172a !important;
}
html.dark #chat-input {
  background-color: #0f172a !important;
  color: #f8fafc !important;
  border-color: #475569 !important;
}
