
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#06111F;
  color:white;
  line-height:1.6;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:#000;
  border-bottom:1px solid rgba(212,175,55,.2);
  position:sticky;
  top:0;
}

.logo-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-wrap img{
  width:65px;
}

.logo-wrap h1{
  color:#D4AF37;
  font-size:28px;
}

.logo-wrap p{
  color:#999;
  margin-top:-5px;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:white;
  transition:.3s;
}

.nav-links a:hover{
  color:#D4AF37;
}

.btn{
  background:#D4AF37;
  color:black;
  text-decoration:none;
  padding:14px 22px;
  border-radius:10px;
  font-weight:bold;
}

.btn-outline{
  border:1px solid #D4AF37;
  color:#D4AF37;
  text-decoration:none;
  padding:14px 22px;
  border-radius:10px;
}

.hero{
  padding:80px 8%;
  background:linear-gradient(to right,#000,#071326,#000);
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero-logo img{
  width:100%;
  max-width:600px;
}

.hero-text h2{
  font-size:70px;
  line-height:1;
}

.hero-text h2 span{
  color:#D4AF37;
}

.hero-text h3{
  color:#E5C76B;
  font-size:32px;
  margin:20px 0;
}

.hero-text p{
  color:#ccc;
  margin-bottom:25px;
}

.badges{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.badges div{
  border:1px solid rgba(212,175,55,.3);
  padding:12px 18px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
}

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

.section{
  padding:90px 8%;
}

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

.section-title p{
  color:#D4AF37;
  letter-spacing:4px;
  font-weight:bold;
  margin-bottom:15px;
}

.section-title h2{
  font-size:48px;
}

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

.card{
  background:linear-gradient(to bottom right,#0A1628,#050B14);
  border:1px solid rgba(212,175,55,.2);
  border-radius:24px;
  padding:35px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-10px);
  border-color:#F5D76E;
}

.card h3{
  color:#D4AF37;
  margin-bottom:20px;
  font-size:28px;
}

.card p{
  color:#ccc;
}

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about h2{
  color:#D4AF37;
  font-size:50px;
  margin-bottom:25px;
}

.about p{
  margin-bottom:20px;
  color:#ccc;
}

.about-logo{
  background:linear-gradient(to bottom right,rgba(212,175,55,.1),transparent);
  border:1px solid rgba(212,175,55,.2);
  border-radius:35px;
  padding:40px;
  text-align:center;
}

.about-logo img{
  width:100%;
  max-width:450px;
}

.software-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.software-card{
  background:linear-gradient(to bottom right,#0A1628,#050B14);
  border:1px solid rgba(212,175,55,.2);
  border-radius:24px;
  padding:50px;
  text-align:center;
  font-size:36px;
  font-weight:bold;
  color:#D4AF37;
}

.contact{
  text-align:center;
}

.contact h2{
  font-size:52px;
  color:#D4AF37;
  margin-bottom:20px;
}

.contact p{
  color:#ccc;
  margin-bottom:40px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.contact-card{
  background:linear-gradient(to bottom right,#0A1628,#050B14);
  border:1px solid rgba(212,175,55,.2);
  border-radius:24px;
  padding:40px;
}

.contact-card h3{
  color:#D4AF37;
  margin-bottom:10px;
}

footer{
  padding:40px;
  text-align:center;
  border-top:1px solid rgba(212,175,55,.1);
  background:black;
}

footer img{
  width:80px;
  margin-bottom:15px;
}

@media(max-width:900px){

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

  .hero-text h2{
    font-size:50px;
  }

  .nav-links{
    display:none;
  }

  .section-title h2{
    font-size:38px;
  }
}
