/* ============================================================
   Home Page — Enhancements (Shades, AI Hover, Tweaks)
   ============================================================ */

/* ----------------------------------------------------------
   SECTION BACKGROUND SHADES (alternating visual rhythm)
   ---------------------------------------------------------- */
.stats-section    { background: linear-gradient(135deg, #f8faff 0%, #eef3fb 100%) !important; }
.svc-bento        { background: #f7f8fc !important; }
.intg-section     { background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%) !important; }
.industries-section { background: linear-gradient(180deg, #fff 0%, #fdf8f0 100%) !important; }
.testimonial-section.home_five { background: linear-gradient(135deg, #f8f9fd 0%, #f0f4ff 100%) !important; }
.faq-v2-section   { background: #f7f8fc !important; }

/* ----------------------------------------------------------
   AI SECTION — CSS Hover (replaces inline onmouseover JS)
   ---------------------------------------------------------- */
.ai-hover-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}
.ai-hover-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.15) !important;
  border-color: rgba(230, 57, 70, 0.25) !important;
}

/* ----------------------------------------------------------
   WOW.js ANIMATION TWEAKS
   ---------------------------------------------------------- */
.wow { visibility: hidden; }
.animated { visibility: visible; }

/* Smooth easing for all WOW animations */
.animated {
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .wow { visibility: visible !important; }
  .animated { animation: none !important; }
}
