
/* Contact Page Styles */

.info-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.info-box .icon {
    font-size: 2.5rem;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.15);
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
}

.info-box h5 {
    font-weight: 600;
    color: #333;
}

.info-box p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

.info-box {
  padding: 30px 20px;
  border-radius: 12px;
  background: #ffffff; /* Initial static background */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-box:hover {
  animation: scrollBg 3s linear infinite;
  /* background: linear-gradient(to bottom, #39eee5, #32d1c9, #79e4de); */
    background: linear-gradient(to bottom, #fff3cd, #ffc107, #fff3cd);
  background-size: 100% 300%;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Background scroll animation */
@keyframes scrollBg {
  0% {
    background-position: top;
  }
  100% {
    background-position: bottom;
  }
}

.info-box .icon {
  font-size: 2rem;
  color: #e41c1c;
}
