*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#f4f4f4;
  color:#111827;
  line-height:1.6;
}

header{
  background:#020617;
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo img{
  height:70px;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:25px;
  font-weight:bold;
}

nav a:hover{
  color:#facc15;
}

.hero{
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
  padding:80px 8%;
  background:
  linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
  url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
}

.hero h1{
  font-size:64px;
  margin-bottom:25px;
}

.hero h1 span{
  color:#dc0000;
}

.hero p{
  max-width:700px;
  font-size:22px;
  margin-bottom:35px;
}

.btn{
  background:#facc15;
  color:#111827;
  padding:16px 30px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

section{
  padding:90px 8%;
}

.section-title{
  text-align:center;
  font-size:42px;
  margin-bottom:60px;
}

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.card{
  background:white;
  padding:35px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  text-align:center;
}

.card h3{
  margin:20px 0 15px;
}

.icon{
  font-size:55px;
}

.content{
  max-width:1000px;
  margin:auto;
}

footer{
  background:#000814;
  color:white;
  text-align:center;
  padding:30px;
}

footer a{
  color:#facc15;
  text-decoration:none;
  margin:0 10px;
}

.contact-box{
  background:white;
  padding:40px;
  border-radius:18px;
  max-width:700px;
  margin:auto;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media(max-width:900px){

  header{
    flex-direction:column;
    gap:15px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }

  nav a{
    margin:8px;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

}
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}

.contact-box h3{
  font-size:28px;
  margin-bottom:20px;
  color:#111827;
}

.contact-box p{
  margin-bottom:15px;
  font-size:18px;
}

form{
  background:white;
  padding:40px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

form input,
form textarea{
  width:100%;
  padding:15px;
  margin-bottom:18px;
  border:1px solid #d1d5db;
  border-radius:10px;
  font-size:16px;
}

form textarea{
  min-height:150px;
  resize:vertical;
}

form button{
  width:100%;
  border:none;
  cursor:pointer;
}

@media(max-width:900px){
  .contact-wrapper{
    grid-template-columns:1fr;
  }
}