/* GLOBAL RESET */

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

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

/* CONTAINER */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* TOPBAR */

.topbar{
background:#0f4c81;
color:white;
font-size:14px;
padding:8px 0;
}

.topbar .container{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.topbar-left a{
color:white;
margin-right:15px;
text-decoration:none;
}

.book-btn{
background:#25D366;
padding:6px 12px;
border-radius:5px;
color:white;
}

/* HEADER */

header{
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

/* LOGO */

.logo-link{
display:flex;
align-items:center;
text-decoration:none;
}

.logo-img{
height:60px;
margin-right:10px;
}

.clinic-name h1{
font-size:20px;
color:#0f6c73;
}

.clinic-name span{
font-size:13px;
color:#666;
}

/* NAV */

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

nav a:hover{
color:#2c7be5;
}

/* SLIDER */

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
object-position:center;
opacity:0;
transition:opacity 1s;
}

.slider{
width:100%;
height:70vh;
min-height:350px;
position:relative;
overflow:hidden;
}

.slides{
position:relative;
width:100%;
height:100%;
}


.slide.active{
opacity:1;
}

/* HERO */

.hero{
background:linear-gradient(135deg,#0f6c73,#158a91);
color:white;
text-align:center;
padding:90px 20px;
}

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

.hero p{
max-width:700px;
margin:auto;
margin-bottom:30px;
}

/* BUTTON */

.btn{
background:#d4af37;
padding:14px 28px;
border-radius:30px;
color:white;
text-decoration:none;
display:inline-block;
font-weight:600;
transition:0.3s;
}

.btn:hover{
background:#c39a2e;
}

/* SECTION */

.section{
padding:10px 5px;
max-width:1100px;
margin:auto;
text-align:center;
}

.section h2{
margin-bottom:20px;
color:#0f6c73;
font-size:32px;
font-weight:600;
}

/* CARDS */

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

.card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* FOOTER */

footer{
background:#0f6c73;
color:white;
text-align:center;
padding:25px;
margin-top:40px;
}

/* FLOAT BUTTONS */

.whatsapp-btn{
position:fixed;
bottom:20px;
left:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:40px;
text-decoration:none;
}

.support-btn{
position:fixed;
bottom:20px;
right:20px;
background:#2c7be5;
color:white;
padding:12px 18px;
border-radius:40px;
text-decoration:none;
}

/* CHAT POPUP */

.chat-popup{
position:fixed;
bottom:90px;
right:20px;
background:white;
padding:12px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.2);
max-width:220px;
font-size:14px;
}

/* MOBILE */

@media(max-width:900px){

.header-flex{
flex-direction:column;
text-align:center;
}

nav{
margin-top:10px;
}

nav a{
display:inline-block;
margin:10px;
}

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

}

/* MOBILE SLIDER FIX */

@media(max-width:768px){

.slider{
height:50vh;
min-height:250px;
}

.slide{
object-fit:cover;
object-position:center;
}

}

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

.card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}


/* PAGE HEADER */

.page-header{
background:linear-gradient(135deg,#0f6c73,#158a91);
color:white;
text-align:center;
}

.page-header h1{
font-size:24px;
margin-bottom:1px;
}

/* ABOUT GRID */

.about-grid{
display:grid;
grid-template-columns:300px 1fr;
gap:40px;
margin-top:10px;
align-items:center;
}

.about-image img{
width:280px;
height:auto;
max-height:320px;
object-fit:cover;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.about-text{
text-align:left;
}

.about-text h2{
font-size:32px;
color:#0f6c73;
margin-bottom:20px;
}

.about-text p{
margin-bottom:15px;
line-height:1.7;
}

/* CTA SECTION */

.cta{
background:#0f6c73;
color:white;
text-align:center;
padding:10px 5px;
}

.cta h2{
margin-bottom:5px;
}

/* LIGHT SECTION */

.light{
background:#f4f7f9;
}