/*==================================================
    HOMEOPATHY CLINIC WEBSITE
    STYLE.CSS
===================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
    Reset
===============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:90px 0;
}

/*==============================
    Common
===============================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#198754;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    margin-top:10px;

}

.section-title p{

    color:#777;

    max-width:650px;

    margin:15px auto 0;

}

/*==============================
    Top Bar
===============================*/

.top-bar i{

    margin-right:6px;

}

/*==============================
    Navbar
===============================*/

.navbar-brand{

    font-size:30px;

    font-weight:700;

    color:#ff1100 !important;

}

.navbar-brand i{

    margin-right:8px;

}

.nav-link{

    color:#333 !important;

    font-weight:500;

    margin-left:20px;

    transition:.3s;

}

.nav-link:hover,

.nav-link.active{

    color:#198754 !important;

}

.btn-success:hover{

    transform:translateY(-3px);

}

/*==============================
    Hero
===============================*/

.hero{

    min-height:100vh;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    color:#fff;

}

.hero-content h5{

    color:#9ff2b2;

    letter-spacing:2px;

    margin-bottom:15px;

}

.hero-content h1{

    font-size:62px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

/*==============================
    Card Design
===============================*/

.card-box:hover{

    transform:translateY(-10px);

}

/*==============================
    Footer
===============================*/

footer{

    background:#14532d;

    color:#fff;

    padding:60px 0 25px;

}

footer p{

    margin-bottom:0;

    color:#ddd;

}

/*==============================
    Animation
===============================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/*==============================
    Responsive
===============================*/

@media(max-width:991px){

.top-bar{

text-align:center;

}

.top-bar .text-end{

text-align:center !important;

margin-top:8px;

}

.nav-link{

margin-left:0;

padding:12px 0;

}

.hero{

text-align:center;

padding:120px 0;

}

.hero-content p{

margin:auto auto 35px;

}

.hero-content h1{

font-size:46px;

}

}

@media(max-width:768px){

.section-title h2{

font-size:34px;

}

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:17px;

}

.btn-success{

width:100%;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:30px;

}

.hero-content h5{

font-size:16px;

}

.hero{

padding:100px 0;

}

}
/*==========================
    Navbar Shadow
===========================*/

.navbar.shadow{

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}


/*==========================
    Back To Top
===========================*/

#topBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#198754;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

#topBtn.show{

    opacity:1;

    visibility:visible;

}

#topBtn:hover{

    background:#146c43;

    transform:translateY(-5px);

}
/*==================================
        HERO SECTION
===================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url("../images/hero.jpg") center center/cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.hero-content{

    position:relative;

    z-index:5;

    color:#fff;

}

.hero-subtitle{

    display:inline-block;

    background:#198754;

    padding:8px 20px;

    border-radius:30px;

    margin-bottom:20px;

    font-weight:600;

}

.hero-content h1{

    font-size:60px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-content p{

    font-size:19px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-bottom:40px;

}

.hero-info{

    display:flex;

    gap:25px;

}

.info-item{

    display:flex;

    align-items:center;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    padding:15px 20px;

    border-radius:15px;

}

.info-item i{

    font-size:28px;

    margin-right:15px;

    color:#7dff9f;

}

.hero-image{

    position:relative;

    text-align:center;

    z-index:5;

}

.hero-image img{

    max-width:500px;

    animation:float 4s ease-in-out infinite;

}

.experience-box{

    position:absolute;

    right:20px;

    bottom:40px;

    width:170px;

    background:#ff3300;

    color:#fff;

    padding:20px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.20);

}

.experience-box h2{

    font-size:48px;

    margin-bottom:5px;

}
@media(max-width:992px){

.hero{

text-align:center;

padding:120px 0;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-info{

justify-content:center;

flex-wrap:wrap;

margin-bottom:40px;

}

.hero-content h1{

font-size:42px;

}

.hero-image img{

max-width:350px;

}

.experience-box{

position:relative;

right:auto;

bottom:auto;

margin:25px auto 0;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:32px;

}

.hero-buttons .btn{

width:100%;

}

}
/*==================================
        ABOUT
===================================*/

.section-padding{

    padding:100px 0;

}

.about{

    background:#fff;

}

.about-image{

    position:relative;

}

.about-badge{

    position:absolute;

    bottom:20px;

    right:20px;

    background:#d33811;

    color:#fff;

    width:150px;

    height:150px;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 30px rgba(0,0,0,.2);

}

.about-badge h3{

    font-size:42px;

    margin:0;

}

.about-text{

    color:#666;

    line-height:1.9;

    margin-top:20px;

}

.about-feature{

    background:#f8f9fa;

    padding:18px;

    border-radius:12px;

    margin-bottom:20px;

    font-weight:600;

    transition:.3s;

}

.about-feature:hover{

    background:#198754;

    color:#fff;

}

.about-feature i{

    margin-right:10px;

}

/*==================================
        WHY
===================================*/

.why{

    background:#f5f9f6;

}

.why-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:20px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

}

.why-card i{

    width:80px;

    height:80px;

    background:#ebaf2d;

    color:#fff;

    border-radius:50%;

    line-height:80px;

    font-size:30px;

    margin-bottom:20px;

}

.why-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.7;

}
/*==================================
        SERVICES
===================================*/

.services{

    background:#ffffff;

}

.service-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.service-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.4s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

    text-align:center;

}

.service-icon{

    width:80px;

    height:80px;

    margin:-70px auto 20px;

    background:#198754;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    border:5px solid #fff;

}

.service-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:1.8;

}
/*==================================
        DOCTOR SECTION
===================================*/

.doctor{

    background:#f8fbf9;

}

.doctor-image{

    position:relative;

}

.doctor-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.doctor-badge{

    position:absolute;

    left:20px;

    bottom:20px;

    background:#198754;

    color:#fff;

    padding:14px 24px;

    border-radius:40px;

    font-weight:600;

}

.doctor-degree{

    color:#198754;

    font-weight:600;

    margin:20px 0;

}

.doctor-text{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.doctor-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.doctor-item{

    background:#fff;

    padding:16px 18px;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

    font-weight:500;

}

.doctor-item i{

    color:#fffdfd;

    margin:0 8px;

}

.doctor-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.doctor-social{

    display:flex;

    gap:12px;

}

.doctor-social a{

    width:45px;

    height:45px;

    background:#198754;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.doctor-social a:hover{

    background:#146c43;

    transform:translateY(-5px);

}

@media(max-width:768px){

    .doctor-info{

        grid-template-columns:1fr;

    }

}

/*==================================
    TESTIMONIAL
===================================*/

.testimonial{

background:#f8f9fa;

}

.testimonial-card img{

width:90px;

height:90px;

border-radius:50%;

object-fit:cover;

margin:auto;

margin-bottom:20px;

}

/*==================================
    CUSTOMER REVIEW VIDEOS
===================================*/

.review-video-section{
    background:#f8f9fa;
}

.review-video-card{
    width:100%;
    max-width:380px;
    margin:0 auto;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:transform .3s ease, box-shadow .3s ease;
}

.review-video-card:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.review-video-wrap{
    width:100%;
    aspect-ratio:16/9;
    background:#111;
    overflow:hidden;
}

.review-video-wrap video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.review-video-info{
    text-align:center;
    padding:12px 12px 15px;
}

.review-video-info .stars{
    margin-bottom:4px;
    font-size:15px;
}

.review-video-info h4{
    margin:0 0 2px;
    color:#0b2d63;
    font-size:16px;
    font-weight:700;
}

.review-video-info p{
    margin:0;
    color:#777;
    font-size:13px;
}

@media(max-width:767px){
    .review-video-card{
        max-width:380px;
    }
}

/*==================================
        GALLERY
===================================*/

.gallery{

background:#fff;

}

.gallery-img{

width:100%;

height:260px;

object-fit:cover;

border-radius:18px;

transition:.4s;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.gallery-img:hover{

transform:scale(1.05);

}

/*==================================
        CONTACT
===================================*/

.contact{

background:#f7faf8;

}

.contact h2{

font-size:42px;

font-weight:700;

margin-bottom:25px;

}

.contact-item{

display:flex;

align-items:center;

margin:22px 0;

font-size:17px;

}

.contact-item i{

width:50px;

height:50px;

background:#198754;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

margin-right:15px;

}

.contact iframe{

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.10);

}

/*==================================
        FOOTER
===================================*/

/*==============================
        FOOTER
===============================*/

footer{
    background:#212529;
    padding:70px 0 25px;
    color:#fff;
}

footer .footer-container{
    width:96%;
    max-width:1400px;
}

.footer-social{
    margin:30px 0;
}

.footer-social a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#e61b1b;
    border-radius:50%;
    margin:0 8px;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-5px);
    background:#22c55e;
}

/*==================================
        WHATSAPP
===================================*/

.whatsapp{

position:fixed;

bottom:90px;

right:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:30px;

z-index:9999;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.20);

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

color:#fff;

}
/*==========================
PRELOADER
===========================*/

.call-btn:hover{

transform:scale(1.1);

color:#fff;

}
.top-header{

font-size:15px;

}

.top-header a{

text-decoration:none;

}

.navbar-nav .nav-link{

font-weight:600;

padding:15px;

}

.navbar-nav .nav-link:hover{

color:#198754;

}

footer a{

color:#ddd;

text-decoration:none;

}

footer a:hover{

color:#fff;

}

footer h4,

footer h5{

margin-bottom:20px;

}
.testimonial-section .row {
    align-items: center;
}

.testimonial-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:12px;
}

.stars{
    color:#f5b301;
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:8px;
}

.testimonial-item h4{
    color:#0b2d63;
    font-size:18px;
    font-weight:700;
    margin:0;
}
.doctor-section{
    padding:60px 0;
}

.doctor-item{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.doctor-item img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.stars{
    color:#FFC107;
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.doctor-item h4{
    font-size:32px;
    font-weight:700;
    color:#0d2b5b;
    margin:0;
}

.btn-success{
    background: #ff1100 !important;
    border: 1px solid #ff1100 !important;
}

.btn-success:hover{
    background: #ff1100 !important;
    border-color: #ff1100 !important;
}
.hero-content p{
    margin-bottom: 4px;
    line-height: 1.5;
}
.top-bar{
    background:#e60000;
    color:#fff;
    padding:10px 0;
    font-size:18px;
    font-weight:600;
}

.logo{
    width:70px;
    height:70px;
    object-fit:contain;
}

.clinic-name{
    color:#e60000;
    font-size:32px;
    font-weight:700;
    font-family: "Hind Siliguri", sans-serif;
}

.navbar{
    padding:15px 0;
}

.navbar-nav .nav-link{
    color:#198754;
    font-size:18px;
    font-weight:600;
}

.navbar-nav .nav-link:hover{
    color:#e60000;
}
/*==========================
Gallery Page
==========================*/

.gallery-page{

background:#f8f9fa;

}

.gallery-item{

overflow:hidden;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.10);

transition:.4s;

}

.gallery-item img{

width:100%;

height:280px;

object-fit:cover;

transition:.4s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-item:hover{

transform:translateY(-8px);

}
/*=========================
Diseases Page
=========================*/

.disease-card{
    border:none;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.disease-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.disease-card .card-body{
    padding:0 !important;
}

.disease-card h4{
    color:#198754;
    font-weight:700;
    margin:15px 0;
}

.disease-card p{
    color:#666;
    margin-bottom:20px;
}

/*==================================
        STICKY FOOTER / NO WHITE SPACE
===================================*/
html, body{min-height:100%;margin:0;padding:0;}
html{height:100%;}
body{min-height:100vh;display:flex;flex-direction:column;background:#f8f9fa;}
body > footer{width:100%;margin-top:auto !important;flex-shrink:0;}
footer .footer-container{width:96%;max-width:1400px;margin-left:auto;margin-right:auto;}
@media(max-width:576px){footer .footer-container{width:92%;}}
