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

html{
  scroll-behavior:smooth;
}

body{
  background:#07111f;
  color:#fff;
}

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.8)),
    url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?q=80&w=1400') center/cover;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 10%;
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
}

.logo{
  font-size:1.5rem;
  font-weight:700;
  color:#00d4ff;
}

nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

nav a{
  color:#fff;
  text-decoration:none;
}

.hero-content{
  max-width:800px;
  padding:220px 10%;
}

.tag,.section-tag{
  background:rgba(0,212,255,.15);
  border:1px solid rgba(0,212,255,.3);
  color:#00d4ff;
  padding:8px 15px;
  border-radius:50px;
  display:inline-block;
  margin-bottom:20px;
}

.hero-content h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-content p{
  font-size:1.1rem;
  color:#d1d5db;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 30px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.primary{
  background:#00d4ff;
  color:#000;
}

.secondary{
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
}

.btn:hover{
  transform:translateY(-3px);
}

.brands{
  padding:25px;
  text-align:center;
  background:#081221;
  color:#9ca3af;
}

.about,.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  padding:100px 10%;
  align-items:center;
}

.about img,.contact img{
  width:100%;
  border-radius:25px;
}

.about h2,.services h2,.results h2,.testimonials h2,.contact h2{
  font-size:2.5rem;
  margin-bottom:20px;
}

.about p,.contact p{
  color:#cbd5e1;
  margin-bottom:20px;
}

.numbers{
  display:flex;
  gap:30px;
  margin-top:30px;
  flex-wrap:wrap;
}

.numbers h3{
  color:#00d4ff;
  font-size:2rem;
}

.services,.results,.testimonials{
  padding:100px 10%;
}

.title-center{
  text-align:center;
  margin-bottom:50px;
}

.service-grid,.results-grid,.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.service-card,.result-box,.testimonial{
  background:#0d1728;
  border:1px solid rgba(255,255,255,.06);
  border-radius:22px;
  overflow:hidden;
  transition:.3s;
}

.service-card:hover,.result-box:hover,.testimonial:hover{
  transform:translateY(-8px);
}

.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.service-card h3,.result-box h3{
  padding:25px 25px 10px;
}

.service-card p,.result-box p,.testimonial p{
  padding:0 25px 25px;
  color:#cbd5e1;
}

.banner{
  padding:120px 10%;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1513258496099-48168024aec0?q=80&w=1400') center/cover fixed;
}

.banner h2{
  font-size:3rem;
  margin-bottom:20px;
}

.banner p{
  max-width:700px;
  margin:auto;
  margin-bottom:35px;
  color:#d1d5db;
}

.info-box{
  background:#0d1728;
  padding:30px;
  border-radius:20px;
  margin:25px 0;
}

footer{
  text-align:center;
  padding:50px 20px;
  background:#030712;
}

.whatsapp-float{
  position:fixed;
  right:25px;
  bottom:25px;
  width:65px;
  height:65px;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
  font-size:2rem;
  z-index:9999;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}

@media(max-width:900px){

  nav{
    flex-direction:column;
    gap:15px;
  }

  .hero-content h1{
    font-size:2.5rem;
  }

  .about,.contact{
    grid-template-columns:1fr;
  }

}
