/* animations.css */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(4, 58, 83, 0.25);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(4, 58, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(4, 58, 83, 0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}


.hero-play-btn {
  transition: box-shadow 0.3s ease;
}

.hero-play-btn:hover {
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
  animation: buttonPulse 1.5s infinite;
}


.hero-badge {
  transition: all 0.3s ease;
}

.hero-badge:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-demo-btn,
.footer-sales-btn {
  transition: all 0.3s ease;
}

.footer-demo-btn:hover,
.footer-sales-btn:hover {
  transform: translateY(-2px);
}


.dropdown-menu {
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}


.nav-links {
  transition: all 0.3s ease;
}


html {
  scroll-behavior: smooth;
}

.hero-media-image {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}


.request-demo-btn:hover .btn-icon {
  animation: buttonPulse 1.5s infinite;
}




.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   PLATFORM SECTION – ANIMATIONS
================================ */

.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.platform-card:nth-child(1) {
  animation-delay: 0.1s;
}

.platform-card:nth-child(2) {
  animation-delay: 0.2s;
}

.platform-card:nth-child(3) {
  animation-delay: 0.3s;
}

.platform-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.footer-col .connect-linkedin-btn {
    transition: 
        background 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.footer-col .connect-linkedin-btn:hover {
    transform: translateY(-3px);
}


.footer-col .connect-linkedin-btn:hover .connect-icon-box {
    transform: scale(1.08);
    transition: transform 0.25s ease;
}


.footer-col .connect-linkedin-btn:hover .connect-divider {
    opacity: 1;
    transition: opacity 0.25s ease;
}