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

body{
font-family:Arial, Helvetica, sans-serif;
background:#f8fafc;
color:#111;
line-height:1.6;
}

img{
max-width:100%;
display:block;
}

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

section{
padding:70px 0;
}

h1,h2,h3{
margin-bottom:15px;
}

/* ========================
HEADER / NAVBAR
======================== */

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

.nav-flex{
display:flex;
justify-content:space-between;
align-items:center;
height:78px;
}

/* LOGO */

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

.logo img{
height:64px;
width:auto;
object-fit:contain;
}

/* NAV LINKS */

.nav-menu{
display:flex;
gap:26px;
}

.nav-menu a{
text-decoration:none;
color:#333;
font-weight:600;
font-size:15px;
}

.nav-menu a:hover{
color:#0b5ed7;
}

/* HAMBURGER */

.hamburger{
display:none;
font-size:30px;
cursor:pointer;
padding:8px 12px;
border-radius:6px;
transition:.2s;
}

.hamburger:hover{
background:#f1f5f9;
}

/* ========================
MOBILE NAV PANEL
======================== */

@media(max-width:768px){

.logo img{
height:60px;
}

.hamburger{
display:block;
}

.nav-menu{
position:fixed;
top:0;
right:-260px;
height:100vh;
width:260px;
overflow-y:auto;
background:#fff;
flex-direction:column;
padding:90px 30px;
gap:25px;
box-shadow:-6px 0 25px rgba(0,0,0,0.15);
transition:right .35s ease;
z-index:1200;
}

.nav-menu.active{
right:0;
}

.nav-menu a{
font-size:17px;
}

}

/* ========================
HERO SLIDER
======================== */

.hero-slider{
position:relative;
width:100%;
height:60vh;
min-height:380px;
max-height:520px;
overflow:hidden;
}

.slider-track{
display:flex;
height:100%;
transition:transform .6s ease-in-out;
}

.slide{
flex:0 0 100%;
position:relative;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.slide::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(0,0,0,0.5) 0%,
rgba(0,0,0,0.3) 50%,
rgba(0,0,0,0.1) 100%
);
}

.slide-text{
position:absolute;
top:50%;
left:6%;
transform:translateY(-50%);
color:#fff;
max-width:520px;
z-index:2;
}

.slide-text h1{
font-size:36px;
margin-bottom:10px;
}

.slide-text p{
font-size:16px;
margin-bottom:12px;
}



/* ARROWS */

.prev,.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:#fff;
border:none;
font-size:26px;
padding:8px 12px;
border-radius:50%;
cursor:pointer;
z-index:5;
}

.prev{left:12px;}
.next{right:12px;}

/* DOTS */

.dots{
position:absolute;
bottom:15px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
z-index:5;
}

.dot{
width:12px;
height:12px;
background:rgba(255,255,255,0.5);
border-radius:50%;
cursor:pointer;
}

.dot.active{
background:#ff4d4d;
}

/* ========================
ABOUT / DOCTOR
======================== */

.about p{
margin-bottom:14px;
}

.doctor-flex{
display:flex;
gap:30px;
align-items:center;
flex-wrap:wrap;
}

.doctor img{
width:190px;
border-radius:50%;
}

.doctor-list{
margin:15px 0;
}

@media(max-width:768px){

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

}

/* ========================
BUTTONS
======================== */

.btn-main{
background:#ff2f2f;
color:#fff;
padding:12px 22px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.btn-outline{
border:2px solid #fff;
color:#fff;
padding:12px 22px;
border-radius:6px;
text-decoration:none;
margin-left:10px;
display:inline-block;
}

/* ========================
SERVICES
======================== */

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

.service-card{
background:#fff;
padding:24px;
border-radius:12px;
box-shadow:0 6px 22px rgba(0,0,0,.08);
text-decoration:none;
color:#111;
transition:.25s;
display:block;
}

.service-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.service-card h3{
margin-bottom:8px;
font-size:20px;
}

.service-card p{
font-size:14px;
color:#444;
}

/* VIDEO ROW */

.video-row{
display:flex;
gap:10px;
margin:12px 0;
}

.video-row iframe{
width:100%;
height:200px;
border-radius:6px;
}

@media(max-width:768px){

.video-row{
flex-direction:column;
}

}

/* ========================
STATS
======================== */

.stats{
background:#174c83;
color:#fff;
text-align:center;
}

.stats-grid{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
gap:30px;
}

/* ========================
TESTIMONIALS
======================== */

.testimonials{
background:#f1f6fb;
text-align:center;
}

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

.testimonial-card{
background:#fff;
padding:22px;
border-radius:12px;
box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* ========================
FAQ
======================== */

.faq-item{
margin-bottom:18px;
}

/* ========================
CONTACT
======================== */

.contact iframe{
width:100%;
height:300px;
border:0;
border-radius:10px;
margin-bottom:20px;
}

/* ========================
FLOATING CONTACT BUTTON
======================== */

.floating-contact{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:10px;
z-index:999;
}

.whatsapp-float{
background:#25D366;
color:white;
padding:12px 18px;
border-radius:30px;
text-decoration:none;
font-weight:600;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.call-float{
background:#007BFF;
color:white;
padding:12px 18px;
border-radius:30px;
text-decoration:none;
font-weight:600;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* ========================
FOOTER
======================== */

footer{
background:#222;
color:#fff;
text-align:center;
padding:25px 0;
margin-top:40px;
}
@keyframes fadeInUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.slide-text{
opacity:1;
animation:fadeInUp 1s ease forwards;
}

.nav-links{
position:fixed;
top:70px;
right:-100%;
width:260px;
height:100vh;
background:#ffffff;
box-shadow:-4px 0 12px rgba(0,0,0,0.1);
display:flex;
flex-direction:column;
padding:25px;
transition:right .35s ease, opacity .35s ease;
opacity:0;
}

.nav-links.active{
right:0;
opacity:1;
}

