/* Start custom CSS for html, class: .elementor-element-113b780 *//* Sticky Floating CTA for Mobile - Floating Left */

.sticky-cta-float-mobile-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  animation: slideFloatMobileUpLeft 1.5s ease forwards;
}

.sticky-cta-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background-color: #004080;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: pulseEffectMobileLeft 2.5s infinite;
}

.sticky-cta-mobile-btn:hover {
  background-color: #0066cc;
  transform: translateY(-2px);
}

.sticky-cta-mobile-btn i {
  margin-right: 8px;
  font-size: 20px;
}

/* Slide Float Up Animation Left */
@keyframes slideFloatMobileUpLeft {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

/* Pulse Animation */
@keyframes pulseEffectMobileLeft {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 64, 128, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 64, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 64, 128, 0);
  }
}

/* Hide on Desktop */
@media (min-width: 992px) {
  .sticky-cta-float-mobile-left {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-af1514a *//* Sticky Floating CTA - Premium Animated - Egypt Page */

.sticky-cta-float-desktop {
  position: fixed;
  top: 40%;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  animation: slideFloatUp 1.5s ease forwards;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background-color: #004080;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: pulseEffect 2.5s infinite;
}

.sticky-cta-btn:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
}

.sticky-cta-btn i {
  margin-right: 10px;
  font-size: 22px;
}

/* Slide Float Up Animation */
@keyframes slideFloatUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse Animation */
@keyframes pulseEffect {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 64, 128, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 64, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 64, 128, 0);
  }
}

/* Hide on Mobile */
@media (max-width: 991px) {
  .sticky-cta-float-desktop {
    display: none;
  }
}/* End custom CSS */