/* Funnel Display font */
@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");
/* Funnel Sans font */
@import url("https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* ------------------------------------------------*/
/* Fonts End */


/*-----------------------GENERAL-----------------START------------------*/

.small-text-menu {
  background: #ddf160;
  padding: 2px 7px;
  border-radius: 10px;
  color: #000;
  font-size: 14px;
}
/*-----------------------GENERAL-----------------END---------------------*/


/*-----------------------LOGO SCROLL-------------START--------------------*/

.carousel-logo {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  /*border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #fff;*/
}
.carousel-track {
  margin-top: 6rem;
  display: flex;
  animation: ticker 30s linear infinite;
}
.carousel-track-2 {
  display: flex;
  animation: ticker-2 30s linear infinite;
}
.carousel-slide {
  min-width: 12%; /* 8 visible */
}

@media (max-width: 767px) {
  .carousel-slide { min-width: 30%; /* 3 visible */}
  .carousel::after { width: 48px; }
}
.carousel-slide img {
  width: 100%;
  display: block;
  position: relative;
  filter: grayscale(50%);
}

/* Keyframes for infinite scroll */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-2 {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* Fade effect on left and right */
.carousel-logo::before,
.carousel-logo::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px; /* fade width */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.carousel-logo::before {
  left: 0;
  background: linear-gradient(to right, #faf7f6 0%, transparent 100%);
}

.carousel-logo::after {
  right: 0;
  background: linear-gradient(to left, #faf7f6 0%, transparent 100%);
}

/*-----------------------LOGO SCROLL-------------------END-------------------*/

/*-----------------------COPYRIGHT-------------------START-------------------*/

.sign-text {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  color: inherit;
}
.sign-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.sign-text::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: onlinePulse 1.2s infinite;
}

@keyframes onlinePulse {
    0% {
      transform: translateY(-50%) scale(1);
      opacity: 0.8;
    }
    70% {
      transform: translateY(-50%) scale(2.2);
      opacity: 0.1;
    }
    100% {
      opacity: 0;
    }
}
/*-----------------------COPYRIGHT-------------------END-------------------*/


/*-----------------------WHATSAPP BUTTON-------------------START-------------------*/

.wa-container {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

/* Tooltip Styling */
.wa-tooltip {
  visibility: hidden;
  background-color: #ddf160;
  color: #000;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--_font-accent);
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
  white-space: nowrap;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  position: relative;
}
.wa-tooltip-small {
  font-size: 12px;
  font-family: var(--_font-accent);
}

/* Small triangle for the tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 25px;
  border-width: 6px;
  border-style: solid;
  border-color: #ddf160 transparent transparent transparent;
}

/* Show tooltip on hover */
.wa-container:hover .wa-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* The Sticky Button */
.whatsapp-sticky {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 15px 15px 0px 0px;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  position: relative;
  overflow: hidden;
}

/* Moving Neon Border */
.neon-border {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 15px 15px 0px 0px;
  border: 3px solid transparent;
  background: linear-gradient(90deg, #25D366, #ddf160, #25D366) border-box;
  -webkit-mask: linear-gradient(#ddf160 0 0) padding-box, linear-gradient(#ddf160 0 0);
  mask: linear-gradient(#ddf160 0 0) padding-box, linear-gradient(#ddf160 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  background-size: 200% auto;
  animation: neonMove 2s linear infinite;
}

@keyframes neonMove {
  to { background-position: 200% center; }
}

.button-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

/*.wa-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}*/

.button-text {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--_font-accent);
}

/* Green Pulse Dot */
.pulse-dot {
  height: 10px;
  width: 10px;
  background-color: #00ff00;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: 0 0 0 rgba(0, 255, 0, 0.4);
  animation: dot-pulse 1.5s infinite;
}

@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

.whatsapp-sticky:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/*---------MOBILE VERSION--------------*/

@media (max-width: 768px) {
  .wa-container {
    right: 50%;
    left: 50%;
    transform: translateX(-50%); /* This perfectly centers the container */
    /*bottom: 15px; /* Slightly closer to the bottom on mobile */
    align-items: center; /* Centers the tooltip horizontally over the button */
    width: max-content;
  }
  .whatsapp-sticky {
    background:rgba(255,255,255,0.50);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
  }

  .wa-tooltip::after {
    right: 50%;
    transform: translateX(50%);
  }

  .button-text {
    font-size: 14px;
    color: #000; 
  }
}

  /*-----------------------WHATSAPP BUTTON-------------------END-------------------*/