/* Shining hover effect for image inside .img-column1 */
.img-column1 {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border: 3px solid #e0e0e0;
  border-radius: 12px;
  box-sizing: border-box;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}
.img-column1 img {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100%-24px);
  max-width: calc(100%-24px);
  border-radius: 8px;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;

}
.img-column1::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  z-index: 2;
  transition: none;
  pointer-events: none;
}
.img-column1:hover {
  border-color: #2196f3;
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.32);
}

.img-column1:hover img {
    transform: scale(1.15);
}

.img-column1:hover::after {
  animation: shine 0.8s forwards;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Counter Card Hover Animation */
.counter-card {
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  background: #fff;
  border-radius: 16px;
  padding: 32px 16px 24px 16px;
  margin: 20px;
}
.counter-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  background: #f8f9fa;
}
.counter-card .media i {
  font-size: 2.5rem;
  color: #007bff;
  transition: color 0.3s;
}
.counter-card:hover .media i {
  color: #ff5722;
}
.counter-card .timer {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.counter-card .text {
  font-size: 1.1rem;
  color: #555;
}


.customer-detail {
  padding: 20px;
  background: #f9f9f9b5;
  
}

/* Card hover animation for packages.php */
.packages-section .card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), rotate 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  rotate: 0deg;
}
.packages-section .card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0,0,0,0.69), 0 2px 8px rgba(0,0,0,0.68) !important;
  rotate: -2deg;
  z-index: 2;
}