/* ========================================
   COMING SOON SECTION
======================================== */
.info-boxes .box {
  
  height: 270px;
  font-size: 35px;
}

.info-boxes .box h3{
   color: var(--bg0);
    font-size: 35px;
}


.info-boxes .box:hover h3{
   color: var(--bg0);
    font-size: 35px;
}

.box img {
  width: 73px;
  margin-bottom: 1.5rem;
  animation: pulseLogo 1.6s ease-in-out infinite;

}

/* Logo animation */
@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Text animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}