/*====================================================
Dr. C. B. Singh Clinic
Landing Page CSS
Author : Kite Web Technology
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#444;
    background:#ffffff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s;
}

a:hover{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

section{
    padding:80px 0;
}

.container{
    max-width:1200px;
}

/*==============================
Top Bar
==============================*/

.top-bar{
    background:#c40000;
    color:#fff;
    padding:10px 0;
    font-size:15px;
}

.top-bar a{
    color:#fff;
    font-weight:500;
}

.top-bar i{
    margin-right:8px;
}

/*==============================
Navbar
==============================*/

.navbar{
    background:#fff;
    padding:15px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar-brand img{
    height:65px;
}

.navbar-nav .nav-link{
    color:#222;
    font-weight:600;
    margin-left:20px;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#c40000;
}

.navbar-nav .nav-link.active{
    color:#c40000;
}

/*==============================
Hero Section
==============================*/

.hero{

background:
linear-gradient(rgba(255,255,255,.95),
rgba(255,255,255,.95)),
url('../img/bg.jpg');

background-size:cover;
background-position:center;

padding:110px 0;

}

.hero h1{

font-size:52px;

font-weight:800;

color:#b30000;

margin-bottom:10px;

}

.hero h2{

font-size:30px;

font-weight:600;

color:#222;

margin-bottom:20px;

}

.hero p{

font-size:18px;

color:#555;

margin-bottom:30px;

}

/*==============================
Buttons
==============================*/

.btn{

border-radius:50px;

padding:15px 35px;

font-weight:600;

transition:.3s;

}

.btn-danger{

background:#c40000;

border:none;

}

.btn-danger:hover{

background:#980000;

transform:translateY(-3px);

}

.btn-success{

background:#25D366;

border:none;

}

.btn-success:hover{

background:#1fa94d;

transform:translateY(-3px);

}

/*==============================
Feature Boxes
==============================*/

.hero-features{

margin-top:50px;

}

.feature-box{

background:#fff;

padding:25px;

text-align:center;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.feature-box:hover{

transform:translateY(-8px);

}

.feature-box i{

font-size:40px;

color:#c40000;

margin-bottom:15px;

}

.feature-box h5{

font-size:18px;

font-weight:700;

color:#222;

}

/*==============================
Appointment Form
==============================*/

.appointment-box{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.appointment-box h3{

font-size:30px;

font-weight:700;

text-align:center;

margin-bottom:30px;

color:#b30000;

}

.appointment-box .form-control{

height:55px;

border-radius:12px;

margin-bottom:18px;

border:1px solid #ddd;

padding-left:18px;

font-size:15px;

}

.appointment-box textarea.form-control{

height:130px;

padding-top:15px;

resize:none;

}

.appointment-box .form-control:focus{

border-color:#c40000;

box-shadow:none;

}

.appointment-box button{

height:55px;

font-size:18px;

font-weight:600;

border-radius:50px;

}

/*==============================
Common Section Heading
==============================*/

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:42px;

font-weight:800;

color:#b30000;

margin-bottom:15px;

}

.section-title p{

max-width:700px;

margin:auto;

color:#666;

}

/*==============================
Utility Classes
==============================*/

.bg-light-red{

background:#fff7f7;

}

.shadow-box{

box-shadow:0 10px 30px rgba(0,0,0,.08);

border-radius:20px;

background:#fff;

}

.text-red{

color:#b30000;

}

.mt-40{

margin-top:40px;

}

.mb-40{

margin-bottom:40px;

}

/*==============================
Floating Buttons
==============================*/

.call-btn{

position:fixed;

left:20px;

bottom:25px;

width:60px;

height:60px;

background:#c40000;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

z-index:999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.whatsapp-btn{

position:fixed;

right:20px;

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;

box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.call-btn:hover,
.whatsapp-btn:hover{

transform:scale(1.08);

color:#fff;

}

/*=========================================
ABOUT DOCTOR
=========================================*/

.about{
    background:#fff;
}

.about-img{
    position:relative;
}

.about-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content h6{
    color:#c40000;
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    margin-bottom:20px;
    line-height:1.9;
}

.about-list{
    margin-top:30px;
}

.about-list li{
    margin-bottom:15px;
    font-size:17px;
    color:#444;
}

.about-list li i{
    color:#c40000;
    margin-right:10px;
}

/*=========================================
WHY CHOOSE US
=========================================*/

.choose-us{
    background:#fafafa;
}

.choose-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    transition:.4s;
    text-align:center;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    height:100%;
}

.choose-box:hover{
    transform:translateY(-10px);
}

.choose-box i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#c40000;
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.choose-box h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.choose-box p{
    color:#666;
}

/*=========================================
COUNTER SECTION
=========================================*/

.counter-section{
    background:#c40000;
    padding:80px 0;
}

.counter-box{
    text-align:center;
    color:#fff;
}

.counter-box i{
    font-size:50px;
    margin-bottom:20px;
}

.counter-box h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box h5{
    font-size:20px;
    font-weight:500;
}

/*=========================================
SERVICES
=========================================*/

.services{
    background:#fff;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin-bottom:30px;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.service-content{
    padding:25px;
}

.service-content h4{
    font-size:24px;
    color:#222;
    font-weight:700;
    margin-bottom:15px;
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.service-content a{
    display:inline-block;
    color:#c40000;
    font-weight:600;
}

.service-content a:hover{
    letter-spacing:1px;
}

/*=========================================
TREATMENT BOX
=========================================*/

.treatment-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:30px;
    height:100%;
}

.treatment-box:hover{
    background:#c40000;
    color:#fff;
}

.treatment-box:hover h5,
.treatment-box:hover p,
.treatment-box:hover i{
    color:#fff;
}

.treatment-box i{
    font-size:45px;
    color:#c40000;
    margin-bottom:20px;
}

.treatment-box h5{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.treatment-box p{
    color:#666;
    font-size:15px;
}

/*=========================================
AWARDS
=========================================*/

.awards{
    background:#fafafa;
}

.award-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;
}

.award-card:hover{
    transform:translateY(-8px);
}

.award-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.award-card h5{
    padding:20px;
    font-size:20px;
    font-weight:700;
    color:#222;
}

/*=========================================
GALLERY
=========================================*/

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    margin-bottom:30px;
}

.gallery-item img{
    width:100%;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(196,0,0,.7);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    color:#fff;
    font-size:35px;
}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{
    background:#f8f9fa;
}

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    margin-bottom:30px;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:4px solid #c40000;
}

.testimonial-card h5{
    font-weight:700;
    color:#222;
}

.testimonial-card span{
    color:#999;
    font-size:14px;
}

.testimonial-card p{
    margin-top:20px;
    color:#666;
    line-height:1.8;
}

.rating{
    margin-top:15px;
}

.rating i{
    color:#ffc107;
    margin-right:3px;
}

/*=========================================
FAQ
=========================================*/

.faq{
    background:#fff;
}

.accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.accordion-button{
    background:#fff;
    font-weight:600;
    font-size:18px;
    color:#222;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#c40000;
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:25px;
    color:#666;
    line-height:1.8;
}

/*=========================================
CLINIC LOCATION
=========================================*/

.locations{
    background:#fafafa;
}

.location-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    margin-bottom:30px;
}

.location-card:hover{
    transform:translateY(-8px);
}

.location-card iframe{
    width:100%;
    height:250px;
    border:0;
}

.location-content{
    padding:25px;
}

.location-content h4{
    font-weight:700;
    color:#c40000;
    margin-bottom:15px;
}

.location-content p{
    color:#666;
    margin-bottom:10px;
}

.location-content i{
    color:#c40000;
    margin-right:8px;
}

.location-content a{
    color:#222;
    font-weight:600;
}

.location-content .btn{
    margin-top:15px;
}

/*=========================================
CONTACT
=========================================*/

.contact{
    background:#fff;
}

.contact-info{
    background:#c40000;
    color:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
}

.contact-info h3{
    font-weight:700;
    margin-bottom:30px;
}

.contact-info p{
    margin-bottom:20px;
}

.contact-info i{
    width:45px;
    height:45px;
    background:#fff;
    color:#c40000;
    border-radius:50%;
    text-align:center;
    line-height:45px;
    margin-right:15px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form .form-control{
    height:55px;
    margin-bottom:20px;
    border-radius:10px;
}

.contact-form textarea{
    height:150px !important;
    resize:none;
}

.contact-form button{
    height:55px;
    border-radius:50px;
}

/*=========================================
FOOTER
=========================================*/

.footer{
    background:#111;
    color:#ddd;
    padding:70px 0 20px;
}

.footer h4{
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.footer p{
    color:#bbb;
    line-height:1.8;
}

.footer ul{
    padding:0;
}

.footer ul li{
    list-style:none;
    margin-bottom:12px;
}

.footer ul li a{
    color:#bbb;
    transition:.3s;
}

.footer ul li a:hover{
    color:#fff;
    padding-left:8px;
}

.footer-contact i{
    color:#c40000;
    margin-right:10px;
}

.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    background:#c40000;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#aaa;
}

/*=========================================
BACK TO TOP
=========================================*/

.back-to-top{
    position:fixed;
    right:25px;
    bottom:95px;
    width:50px;
    height:50px;
    background:#c40000;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    cursor:pointer;
    z-index:999;
    display:none;
}

.back-to-top:hover{
    background:#900;
}

/*=========================================
ANIMATION
=========================================*/

.service-card,
.choose-box,
.treatment-box,
.location-card,
.award-card,
.testimonial-card{
    transition:all .35s ease;
}

.service-card:hover,
.choose-box:hover,
.treatment-box:hover,
.location-card:hover,
.award-card:hover,
.testimonial-card:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}