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

body{
  background:#0d0d0d;
  color:white;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 10%;
  background:black;
  position:sticky;
  top:0;
}

.navbar ul{
  display:flex;
  list-style:none;
}

.navbar ul li{
  margin-left:20px;
}

.navbar ul li a{
  text-decoration:none;
  color:white;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:gold;
}

.hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:80px 10%;
  min-height:100vh;
}

.hero-text h1{
  font-size:55px;
}

.hero-text h2{
  color:gold;
  margin:10px 0;
}

.hero-text p{
  margin:20px 0;
  line-height:1.6;
}

.btn{
  background:gold;
  color:black;
  padding:12px 25px;
  text-decoration:none;
  border-radius:5px;
  font-weight:bold;
}

.hero-image img{
  width:350px;
  border-radius:20px;
}

.about,
.services,
.portfolio,
.contact{
  padding:80px 10%;
}

h2{
  font-size:40px;
  margin-bottom:30px;
  color:gold;
}

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

.card{
  background:#1a1a1a;
  padding:30px;
  text-align:center;
  border-radius:15px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.card i{
  font-size:40px;
  color:gold;
  margin-bottom:15px;
}

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

.portfolio-gallery img{
  width:100%;
  border-radius:15px;
}

.contact p{
  margin:15px 0;
}

footer{
  text-align:center;
  padding:20px;
  background:black;
}

@media(max-width:768px){

.hero{
  flex-direction:column;
  text-align:center;
}

.hero-image img{
  width:250px;
  margin-top:30px;
}

.navbar{
  flex-direction:column;
}

}