<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SaiVerse Solutions – International Payment Recovery Consultant</title>
<meta name="description" content="SaiVerse Solutions offers expert global consultation for payment recovery and client coordination. Trusted by 1000+ international clients.">
<meta name="keywords" content="payment recovery, international clients, freelancing, collections, client follow-up, Saranya S">
<meta name="author" content="Saranya S">
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="favicon.ico">
<style>
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #0c1a2a, #102030);
  border: 4px solid transparent;
  border-image: linear-gradient(135deg, #ffd700, #ffffff33) 1;
  border-image-slice: 1;
  color: #fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  animation: bounce 2s infinite, glow 1.5s ease-in-out infinite alternate;
}
.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 15px #25D366;
}
@keyframes glow {
  from { box-shadow: 0 0 5px #25D366; }
  to { box-shadow: 0 0 20px #25D366; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glowing Review Boxes */
.review-box {
  background: #182c44;
  border-left: 4px solid #ffd700;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 0 10px #ffd70044;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.8s ease;
}
.review-box.visible {
  transform: translateX(0);
  opacity: 1;
}

.hero h1 {
  font-size: 2.5rem;
  color: #ffd700;
  text-shadow: 0 0 8px #ffd700aa;
}
</style>
</head>
<body>

<!-- Existing content remains unchanged -->

<a class="whatsapp-float" href="https://wa.me/918939701718" target="_blank">
  <img src="https://img.icons8.com/color/96/000000/whatsapp--v1.png" alt="WhatsApp Chat" />
</a>

<script>
const faders = document.querySelectorAll('.fade-in, .review-box');
const options = { threshold: 0.3 };
const appearOnScroll = new IntersectionObserver(function(entries, observer) {
  entries.forEach(entry => {
    if (!entry.isIntersecting) return;
    entry.target.classList.add('visible');
    observer.unobserve(entry.target);
  });
}, options);

faders.forEach(fader => appearOnScroll.observe(fader));
</script>

</body>
</html>
