/* GLOBAL FIX MOBILE */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
width:100%;
overflow-x:hidden;
}

img{
max-width:100%;
height:auto;
display:block;
}
/* GLOBAL */
html,body{
overflow-x:hidden;
max-width:100%;
}

img{
max-width:100%;
height:auto;
}

body{
margin:0;
font-family:'Poppins',sans-serif;
background:#0b0f19;
color:white;
}

.container{
width:100%;
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
flex-wrap:wrap;
}

.logo{
font-size:22px;
font-weight:600;
color:#4da3ff;
}

nav ul{
list-style:none;
display:flex;
gap:25px;
}

nav ul li a{
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

nav ul li a:hover{
color:#4da3ff;
}

/* HERO */

.hero{

height:90vh;

background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.8)),
url('https://images.unsplash.com/photo-1587202372775-e229f172b9d7');

background-size:cover;
background-position:center;

display:flex;
align-items:center;

}

.hero-content{
width:100%;
max-width:700px;
margin:auto;
padding:20px;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
}

.hero p{
color:#ccc;
line-height:1.7;
margin-bottom:30px;
}

.btn{

background:#4da3ff;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
color:white;
font-weight:500;

}

/* SECTION */

.section{
padding:100px 0;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
width:100%;
}

/* CARD */

.card{
background:#141e33;
padding:30px;
border-radius:12px;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.card h3{
color:#4da3ff;
}

/* FOOTER */

footer{
background:#000;
text-align:center;
padding:40px;
color:#aaa;
margin-top:80px;
}
/* HOVER ANIMATION */

.card{
background:#141e33;
padding:30px;
border-radius:12px;
transition:all 0.3s ease;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

/* BUTTON */

.btn{

background:#4da3ff;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
color:white;
font-weight:500;

transition:0.3s;

}

.btn:hover{

background:#2f8cff;

}
.card img{

transition:0.3s;

}

.card:hover img{

transform:scale(1.05);

}

footer{

background:#05070c;

padding:80px 0;

}

footer h3{

color:#4da3ff;
margin-bottom:15px;

}

footer p{

color:#aaa;
line-height:1.6;

}

footer a{

color:#aaa;
text-decoration:none;

}

footer a:hover{

color:#4da3ff;

}

.whatsapp{

position:fixed;

bottom:25px;
right:25px;

background:#25D366;

color:white;

padding:14px 18px;

border-radius:50px;

font-weight:600;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,0.3);

}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width:768px){

.container{
width:90%;
}

/* NAVBAR */

nav{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

/* HERO */

.hero{
height:auto;
padding:80px 0;
}

.hero-content{
width:100%;
margin-left:0;
text-align:center;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:15px;
}

/* GRID */

.grid{
grid-template-columns:1fr;
}

/* SECTION */

.section{
padding:60px 0;
}

/* CARD */

.card{
padding:20px;
}

/* FOOTER */

footer{
text-align:center;
}

}

.btn{

display:inline-block;

}

html, body {
overflow-x: hidden;
max-width: 100%;
}

*{
max-width:100%;
box-sizing:border-box;
}

img{
max-width:100%;
height:auto;
display:block;
}

/* MOBILE FIX */

@media (max-width:768px){

.hero{
height:auto;
padding:80px 20px;
}

.hero h1{
font-size:28px;
}

.grid{
grid-template-columns:1fr;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:10px;
}

}