/* ======================================
   SHREE SHYAM HOSPITAL
   Version 1
======================================*/

:root{

    --primary:#C62828;
    --secondary:#0D47A1;
    --light:#F5F8FD;
    --dark:#222;
    --white:#fff;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;

}

/*========================
Top Header
=========================*/

.top-bar{

    background:var(--primary);
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-bar a{

    color:#fff;
    text-decoration:none;

}

.top-bar i{

    margin-right:6px;

}

/*========================
Navbar
=========================*/

.navbar{

    padding:15px 0;
    background:#fff !important;
    transition:.3s;

}

.navbar-brand{

    font-size:28px;
    font-weight:700;

}

.nav-link{

    margin-left:20px;
    font-weight:500;
    color:#333 !important;

}

.nav-link:hover{

    color:var(--primary)!important;

}

/*========================
Buttons
=========================*/

.btn{

    border-radius:50px;
    padding:12px 26px;
    font-weight:600;
    transition:.3s;

}

.btn-danger{

    background:var(--primary);
    border:none;

}

.btn-danger:hover{

    background:#a11e1e;

}

.btn-outline-primary{

    border:2px solid var(--secondary);
    color:var(--secondary);

}

.btn-outline-primary:hover{

    background:var(--secondary);
    color:#fff;

}

/*========================
Hero
=========================*/

.hero{

    padding:90px 0;
    background:linear-gradient(135deg,#f7fbff,#eef5ff);

}

.hero h5{

    color:var(--primary);
    font-weight:700;
    margin-bottom:20px;

}

.hero h1{

    font-size:54px;
    font-weight:700;
    line-height:1.2;

}

.hero h1 span{

    color:var(--secondary);

}

.hero p{

    margin:30px 0;
    color:#555;
    font-size:18px;
    line-height:1.8;

}

.hero-image{

    max-width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

/*=========================
Section
==========================*/

section{

    padding:90px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:40px;
    color:var(--secondary);
    font-weight:700;

}

.section-title p{

    color:#666;

}

/*=========================
Cards
==========================*/

.card{

    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.card-body{

    padding:30px;

}

/*=========================
Footer
==========================*/

footer{

    background:var(--secondary);
    color:#fff;
    padding:60px 0;

}

footer a{

    color:#fff;
    text-decoration:none;

}

/*=========================
Floating Buttons
==========================*/

.float-call{

    position:fixed;
    bottom:95px;
    right:20px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:var(--primary);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:24px;

    z-index:999;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

}

.float-whatsapp{

    position:fixed;
    bottom:20px;
    right:20px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:26px;

    z-index:999;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.hero{

text-align:center;

padding:60px 0;

}

.hero h1{

font-size:40px;

}

.hero-image{

margin-top:40px;

}

.nav-link{

margin-left:0;

padding:10px 0;

}

}

@media(max-width:576px){

.hero h1{

font-size:32px;

}

.section-title h2{

font-size:30px;

}

.top-bar{

text-align:center;

}

.top-bar .text-end,
.top-bar .text-center{

text-align:center!important;
margin-top:5px;

}

}

.card i{

margin-bottom:20px;

}

.card h4{

font-weight:600;

margin-bottom:15px;

}

.card p{

color:#666;

}

.card{

height:100%;

}

footer h3{

font-weight:700;

margin-bottom:15px;

}

footer p{

margin-bottom:8px;

}

footer{

font-size:15px;

}

.rounded-circle{

border:5px solid #f5f5f5;

box-shadow:0 5px 20px rgba(0,0,0,.1);

}