/* card-nored-hover.css — remove the RED hover accent from cards on the navbar category
   pages. styles.css gives legacy card classes a red hover (border rgba(230,57,70,.4) +
   red glow); this neutralizes it to a subtle neutral lift that fits the dark theme.
   The `:not(#zz)` prefix adds 1 ID-unit so it beats the body:not(...) legacy rule.
   Reversible: remove the <link> to this file. */

html body:not(#zz) .card-item:hover,
html body:not(#zz) .info-card:hover,
html body:not(#zz) .service-card:hover,
html body:not(#zz) .feature-card:hover,
html body:not(#zz) .solution-card:hover,
html body:not(#zz) .industry-card:hover,
html body:not(#zz) .tech-card:hover,
html body:not(#zz) .value-card:hover,
html body:not(#zz) .benefit-card:hover,
html body:not(#zz) .process-card:hover,
html body:not(#zz) .blog-card:hover,
html body:not(#zz) .case-study-card:hover,
html body:not(#zz) .team-member:hover,
html body:not(#zz) .icon-card:hover,
html body:not(#zz) .testimonial-card:hover,
html body:not(#zz) .approach-card:hover,
html body:not(#zz) .why-us-card:hover,
html body:not(#zz) .hv2-ind-card:hover {
  border-color: rgba(255, 255, 255, .16) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .28) !important;
}
/* red-tinted glow on the enterprise slide cards -> neutral dark glow */
html body:not(#zz) .hv2-ent-stack .hv2-ent-slide:hover {
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, .28), 0 12px 24px -8px rgba(0, 0, 0, .10) !important;
}

/* Odoo cyan cards (.my-card) flip to a RED gradient on hover via an inline
   `.my-card:hover{background-image:linear-gradient(to bottom right,#C21C1C,#EC3636)}`
   rule. Keep the normal cyan gradient on hover instead (wm-theme's cyan glow + lift stay). */
html body:not(#zz) .my-card:hover {
  background-image: linear-gradient(270deg, #00839D 0%, #00BCD4 43.75%, #00BCD4 100%) !important;
  color: #011f24 !important;
}
