*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#0a0f1f;
  color:white;
  overflow-x:hidden;
}

/* NAVBAR */

nav{
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#111827;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{

  display:flex;

  align-items:center;
}

/* LOGO IMAGE */

.logo img{

  height:90px;

  width:auto;

  object-fit:contain;

  transition:0.3s ease;
}

/* HOVER EFFECT */

.logo img:hover{

  transform:scale(1.05);
}
.logo span{
  color:#ffffff;
}

.back-btn{
  color:white;
  text-decoration:none;
  border:1px solid #00d9ff;
  padding:10px 20px;
  border-radius:30px;
  transition:0.4s;
}

.back-btn:hover{
  background:#00d9ff;
  color:black;
}

/* HERO */

.service-hero{
  height:60vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px;
  background:linear-gradient(135deg,#0f172a,#111f3d);
}

.service-hero h1{
  font-size:65px;
  color:#00d9ff;
  animation:slideDown 1s ease;
}

.service-hero p{
  margin-top:20px;
  color:#cfd8dc;
  font-size:18px;
  max-width:800px;
  line-height:1.8;
  animation:fadeIn 2s ease;
}

/* CONTENT */

.content{
  padding:100px 8%;
}

.content-box{
  background:#111827;
  padding:40px;
  border-radius:20px;
  margin-bottom:40px;
  transition:0.5s;
  opacity:0;
  transform:translateY(50px);
}

.content-box.show{
  opacity:1;
  transform:translateY(0);
}

.content-box:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(0,217,255,0.3);
}

.content-box h2{
  color:#00d9ff;
  margin-bottom:20px;
  font-size:32px;
}

.content-box p{
  color:#cfd8dc;
  line-height:1.9;
  font-size:17px;
}

.benefits{
  margin-top:20px;
}

.benefits li{
  margin-bottom:15px;
  color:#e2e8f0;
}

/* WHY US */

.why-us{
  padding:100px 8%;
  background:#111827;
}

.why-us h2{
  text-align:center;
  color:#00d9ff;
  font-size:45px;
  margin-bottom:50px;
}

.why-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.why-box{
  background:#1f2937;
  padding:35px;
  border-radius:20px;
  text-align:center;
  transition:0.5s;
}

.why-box:hover{
  transform:translateY(-10px);
  box-shadow:0 0 20px rgba(0,217,255,0.3);
}

.why-box i{
  font-size:45px;
  color:#00d9ff;
  margin-bottom:20px;
}

.why-box h3{
  margin-bottom:15px;
}

.why-box p{
  color:#cfd8dc;
  line-height:1.7;
}

/* FOOTER */

footer{
  background:#0f172a;
  text-align:center;
  padding:30px;
  color:#cfd8dc;
}

/* ANIMATIONS */

@keyframes slideDown{

  from{
    opacity:0;
    transform:translateY(-50px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes fadeIn{

  from{
    opacity:0;
  }

  to{
    opacity:1;
  }

}

/* RESPONSIVE */

@media(max-width:768px){

  .service-hero h1{
    font-size:40px;
  }

}