* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f5f8fa;
  color: #333;
  overflow-x: hidden;
}

header {
  background: linear-gradient(90deg, #0073e6, #00c6ff);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideDown 1s ease;
}

header .logo {
  height: 60px;
  margin-right: 10px;
  transition: transform 0.4s;
}

header .logo:hover {
  transform: scale(1.1);
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

.main {
  text-align: center;
  padding: 80px 20px 40px;
  animation: fadeIn 2s ease;
}

.main h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #0073e6;
}

.sub-text {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.menu-btn {
  background: #cdd6d6;
  color: #000;
  padding: 25px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 18px;
  width: 260px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}

.menu-btn span {
  display: block;
  font-size: 14px;
  margin-top: 6px;
  color: #333;
}

.menu-btn:hover {
  background: #0073e6;
  color: #fff;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 18px rgba(0,0,0,0.25);
}

.menu-btn:hover span {
  color: #ffcc00;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu a:nth-child(1) { animation-delay: 0.2s; }
.menu a:nth-child(2) { animation-delay: 0.4s; }
.menu a:nth-child(3) { animation-delay: 0.6s; }
.menu a:nth-child(4) { animation-delay: 0.8s; }

.stats {
  text-align: center;
  background: #ffffff;
  padding: 60px 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  margin: 0 auto 40px;
  max-width: 800px;
  border-radius: 12px;
  animation: fadeIn 2s ease;
}

.stats h1 {
  font-size: 48px;
  color: #0073e6;
}

.stats p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icons img {
  width: 40px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #00d9ff;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

.visitor-counter {
  text-align: center;
  margin: 30px 0;
}

.visitor-counter h2 {
  font-size: 28px;
  color: #0073e6;
  margin-bottom: 10px;
}

.visitor-counter p {
  font-size: 20px;
  color: #333;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animations */
@keyframes slideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media(max-width:768px){
  .menu-btn {
    width: 90%;
  }
  header {
    flex-direction: column;
  }
}
