.sticky-bar {
    position: fixed;
    display: flex;
}
.sticky-bar {
    bottom: 5px;
    left: 0;
    width: 100%;
    z-index: 9999;
    justify-content: center;
    padding: 0 auto;
}
	.telegram-btn-wrapper {
    text-align: center;
    margin: 30px 0px;
}
.telegram-btn {
    display: inline-flex;
    align-items: center;
    max-width: 95%;
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: rgba(18, 32, 66, 0.45) 0px 8px 25px;
    gap: 14px;
    padding: 14px 26px;
    background: linear-gradient(135deg, blue, orange);
    text-decoration: none;
    border-radius: 14px;
    animation: 2s ease 0s infinite normal none running telegramPulse;
    transition: 0.3s;
}
.telegram-btn img {
    width: 26px;
    height: 26px;
    filter: invert(1);
}
/* ================= FLOATING WHATSAPP start ================= */

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-contact a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Call Button */
.call-btn {
  background: linear-gradient(135deg, #2196f3, #0d47a1);
}

.whatsapp-btn i,
.call-btn i {
  font-size: 26px;
  color: #fff;
}

.floating-contact a:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .floating-contact a {
    width: 48px;
    height: 48px;
  }

  .whatsapp-btn i,
  .call-btn i {
    font-size: 22px;
  }
}



/* WhatsApp Verify Popup */
.wa-verify-box {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.wa-verify-inner {
  background: #fff;
  padding: 22px;
  width: 320px;
  border-radius: 14px;
  text-align: center;
}

.wa-verify-inner h5 {
  margin-bottom: 12px;
}

.wa-verify-inner select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

.wa-verify-inner option {
  color: #25D366;
}

.human-check {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.wa-verify-inner button {
  width: 100%;
  padding: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ================= FLOATING WHATSAPP end ================= */