/* BODY */

body{
font-family: Arial, sans-serif;
margin:0;
background:#f4f6fb;
color:#333;
}


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}


/* LOGO */

.logo{
display:flex;
align-items:center;
font-weight:bold;
font-size:18px;
}

.logo img{
height:45px;
margin-right:10px;
}


/* MENU */

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:600;
}

nav a:hover{
color:#1e63d6;
}


/* HERO SECTION */

.hero{
text-align:center;
padding:80px 20px;
background:linear-gradient(135deg,#1e63d6,#0b2a5c);
color:white;
}

.hero h1{
font-size:36px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
}


/* BUTTON */

.btn{
display:inline-block;
margin-top:15px;
background:#1e63d6;
color:white;
padding:10px 20px;
border-radius:5px;
text-decoration:none;
}


/* CONTAINER */

.container{
width:90%;
max-width:1100px;
margin:auto;
padding:50px 0;
}


/* SERVICES GRID */

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

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


/* CARD */

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.card h3{
color:#1e63d6;
margin-top:0;
}


/* ABOUT */

.about{
display:flex;
gap:30px;
flex-wrap:wrap;
align-items:center;
}

.about img{
width:220px;
border-radius:10px;
}


/* FORM */

form{
max-width:500px;
margin:auto;
}

form input,
form textarea{
width:100%;
padding:10px;
margin-bottom:12px;
border:1px solid #ccc;
border-radius:5px;
}

button{
background:#1e63d6;
color:white;
border:none;
padding:12px;
width:100%;
border-radius:5px;
cursor:pointer;
}


/* MAP */

.map{
width:90%;
max-width:1100px;
margin:auto;
padding-bottom:50px;
}

.map iframe{
width:100%;
height:350px;
border:0;
border-radius:8px;
}


/* FLOAT BUTTONS */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
padding:12px 18px;
border-radius:30px;
text-decoration:none;
}

.call{
position:fixed;
bottom:70px;
right:20px;
background:#1e63d6;
color:white;
padding:12px 18px;
border-radius:30px;
text-decoration:none;
}


/* FOOTER */

footer{
background:#0b2a5c;
color:white;
text-align:center;
padding:20px;
}
