<style>

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    color:#1b2952;
    background:#f8fbfd;
    line-height:1.6;
}

a{
    text-decoration:none;
}

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

/* HEADER */

header{
    background:linear-gradient(135deg,#0b2d72,#20bfd5);
    color:white;
    padding:20px 0;
    position:sticky;
    top:0;
    z-index:999;
}

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

.logo{
    font-size:1.5rem;
    font-weight:600;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    color:white;
    font-weight:500;
}

/* HERO */

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(8,20,48,0.75),rgba(8,20,48,0.75)),
    url('images/house-bg.jpg?auto=format&fit=crop&w=1800&q=80');
    background-size:cover;
    background-position:center;
    color:white;
}

.hero-content{
    max-width:700px;
}

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

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

.btn{
    display:inline-block;
    background:#20bfd5;
    color:white;
    padding:14px 30px;
    border-radius:40px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#0b2d72;
}

/* INTRO */

.intro{
    padding:80px 0;
    text-align:center;
}

.intro h2{
    margin-bottom:20px;
    font-size:2.2rem;
}

.intro p{
    max-width:900px;
    margin:auto;
}

/* BUSINESS AREAS */

.business{
    padding:80px 0;
}

.business-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-content{
    
    padding:30px;
}

.card h3{
    color:#0b2d72;
    margin-bottom:15px;
    font-size:1.8rem;
}

.card ul{
    list-style:none;
}

.card li{
    padding:8px 0;
}

/* SERVICES */

.services{
    background:white;
    padding:80px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service{
    background:#f3f9fb;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.service h4{
    margin-bottom:10px;
    color:#0b2d72;
}

/* ABOUT */

.about{
    padding:80px 0;
}

.about-box{
    background:linear-gradient(135deg,#0b2d72,#20bfd5);
    color:white;
    padding:50px;
    border-radius:25px;
}

/* CONTACT */

.contact{
    padding:80px 0;
}

form{
    display:grid;
    gap:15px;
}

input, textarea{
    padding:15px;
    border:1px solid #d8e2ea;
    border-radius:10px;
}

textarea{
    min-height:150px;
}

button{
    border:none;
    cursor:pointer;
}

/* FOOTER */

footer{
    background:#081430;
    color:white;
    padding:50px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.footer-grid h4{
    margin-bottom:15px;
}

.footer-grid a{
    color:#20bfd5;
}

.copyright{
    text-align:center;
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:20px;
}

@media(max-width:768px){

.hero h1{
font-size:2.2rem;
}

}

</style>
