* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: pink;
  color: #333;
}

header {
  background: linear-gradient(135deg,#0d6efd,#6610f2);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

a {
  color: white;
  font-weight: bold;
}

#web1 {
  color: lime;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.card {
  background: linear-gradient(135deg,#ffffff,#dce0ff);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial {
  background: #e0f7ff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
}

button {
  padding: 10px 20px;
  border-radius: 20px;
  background: #0d6efd;
  color: white;
  border: none;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
}

#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
marquee { display:inline-block; margin:20px 10px 0; padding:12px 25px; border-radius:25px; font-weight:700; text-decoration:none; transition:all 0.3s ease; animation:fadeIn 2.5s ease; }
/* ===== Wave Header Animation ===== */
header {
  position: relative;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  padding: 100px 20px 0;
  overflow: hidden;
}

.wave-container svg {
  display: block;
  width: 100%;
}

.wave-container path {
  animation: waveMove 6s linear infinite alternate;
}

@keyframes waveMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-60px);
  }
}

/* BACK BUTTON */
#back-home{
  display:inline-block;
  margin:20px;
  padding:12px 25px;
  background:#0d6efd;
  color:white;
  text-decoration:none;
  border-radius:25px;
  font-weight:bold;
}
.floating-home{
 position:fixed;
 bottom:50px;
 left:10px;
 background:#0d6efd;
 color:white;
 width:30px;
 height:30px;
 display:flex;
 align-items:center;
 justify-content:center;
 border-radius:50%;
 font-size:20px;
 text-decoration:none;
 z-index:1000;
}
