*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

font-family:'Poppins',sans-serif;
background:#041742;
color:white;
overflow-x:hidden;

}

header{

position:fixed;
width:100%;
top:0;
left:0;
padding:20px 8%;
backdrop-filter:blur(15px);
z-index:1000;

}

.navbar{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo img{

height:75px;

}

.navbar ul{

display:flex;
gap:35px;
list-style:none;

}

.navbar a{

color:white;
text-decoration:none;
font-weight:500;

}

.btn{

background:#FDB515;
padding:14px 28px;
border-radius:40px;
color:#111;
font-weight:bold;
transition:.3s;

}

.btn:hover{

transform:translateY(-4px);

}

.hero{

min-height:100vh;

display:flex;

justify-content:space-between;

align-items:center;

padding:140px 8%;

}

.hero-content{

width:50%;

}

.hero h1{

font-size:70px;

line-height:80px;

font-weight:800;

margin-bottom:25px;

}

.hero h2{

font-size:36px;

color:#FDB515;

margin-bottom:20px;

}

.hero p{

font-size:20px;

line-height:35px;

opacity:.9;

margin-bottom:40px;

}

.buttons{

display:flex;

gap:20px;

}

.primary{

background:#FDB515;

padding:18px 42px;

border-radius:50px;

text-decoration:none;

color:#111;

font-weight:bold;

}

.secondary{

border:2px solid #FDB515;

padding:18px 42px;

border-radius:50px;

text-decoration:none;

color:white;

}

.hero-image{

width:40%;

display:flex;

justify-content:center;

}

.hero-image img{

width:90%;

animation:float 5s ease-in-out infinite;

filter:drop-shadow(0px 0px 40px rgba(255,210,80,.4));

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}