/* RESET */

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

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


/* HEADER */

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

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

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

.nav-btn{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

.nav-btn:hover{
color:#0077b6;
}


/* 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:15px;
}

.hero p{
max-width:600px;
margin:auto;
margin-bottom:20px;
font-size:18px;
}

.cta{
background:#00b4d8;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:white;
font-weight:600;
transition:0.3s;
}

.cta:hover{
background:#0096c7;
}


/* SECTIONS */

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

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

section p{
max-width:700px;
margin:auto;
margin-bottom:20px;
}


/* 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 4px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

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

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

.card h3{
margin-bottom:10px;
color:#0077b6;
}


/* GALLERY */

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

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

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


/* DOCTOR */

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


/* HOURS */

.hours{
background:#e9f7fb;
}


/* CONTACT */

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

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

.call{
background:#0077b6;
}

.whatsapp{
background:#25D366;
}

.call:hover{
background:#005f8f;
}

.whatsapp:hover{
background:#1ebe5d;
}


/* MAP */

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


/* FOOTER */

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

.social{
margin-bottom:15px;
}

.social a{
color:#eee;
text-decoration:none;
margin:0 10px;
transition:0.3s;
}

.social a:hover{
color:#00b4d8;
}


/* MOBILE */

@media(max-width:768px){

header{
flex-direction:column;
gap:10px;
}

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

.hero{
height:70vh;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

}