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

body{
font-family:'Montserrat',sans-serif;
background:#f6faff;
color:#17324f;
line-height:1.7;
}

.container{
width:min(1180px,92%);
margin:auto;
}

.hero{
padding-bottom:100px;
background:linear-gradient(rgba(243,248,255,.92),rgba(243,248,255,.94)),
url('../hero-bg.jpg') center/cover;
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:24px 0;
background:rgba(255,255,255,.78);
backdrop-filter:blur(12px);
border-radius:24px;
padding-inline:28px;
position:sticky;
top:10px;
z-index:99;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.logo{
width:220px;
}

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

.menu button{
background:none;
border:none;
padding:12px 18px;
border-radius:12px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.menu button:hover{
background:#e5f0ff;
}

.menu-cta{
background:#1567c9;
color:white;
padding:14px 22px;
border-radius:14px;
text-decoration:none;
font-weight:700;
}

.hero-content{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:50px;
align-items:center;
padding-top:60px;
}

.badge{
display:inline-block;
padding:10px 18px;
background:#dcebff;
border-radius:999px;
font-weight:800;
margin-bottom:24px;
color:#1567c9;
}

.hero-left h1{
font-size:68px;
line-height:1.05;
margin-bottom:24px;
}

.hero-left p{
font-size:20px;
margin-bottom:34px;
max-width:720px;
color:#496682;
}

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

.btn{
padding:17px 28px;
border-radius:14px;
text-decoration:none;
font-weight:700;
border:none;
cursor:pointer;
}

.primary{
background:#1567c9;
color:white;
}

.secondary{
background:white;
border:1px solid #d7e5f5;
}

.hero-card,
.mini-card,
.service-card,
.contact-item{
background:white;
border-radius:24px;
padding:34px;
box-shadow:0 10px 35px rgba(0,0,0,.05);
border:1px solid #dce8f5;
}

.hero-card h3,
.service-card h3,
.mini-card strong{
color:#1567c9;
margin-bottom:14px;
}

.hero-card ul{
margin:20px 0;
padding-left:20px;
}

.card-cta,
.small-cta,
.service-btn{
display:inline-block;
margin-top:20px;
background:#1567c9;
color:white;
padding:12px 18px;
border-radius:12px;
text-decoration:none;
font-weight:700;
}

.about,.services,.contact{
padding:110px 0;
}

.section-title{
margin-bottom:50px;
}

.section-title span{
color:#1b8fff;
font-weight:800;
letter-spacing:2px;
}

.section-title h2{
font-size:48px;
margin-top:12px;
}

.about-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:50px;
}

.about-text p{
margin-bottom:22px;
font-size:18px;
}

.about-box{
display:flex;
flex-direction:column;
gap:20px;
}

.services{
background:#edf5ff;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.service-card p{
margin-bottom:22px;
}

.section-cta{
text-align:center;
margin-top:50px;
}

.contact-box{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.center{
text-align:center;
}

footer{
padding:50px 0;
background:#dcebff;
}

.footer-content{
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
}

.footer-logo{
width:170px;
}

.social-icons{
display:flex;
gap:14px;
}

.social-icons a{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
background:white;
border-radius:50%;
text-decoration:none;
color:#1567c9;
font-weight:800;
}

.whatsapp-float{
position:fixed;
bottom:24px;
right:24px;
width:64px;
height:64px;
border-radius:50%;
background:#22c55e;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
z-index:999;
box-shadow:0 12px 30px rgba(0,0,0,.2);
}

@media(max-width:980px){

.hero-content,
.about-grid,
.services-grid,
.contact-box{
grid-template-columns:1fr;
}

.hero-left h1,
.section-title h2{
font-size:40px;
}

.navbar{
flex-direction:column;
gap:18px;
}

.menu{
flex-wrap:wrap;
justify-content:center;
}

.logo{
width:180px;
}

}


.about-top{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:50px;
align-items:center;
margin-bottom:40px;
}

.about-image img{
width:100%;
border-radius:28px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.about-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:stretch;
}

.map-box{
overflow:hidden;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
min-height:420px;
}

.map-box iframe{
width:100%;
height:100%;
border:none;
}

.left{
text-align:left;
}

.footer-content{
display:grid;
grid-template-columns:1fr auto 1fr;
align-items:center;
gap:20px;
}

.footer-right{
text-align:right;
}

.social-icons a svg{
display:block;
}

@media(max-width:980px){

.about-top,
.about-cards,
.contact-grid,
.footer-content{
grid-template-columns:1fr;
}

.footer-right,
.footer-left,
.social-icons{
text-align:center;
justify-content:center;
}

}


.contact-box.vertical{
display:flex;
flex-direction:column;
gap:18px;
}

.contact-item{
padding:20px !important;
}

.social-icons a{
background:#1567c9;
color:white;
}

.social-icons a:hover{
transform:translateY(-3px);
transition:.3s;
}

.hero{
background:
linear-gradient(rgba(243,248,255,.88),rgba(243,248,255,.90)),
url('../hero-bg.jpg') center/cover !important;
}

@media(max-width:980px){

body.menu-open{
overflow:hidden;
}

.navbar{
flex-direction:row;
justify-content:space-between;
padding:18px 20px;
position:relative;
}

.logo{
width:160px;
z-index:1001;
}

.menu-toggle{
width:48px;
height:48px;
border:none;
background:#1567c9;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
gap:5px;
cursor:pointer;
z-index:1001;
}

.menu-toggle span{
width:22px;
height:2px;
background:white;
border-radius:99px;
transition:.3s;
}

.menu.active{
right:0;
}

.menu{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:white;
display:flex;
flex-direction:column;
padding:120px 24px 40px;
gap:14px;
transition:.4s ease;
box-shadow:-10px 0 40px rgba(0,0,0,.12);
z-index:1000;
}

.menu button{
width:100%;
text-align:left;
padding:16px 18px;
background:#f4f8fc;
border-radius:14px;
font-size:15px;
}

.menu-cta{
width:100%;
text-align:center;
margin-top:10px;
}

.hero-content,
.about-grid,
.services-grid,
.contact-box,
.about-top,
.about-cards,
.contact-grid,
.footer-content{
grid-template-columns:1fr;
}

.hero-left h1,
.section-title h2{
font-size:38px;
line-height:1.1;
}

.hero-left p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
}

.btn{
width:100%;
text-align:center;
}

.about-cards{
gap:18px;
}

.services-grid{
gap:20px;
}

.contact-grid{
gap:24px;
}

.map-box{
min-height:320px;
}

.footer-right,
.footer-left,
.social-icons{
text-align:center;
justify-content:center;
}

.whatsapp-float{
width:58px;
height:58px;
font-size:24px;
right:18px;
bottom:18px;
}

}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-top:60px;
}

.service-card{
background:#fff;
border-radius:28px;
padding:22px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.3s;
display:flex;
flex-direction:column;
}

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

.service-image{
width:100%;
height:190px;
object-fit:cover;
border-radius:18px;
margin-bottom:24px;
}

.service-card h3{
font-size:34px;
font-size:1.8rem;
font-weight:800;
line-height:1.2;
margin-bottom:18px;
color:#1567c9;
}

.service-card p{
font-size:17px;
line-height:1.8;
color:#23344e;
margin-bottom:28px;
}

.service-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 26px;
background:#1567c9;
color:#fff;
border-radius:14px;
font-weight:700;
text-decoration:none;
transition:.3s;
margin-top:auto;
}

.service-btn:hover{
background:#0f4d98;
}

.services-cta{
margin-top:70px;
display:flex;
align-items:center;
justify-content:center;
gap:26px;
flex-wrap:wrap;
text-align:center;
}

.services-cta-icon{
width:70px;
height:70px;
border-radius:50%;
background:#1567c9;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#fff;
}

.services-cta-text h3{
font-size:32px;
font-weight:800;
color:#12345c;
margin-bottom:10px;
}

.services-cta-text p{
font-size:18px;
color:#5d6b7c;
}

@media(max-width:980px){

.services-grid{
grid-template-columns:1fr;
}

.service-image{
height:220px;
}

.services-cta{
flex-direction:column;
padding:0 20px;
}

.services-cta-text h3{
font-size:28px;
}

}

.social-icons{
display:flex;
align-items:center;
justify-content:center;
gap:12px;
}

.social-icons a{
width:38px;
height:38px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
transition:.25s ease;
box-shadow:0 6px 16px rgba(0,0,0,.10);
}

.social-icons a svg{
width:16px;
height:16px;
display:block;
}

/* Instagram */

.social-icons .instagram{
background:#E1306C;
}

/* Facebook */

.social-icons .facebook{
background:#1877F2;
}

/* TikTok */

.social-icons .tiktok{
background:#000000;
}

.social-icons a:hover{
transform:translateY(-2px);
opacity:.92;
}