
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}
body{
  background:#fff;
  color:#0057b8;
  line-height:1.6;
}
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:#fff;
  position:sticky;
  top:0;
  border-bottom:1px solid #e5e5e5;
}
.logo{
  display:flex;
  align-items:center;
  gap:15px;
}
.logo img{
  width:80px;
}
nav a{
  margin:0 15px;
  text-decoration:none;
  color:#0057b8;
  font-weight:bold;
}
.hero{
  padding:70px 8%;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  background:#f8fbff;
}
.hero-text{
  max-width:550px;
}
.hero h1{
  font-size:58px;
  margin-bottom:10px;
}
.hero p{
  margin-bottom:20px;
  color:#333;
}
.btn{
  background:#0057b8;
  color:#fff;
  padding:14px 25px;
  border-radius:30px;
  text-decoration:none;
  display:inline-block;
}
.hero img{
  max-width:420px;
  width:100%;
}
.section{
  padding:60px 8%;
}
.section-title{
  text-align:center;
  margin-bottom:40px;
  font-size:36px;
}
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}
.card{
  background:#fff;
  border:1px solid #dbe6f5;
  border-radius:15px;
  padding:25px;
  text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}
.card h3{
  margin-bottom:10px;
}
.reviews{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}
.review{
  border:1px solid #dbe6f5;
  border-radius:15px;
  padding:25px;
}
.stars{
  color:#f5b400;
  font-size:22px;
}
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
form{
  display:flex;
  flex-direction:column;
  gap:15px;
}
input,textarea{
  padding:14px;
  border:1px solid #ccc;
  border-radius:10px;
}
button{
  border:none;
  cursor:pointer;
}
footer{
  background:#0057b8;
  color:#fff;
  padding:40px 8%;
  margin-top:40px;
}
footer img{
  width:120px;
  background:#fff;
  padding:8px;
  border-radius:10px;
}
.upload-box{
  border:2px dashed #0057b8;
  padding:30px;
  border-radius:15px;
  text-align:center;
}
@media(max-width:900px){
  .contact-wrap{
    grid-template-columns:1fr;
  }
  .hero{
    text-align:center;
    justify-content:center;
  }
}


.hero-tagline{
  font-size:20px;
  margin-bottom:18px;
  color:#003f87;
}

.gallery-section{
  background:#f8fbff;
}

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

.gallery-grid img{
  width:100%;
  border-radius:20px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
