/* =====================================================
   Smile O Dent
   Author : Sanat Haldar
   Website : smileodent.clinic
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#333;
    overflow-x:hidden;
    line-height:1.7;
}

/* Colors */

:root{

    --primary:#0d6efd;

    --secondary:#00b894;

    --orange:#ff7a00;

    --dark:#0d1b2a;

    --light:#ffffff;

    --gray:#f5f7fa;

}

/* Links */

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
}

/* Top Bar */

.top-bar{

    background:var(--primary);

    color:#fff;

    padding:8px 0;

    font-size:15px;

}

.top-bar a{

    color:#fff;

    margin-left:5px;

}

.top-bar i{

    margin-right:5px;

}

/* Navbar */

.navbar{

    padding:15px 0;

    background:#fff!important;

}

.navbar-brand img{

    height:60px;

}

.nav-link{

    font-weight:600;

    color:#222!important;

    margin-left:15px;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.btn-primary{

    background:var(--primary);

    border:none;

    border-radius:50px;

    padding:12px 30px;

    font-weight:600;

}

.btn-primary:hover{

    background:#0056d6;

}

/* Hero */

.hero{

    padding:90px 0;

    background:linear-gradient(135deg,#edf6ff,#ffffff);

}

.hero h1{

    font-size:52px;

    font-weight:800;

    color:var(--dark);

}

.hero h2{

    font-size:22px;

    color:var(--primary);

    margin:20px 0;

}

.hero p{

    font-size:18px;

    color:#555;

}

.rating{

    color:#ffb400;

    font-size:18px;

    margin:20px 0;

}

/* Appointment Form */

.form-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.form-control{

    height:52px;

    border-radius:10px;

}

textarea.form-control{

    height:120px;

}

.submit-btn{

    background:var(--orange);

    color:#fff;

    width:100%;

    padding:14px;

    border:none;

    border-radius:50px;

    font-weight:700;

}

.submit-btn:hover{

    background:#e96b00;

}

/* Section */

.section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:40px;

    font-weight:800;

}

.section-title p{

    color:#777;

}

/* Cards */

.card-box{

    background:#fff;

    padding:35px;

    border-radius:18px;

    transition:.4s;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

    height:100%;

}

.card-box:hover{

    transform:translateY(-10px);

}

.card-box i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}

.card-box h4{

    font-size:22px;

    font-weight:700;

}

/* Doctor */

.doctor{

    background:#fff;

}

.doctor img{

    border-radius:20px;

}

/* Google Review */

.review{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    color:#000;
}

.review p{
    color:#000 !important;
    font-size:16px;
    line-height:1.8;
}

.review strong{
    color:#000 !important;
    font-weight:600;
}

.review h4,
.review h5,
.review span{
    color:#000 !important;
}

/* FAQ */

.accordion-button{

    font-weight:600;

}

/* Footer */

.footer{

    background:#0d1b2a;

    color:#fff;

    padding:70px 0;

}

.footer a{

    color:#fff;

}

.footer h4{

    margin-bottom:20px;

}

/* Floating Buttons */

.whatsapp-btn{

    position:fixed;

    right:20px;

    bottom:90px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    z-index:999;

}

.call-btn{

    position:fixed;

    right:20px;

    bottom:20px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    z-index:999;

}

/* Responsive */

@media(max-width:991px){

.hero{

text-align:center;

padding:70px 0;

}

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:30px;

}

.nav-link{

margin-left:0;

padding:10px 0;

}

}

@media(max-width:576px){

.hero h1{

font-size:30px;

}

.hero h2{

font-size:18px;

}

.form-box{

padding:20px;

}

.section{

padding:60px 0;

}

}/* FAQ Section */
#faq .section-title h2{
    color:#000 !important;
}

#faq .section-title p{
    color:#666 !important;
}/* Reviews Section */