@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f8fafc;
color:#1e293b;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.navbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:#ffffff;
    padding:15px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
color:#fff;
font-size:28px;
font-weight:700;
text-decoration:none;
}
.logo img{
    height:80px !important;
    width:auto;
    display:block;
}

.logo span{
color:#00a8ff;
}

.menu{
display:flex;
gap:25px;
}

.menu a{
    color:#0a2540;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(10,37,64,.75),rgba(10,37,64,.75)),
url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
color:#fff;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:60px;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.btn-primary{
background:#25D366;
color:white;
}

.btn-secondary{
border:2px solid white;
color:white;
margin-left:10px;
}

.section{
padding:100px 0;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#0a2540;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
margin-bottom:15px;
color:#0a2540;
}

.about{
background:white;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about img{
width:100%;
border-radius:15px;
}

.steps{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:15px;
}

.step{
background:white;
padding:20px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.faq-item{
background:white;
padding:20px;
margin-bottom:15px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.contact{
background:#0a2540;
color:white;
text-align:center;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:600;
z-index:999;
}

footer{
background:#061525;
color:white;
text-align:center;
padding:20px;
}

@media(max-width:768px){

.container{
    width:95%;
}

.navbar{
    padding:10px 0;
}

.logo img{
    height:55px !important;
}

.hero{
    height:auto;
    min-height:100vh;
    padding:120px 0 80px;
}

.hero-content{
    text-align:center;
}

.hero h1{
    font-size:32px;
    line-height:1.3;
}

.hero p{
    font-size:16px;
}

.btn{
    display:block;
    width:100%;
    margin-bottom:10px;
    text-align:center;
}

.btn-secondary{
    margin-left:0;
}

.about-grid{
    grid-template-columns:1fr;
}

.steps{
    grid-template-columns:repeat(2,1fr);
}

.services{
    grid-template-columns:1fr;
}

.menu{
    display:none;
}

.section-title{
    font-size:28px;
}

}
