
body{
margin:0;
font-family:Arial,sans-serif;
background:#0b0b0b;
color:#fff;
}

.hero{
height:90vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7));
}

.logo{
max-width:420px;
margin-bottom:20px;
}

.overlay{
padding:40px;
}

h1{
font-size:58px;
margin-bottom:10px;
color:#f3b91a;
}

p{
font-size:20px;
}

.buttons{
margin-top:30px;
}

.btn{
display:inline-block;
padding:14px 28px;
margin:10px;
background:#f3b91a;
color:#000;
text-decoration:none;
font-weight:bold;
border-radius:6px;
}

.btn.secondary{
background:#fff;
}

.services{
padding:80px 30px;
}

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

.card{
background:#161616;
padding:30px;
border-radius:12px;
}

.contact-form{
padding:60px 30px;
max-width:800px;
margin:auto;
}

form input,
form select,
form textarea{
width:100%;
padding:14px;
margin-bottom:15px;
border:none;
border-radius:6px;
}

button{
padding:14px 28px;
background:#f3b91a;
border:none;
font-weight:bold;
cursor:pointer;
}

footer{
padding:40px;
text-align:center;
background:#111;
}


.hero{position:relative;overflow:hidden;}
.hero-video{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
opacity:.42;
}
.hero .overlay{
position:relative;
z-index:2;
background:rgba(0,0,0,.52);
border-radius:18px;
max-width:980px;
margin:auto;
}


.topnav{
position:fixed;
top:0;
left:0;
right:0;
z-index:9999;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:18px;
padding:16px;
background:rgba(0,0,0,.82);
backdrop-filter:blur(6px);
}

.topnav a{
color:#fff;
text-decoration:none;
font-weight:bold;
font-size:15px;
}

.topnav a:hover{
color:#f3b91a;
}

.hero{
min-height:100vh;
padding-top:90px;
}

.card a{
color:#f3b91a;
text-decoration:none;
}

.card a:hover{
text-decoration:underline;
}

@media(max-width:900px){
.topnav{
gap:10px;
padding:12px;
}
.topnav a{
font-size:13px;
}
h1{
font-size:40px;
}
}


.hero-subtext{
font-size:15px;
max-width:760px;
margin:18px auto 0 auto;
opacity:.92;
line-height:1.6;
}
