/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#111827;
  color:white;
}

.hero{
  min-height:100vh;
  background:linear-gradient(135deg,#111827,#1f2937);
  padding:30px 8%;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:80px;
}

.logo{
  font-size:40px;
  font-weight:900;
  color:white;
}

.orange{
  color:#ff7a00;
}

.call-btn{
  background:#ff7a00;
  color:white;
  text-decoration:none;
  padding:14px 24px;
  border-radius:10px;
  transition:0.3s;
}

.call-btn:hover{
  opacity:0.8;
}

.hero-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

.left{
  flex:1;
  min-width:300px;
}

.left h1{
  font-size:70px;
  line-height:1.1;
  margin-bottom:25px;
}

.left p{
  font-size:20px;
  color:#d1d5db;
  line-height:1.7;
  margin-bottom:35px;
  max-width:700px;
}

.buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.main-btn{
  background:#ff7a00;
  color:white;
  text-decoration:none;
  padding:16px 28px;
  border-radius:12px;
  font-weight:bold;
}

.secondary-btn{
  border:2px solid #ff7a00;
  color:#ff7a00;
  text-decoration:none;
  padding:16px 28px;
  border-radius:12px;
  font-weight:bold;
}

.right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:20px;
  min-width:300px;
}

.card{
  background:#1f2937;
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
  border-color:#ff7a00;
}

.card h3{
  color:#ff7a00;
  margin-bottom:10px;
  font-size:28px;
}

.card p{
  color:#d1d5db;
  line-height:1.6;
}

.services{
  padding:100px 8%;
  background:#0f172a;
}

.services h2{
  text-align:center;
  font-size:50px;
  margin-bottom:60px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.service-box{
  background:#1f2937;
  padding:35px;
  border-radius:20px;
  transition:0.3s;
}

.service-box:hover{
  transform:translateY(-5px);
  border:1px solid #ff7a00;
}

.service-box h3{
  color:#ff7a00;
  margin-bottom:15px;
  font-size:30px;
}

.service-box p{
  color:#d1d5db;
  line-height:1.6;
}

footer{
  text-align:center;
  padding:30px;
  background:#111827;
  color:#9ca3af;
}

@media(max-width:768px){

  .left h1{
    font-size:45px;
  }

  .services h2{
    font-size:38px;
  }

}