*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#07152c;
color:white;
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.header{
position:fixed;
top:0;
width:100%;
background:rgba(7,21,44,0.9);
padding:20px 0;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:24px;
font-weight:700;
}

.logo span{
color:#ff7a00;
}

nav a{
margin-left:30px;
color:white;
text-decoration:none;
opacity:0.8;
}

nav a:hover{
opacity:1;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

background:
linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
url("bckgnd_2.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

padding-top:80px;
}

.hero-content{
max-width:800px;
margin:auto;
}

.hero h1{
font-size:64px;
}

.hero span{
color:#ff7a00;
}

.hero h2{
margin-top:20px;
font-size:26px;
}

.hero p{
margin-top:10px;
opacity:0.8;
}

.hero-buttons{
margin-top:30px;
}

.btn{
background:#ff7a00;
padding:12px 30px;
border-radius:6px;
text-decoration:none;
color:white;
margin-right:10px;
}

.btn-outline{
border:2px solid #ff7a00;
padding:10px 30px;
border-radius:6px;
color:#ff7a00;
text-decoration:none;
}

.section{
padding:120px 0;
text-align:center;
}

.dark{
background:#0d2548;
}

.services{
display:flex;
gap:40px;
justify-content:center;
margin-top:40px;
flex-wrap:wrap;
}

.service{
background:#07152c;
padding:30px;
border-radius:10px;
width:280px;
border:1px solid rgba(255,255,255,0.05);
transition:0.3s;
}

.service:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.contact-section{
background:#0f2747;
padding:100px 10%;
}

.contact-title{
text-align:center;
color:#ff7a00;
font-size:38px;
margin-bottom:60px;
}

.contact-container{
display:flex;
gap:60px;
align-items:flex-start;
flex-wrap:wrap;
}

.contact-info{
flex:1;
}

.info-box{
display:flex;
align-items:center;
margin-bottom:30px;
gap:15px;
}

.icon{
background:#1e3354;
padding:15px;
border-radius:10px;
font-size:20px;
}

.contact-form{
flex:1;
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
background:#0b1d33;
border:1px solid #1e3354;
padding:15px;
border-radius:8px;
color:white;
font-size:16px;
}

.contact-form textarea{
height:120px;
resize:none;
}

.contact-form button{
background:#ff7a00;
border:none;
padding:15px;
border-radius:8px;
font-size:16px;
color:white;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#ff8c1a;
}

footer{
text-align:center;
padding:40px;
background:#07152c;
}

@media (max-width:768px){

.hero h1{
font-size:40px;
}

.hero h2{
font-size:18px;
}

.nav{
flex-direction:column;
}

.services{
flex-direction:column;
align-items:center;
}

}