<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Kanit',sans-serif;
}

body{
    background:#f4f7fb;
    color:#222;
}

/* HEADER */
header{
    position:relative;
    height:40vh;
    background:
    linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1920');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    overflow:hidden;
}

.overlay{
    max-width:900px;
    padding:10px;
    animation:fadeIn 1.5s ease;
}

.logo{
    font-size:45px;
    font-weight:700;
    letter-spacing:2px;
    color:#ffd700;
    margin-bottom:20px;
}

.overlay h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}

.overlay p{
    font-size:42px;
    margin-bottom:15px;
    color:#ddd;
}

.btn{
    display:inline-block;
    padding:16px 38px;
    background:#ffd700;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-size:30px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-3px);
    background:white;
}

/* FEATURES */
.section{
    padding:90px 8%;
}

.title{
    text-align:center;
    margin-bottom:60px;
}

.title h2{
    font-size:50px;
    color:#10233f;
}

.title p{
    color:#666;
    margin-top:10px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:25px;
    padding:20px;
    box-shadow:0 10px 5px rgba(0,0,0,0.08);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    margin-bottom:5px;
    color:#0b3c6d;
    font-size:34px;
}

.card p{
    color:#666;
    line-height:1.7;
}

/* IMAGE SECTION */
.showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.showcase img{
    width:100%;
    border-radius:35px;
    box-shadow:0 10px 40px rgba(0,0,0,0.2);
}

.showcase-text h2{
    font-size:54px;
    margin-bottom:20px;
    color:#10233f;
}

.showcase-text p{
    font-size:28px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

/* CLIENT */
.clients{
    background:#10233f;
    color:white;
    text-align:center;
}

.client-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.client-box{
    background:rgba(255,255,255,0.08);
    padding:20px 30px;
    border-radius:15px;
    font-size:20px;
}

/* CTA */
.cta{
    background:linear-gradient(135deg,#0b3c6d,#174f88);
    color:white;
    text-align:center;
    padding:100px 20px;
}

.cta h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta p{
    font-size:20px;
    margin-bottom:35px;
    color:#ddd;
}

/* FOOTER */
footer{
    background:#081320;
    color:#bbb;
    text-align:center;
    padding:30px;
    font-size:15px;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:900px){

    .overlay h1{
        font-size:40px;
    }

    .showcase{
        grid-template-columns:1fr;
    }

}
</style>