*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#1a1a1a;
}

.container{
width:92%;
max-width:1300px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

/* HEADER */

.main-header{
position:sticky;
top:0;
/*background:#ffffff;*/
background: linear-gradient(135deg,#f5fbff,#ffffff);
padding:18px 0;
/*box-shadow:0 3px 20px rgba(0,0,0,0.08);*/
z-index:999;
}

/* LOGO */

.logo a{
font-size:24px;
font-weight:700;
text-decoration:none;
color:#0f4c81;
}

.logo span{
color:#1fb6a6;
}

.tagline{
font-size:12px;
color:#666;
margin-top:3px;
}

/* NAV */

.nav-menu ul{
display:flex;
list-style:none;
align-items:center;
gap:30px;
}

.nav-menu a{
text-decoration:none;
color:#333;
font-weight:500;
font-size:15px;
transition:0.3s;
}

.nav-menu a:hover{
color:#1fb6a6;
}

/* APPOINTMENT BUTTON */

.appoint-btn a{
background:#1fb6a6;
color:#fff !important;
padding:10px 18px;
border-radius:30px;
font-size:14px;
font-weight:600;
transition:0.3s;
}

.appoint-btn a:hover{
background:#0f4c81;
}

/* MOBILE MENU */

.mobile-toggle{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.mobile-toggle span{
width:25px;
height:3px;
background:#0f4c81;
display:block;
}

/* RESPONSIVE */

@media (max-width:900px){

.nav-menu{
position:absolute;
top:80px;
left:-100%;
background:#fff;
width:100%;
padding:30px;
transition:0.4s;
}

.nav-menu ul{
flex-direction:column;
gap:20px;
}

.nav-menu.active{
left:0;
}

.mobile-toggle{
display:flex;
}

}







/* SECTION TITLE */

.container-column{
width:92%;
max-width:1300px;
margin:auto;
text-align:center;
}

.section-title h2{
font-size:34px;
color:#0f4c81;
margin-bottom:10px;
}

.section-title p{
color:#666;
max-width:650px;
margin:auto;
margin-bottom:60px;
line-height:1.7;
}

/* EXPERTISE */

.expertise-section{
padding:90px 0;
background:#ffffff;
}

.expertise-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.expertise-card{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,0.06);
transition:0.3s;
}

.expertise-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.expertise-card .icon{
font-size:30px;
color:#1fb6a6;
margin-bottom:15px;
}

.expertise-card h3{
font-size:20px;
color:#0f4c81;
margin-bottom:10px;
}

.expertise-card p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* RESPONSIVE */

@media (max-width:1000px){

.expertise-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.expertise-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:28px;
}

}






/* WHY CHOOSE SECTION */

.why-section{
padding:100px 0;
background:#f8fbff;
}

.why-container{
width:92%;
max-width:1300px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
}

/* IMAGE */

.why-image{
flex:1;
text-align:center;
}

.why-image img{
width:100%;
max-width:470px;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* CONTENT */

.why-content{
flex:1;
}

.why-content h2{
font-size:34px;
color:#0f4c81;
margin-bottom:10px;
}

.why-content h3{
font-size:18px;
color:#1fb6a6;
margin-bottom:20px;
}

.why-content p{
color:#555;
line-height:1.7;
margin-bottom:15px;
}

/* HIGHLIGHTS */

.why-highlights{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin-top:25px;
}

.highlight{
display:flex;
align-items:center;
gap:10px;
background:#ffffff;
padding:12px 15px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.highlight i{
color:#1fb6a6;
}

/* HOSPITAL LIST */

.hospital-list{
margin-top:30px;
}

.hospital-list h4{
color:#0f4c81;
margin-bottom:10px;
}

.hospital-list ul{
padding-left:18px;
}

.hospital-list li{
margin-bottom:6px;
color:#555;
}

/* RESPONSIVE */

@media(max-width:900px){

.why-container{
flex-direction:column;
text-align:center;
}

.why-highlights{
grid-template-columns:1fr;
}

}






/* PROCESS SECTION */

.process-section{
padding:100px 0;
background:#ffffff;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}

.process-card{
text-align:center;
padding:35px;
border-radius:15px;
background:#f8fbff;
transition:0.3s;
}

.process-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.process-icon{
width:70px;
height:70px;
margin:auto;
border-radius:50%;
background:#1fb6a6;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:26px;
margin-bottom:18px;
}

.process-card h3{
font-size:20px;
color:#0f4c81;
margin-bottom:10px;
}

.process-card p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:1000px){

.process-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.process-grid{
grid-template-columns:1fr;
}

}





/* TRUST SECTION */

/* SECTION */

.trust-section{
padding:110px 0;
background:#f4f9ff;
}

/* GRID FIX (IMPORTANT) */

.trust-container{
width:92%;
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* LEFT */

.trust-tag{
display:inline-block;
background:#e6f7f5;
color:#1fb6a6;
padding:6px 14px;
border-radius:20px;
font-size:13px;
margin-bottom:12px;
}

.trust-content h2{
font-size:38px;
color:#0f4c81;
margin-bottom:15px;
line-height:1.3;
}

.trust-content p{
color:#555;
line-height:1.8;
margin-bottom:30px;
}

/* CARDS */

.trust-points{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.trust-card{
background:#fff;
padding:20px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.trust-card:hover{
transform:translateY(-5px);
}

.trust-card i{
font-size:20px;
color:#1fb6a6;
margin-bottom:8px;
}

.trust-card h3{
font-size:17px;
color:#0f4c81;
margin-bottom:5px;
}

.trust-card p{
font-size:14px;
color:#666;
}

/* IMAGE */

.trust-image{
width:100%;
}

.trust-image img{
width:100%;
height:420px;
object-fit:cover;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media(max-width:900px){

.trust-container{
grid-template-columns:1fr;
text-align:center;
}

.trust-points{
grid-template-columns:1fr;
}

}



/* APPOINTMENT SECTION */

.appointment-section{

background-image:url("../data/bg2.webp");
background-size:cover;
background-position:center;
padding:120px 0;
position:relative;

}

.appointment-overlay{

background:rgba(15,76,129,0.85);
padding:120px 0;

}

.appointment-container{

width:90%;
max-width:1100px;
margin:auto;
text-align:center;
color:#fff;

}

.appointment-container h2{

font-size:40px;
margin-bottom:15px;

}

.appointment-container p{

max-width:600px;
margin:auto;
margin-bottom:35px;
line-height:1.7;

}

/* BUTTONS */

.appointment-buttons{

display:flex;
justify-content:center;
gap:20px;
margin-bottom:40px;

}

.appoint-btn-main{

background:#1fb6a6;
padding:14px 28px;
border-radius:30px;
color:#fff;
text-decoration:none;
font-weight:600;
transition:0.3s;

}

.appoint-btn-main:hover{

background:#ffffff;
color:#0f4c81;

}

.call-btn{

border:2px solid #fff;
padding:12px 26px;
border-radius:30px;
color:#fff;
text-decoration:none;
font-weight:600;

}

.call-btn:hover{

background:#fff;
color:#0f4c81;

}

/* HOSPITALS */

.hospital-location{

display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;

}

.hospital-card{

background:rgba(255,255,255,0.15);
padding:20px 25px;
border-radius:10px;
backdrop-filter:blur(10px);
font-size:15px;

}

.hospital-card i{

color:#1fb6a6;
margin-bottom:8px;
display:block;
font-size:22px;

}

/* RESPONSIVE */

@media(max-width:700px){

.appointment-container h2{
font-size:30px;
}

.appointment-buttons{
flex-direction:column;
}

}






/* TESTIMONIAL SECTION */

.testimonial-section{

padding:100px 0;
background:#f7fbff;

}

.testimonial-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;

}

.testimonial-card{

background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
transition:0.3s;

}

.testimonial-card:hover{

transform:translateY(-8px);

}

.stars{

color:#ffc107;
font-size:18px;
margin-bottom:15px;

}

.testimonial-card p{

font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:20px;

}

.patient{

display:flex;
align-items:center;
gap:12px;

}

.patient img{

width:45px;
height:45px;
border-radius:50%;

}

.patient span{

font-weight:600;
color:#0f4c81;

}

/* RESPONSIVE */

@media(max-width:900px){

.testimonial-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.testimonial-grid{
grid-template-columns:1fr;
}

}






/* FAQ SECTION */

.faq-section{
padding:100px 0;
background:#ffffff;
}

.faq-container{
max-width:850px;
margin:auto;
margin-top:40px;
}

.faq-item{
border-bottom:1px solid #e5e5e5;
}

.faq-question{
width:100%;
background:none;
border:none;
padding:18px 0;
text-align:left;
font-size:18px;
font-weight:600;
color:#0f4c81;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
}

.faq-question span{
font-size:22px;
color:#1fb6a6;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.3s ease;
}

.faq-answer p{
padding-bottom:15px;
color:#555;
line-height:1.7;
font-size:15px;
}





/* FOOTER */

.main-footer{

background:#0f2f4f;
color:#ffffff;
padding-top:70px;

}

.footer-container{

width:92%;
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;

}

.footer-col h3{

font-size:22px;
margin-bottom:15px;

}

.footer-col h4{

font-size:18px;
margin-bottom:15px;

}

.footer-col p{

font-size:14px;
line-height:1.7;
color:#cfd9e4;

}

.footer-col ul{

list-style:none;

}

.footer-col ul li{

margin-bottom:10px;

}

.footer-col ul li a{

color:#cfd9e4;
text-decoration:none;
transition:0.3s;

}

.footer-col ul li a:hover{

color:#1fb6a6;

}

/* SOCIAL */

.footer-social{

margin-top:15px;

}

.footer-social a{

display:inline-block;
width:35px;
height:35px;
background:#1fb6a6;
color:#fff;
text-align:center;
line-height:35px;
border-radius:50%;
margin-right:8px;
transition:0.3s;

}

.footer-social a:hover{

background:#ffffff;
color:#0f2f4f;

}

/* BOTTOM */

.footer-bottom{

margin-top:50px;
border-top:1px solid rgba(255,255,255,0.15);
text-align:center;
padding:20px 0;
font-size:14px;
color:#cfd9e4;

}

/* RESPONSIVE */

@media(max-width:900px){

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

}






/* HOSPITAL SECTION */

.hospital-section{
padding:100px 0;
background:#ffffff;
}

.hospital-container{
width:92%;
max-width:1200px;
margin:auto;
text-align:center;
}

/* HEADER */

.hospital-header h2{
font-size:34px;
color:#0f4c81;
margin-bottom:10px;
}

.hospital-header p{
color:#555;
max-width:600px;
margin:0 auto 50px;
line-height:1.7;
}

/* GRID */

.hospital-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

/* CARD */

.hospital-card{
background:#f4f9ff;
padding:30px 20px;
border-radius:14px;
transition:0.3s;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
position:relative;
overflow:hidden;
}

.hospital-card:hover{
transform:translateY(-8px);
}

/* subtle top border effect */

.hospital-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#1fb6a6;
}

/* TEXT */

.hospital-card h3{
font-size:18px;
color:#0f4c81;
margin-bottom:8px;
}

.hospital-card span{
font-size:14px;
color:#777;
}

/* RESPONSIVE */

@media(max-width:992px){
.hospital-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.hospital-grid{
grid-template-columns:1fr;
}
}




 /* OPD SECTION */

.opd-section{
padding:100px 0;
background:#f4f9ff;
}

.opd-container{
width:92%;
max-width:1100px;
margin:auto;
text-align:center;
}

/* HEADER */

.opd-header h2{
font-size:34px;
color:#0f4c81;
margin-bottom:10px;
}

.opd-header p{
color:#555;
max-width:600px;
margin:0 auto 60px;
line-height:1.7;
}

/* WRAPPER */

.opd-wrapper{
display:flex;
flex-direction:column;
gap:25px;
}

/* CARD */

.opd-card{
display:flex;
align-items:center;
gap:20px;
background:#ffffff;
padding:25px;
border-radius:14px;
box-shadow:0 5px 25px rgba(0,0,0,0.06);
transition:0.3s;
text-align:left;
}

.opd-card:hover{
transform:translateY(-6px);
}

/* ICON */

.opd-icon{
min-width:50px;
height:50px;
border-radius:50%;
background:#eef7ff;
display:flex;
align-items:center;
justify-content:center;
}

.opd-icon i{
color:#1fb6a6;
font-size:20px;
}

/* CONTENT */

.opd-content h3{
font-size:18px;
color:#0f4c81;
margin-bottom:5px;
}

.opd-content span{
font-size:14px;
color:#777;
display:block;
margin-bottom:8px;
}

.opd-content p{
font-size:14px;
color:#555;
line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:768px){

.opd-card{
flex-direction:column;
text-align:center;
}

.opd-content{
text-align:center;
}

}



