@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* body{
    background-color: aqua;
} */

body{
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.container{
    max-width: 1135px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar-brand img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#btn{
    border-radius: 10px;
    border: none;
    /* padding: 10px 5px; */
    width: 15%;
}

/* wellness-section */

.wellness-section{
    /* height: 100vh; */
    display: flex;
    align-items: center;
    background-color: #464748;
    padding: 50px 0;
}

.text-content{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.content-wrapper{
    max-width: 500px;
}

.rating{
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.rating-text{
    margin-left: 10px;
}

h1{
    font-size: 2.5rem;
    font-weight: bold;
}

.highlight{
    background: red;
    color: white;
    padding: 5px 10px;
    display: inline-block;
    transform: skewX(-10deg);
}

.content-wrapper p{
    font-size: 1.1rem;
    margin: 20px 0;
    color: rgb(255, 255, 255);
}

.buttons{
    margin-top: 20px;
}

.buttons .btn{
    font-size: 1rem;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
}

/* .img-fluid{
    width: 100%;
    height: auto;
    object-fit: cover;
} */

.image-container{
    height: 100vh;
    overflow: hidden;
}

.image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* services-section */

.services-section{
    background-color: #FFE8E9;
    padding: 50px 0;
}

.service-box{
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-box:hover{
    transform: translateY(-5px);
}

.icon{
    width: 60px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    color: #444;
}

h3{
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}

p{
    font-size: 1rem;
    color: #666;
}

/*services-carousel-section */

.services-carousel{
    padding: 50px 0;
    text-align: center;
}

.card{
    position: relative;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card-img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.card-overlay{
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    padding: 10px;
    border-radius: 5px;
    text-align: left;
}

.card-overlay h4{
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-overlay p{
    font-size: 0.9rem;
    color: #555;
}

.arrow-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    background: black;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.arrow-btn span{
    font-size: 1.2rem;
}

/* Carousel Controls */
.carousel-control-prev, 
.carousel-control-next{
    background-color: rgb(12, 11, 11);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* service */

.service{
    background-color: #FFE8E9;
    padding: 50px 0;
}

.service h2{
    font-size: 2rem;
    color: black;
    font-weight: bold;
    margin-bottom: 15px;
}

.service p{
    font-size: 1rem;
    color: #666;
}

.list-unstyled li{
    font-size: 1rem;
    color: black;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.list-unstyled li span{
    font-size: 1.5rem;
    color: red;
    margin-right: 10px;
}

.btn-dark{
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.stats-section{
    margin-top: 50px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.stats-section h2{
    font-size: 2rem;
    font-weight: bold;
}

.stats-section p{
    font-size: 1rem;
    color: #555;
}

.para p{
    text-align: left;
}

/* healthCare-section */

.aesthetic-card{
    background-color: #F45561;
    border-radius: 20px;
    position: relative;
}

.aesthetic-card h3{
    font-size: 1.5rem;
}

.aesthetic-card p{
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
}

.doctor-img{
    width: 60%;
    height: auto;
    /* border-radius: 10px; */
}

.second-row{
    background-color: #F2F2F2;
}

.color{
    color: black;
}

.healthcare-section h3, .healthcare-section h4{
    font-weight: bold;
}

.overlay-text{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #F45561;
    border-radius: 0 0 10px 10px;
}

.overlay-text p{
    color: rgb(255, 255, 255);
}

.btn-dark{
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}


/* our-experts */

.expert-card{
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease-in-out;
}

.expert-card img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.expert-info{
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 65%;
}

.expert-info p{
    margin: 0;
    font-weight: bold;
    font-size: 14px;
}

/* .arrow-btn{
    background: #d94848;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
} */

/* testimonial-section */

.testimonial{
    background-color: #FFE8E9;
    padding: 30px 10px;
}

.rating-card{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.background-crd{
    background-color: #FFFFFF;
    padding: 15px 12px;
    border-radius: 15px;
}

.rating-box-1{
    background: #d94848;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    width: 200px;
}

.rating-box-2{
    background-color: #FF737E;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    width: 200px;
}

.rating-card p{
    color: rgb(255, 255, 255);
}

.rating-box h3{
    margin: 5px 0;
    font-size: 22px;
    font-weight: bold;
}

.rating-box p{
    margin: 0;
    font-size: 14px;
}

.avatars img{
    /* width: 25px;
    height: 25px; */
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    margin-right: -5px;
}

.testimonial-box{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.quote img{
    width: 8%;
    height: auto;
    position: absolute;
    top: -10px;
    left: 15px;
}

.testimonial-text{
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author{
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.author-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name{
    font-weight: bold;
    margin: 0;
}

.author-title{
    font-size: 14px;
    color: #888;
    margin: 0;
}

.testimonial-nav{
    position: absolute;
    right: 15%;
    transform: translateY(-60px);
}

.testimonial-nav .btn{
    background: #ffe3e3;
    border: none;
    font-size: 18px;
}

/* start-wellness-journey */

.start-wellness-journey{
    background-color: #E80A1B;
    text-align: center;
    /* padding: 50px 0; */
}

.banner-img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-subtitle{
    color: rgb(255, 255, 255);
}

/* footer-section */

.footer{
    background-color: rgba(12, 11, 11, 0.64);
    padding: 30px;
}

.footer-logo{
    width: 120px;
    margin-bottom: 15px;
}

.social-icons a{
    color: #d10000;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}

/* .footer h5{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
} */

.footer-links{
    list-style: none;
    padding: 0;
}

.footer-links li{
    margin-bottom: 8px;
}

.footer-links a{
    color: #bbb;
    text-decoration: none;
}

.footer-links a:hover{
    color: #fff;
}

.contact-info{
    list-style: none;
    padding: 0;
}

.contact-info li{
    margin-bottom: 10px;
}

.contact-info i{
    color: #d10000;
    margin-right: 10px;
}

.footer-bottom{
    margin-top: 20px;
}

.footer-bottom p{
    font-size: 14px;
    color: #bbb;
}

.footer-bottom a{
    color: #d10000;
    text-decoration: none;
}

.footer-bottom a:hover{
    color: #fff;
}



@media screen and (max-width: 767px) {
    .overlay-text{
        position: relative;
        border-radius: 10px;
    }
}

@media screen and (max-width: 367px) {
    .testimonial-nav{
        position: absolute;
        right: 10%;
        transform: translateY(-40px);
    }
}

