/* ── Card & element hover animations ───────────────────────── */
.ya-card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ya-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.ya-icon-hover {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ya-icon-hover:hover {
  transform: scale(1.18) rotate(-4deg);
}

/* Product item image zoom */
.product-item .product-item-pic img {
  transition: transform 0.45s ease;
}
.product-item:hover .product-item-pic img {
  transform: scale(1.06);
}

/* Services box image zoom */
.our-services-box .our-services-img img {
  transition: transform 0.45s ease;
}
.our-services-box:hover .our-services-img img {
  transform: scale(1.08);
}

/* Industries icon bounce on hover */
.box-inn-industries .industries-icon img {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.box-inn-industries:hover .industries-icon img {
  transform: translateY(-8px) scale(1.1);
}

/* Why choose us icon spin */
.box-why-choose .why-choose-icon img {
  transition: transform 0.4s ease;
}
.box-why-choose:hover .why-choose-icon img {
  transform: rotateY(180deg);
}

/* Mission / Vision counter pulse */
.box-mission-vis .count-block {
  transition: transform 0.3s ease;
}
.box-mission-vis:hover .count-block {
  transform: scale(1.15);
}

/* Related products */
.related-products-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-products-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* CTA button pulse */
.main-color-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.main-color-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Thumbnail accreditation */
.box-accrediations .thumbnail {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box-accrediations:hover .thumbnail {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* Intersection observer initial state */
[data-animation] {
  opacity: 0;
}
[data-animation].animate__animated {
  opacity: 1;
}
