
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

html{scroll-behavior:smooth;}

body{
background:#f3f5f8;
color:#111827;
}

.navbar{
position:fixed;
top:0;
width:100%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo{
font-size:32px;
font-weight:800;
color:#0f2f78;
}

nav a{
margin:0 16px;
text-decoration:none;
font-weight:700;
color:#111827;
}

.call-top{
background:#0f2f78;
color:white;
padding:12px 22px;
border-radius:10px;
text-decoration:none;
font-weight:700;
text-align:center;
}

.call-top span{
font-size:14px;
font-weight:500;
}

.hero{
height:100vh;
background:linear-gradient(90deg,rgba(9,33,87,.95),rgba(9,33,87,.4)),
url('images/photo1.jpg') center/cover no-repeat;
display:flex;
align-items:center;
padding:140px 60px;
}

.hero-content{
max-width:650px;
color:white;
}

.hero-content h4{
color:#4ea1ff;
font-size:28px;
margin-bottom:15px;
}

.hero-content h1{
font-size:76px;
line-height:1.05;
margin-bottom:20px;
}

.hero-content p{
font-size:30px;
line-height:1.4;
margin-bottom:25px;
}

.location,.owner{
font-size:22px;
margin-bottom:20px;
}

.buttons{
display:flex;
gap:20px;
margin-bottom:25px;
}

.btn{
padding:18px 34px;
border-radius:10px;
font-weight:700;
text-decoration:none;
}

.blue{
background:#2563eb;
color:white;
}

.clear{
border:2px solid white;
color:white;
}

.services,.gallery{
padding:90px 40px;
text-align:center;
}

.services h5,.gallery h5,.why h5{
color:#2563eb;
margin-bottom:10px;
}

.services h2,.gallery h2,.why h2{
font-size:52px;
color:#0f2f78;
margin-bottom:40px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:white;
padding:35px 25px;
border-radius:14px;
box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.card h3{
margin-bottom:12px;
color:#0f2f78;
}

.why{
background:#07235a;
color:white;
padding:70px 40px;
display:grid;
grid-template-columns:1fr 2fr;
gap:40px;
}

.why h2{color:white;}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:20px;
align-items:center;
text-align:center;
font-weight:700;
}

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

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:10px;
}

.contact{
display:grid;
grid-template-columns:1fr 2fr;
gap:30px;
background:white;
padding:70px 40px;
}

.contact-left{
background:#07235a;
color:white;
padding:40px;
border-radius:14px;
}

.contact-left h2{
font-size:48px;
margin-bottom:20px;
}

.contact-left p{
margin-bottom:15px;
font-size:22px;
}

.contact-form{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:16px;
border:1px solid #d1d5db;
border-radius:8px;
font-size:16px;
}

.contact-form textarea{
grid-column:1/3;
height:120px;
}

.contact-form button{
grid-column:1/3;
padding:18px;
border:none;
background:#2563eb;
color:white;
font-weight:700;
border-radius:8px;
font-size:18px;
}

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

@media(max-width:768px){
.navbar{
flex-direction:column;
gap:15px;
}

.hero{
padding:180px 25px 80px;
height:auto;
}

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

.hero-content p{
font-size:22px;
}

.buttons{
flex-direction:column;
}

.why,.contact{
grid-template-columns:1fr;
}

.contact-form{
grid-template-columns:1fr;
}

.contact-form textarea,
.contact-form button{
grid-column:1;
}
}
