*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1e293b;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:999;
}

.logo img{
    height:60px;
}

.nav-links a{
    text-decoration:none;
    color:#0B3B6D;
    font-weight:600;
}

/* HERO */

.hero{
    background:linear-gradient(
        135deg,
        #0B3B6D,
        #154c85
    );

    color:white;
    text-align:center;
    padding:100px 20px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.btn{
    display:inline-block;
    margin-top:30px;
    background:#F4C542;
    color:#0B3B6D;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* FORM */

.form-section{
    padding:70px 20px;
}

.form-container{
    max-width:700px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.form-container h2{
    text-align:center;
    margin-bottom:30px;
    color:#0B3B6D;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
}

.form-group input,
.form-group select{

    width:100%;
    padding:14px;
    border:1px solid #d6d6d6;
    border-radius:8px;
    font-size:15px;
}

.submit-btn{

    width:100%;
    border:none;
    cursor:pointer;

    background:#0B3B6D;
    color:white;

    padding:15px;
    font-size:16px;
    font-weight:600;

    border-radius:8px;
}

/* FOOTER */

footer{

    background:#0B3B6D;
    color:white;
    text-align:center;

    padding:50px 20px;
}

.footer-logo img{
    height:80px;
    margin-bottom:15px;
}

footer a{
    color:#F4C542;
    text-decoration:none;
}

.social-icons{
    margin:25px 0;
}

.social-icons a{
    color:white;
    margin:0 12px;
    font-size:22px;
}

.copyright{
    margin-top:15px;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .hero h1{
        font-size:2rem;
    }

    .form-container{
        padding:25px;
    }

    .logo img{
        height:50px;
    }
}