*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  color:#222;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  color:white;
  font-size:24px;
  font-weight:700;
}

nav{
  display:flex;
  gap:20px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:500;
}

.menu-btn{
  color:white;
  font-size:28px;
  display:none;
  cursor:pointer;
}

.hero{
  height:100vh;
  background-image:url("/assets/13.png");
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}


.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:white;
  width:90%;
}

.hero h1{
  font-size:60px;
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:15px 30px;
  border-radius:50px;
  background:#0099ff;
  color:white;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-5px);
}

.whatsapp{
  background:#25D366;
}

.services{
  padding:100px 0;
}

.services h2{
  text-align:center;
  margin-bottom:50px;
  font-size:40px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  padding:40px;
  border-radius:20px;
  background:white;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.about{
  background:#f5f5f5;
  padding:100px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:20px;
}

.about h2{
  margin-bottom:20px;
  font-size:40px;
}

.about p{
  line-height:1.7;
  margin-bottom:20px;
}

.about ul{
  list-style:none;
}

.about li{
  margin-bottom:10px;
}

.stats{
  background:#0099ff;
  color:white;
  padding:80px 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  text-align:center;
  gap:30px;
}

.stats h3{
  font-size:50px;
}

.contact{
  padding:100px 0;
  text-align:center;
}

.contact h2{
  font-size:40px;
  margin-bottom:20px;
}

.contact-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:30px;
  flex-wrap:wrap;
}

.map{
  margin-top:50px;
}

.map iframe{
  width:100%;
  height:400px;
  border:none;
  border-radius:20px;
}

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:25px;
}

@media(max-width:768px){

  nav{
    display:none;
    position:absolute;
    top:80px;
    right:20px;
    background:#111;
    flex-direction:column;
    padding:20px;
    border-radius:10px;
  }

  nav.active{
    display:flex;
  }

  .menu-btn{
    display:block;
  }

  .hero h1{
    font-size:40px;
  }

  .hero p{
    font-size:16px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

}

