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

body {
  background: #fff4cf;
  color: #333;
  scroll-behavior: smooth;
}

nav {
  text-align: center;
  background: linear-gradient(90deg,#0d6efd,#6610f2);
  padding: 12px;
  position: sticky;
  top: 0;
}

nav a {
  color: #7FFF00;
  margin: 0 12px;
  font-weight: 600;
}

header { background:linear-gradient(135deg,#0d6efd,#6610f2); color:white; padding:70px 20px; text-align:center; position:relative; }
header img.profile-img { width:150px; height:150px; border-radius:50%; object-fit:cover; border:4px solid white; margin-top:20px; animation:slideDown 1s ease; }
header h1 { margin-top:15px; font-size:36px; font-weight:700; animation:slideDown 1s ease; }
header p { margin-top:10px; font-size:18px; animation:fadeIn 2s ease; }
header .btn { 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; }
header .btn:hover { transform: scale(1.08) rotate(-1deg); box-shadow:0 6px 15px rgba(0,0,0,0.2); }

 h1 { margin-top:15px; font-size:36px; font-weight:700; animation:slideDown 1s ease; }
 p { margin-top:10px; font-size:18px; animation:fadeIn 2s ease; }

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

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: white;
  color: red;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp {
  background: #25D366;
  color: white;
}

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: 10px;
}

.contact-bg {
  background-image: url("computer01.jpg");
  background-size: cover;
  color: white;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
}

form button {
  background: #0072ff;
  color: white;
  padding: 12px;
  border-radius: 25px;
  border: none;
}
/* Footer */
footer { background:#222; color:white; text-align:center; padding:15px; font-size:14px; }

#whatsapp-btn { position:fixed; bottom:20px; right:20px; background:#25D366; color:white; border-radius:50%; width:60px; height:60px; display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:30px; box-shadow:0 2px 8px rgba(0,0,0,0.3); animation:pulse 2s infinite ease-in-out; z-index:1000; }



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; }
 iframe {
      width: 100%;
      height: 230px;
      border: none;
      border-radius: 20px;
  
/* ===== 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);
  }
}


/* ===== Glassmorphism Cards ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 14px 45px rgba(0,0,0,0.4);
}



/* ===== Page Loader ===== */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: white;
  font-weight: bold;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255,255,255,0.3);
  border-top: 6px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Smooth Page Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth button animation */
.btn {
  transition: all 0.35s ease;
}

.btn:hover {
  transform: scale(1.08);
}

/* Smooth page scrolling feel */
html {
  scroll-behavior: smooth;
}

.live-country-wrap{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
  margin:30px 0;
}

/* LIVE VISITORS */
.live-box{
  padding:15px 25px;
  border-radius:20px;
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:white;
  font-weight:700;
  text-align:center;
  box-shadow:0 6px 15px rgba(0,0,0,.25);
}

.live-box span{
  display:block;
  font-size:32px;
  margin-top:5px;
  animation:pulse 1.5s infinite;
}

/* COUNTRY */
.country-box{
  padding:15px 25px;
  border-radius:20px;
  background:linear-gradient(135deg,#ffdd57,#ffc107);
  font-weight:700;
  text-align:center;
  box-shadow:0 6px 15px rgba(0,0,0,.25);
}

.country-info{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:8px;
  font-size:18px;
}

.country-info img{
  width:36px;
  height:24px;
  border-radius:4px;
  opacity:0;
  transform:translateY(10px) scale(.8);
  animation:flagIn 1s ease forwards;
}

/* ANIMATIONS */
@keyframes pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.15)}
}

@keyframes flagIn{
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}
/* Wave Animation */
.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); } }

/* Animations */
@keyframes slideDown { from{transform:translateY(-30px); opacity:0;} to{transform:translateY(0); opacity:1;} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.15); box-shadow:0 6px 15px rgba(0,0,0,0.4);} }

/* Responsive */
@media(max-width:600px){ header h1{font-size:28px;} header p{font-size:16px;} nav a{margin:0 6px;} } 
      
      /* Wave Animation */
.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); } }

/* Animations */
@keyframes slideDown { from{transform:translateY(-30px); opacity:0;} to{transform:translateY(0); opacity:1;} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.15); box-shadow:0 6px 15px rgba(0,0,0,0.4);} }

/* Responsive */
@media(max-width:600px){ header h1{font-size:28px;} header p{font-size:16px;} nav a{margin:0 6px;} } 
.admin-link{
  position:fixed;
  top:10px;
  left:10px;
  background:#000;
  color:#fff;
  padding:8px 14px;
  border-radius:20px;
  text-decoration:none;
  font-size:14px; color:white; width:60px; height:60px; display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:15px; box-shadow:0 2px 8px rgba(0,0,0,0.3); animation:pulse 2s infinite ease-in-out; z-index:1000; }
  