
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:#081c3a;
    padding:14px 0;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area{
    background:#fff;
    padding:8px 14px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.12);
}

.logo{
    width:130px;
    display:block;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    margin-left:24px;
    font-weight:500;
}

.hero{
    height:90vh;
    background:linear-gradient(rgba(8,28,58,0.75),rgba(8,28,58,0.75)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero-content p{
    font-size:1.2rem;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#d4af37;
    color:#081c3a;
    padding:12px 28px;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
}

@media(max-width:768px){
    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .logo{
        width:110px;
    }

    .hero-content h1{
        font-size:2rem;
    }
}
