:root{
--primary:#2E3192;
--secondary:#00A79D;
--dark:#333333;
--white:#ffffff;
}

body{
font-family:'Segoe UI',sans-serif;
overflow-x:hidden;
}

.top-header{
background:var(--primary);
color:#fff;
padding:10px 0;
font-size:14px;
}

.navbar-brand{
color:var(--primary)!important;
font-size:30px;
font-weight:700;
}

.navbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    transition:.4s;
}
.nav-link{
font-weight:600;
margin:0 10px;
}

.btn-appointment{
background:var(--secondary);
color:#fff;
padding:12px 28px;
border-radius:50px;
font-weight:600;
}

.btn-appointment:hover{
background:var(--primary);
color:#fff;
}
.hero{
    padding-top:120px;
}

.hero{
min-height:90vh;
background:
linear-gradient(
rgba(46,49,146,.92),
rgba(0,167,157,.80)
),
url('../images/hero.jpg');

background-size:cover;
background-position:center;

display:flex;
align-items:center;
}

.hero h1{
font-size:70px;
font-weight:800;
color:#fff;
}

.hero p{
color:#fff;
font-size:20px;
margin-top:20px;
}

.hero-btn{
background:#fff;
color:var(--primary);
padding:15px 35px;
border-radius:50px;
font-weight:700;
text-decoration:none;
display:inline-block;
margin-top:20px;
}

.hero-btn:hover{
background:var(--secondary);
color:#fff;
}
.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
z-index:999;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.floating-box{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
margin-bottom:15px;
font-weight:600;
}
.services-section{
    padding:100px 0;
    background:#fff;
}

.section-subtitle{
    color:var(--secondary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    color:var(--primary);
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    border-bottom:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-bottom:4px solid var(--secondary);
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:rgba(0,167,157,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:var(--secondary);
    margin-bottom:20px;
}

.service-card h4{
    font-weight:700;
    color:var(--primary);
}/* About Section */

.about-section{
    padding:120px 0;
    background:#f8fafc;
}

.about-img{
    position:relative;
}

.about-img img{
    width:400px;
    height: 600px;
    border-radius:30px;
}

.experience-box{
    position:absolute;
    bottom:30px;
    right:-30px;
    background:var(--secondary);
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.experience-box h2{
    font-size:40px;
    font-weight:800;
    margin:0;
}

.about-content{
    padding-left:40px;
}

.about-content h2{
    font-size:48px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.9;
}

.about-list{
    margin-top:25px;
}

.about-list li{
    list-style:none;
    margin-bottom:15px;
    font-weight:600;
}

.about-list i{
    color:var(--secondary);
    margin-right:10px;
}
/* Department Section */

.department-section{
    padding:120px 0;
    background:#ffffff;
}

.department-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.department-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--secondary);
}

.department-card:hover{
    transform:translateY(-12px);
    background:var(--primary);
    color:#fff;
}

.department-card:hover h4,
.department-card:hover p{
    color:#fff;
}

.department-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:rgba(0,167,157,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:var(--secondary);
    margin-bottom:25px;
}

.department-card h4{
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

.department-card p{
    color:#666;
}
/* Doctors Section */

.doctors-section{
    padding:120px 0;
    background:#f8fafc;
}

.doctor-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.doctor-card:hover{
    transform:translateY(-10px);
}

.doctor-img{
    position:relative;
    overflow:hidden;
}

.doctor-img img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.doctor-info{
    padding:25px;
}

.doctor-info h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:5px;
}

.doctor-speciality{
    color:var(--secondary);
    font-weight:600;
    margin-bottom:10px;
}

.doctor-info p{
    color:#666;
    font-size:14px;
}

.btn-doctor{
    background:var(--primary);
    color:#fff;
    border-radius:30px;
    padding:10px 25px;
    text-decoration:none;
    display:inline-block;
    margin-top:10px;
}

.btn-doctor:hover{
    background:var(--secondary);
    color:#fff;
}
/* Appointment CTA */

.cta-section{
    padding:100px 0;
    background:
    linear-gradient(
    rgba(46,49,146,.92),
    rgba(0,167,157,.85)
    );
    color:#fff;
    text-align:center;
}

.cta-section h2{
    font-size:50px;
    font-weight:800;
}

.cta-section p{
    font-size:20px;
    margin:20px 0;
}

.cta-btn{
    background:#fff;
    color:var(--primary);
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}
/* Testimonials */

.testimonial-section{
    padding:120px 0;
    background:#f8fafc;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.testimonial-card img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-card h5{
    margin-top:15px;
    color:var(--primary);
    font-weight:700;
}

.stars{
    color:#ffc107;
    margin:10px 0;
}

/* News */

.news-section{
    padding:120px 0;
}

.news-card{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    background:#fff;
}

.news-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.news-content{
    padding:25px;
}

.news-content h4{
    color:var(--primary);
    font-weight:700;
}
/* Footer */

.footer{
    background:var(--primary);
    color:#fff;
    padding:80px 0 30px;
}

.footer h4{
    margin-bottom:25px;
    font-weight:700;
}

.footer ul{
    padding:0;
}

.footer ul li{
    list-style:none;
    margin-bottom:10px;
}

.footer a{
    color:#fff;
    text-decoration:none;
}

.footer a:hover{
    color:var(--secondary);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}
.counter-section{
    padding:80px 0;
    background:#fff;
}

.counter-box{
    padding:30px;
}

.counter-box h2{
    font-size:50px;
    font-weight:800;
    color:#2E3192;
}

.counter-box p{
    font-weight:600;
}
.inner-banner{
padding:180px 0 100px;
background:
linear-gradient(
rgba(46,49,146,.92),
rgba(0,167,157,.85)
);
color:#fff;
text-align:center;
}

.about-page-section,
.mission-section,
.chairman-section{
padding:120px 0;
}

.mission-card{
background:#fff;
padding:40px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
}

.chairman-section img{
max-height:450px;
object-fit:cover;
}

.chairman-section h2{
color:#2E3192;
font-weight:800;
}

/* Doctors Page */

.doctor-search-section{

padding:80px 0;

background:#f8fafc;

}

.search-box{

background:#fff;

padding:30px;

border-radius:25px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.doctors-page-section{

padding:100px 0;

background:#fff;

}

.doctors-page-section .doctor-card{

height:100%;

}

.doctors-page-section .doctor-card:hover{

transform:translateY(-10px);

}

.doctors-page-section .doctor-img img{

height:380px;

object-fit:cover;

}
```
