* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f5f5f5;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.92) 28%, rgba(255,255,255,0.15) 60%),
        url('/assets/images/home/homebgmain.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.navbar {
    width: 100%;
    padding: 24px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
}

.login-btn {
    text-decoration: none;
    background: #0b2d63;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.login-btn:hover {
    background: #143d84;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    max-width: 550px;
}

.hero-content h1 {
    font-size: 82px;
    line-height: 1.05;
    color: #08234f;
    margin-bottom: 25px;
    font-weight: 700;
}

.line {
    width: 110px;
    height: 5px;
    background: #0b2d63;
    margin-bottom: 30px;
    border-radius: 5px;
}

.hero-content p {
    font-size: 28px;
    line-height: 1.6;
    color: #374151;
    font-weight: 300;
}

@media(max-width: 900px) {
    .navbar {
        padding: 20px;
    }

    .hero-content {
        left: 25px;
        right: 25px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 20px;
    }
}
