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

body{
font-family:'Poppins',sans-serif;
background:#f7fbff;
color:#333;
line-height:1.6;
}


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:20px;
font-weight:700;
color:#0077b6;
}

nav{
display:flex;
gap:20px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#0077b6;
}

.menu-icon{
display:none;
font-size:28px;
cursor:pointer;
}


/* HERO */

.hero{
height:80vh;
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/clinic1.webp);
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.cta{
background:#0096c7;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:white;
font-weight:600;
}


/* SECTIONS */

section{
padding:70px 10%;
text-align:center;
}

section h2{
font-size:32px;
margin-bottom:20px;
color:#0077b6;
}


/* SERVICES */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.card img{
width:100%;
height:150px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}


/* DOCTOR */

.doctor img{
width:180px;
border-radius:50%;
margin:20px 0;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}


/* GALLERY */

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

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


/* BEFORE AFTER */

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

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


/* HOURS */

.hours{
background:#e9f7fb;
}


/* CONTACT */

.buttons{
margin:25px 0;
display:flex;
justify-content:center;
gap:20px;
}

.buttons a{
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:white;
font-weight:600;
}

.call{
background:#0077b6;
}

.whatsapp{
background:#25D366;
}

.map iframe{
width:100%;
height:350px;
border:0;
border-radius:10px;
}


/* FOOTER */

footer{
background:#222;
color:white;
padding:30px;
text-align:center;
}

.social a{
color:white;
margin:0 10px;
text-decoration:none;
}


/* FLOATING WHATSAPP */

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


/* MOBILE */

@media(max-width:768px){

.menu-icon{
display:block;
}

nav{
display:none;
flex-direction:column;
background:white;
position:absolute;
top:70px;
right:20px;
padding:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

nav.active{
display:flex;
}

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

}