/* Footer CSS */
.footer-nav-area {
  position: fixed;
  z-index: 1000;
  width: 100%;
  left: 0;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 0.5rem 0px rgba(15, 15, 15, 0.15);
          box-shadow: 0px 0px 0.5rem 0px rgba(15, 15, 15, 0.15);
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.suha-footer-nav {
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  height: 3.125rem;
}
@media only screen and (min-width:1200px) {
  .suha-footer-nav {
    width: 650px;
  }
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .suha-footer-nav {
    width: 600px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .suha-footer-nav {
    width: 500px;
  }
}
@media only screen and (max-width:767px) {
  .suha-footer-nav {
    width: 380px;
  }
}
@media only screen and (min-width:576px) and (max-width:767px) {
  .suha-footer-nav {
    width: 400px;
  }
}
.suha-footer-nav ul {
  width: 100%;
}
.suha-footer-nav ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  position: relative;
  z-index: 1;
  list-style: none;
    text-decoration: none;
    font-size: 0.875rem;
}


.suha-footer-nav ul li a {
  position: relative;
  display: block;
  text-align: center;
  text-transform: capitalize;
  line-height: 1;
  color: #020310;
  z-index: 1;
  font-weight: 500;
}
.suha-footer-nav ul li a i {
  display: block;
  font-size: 20px;
  margin-bottom: 0.25rem;
}
.suha-footer-nav ul li a:hover {
  color: #625AFA;
}
.suha-footer-nav ul li a img {
  max-height: 1.5rem;
  margin: 0 auto 0.25rem;
  display: block;
}

.rtl-flex-d-row-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.rtl-flex-d-row-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 70px;
  right: 15px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #20ba5a;
  color: #ffffff !important;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}
/* Pulse animation ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.7;
  z-index: -1;
  -webkit-animation: wa-pulse 2s infinite;
          animation: wa-pulse 2s infinite;
}
@-webkit-keyframes wa-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes wa-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}