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

body{
  font-family:'Inter',sans-serif;
  background:#f7f9fc;
  color:#111;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.header{
  background:#081120;
  padding:20px 0;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  color:#fff;
  font-size:28px;
  font-weight:800;
}

.logo span{
  color:#ff8c00;
}

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

.nav a{
  color:#fff;
  text-decoration:none;
}

.call-btn{
  background:#ff8c00;
  color:#fff;
  padding:12px 22px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

.hero{
  position:relative;
  background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  min-height:90vh;
  display:flex;
  align-items:center;
}

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

.hero-content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:50px;
  align-items:center;
}

.hero-left{
  color:#fff;
}

.badge{
  background:#ff8c00;
  display:inline-block;
  padding:10px 18px;
  border-radius:30px;
  margin-bottom:20px;
  font-weight:600;
}

.hero-left h1{
  font-size:64px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-left p{
  font-size:20px;
  margin-bottom:30px;
}

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

.primary-btn,
.secondary-btn{
  padding:15px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
}

.primary-btn{
  background:#ff8c00;
  color:#fff;
}

.secondary-btn{
  background:#fff;
  color:#111;
}

.hero-form{
  background:#fff;
  padding:35px;
  border-radius:20px;
}

.hero-form h2{
  margin-bottom:25px;
}

.hero-form form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.hero-form input,
.hero-form select,
.hero-form textarea{
  padding:14px;
  border:1px solid #ddd;
  border-radius:10px;
}

.hero-form button{
  background:#081120;
  color:#fff;
  border:none;
  padding:15px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
}

.services{
  padding:100px 0;
}

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

.section-title span{
  color:#ff8c00;
  font-weight:700;
}

.section-title h2{
  font-size:42px;
  margin-top:10px;
}

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

.service-card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

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

.icon{
  font-size:42px;
  margin-bottom:20px;
}

.footer{
  background:#081120;
  color:#fff;
  text-align:center;
  padding:40px 0;
}

@media(max-width:900px){

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

  .hero-left h1{
    font-size:42px;
  }

  .nav{
    display:none;
  }

}
