*{

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

}


body{

background:black;

}



.navbar{

height:90px;
width:100%;
display:flex;
align-items:center;
justify-content:space-between;

padding:0 6%;

background:white;
position:absolute;
top:0;
z-index:10;

}



.top-phone{

color:#a8d410;
font-weight:bold;
font-size:16px;

}



.logo{

font-size:30px;
font-weight:900;
letter-spacing:2px;

}



nav{

display:flex;
align-items:center;
gap:30px;

}


nav a{

text-decoration:none;
color:#111;
font-weight:600;

}



.contact-btn{

background:#a8d410;
padding:14px 25px;
border-radius:30px;

}





.hero{

height:100vh;
position:relative;
overflow:hidden;

}



.bg-video{

position:absolute;
width:100%;
height:100%;
object-fit:cover;

}



.overlay{

position:absolute;
inset:0;
background:rgba(0,0,0,0.45);

}




.hero-content{

position:relative;
z-index:2;

height:100%;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

text-align:center;

color:white;

}



.hero-content h1{

font-size:70px;
line-height:1.1;
font-weight:900;

}



.hero-content h2{

font-size:55px;
margin-top:20px;

}



.hero-content p{

font-size:35px;
margin-top:20px;

}



.hero-content span{

color:#a8d410;

}



@media(max-width:900px){


nav{

display:none;

}


.hero-content h1{

font-size:40px;

}


.logo{

font-size:22px;

}

}
