
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}
body{
background:#fff;
color:#222;
}
header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:#0d1b2a;
z-index:999;
}
.logo{
font-size:26px;
font-weight:700;
color:#fff;
}
nav a{
margin-left:20px;
text-decoration:none;
color:#fff;
font-weight:500;
}
.hero{
height:100vh;
background:url('images/gallery2.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
}
.overlay{
background:rgba(0,0,0,0.5);
padding:50px;
border-radius:15px;
text-align:center;
color:#fff;
}
.overlay h1{
font-size:60px;
}
.overlay p{
margin:20px 0;
font-size:20px;
}
.btn{
display:inline-block;
padding:14px 30px;
background:#00b4d8;
color:#fff;
text-decoration:none;
border-radius:30px;
}
.services,.gallery,.reviews,.contact{
padding:90px 10%;
}
.services h2,.gallery h2,.reviews h2,.contact h2{
text-align:center;
margin-bottom:40px;
font-size:40px;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
}
.card{
background:#f4f4f4;
padding:40px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.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:12px;
}
.reviews{
background:#f8f8f8;
}
.review-box{
background:#fff;
padding:30px;
margin-bottom:20px;
border-radius:12px;
box-shadow:0 5px 10px rgba(0,0,0,0.08);
}
.contact{
background:#0d1b2a;
color:#fff;
text-align:center;
}
.contact p{
margin-bottom:15px;
}
footer{
background:#000;
color:#fff;
text-align:center;
padding:20px;
}
@media(max-width:768px){
header{
flex-direction:column;
}
.overlay h1{
font-size:35px;
}
nav{
margin-top:10px;
}
}
