*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Plus Jakarta Sans',sans-serif;
background:#F9FAFE;
color:#1A2C3E;
}

.container{
max-width:1300px;
margin:auto;
padding:0 20px;
}

.header{
background:#0A192F;
padding:18px 0;
position:sticky;
top:0;
z-index:999;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo h1{
color:#fff;
font-size:28px;
}

.logo p{
color:#B0C4DE;
font-size:12px;
}

.nav{
display:flex;
gap:28px;
}

.nav a{
text-decoration:none;
color:#fff;
font-weight:600;
}

.mobile-menu{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;
}
.hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero-content h1{
font-size:64px;
margin:20px 0;
line-height:1.2;
}

.hero-highlight{
color:#F5B042;
}

.hero-desc{
font-size:18px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#F5B042;
color:#0A192F;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:700;
}

.btn-outline{
border:2px solid #F5B042;
color:#F5B042;
padding:12px 28px;
border-radius:40px;
text-decoration:none;
}

.hero-stats{
background:rgba(255,255,255,.05);
padding:40px;
border-radius:30px;
}

.stat-item{
margin-bottom:25px;
}

.stat-number{
font-size:42px;
font-weight:800;
color:#F5B042;
}

.section-title{
font-size:42px;
margin-bottom:15px;
}
.title-accent{
width:70px;
height:4px;
background:#F5B042;
margin-bottom:30px;
}

.about-modern,
.section,
.services-showcase{
padding:90px 0;
}

.service-cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.service-card{
background:#fff;
padding:30px;
border-radius:24px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.contact-modern{
background:#0A192F;
color:#fff;
padding:50px;
border-radius:30px;
}

.page-banner{
background:#0A192F;
padding:100px 0;
text-align:center;
color:#fff;
}

.footer{
background:#071524;
padding:40px 0;
text-align:center;
color:#94A3B8;
}

.whatsapp-float{
position:fixed;
bottom:30px;
right:30px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:30px;
text-decoration:none;
}

.hero-section{
position:relative;
background:url('images/hero.jpg') center/cover;
min-height:100vh;
display:flex;
align-items:center;
color:#fff;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.65);
}

.hero-title{
font-size:72px;
font-weight:800;
line-height:1.1;
margin:25px 0;
}

.hero-text{
font-size:20px;
max-width:650px;
opacity:.9;
}

.hero-tag{
background:#f5b042;
padding:10px 20px;
border-radius:50px;
color:#111;
font-weight:700;
display:inline-block;
}

@media(max-width:768px){

.hero-title{
font-size:42px;
}

.hero-text{
font-size:17px;
}

}