/* index.html css*/
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
scroll-behavior:smooth;
}

body{
background:#eef3f8;
}

/* NAVBAR */

.navbar{
background:white;
padding:20px 60px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
font-size:30px;
font-weight:bold;
color:#0077b6;
}
.logo{
display:flex;
align-items:center;
gap:12px;
font-size:30px;
font-weight:bold;
color:#0077b6;
}

.logo img{
width:55px;
height:55px;
object-fit:cover;

border-radius:50%;
border:3px solid #0077b6;

padding:3px;
background:white;
}

.navbar ul{
display:flex;
gap:35px;
list-style:none;
}

.navbar ul li a{
text-decoration:none;
color:#111827;
font-weight:600;
font-size:18px;
}



/* HERO */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:80px 60px;
min-height:90vh;

/* BACKGROUND IMAGE */

background:
linear-gradient(rgba(184, 213, 235, 0.85),
rgba(123, 140, 153, 0.85)),
url('images/lab-bg.jpg');

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero-text{
width:50%;
}

.hero-text h1{
font-size:70px;
line-height:1.2;
color:#08112d;
}

.hero-text span{
color:#0077b6;
}

.hero-text p{
font-size:22px;
margin:25px 0;
color:#6b7280;
}

.btns{
display:flex;
gap:20px;
}

.btn{
padding:15px 30px;
border-radius:40px;
font-size:18px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.primary{
background:#0077b6;
color:white;
}

.primary:hover{
background:#005f91;
}

.outline{
border:2px solid #0077b6;
color:#0077b6;
}

.outline:hover{
background:#0077b6;
color:white;
}

.hero-icon{
width:450px;
height:450px;
border-radius:50%;
background:#0ea5d9;
display:flex;
justify-content:center;
align-items:center;
font-size:140px;
color:white;
}
.hero-icon img{
width:430px;
height:430px;
border-radius:50%;
background:white;
padding:15px;
object-fit:contain;
}

/* STATS */

.stats{
background:#0077b6;
color:white;
padding:60px;
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
}

.stats h2{
font-size:50px;
}

.stats p{
font-size:20px;
margin-top:10px;
}

/* SECTION */

.section{
padding:80px 60px;
text-align:center;
}

.section h2{
font-size:50px;
color:#08112d;
margin-bottom:15px;
}

.section p{
font-size:20px;
color:#6b7280;
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:white;
padding:40px 25px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:55px;
color:#0077b6;
margin-bottom:20px;
}

.card h3{
font-size:32px;
margin-bottom:15px;
}

.card p{
font-size:18px;
margin-bottom:20px;
}

.card a{
text-decoration:none;
color:#0077b6;
font-size:20px;
font-weight:bold;
}

/* WHY */

.why{
padding:80px 60px;
background:#edf5fb;
display:flex;
justify-content:space-between;
align-items:center;
}

.why-left{
width:50%;
}

.why-left h2{
font-size:50px;
margin-bottom:30px;
}

.why-left ul{
list-style:none;
}

.why-left ul li{
font-size:22px;
margin-bottom:20px;
}

.why-left ul li i{
color:#0077b6;
margin-right:10px;
}

.doctor{
font-size:180px;
color:#cfe5f4;
}

/* CONTACT */

.contact{
padding:80px 60px;
}

.contact h2{
font-size:50px;
text-align:center;
margin-bottom:40px;
}

.contact-box{
display:grid;
grid-template-columns:1fr 2fr;
gap:40px;
}

.contact-info div{
margin-bottom:25px;
font-size:20px;
display:flex;
gap:15px;
}

.contact-info i{
color:#0077b6;
}

input,
textarea{
width:100%;
padding:15px;
border-radius:10px;
border:1px solid #cbd5e1;
margin-bottom:20px;
font-size:16px;
}

textarea{
height:120px;
resize:none;
}

button{
width:100%;
padding:15px;
border:none;
background:#0077b6;
color:white;
font-size:18px;
border-radius:40px;
cursor:pointer;
}

/* FOOTER */

.footer{
background:#0b1120;
color:white;
padding:20px;
text-align:center;
margin-top:50px;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-text{
width:100%;
}

.hero-icon{
margin-top:40px;
}

.stats{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.why{
flex-direction:column;
gap:40px;
}

.why-left{
width:100%;
}

.contact-box{
grid-template-columns:1fr;
}

}

/* ABOUT SECTION */

.about{
padding:90px 60px;
display:flex;
align-items:center;
justify-content:center;
gap:60px;
background:white;
flex-wrap:wrap;
}

.about-image img{
width:420px;
max-width:100%;
border-radius:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.about-content{
max-width:600px;
}

.about-content h2{
font-size:48px;
color:#08112d;
margin-bottom:20px;
}

.about-content p{
font-size:18px;
line-height:1.9;
color:#555;
margin-bottom:20px;
}

.about-points{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin:30px 0;
}

.about-points div{
background:#eef6fb;
padding:18px;
border-radius:15px;
display:flex;
align-items:center;
gap:12px;
font-size:18px;
font-weight:600;
color:#111827;
}

.about-points i{
font-size:22px;
color:#0077b6;
}

/* RESPONSIVE */

@media(max-width:900px){

.about{
padding:70px 20px;
text-align:center;
}

.about-content h2{
font-size:36px;
}

.about-points{
grid-template-columns:1fr;
}

.about-points div{
justify-content:center;
}

}

/*test.html css*/

/* SECTION */

.section{
padding:80px 60px;
text-align:center;
}

.section h2{
font-size:50px;
color:#08112d;
margin-bottom:15px;
}

.section p{
font-size:20px;
color:#6b7280;
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:white;
padding:40px 25px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:55px;
color:#0077b6;
margin-bottom:20px;
}

.card h3{
font-size:32px;
margin-bottom:15px;
}

.card p{
font-size:18px;
margin-bottom:20px;
}

.card a{
text-decoration:none;
color:#0077b6;
font-size:20px;
font-weight:bold;
}
 

/* gallery.html css*/

/* GALLERY PAGE */

.gallery-hero{
padding:90px 20px;
text-align:center;

background:
linear-gradient(rgba(0,119,182,0.75),
rgba(0,119,182,0.75)),
url('images/lab-bg.jpg');

background-size:cover;
background-position:center;

color:white;
}

.gallery-hero h1{
font-size:60px;
margin-bottom:15px;
}

.gallery-hero p{
font-size:22px;
}

.gallery-section{
padding:80px 60px;
background:#eef3f8;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.gallery-card{
background:white;
padding:15px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
overflow:hidden;
}

.gallery-card:hover{
transform:translateY(-8px);
}

.gallery-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:15px;
}

.gallery-card h3{
font-size:24px;
margin-top:18px;
color:#08112d;
text-align:center;
}

.gallery-card p{
font-size:17px;
color:#555;
text-align:center;
margin-top:10px;
line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:900px){

.gallery-section{
padding:60px 20px;
}

.gallery-hero h1{
font-size:40px;
}

.gallery-hero p{
font-size:18px;
}

}
