
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f8ff;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
width:100%;
padding:18px 60px;
background:rgba(255,255,255,0.95);
backdrop-filter:blur(10px);
z-index:1000;
box-shadow:0 2px 20px rgba(0,0,0,0.1);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:65px;
}

.logo h2{
font-size:24px;
color:#0a57d6;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
font-weight:600;
color:#222;
transition:0.3s;
}

.nav-links a:hover{
color:#0a57d6;
}

.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1517849845537-4d257902454a');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
position:relative;
text-align:center;
padding:20px;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{
font-size:65px;
max-width:1000px;
color:#fff;
margin-bottom:20px;
}

.hero p{
font-size:24px;
color:#fff;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:16px 35px;
border-radius:50px;
text-decoration:none;
color:#fff;
background:#00c853;
margin:10px;
font-weight:600;
transition:0.3s;
}

.secondary{
background:#0a57d6;
}

.btn:hover{
transform:translateY(-5px);
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
padding:80px 10%;
background:#fff;
}

.stat-box{
background:#0a57d6;
padding:40px;
border-radius:20px;
color:white;
text-align:center;
}

.stat-box h2{
font-size:50px;
margin-bottom:10px;
}

.about,.services,.doctor,.gallery,.contact{
padding:100px 10%;
}

.container{
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
}

.about-text,.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:25px;
}

.about h2,.services h2,.doctor h2,.gallery h2,.contact h2{
font-size:45px;
margin-bottom:40px;
text-align:center;
color:#0a57d6;
}

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

.card{
background:white;
padding:40px 25px;
text-align:center;
border-radius:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
background:#0a57d6;
color:white;
}

.card i{
font-size:45px;
margin-bottom:20px;
}

.doctor-box{
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
background:white;
padding:40px;
border-radius:30px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.doctor-box img{
width:350px;
border-radius:25px;
}

.doctor-text{
flex:1;
}

.doctor-text h3{
font-size:35px;
margin-bottom:20px;
}

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

.gallery-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:25px;
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

.contact-container{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.contact-info,.map{
flex:1;
}

.contact-info{
font-size:22px;
line-height:2;
}

.socials a{
font-size:35px;
margin-right:20px;
color:#0a57d6;
}

.map iframe{
width:100%;
height:400px;
border:none;
border-radius:25px;
}

footer{
background:#0a57d6;
color:white;
text-align:center;
padding:25px;
font-size:18px;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:75px;
height:75px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:40px;
color:white;
text-decoration:none;
box-shadow:0 5px 25px rgba(0,0,0,0.3);
z-index:999;
}

@media(max-width:768px){

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

.nav-links{
display:none;
}

.doctor-box{
text-align:center;
}

}
