*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior: smooth;
}

body{
    font-family:Poppins, sans-serif;
    background:#F8FAFC;
}

.menu-toggle{
    display: none;
    font-size: 1.8rem;
    color: #1E3A8A;
    cursor: pointer;
}
@media (max-width:720px){

    .nav-links,
    .nav-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .logo h2{
    white-space: normal;
    line-height: 0.8;
    margin-left: -4px;
    
    }
    .nav-links{
        gap: 35px;
    }
}

header{
    width:100%;
    background:#FFFFFF;
    position:fixed;
    top:0;
    left:0;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:1000;
}

.navbar{
    width:90%;
    max-width:1200px;
    margin:auto;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h2{
    color:#1E3A8A;
    font-size:1.5rem;
    font-weight:700;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:32px;
}

.nav-links a{
    text-decoration:none;
    color:#374151;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:#F59E0B;
}

.nav-btn{
    text-decoration:none;
    background:#F59E0B;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.nav-btn:hover{
    background:#ca6b05;
}
.hero{
    min-height: 100vh; 
    padding-top: 50px; 

    background: linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.45)), url("bg-hero.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



@media (max-width: 720px) {
    .hero{
        padding-top: 70px;
    }
}



.hero-text{
    flex: 1;
}
.hero-container{
    width: 90%;
    max-width: 1200px;
    min-height: calc(100vh - 80px);
    margin: auto;

    justify-content: space-between;
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
}
.hero-image{
    flex: 1;
}
.hero-image img{
    width: 100%;
    max-width: 550px;
    display: block;
}


.hero-text h1{
    font-size: 3.8rem;
    font-weight:800 ;
    margin: 20px 0;

}
.hero-text span{
    background-color: #e8f1ff;
    color: #1E3A8A;
    border-radius: 5px;
    padding: 8px 16px;
    font-weight: 600;

}

.hero-text{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f5f5f7;
    margin-bottom:30px;
}

.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-buttons a{
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 500;
}

.hero-buttons a:first-child{
    background: #F59E0B;
    color: white;
}
.hero-buttons a:last-child{
    border:3px solid #06102d;
    color: #c7d3f4;
}

.hero-buttons a:first-child:hover{
    background-color: #090404;
}

.hero-buttons a:last-child:hover{
    background-color: #112a52;
    color: #fff;
}