/* Reset & Base */
* { box-sizing:border-box; margin:0; padding:0; font-family:'Inter', sans-serif; }
body { background:#33ff33; color:#333; scroll-behavior:smooth; }

/* Buttons */
.btn { color:red; transition:all 0.35s ease; }
.btn:hover { transform: scale(1.08); }

/* Navigation */
nav { text-align:center; background:linear-gradient(90deg,#0d6efd,#6610f2); padding:12px; position:sticky; top:0; z-index:1000; }
nav a { color:#7FFF00; margin:0 12px; text-decoration:underline; font-weight:600; transition:0.3s; }
nav a:hover { color:#ffdd57; }

/* Hero Header */
header { position:relative; background:linear-gradient(135deg,#0d6efd,#6610f2); color:white; padding:100px 20px 0; overflow:hidden; text-align:center; }
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); }

/* Sections & Cards */
section { padding:40px 20px; max-width:1000px; margin:auto; }
.card { background: linear-gradient(135deg,#ffffff,#dce0ff); padding:25px; border-radius:15px; margin-bottom:25px; box-shadow:0 8px 20px rgba(0,0,0,0.15); opacity:0; transform:translateY(30px); transition:0.8s ease; }
.card.visible { opacity:1; transform:translateY(0); }
.card h2 { color:#0d6efd; font-weight:600; margin-bottom:15px; }
.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); }

/* Services & Lists */
ul { list-style:none; padding-left:0; }
ul li { padding:8px 0; font-size:16px; }

/* Testimonials */
.testimonial { background:linear-gradient(135deg,#e0f7ff,#dce0ff); padding:15px; border-radius:10px; margin-bottom:15px; font-style:italic; opacity:0; transform:translateY(30px); transition:0.8s ease; }
.testimonial.visible { opacity:1; transform:translateY(0); }
.testimonial i { margin-right:8px; color:#0d6efd; }

/* Forms */
form input, form textarea { width:100%; padding:12px; margin-top:6px; margin-bottom:12px; border-radius:6px; border:1px solid #ccc; font-size:16px; }
form button { background:linear-gradient(90deg,#00c6ff,#0072ff); color:white; border:none; padding:12px 20px; border-radius:25px; cursor:pointer; transition:all 0.3s ease; }
form button:hover { transform:scale(1.08) rotate(-1deg); box-shadow:0 6px 15px rgba(0,0,0,0.2); }

/* Footer */
footer { background:#222; color:white; text-align:center; padding:15px; font-size:14px; }

/* Floating WhatsApp */
#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; }

/* 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;} } 

/* Visitor Counter */
.visitor-counter { max-width:320px; margin:40px auto; padding:22px; text-align:center; background:linear-gradient(135deg,#ffffff,#e6ebff); border-radius:25px; box-shadow:0 10px 25px rgba(0,0,0,0.25); transition: transform 0.4s ease, box-shadow 0.4s ease; position:relative; }
.visitor-counter:hover { transform: translateY(-6px) scale(1.03); box-shadow:0 16px 35px rgba(0,0,0,0.35); }
.visitor-counter::before { content:""; position:absolute; inset:0; border-radius:25px; padding:2px; background:linear-gradient(90deg,#0d6efd,#25D366,#ffdd57); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.vc-title { font-size:18px; font-weight:700; color:#0d6efd; }
.vc-sub { font-size:14px; color:#333; }

/* 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 reveal */
.fade-up { opacity:0; transform:translateY(30px); transition:all 0.9s ease; }
.fade-up.show { opacity:1; transform:translateY(0); }


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





/* Marquee */
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; }
