/*---------------------------------
    Footer CSS 
-----------------------------------*/
.footer-area .comp-desc {
  letter-spacing: 0.01em;
}
.footer-area .footer-menu li {
  margin-bottom: 10px;
}
.footer-area .footer-menu li:last-child {
  margin-bottom: 0;
}
.footer-area .footer-menu li a {
  position: relative;
  padding-left: 17px;
}
.footer-area .footer-menu li a i {
  position: absolute;
  top: 2px;
  left: -4px;
  font-size: 20px;
  font-weight: 300;
  line-height: 0.8;
  margin: 0;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.footer-area .social-profile.style-one li {
  margin-right: 4px;
}
.footer-area .social-profile.style-one li:last-child {
  margin-right: 0;
}
.footer-area .contact-info {
  margin-bottom: 45px;
}
.footer-area .contact-info li {
  margin-bottom: 20px;
}
.footer-area .contact-info li:last-child {
  margin-bottom: 0;
}
.footer-area .contact-info li span {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 15px;
}
.footer-area .contact-info li a, .footer-area .contact-info li p {
  width: calc(100% - 57px);
  margin-left: auto;
}
.footer-area .contact-info li a:hover {
  color: var(--secondaryColor);
}
.footer-area .footer-bottom {
  padding: 27px 0;
  border-radius: 75px 75px 0 0;
  background-color: var(--whiteColor);
}
.footer-area .footer-bottom .copyright-text i {
  margin-right: 4px;
  font-weight: 300;
}
.footer-area.style-two {
  margin: 0 10px;
  border-radius: 10px 10px 0 0;
}
.footer-area.style-two .footer-bg-shape {
  border-radius: 10px 10px 0 0;
}

/*---------------------------------
    Footer Responsive CSS 
-----------------------------------*/
@media only screen and (max-width: 767px) {
  .footer-area .footer-widget-title.mb-30 {
    margin-bottom: 20px;
  }
  .footer-area .footer-bottom {
    padding: 15px 0;
    border-radius: 25px 25px 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-area .logo {
    margin-top: -4px;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-area.style-two .container-fluid {
    padding-left: 90px;
    padding-right: 90px;
  }
}

/* Footer Logo Badge Styling */
.footer-area .logo img {
  max-height: 80px;
  width: auto !important;
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* Floating WhatsApp Button styling */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.floating-whatsapp .whatsapp-tooltip {
  visibility: hidden;
  width: 110px;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  right: 75px;
  font-size: 14px;
  font-family: var(--primaryFont);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.floating-whatsapp .whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333333;
}
.floating-whatsapp:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Adjust floating WhatsApp position for mobile to avoid overlapping with other buttons */
@media only screen and (max-width: 767px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
  .floating-whatsapp .whatsapp-tooltip {
    display: none;
  }
}/*# sourceMappingURL=footer.css.map */