.social-floating-right {
  position: fixed;
  top: 80%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Hide social media icons across the static export. */
.social-floating-right,
.elementor-widget-social-icons,
.elementor-icon-list-item:has(.e-fab-facebook),
.elementor-icon-list-item:has(.e-fab-facebook-f),
.elementor-icon-list-item:has(.e-fab-instagram),
.elementor-icon-list-item:has(.e-fab-twitter),
.elementor-icon-list-item:has(.e-fab-youtube),
.elementor-icon-list-item:has(.e-fab-linkedin) {
  display: none !important;
}

.floating-iconss {
  position: fixed;
  top: 80%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* SOCIAL ICONS */

.social-floating-right .social-icons {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff; /* WHITE BACKGROUND */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-floating-right .social-icons img {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
}

.social-floating-right .social-icons:hover {
  transform: translateX(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-floating-right .social-icons:hover img {
  transform: rotate(360deg);
}

/* LEFT FLOATING ICONS */

.floating-iconss a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  transform: translateX(-110px);
  padding: 10px 12px;
  text-decoration: none;
  color: #fff;
  border-radius: 0 30px 30px 0;
  transition: transform 0.4s ease;
}

.floating-iconss a img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffffff; /* WHITE BACKGROUND */
  padding: 8px;
  transition: transform 0.5s ease;
}

.floating-iconss a:hover {
  transform: translateX(0);
}

.floating-iconss a:hover img {
  transform: rotate(360deg);
}

/* BUTTON COLORS */

.mail-icons {
  background: #d93025;
}
.whatsapp-icons {
  background: #25d366;
}
.call-icons {
  background: #4285f4;
}

/* MOBILE */

@media (max-width: 768px) {
  .social-floating-right {
    right: 8px;
  }

  .social-floating-right .social-icons {
    width: 40px;
    height: 40px;
  }

  .social-floating-right .social-icons img {
    width: 20px;
    height: 20px;
  }

  .floating-iconss a {
    width: 140px;
    height: 45px;
    transform: translateX(-95px);
    font-size: 14px;
  }

  .floating-iconss a img {
    width: 30px;
    height: 30px;
  }
}

.loader-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
