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

body{
background:#f5f5f5;
}

.topbar{
background:#001f4d;
color:white;
padding:10px 8%;
display:flex;
justify-content:space-between;
}

nav{
background:#052c65;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
}

nav h2{
color:#ffcc00;
}

nav ul{
display:flex;
gap:20px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
}

.hero{
height:90vh;
background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('activa.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.overlay{
background:rgba(0,0,0,.5);
height:100%;
display:flex;
align-items:center;
padding-left:8%;
}

.hero-text{
color:white;
}

.hero-text h1{
font-size:60px;
}

.hero-text p{
margin:20px 0;
font-size:20px;
}

.btn{
background:#ffcc00;
padding:12px 25px;
color:black;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

.services{
padding:50px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.card img{
width:100%;
height:250px;
object-fit:cover;
}

.card h3{
padding:15px;
color:#052c65;
}

.card p{
padding:0 15px 15px;
}

.gallery{
padding:50px 8%;
}

.gallery h2{
margin-bottom:20px;
}

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

.gallery-grid img{
width:100%;
border-radius:10px;
}

footer{
background:#001f4d;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}
.reviews{
padding:40px;
text-align:center;
}

.review-box{
background:#fff;
padding:20px;
margin:15px;
border-radius:12px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
display:inline-block;
width:250px;
}

.review-box img{
width:70px;
height:70px;
border-radius:50%;
}
.features{
display:flex;
flex-wrap:wrap;
justify-content:center;
background:#06163a;
padding:30px;
gap:20px;
}

.feature-box{
color:white;
text-align:center;
width:220px;
padding:20px;
border-right:1px solid rgba(255,255,255,0.2);
}

.feature-box h3{
color:#ffcc00;
margin-bottom:10px;
font-size:22px;
}

.feature-box p{
font-size:15px;
line-height:1.5;
}
.dwarka-section{
display:flex;
flex-wrap:wrap;
align-items:center;
background:white;
margin:20px;
border-radius:12px;
overflow:hidden;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.dwarka-left{
flex:1;
padding:25px;
background:#f8f8f8;
}

.dwarka-left h2{
color:#0a1b4d;
font-size:32px;
margin-bottom:10px;
}

.dwarka-left p{
font-weight:bold;
margin-bottom:15px;
}

.dwarka-left ul{
padding-left:20px;
line-height:2;
}

.dwarka-image{
flex:1;
}

.dwarka-image img{
width:100%;
height:100%;
object-fit:cover;
}