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

body{
  background:#f5f9ff;
  color:#222;
}

a{
  text-decoration:none;
}

header{
  position:relative;
  width:100%;
  height:100vh;
  background:url('cover.png') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:20px;
}

.logo{
  width:180px;
  background:#fff;
  border-radius:20px;
  padding:10px;
  margin-bottom:20px;
}

.hero-content h1{
  font-size:4rem;
  margin-bottom:15px;
}

.hero-content p{
  font-size:1.2rem;
  line-height:1.8;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  background:#00b4d8;
  color:#fff;
  padding:14px 35px;
  border-radius:50px;
}

.about{
  padding:80px 10%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:20px;
}

.about-text h2{
  font-size:2.5rem;
  color:#0077b6;
  margin-bottom:20px;
}

.about-text p{
  line-height:1.9;
  margin-bottom:15px;
}

.services{
  background:#e9f8ff;
  padding:80px 10%;
  text-align:center;
}

.services h2{
  font-size:2.5rem;
  margin-bottom:40px;
  color:#0077b6;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.card i{
  font-size:50px;
  color:#00b4d8;
  margin-bottom:20px;
}

.contact{
  padding:80px 10%;
  text-align:center;
}

.contact h2{
  font-size:2.5rem;
  margin-bottom:40px;
  color:#0077b6;
}

.contact-box{
  background:#fff;
  max-width:700px;
  margin:auto;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-box p{
  margin:15px 0;
}

footer{
  background:#023e8a;
  color:#fff;
  text-align:center;
  padding:25px;
}

.social-icons{
  position:fixed;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:999;
}

.social-icons a{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-size:22px;
}

.facebook{background:#1877f2;}
.instagram{background:#e1306c;}
.tiktok{background:#000;}
.whatsapp{background:#25d366;}
.email{background:#ff5722;}

@media(max-width:768px){

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

  .hero-content p{
    font-size:1rem;
  }

}
