@import url('themes.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  transition: all 0.4s ease;
}

a {
  color: var(--text);
  text-decoration: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--accent);
}

.hero p {
  margin-top: 10px;
  opacity: 0.8;
}


.project-card {
  background: var(--card);
  border-radius: 18px;
  padding: 15px;
  text-align: center;
}



.whatsapp-float{
  position:fixed;bottom:20px;right:20px;
  background:#25D366;color:#fff;
  padding:14px 18px;border-radius:50%;
  font-size:20px;z-index:9999;
}
