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

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
background:#f4f7fb;
color:#1e293b;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 40px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,0.92);
backdrop-filter:blur(10px);
box-shadow:0 2px 20px rgba(0,0,0,0.05);
z-index:1000;
}

header img{
height: 80px;
}

nav{
display:flex;
gap:24px;
}

nav a{
text-decoration:none;
font-weight:700;
color:#0b2c5f;
}

.hero{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:80px;
    align-items:center;
    padding:120px 8% 80px;
}

.badge{
display:inline-block;
padding:10px 18px;
border-radius:40px;
background:#dbeafe;
color:#0b2c5f;
font-weight:bold;
margin-bottom:24px;
}

.button{
display:inline-block;
padding:18px 34px;
background:#dc2626;
color:white;
border-radius:50px;
text-decoration:none;
font-weight:bold;
margin-top:32px;
transition:0.3s;
}

.button:hover{
transform:translateY(-3px);
}

.profile{
    background:white;
    padding:24px;
    border-radius:40px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    width:100%;
    max-width:520px;
    justify-self:end;
}

.profile img{
    width:100%;
    display:block;
    border-radius:30px;
}

.stats{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.stats div{
background:white;
padding:20px;
border-radius:24px;
min-width:140px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.section{
padding:20px 8%;
max-width:1300px;
margin:auto;
}

.section h2{
font-size:48px;
margin-bottom:50px;
color:#0b2c5f;
}
.about-card{
    background:white;
    padding:40px;
    border-radius:32px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.services-hours{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
}

.services-side{
    flex:2;
}

.services-grid{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.service{
    background:white;
    padding:30px;
    border-radius:25px;
    flex:1;
    min-width:220px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.review{
    background:white;
    padding:30px;
    border-radius:25px;
    flex:1;
    min-width:250px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.hours-box{
    background:#0b1f4d;
    color:white;
    padding:35px;
    border-radius:25px;
    min-width:320px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.hours-box h2{
    color:white;
    margin-bottom:20px;
}

.hours-box p{
    margin-bottom:15px;
    font-size:18px;
}

.service,
.review,
.about-card,
.contact-card{
background:white;
padding:40px;
border-radius:32px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.review{
border-left:6px solid #dc2626;
}

.service h3{
margin-bottom:18px;
color:#0b2c5f;
}

.contact-section{
text-align:center;
}

.contact-card{
    font-weight:600;
    color:#0b1f4d;
}

.contact-card a{
color:#0b2c5f;
text-decoration:none;
}

footer{
background:#0b2c5f;
color:white;
text-align:center;
padding:40px;
margin-top:80px;
}

.blog-button{
    display:inline-block;
    margin-top:20px;
    padding:12px 24px;
    background:#0b1f4d;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.blog-button:hover{
    transform:translateY(-3px);
}

.button{
    color:white !important;
}
.certificates-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.certificate-card{
    width:220px;
    margin:auto;
}

.certificate-card img{
    width:220px;
    height:150px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}
@media(max-width:900px){

.hero{
    grid-template-columns:1fr;
    padding-top:160px;
}

.hero h1{
    font-size:48px;
}

header{
    padding:20px;
}

nav{
    display:none;
}

.profile{
    justify-self:center;
    max-width:100%;
}
.cert-title{
    display:block;
    width:100%;
    font-size:38px;
    font-weight:900;
    letter-spacing:-1px;
    color:#0b2c5f;
    margin-top:50px;
    margin-bottom:30px;
    line-height:1.2;
}
#blog{
max-width:1300px;
margin:auto;
padding:20px 8%;
}

#blog .service{
max-width:none;
}
.map-container{

margin-top:30px;

border-radius:24px;

overflow:hidden;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

}

.map-container iframe{

width:100%;

height:350px;

border:0;

display:block;

}