@media (max-width: 768px) { 
    .appie-hero-area .row {
        display: flex;
        flex-direction: column; 
        align-items: center;
        text-align: center;
    }

    .appie-hero-content {
        width: 100%;
    }

    .appie-hero-content ul {
        margin-top: 20px;
    }

    .appie-hero-thumb {
        width: 100%;
        margin-top: 30px; 
    }

    .appie-hero-thumb .thumb img {
        max-width: 100%; 
        height: auto;
        display: block;
        margin: 0 auto; 
    }
}

@media (max-width: 991px) { 
    .hide-on-mobile {
        display: none !important;
    }
}
.service-card {
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


  .glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }

  .glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .icon-box {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

.social-icon {
  transition: transform 0.3s ease, color 0.3s;
  font-size: 24px;
  color: #666;
}

.social-icon:hover {
  transform: scale(1.2) rotate(5deg);
  color: #2e6ff2;
}
.btn-animated {
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn-animated:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.btn-outline-secondary:hover {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}
.footer-modern {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding-top: 3rem;
  padding-bottom: 2rem;
  border-top: 1px solid #dee2e6;
}

.footer-modern h5, .footer-modern p, .footer-modern a {
  color: #343a40;
  transition: all 0.3s ease;
}

.footer-modern a:hover {
  color: #0d6efd;
  text-decoration: none;
}

.footer-modern .footer-link:hover {
  transform: translateX(4px);
}
.service-card {
  transition: all 0.4s ease;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent 70%);
  transform: scale(0);
  transition: all 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  transform: scale(1);
  top: 0;
  left: 0;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.service-card i {
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2) rotate(5deg);
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-img {
  animation: float 4s ease-in-out infinite;
  will-change: transform;
}
@keyframes pulseZoom {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 0, 128, 0));
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 12px rgba(255, 0, 128, 0.4));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 0, 128, 0));
  }
}

.pulse-glow {
  animation: pulseZoom 4s ease-in-out infinite;
  will-change: transform, filter;
}
