*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f8fafc;
color:#222;
line-height:1.6;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}

.logo img{
width:90px;
border-radius:50%;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
align-items:center;
}

nav ul li a{
text-decoration:none;
color:#003366;
font-weight:bold;
padding:8px 12px;
position:relative;
transition:.3s;
}

nav ul li a:hover

.active{
color:#0077cc !important;
}

.active::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:100%;
height:3px;
background:#0077cc;
border-radius:10px;
}

/* HERO */

.hero,
.clinic-hero{
display:flex;
justify-content:center;
align-items:center;
gap:60px;
padding:70px 8%;
background:#eef6ff;
flex-wrap:wrap;
}

.hero-text{
max-width:500px;
}

.hero h1,
.clinic-hero h1{
font-size:3rem;
color:#003366;
margin-bottom:15px;
}

.hero p,
.clinic-hero p{
font-size:1.2rem;
margin-bottom:10px;
}

.hero h3,
.clinic-hero h3{
color:#0077cc;
}

.hero-image img,
.clinic-hero .hero-image img{
width:320px;
max-width:100%;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.buttons{
margin-top:25px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
background:#003366;
color:white;
padding:12px 22px;
text-decoration:none;
border-radius:10px;
font-weight:bold;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.whatsapp{
background:#25D366;
}

.map{
background:#e63946;
}

/* SECTIONS */

section{
padding:70px 8%;
}

h2{
text-align:center;
margin-bottom:30px;
color:#003366;
font-size:2rem;
}

/* ABOUT */

.about-content{
display:flex;
gap:40px;
align-items:center;
justify-content:center;
flex-wrap:wrap;
}

.about-content img{
width:250px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

/* SERVICES */

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.service-grid div{
background:white;
padding:20px;
border-radius:12px;
text-align:center;
font-weight:bold;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
transition:.3s;
}

.service-grid div:hover{
transform:translateY(-5px);
}

/* ANC PACK */

.anc-pack{
margin-top:40px;
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.anc-pack h3{
text-align:center;
color:#003366;
margin-bottom:25px;
}

.anc-pack ul{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
list-style:none;
}

.anc-pack li{
background:#eef6ff;
padding:15px;
border-left:5px solid #003366;
border-radius:8px;
}

/* WHY US */

.why-us{
background:#eef6ff;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.features div{
background:white;
padding:25px;
border-radius:12px;
text-align:center;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* CONTACT */

#contact{
text-align:center;
}

.hours{
list-style:none;
margin-top:15px;
line-height:2;
}

/* FOOTER */

footer{
background:#003366;
color:white;
text-align:center;
padding:20px;
}

/* MOBILE */

@media(max-width:768px){

nav{
flex-direction:column;
padding:15px;
}

.logo img{
width:75px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

nav ul li a{
font-size:16px;
}

.hero,
.clinic-hero{
padding:40px 5%;
text-align:center;
gap:30px;
}

.hero h1,
.clinic-hero h1{
font-size:2rem;
}

.hero-image img,
.clinic-hero .hero-image img{
width:110px;
}

.buttons{
justify-content:center;
}

.btn{
padding:10px 18px;
font-size:15px;
}

.about-content{
text-align:center;
}

.about-content img{
width:200px;
}

.anc-pack ul{
grid-template-columns:1fr;
}

}
