*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scrollbar-color: #00a8c5 #f2f2f2;
    scrollbar-width: thin;
}

body{
    font-size: 17px;
    line-height: 28px;
    color:#000;
    font-family: "Nunito Sans", sans-serif;
}

ul{
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #000;
}

a{
    text-decoration: none;
}

.border-line{
    border-bottom: 1px solid #00a8c5;
    position: relative;
    width: 100%;
}

.border-line:before{
    position: absolute;
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #00a8c5, #f89f1f);
    bottom: -3px;
    left: 50%;
    margin-left: -45px;
}

.header{
    background:#00a8c5;
    position:relative;
    z-index:9999;
}
.header:before{
    position: absolute;
    content: '';
    background: #fff;
    width: 20%;
    height: 100%;
    left: 0;
    top: 0;
}
.header-inner{
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

@media (min-width:1200px){
    .container{
        max-width: 95%;
    }
}

.btn-1{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background:#f89f1f;
    color:#fff;
    padding:12px 20px;
    text-decoration:none;
    font-weight:500;
    transition: 0.5s ease;
    font-size: 17px;
}
.btn-1:hover{
    color: #fff;
    transform: scale(1.05);
    filter: brightness(1.05);
}
.btn-2{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border:2px solid #f89f1f;
    color:#000;
    background: #fff9f9;
    padding:12px 20px;
    text-decoration:none;
    font-weight:500;
    transition: 0.5s ease;
    font-size: 16px;
}
.btn-2:hover{
    color: #000;
    transform: scale(1.05);
    filter: brightness(1.05);
}

.space{
    padding: 70px 0;
}
.space-top{
    padding-top: 70px;
}
.space-bottom{
    padding-bottom: 70px;
}

.text-blue{
    color: #00a8c5 !important;
}

.text-orange{
    color: #f89f1f !important;
}

.section-title{
    margin-bottom:50px;
    text-align: center;
}
.sec-icon{
    width:45px;
    height:45px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00a8c5;
    font-size:38px;
    position:relative;
    margin-bottom:10px;
}
.sec-icon:before{
    content:"";
    position:absolute;
    width:50px;
    height:2px;
    background:linear-gradient(45deg, #00a8c5, transparent);
    left:-60px;
    top:50%;
}
.sec-icon:after{
    content:"";
    position:absolute;
    width:50px;
    height:2px;
    background:linear-gradient(45deg, transparent, #00a8c5);
    right:-60px;
    top:50%;
}
.section-title h2{
    font-size:40px;    
    margin-bottom:4px;
}
.section-title h2 i{
    margin-right: 10px;
    color: #00a8c5;
}
.section-title p{
    max-width:700px;
    margin:auto;
    font-size: 18px;
}
.section-title h3{
    color:#e5a326;
    font-size:26px;
    font-weight: 500;
}
.section-title h4{
    color:#e5a326;
    font-size:36px;
    margin-bottom: 10px;
}

/* ======================
    LOGO
====================== */

.logo-box{
    width:370px;
    background:#fff;
    padding:15px 25px 15px 0;
    clip-path:polygon(0 0,100% 0,87% 100%,0 120%);
    display:flex;
    align-items:center;
    gap:15px;
}
.logo-box img{
    height:70px;
}
.logo-content h2{
    font-size:29px;
    margin-bottom:2px;
}
.logo-content p{
    color:#f79d0a;
    font-weight:700;
    margin:0;
    line-height: 21px;
}

/* ======================
    MENU
====================== */

.menu{
    display:flex;
    align-items:center;
}
.nav-menu{
    list-style:none;
    display:flex;
    align-items:center;
}
.nav-menu>li{
    position:relative;
    margin: 0 2px;
}
.nav-menu>li>a{
    color:#fff;
    text-decoration:none;
    padding:6px 10px;
    display:block;
    transition: 0.5s ease;
    outline: none;
    border: none;
}
.nav-menu>li>a:hover, .nav-menu>li.active>a{
    background: #33b9d1;
    box-shadow: 1px 4px 8px 1px #6969694f;
}
.nav-menu>li>a i{
    margin-left: 5px;
}

/* ======================
    LEVEL 1
====================== */

.dropdown{
    position:absolute;
    top:100%;
    left:0;
    width:320px;
    background:#fff;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.3s;
}
.dropdown li{
    list-style:none;
    position:relative;
}
.dropdown a{
    display:block;
    padding:12px 20px;
    color:#414141;
    text-decoration:none;
    border-bottom:1px solid #00a8c5;
    transition: 0.5s ease;
}
.dropdown a:hover{
    background:#f89f1f;
    color:#fff;
}

/* ======================
    LEVEL 2
====================== */

.submenu{
    position:absolute;
    left:100%;
    top:0;
    width:280px;
    background:#fff;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}
.submenu a{
    background:#fff;
}

.menu-toggle{
    display:none;
    color:#00a8c5;
    font-size:28px;
    cursor:pointer;
    padding:20px;
}


/* ======================
    FOOTER
====================== */
.footer{
    background:#0d0f11;
    color:#fff;
    padding:60px 0 0;
    position:relative;
}
.footer .container{
    position: relative;
    z-index: 1;
}
.footer::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(0,180,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,255,.06) 1px, transparent 1px);
    background-size:50px 50px;
    z-index: 1;
}
.footer h3{
    font-size:28px;
    margin-bottom:25px;
    padding-bottom:8px;
    color: #fff;
    position: relative;
}
.footer h3:before{
    position: absolute;
    content: '';
    width: 60px;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, #00a8c5, #f89f1f);
}
.footer h4{
    margin-bottom:20px;
    border-left:2px solid #00a8c5;
    padding-left:10px;
    color: #fff;
    font-size: 24px;
}
.doctor-info i{
    margin-right: 5px;
}
.doctor-info span{
    color:#00a8c5;
    font-weight:600;
}
.footer-about{
    margin-top:15px;
    line-height:1.8;
}
.footer-links{
    list-style:none;
    padding-left: 5px;
}
.footer-widget .consult-btn{
    margin-top: 20px;
    display: inline-block;
    background: linear-gradient(45deg, #00a8c542, #f89f1f42);
    text-align: center;
    padding: 14px 25px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid #00a8c566;
}
.footer-widget .consult-btn:hover{
    color: #fff;
    box-shadow: 0px 10px 20px #00849b50;
}
.footer-widget .consult-btn i{
    margin-right: 0;
    margin-left: 10px;
}
.footer-links li{
    margin-bottom:12px;
}
.footer-links i{
    opacity: 0;
    font-size: 13px;
    color: #00a8c5;
    transition: 0.5s ease;
}
.footer-links li:hover i{
    opacity: 1;
}
.footer-links a{
    color:#fff;
    text-decoration:none;
    background: linear-gradient(to right, rgb(0 168 197) 0%, rgb(255 255 255 / 0%) 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
    padding-bottom: 3px;
    margin-left: 8px;
}
.footer-links a:hover{
    color: #f89f1f;
    background-size: 100% 1px;
    margin-left: 10px;
}
.footer .footer-widget{
    margin-bottom: 40px;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2px 35px;
}
.service-title{
    cursor:pointer;
    font-weight:600;
    padding:10px 0;
    display:flex;
    align-items: center;
    justify-content:space-between;
    transition: 0.5s ease;
}
.service-title a{
    color: #fff;
    transition: 0.5s ease;
}
.service-title:hover, .service-title a:hover{
    color: #f89f1f;
}
.service-title i{
    color: #00a8c5;
}
.service-list{
    list-style:none;
    display:none;
    padding-left: 15px;
}
.service-list li{
    margin-bottom: 8px;
    color: #fff;
}
.service-list li a{
    color: #ddd;
    transition: 0.5s ease;
}
.service-list li a:hover{
    color: #fff;
}
.service-list li::before{
    position: relative;
    content:"•";
    font-family: 'FontAwesome';
    color:#00a8c5;
    margin-right:8px;
}
.contact-item{
    margin-bottom:18px;
    position: relative;
    padding-left: 55px;
}
.contact-item i{
    position: absolute;
    left: 0;
    top: 8px;
    background: linear-gradient(45deg, #00a8c535, #f89f1f35);
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #00a8c5;
}
.contact-item a{
    color: #fff;
    transition: 0.5s ease;
}
.contact-item a:hover{
    color: #f89f1f;
}
.contact-item strong{
    display:block;
    margin-bottom:5px;
    font-family: "Playfair Display", serif;
    font-size: 19px;
}
.footer-map{
    width: 100%;
    height: 270px;
    border: 2px solid #005868;
}
.map-btn{
    display:block;
    background:linear-gradient(45deg, #00a8c542, #f89f1f42);
    text-align:center;
    padding:10px;
    color:#fff;
    text-decoration:none;
    transition: 0.3s ease;
}
.map-btn:hover{
    color: #fff;
    box-shadow: 0px 10px 20px #00849b50;
}
.footer-bottom{
    border-top:1px solid rgb(0 168 197 / 31%);
    margin-top:20px;
    padding:25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p{
    margin-bottom: 0;
}
.bottom-social ul li{
    list-style: none;
    display: inline-block;
}
.bottom-social ul li a{
    display: block;
    color: #fff;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 20px;
    background: transparent;
    transition: 0.5s ease;
    margin: 0 5px;
}
.bottom-social ul li a:hover{
    color: #f89f1f;
    background: linear-gradient(45deg, #00a8c535, #f89f1f35);
}

/* ======================
    Banner Slide
====================== */

.hero-slider{
    overflow:hidden;
    background:#f5f5f5;
}
.hero-row{
    display:flex;
    height:550px;
}
.hero-content{
    width:50%;
    padding:70px 45px;
    background:#f4f4f4;
    position:relative;
    overflow:hidden;
}

/* Waves */
.hero-content:before{
    content:"";
    position:absolute;
    width:900px;
    height:450px;
    background:#d8eef4;
    border-radius:50%;
    bottom:-200px;
    left:-100px;
}
.hero-content:after{
    content:"";
    position:absolute;
    width:850px;
    height:350px;
    background:#b8e4ef;
    border-radius:50%;
    bottom:-180px;
    left:-50px;
}
.hero-content>*{
    position:relative;
    z-index:2;
}
.hero-tag{
    width:max-content;
    margin-bottom:25px;
    padding:4px 16px;
    border-radius:30px;
    background:linear-gradient(45deg, #00a8c520, #f89f1f20);
    color:#00a8c5;
    font-weight:600;
    position:relative;
    left: 38%;
    border: 1px solid #00a8c557;
    box-shadow: 0px 0px 9px #00a8c529;
}
.hero-tag:before{
    content:"";
    position:absolute;
    width:197px;
    height:2px;
    background:#00a8c5;
    left:-218px;
    top:50%;
}
.hero-tag:after{
    content:"";
    position:absolute;
    width:185px;
    height:2px;
    background:#f89f1f;
    right:-205px;
    top:50%;
}
.hero-content h1{
    font-size:47px;
    line-height:1.2;
    margin-bottom:12px;
}
.hero-content p{
    font-size:17px;
    line-height:1.7;
    max-width:700px;
}
.hero-image{
    width:50%;
    position:relative;
}
.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Navigation */

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next{
    width:40px;
    height:40px;
    background:#f89f1f;
    color:#fff;
}
.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after{
    font-size:15px;
    font-weight:700;
}
.hero-slider .swiper-button-prev{
    left:calc(50% + 15px);
}
.hero-slider .swiper-button-next{
    right:15px;
}

/* Dots */

.hero-slider .swiper-pagination{
    text-align:left;
    padding-left:40px;
    bottom:60px !important;
}
.hero-slider .swiper-pagination-bullet{
    width:8px;
    height:8px;
    opacity:1;
    background:#f89f1f;
}
.hero-slider .swiper-pagination-bullet-active{
    width:30px;
    border-radius:20px;
    background:#11a7ca;
}
.hero-btns{
    display: flex;
    gap: 12px;
    align-items: center;
}


/* ======================
    About Us
====================== */

.about-section{
    position:relative;
    background:url(../images/about-bg.jpg) center center/cover no-repeat;
    overflow:hidden;
}
.about-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.9);
}
.about-section .container{
    position:relative;
    z-index:2;
}
.about-image-wrap{
    position:relative;
    text-align:center;
}
.shape-circle{
    position:absolute;
    width:180px;
    height:180px;
    background:#00a8c5;
    opacity:.15;
    border-radius:50%;
    top:-40px;
    left:-40px;
}
.doctor-image{
    position:relative;
    display:inline-block;
    border:3px solid #fff;
}
.doctor-image img{
    width:100%;
    max-width:450px;
    display:block;
}
.about-content{
    background:#fff;
    padding:40px 0px 40px 30px;
    position:relative;
}
.about-content::before{
    content:'';
    position:absolute;
    left:0px;
    top:10%;
    width:4px;
    height:80%;
    background:#00a8c5;
}
.about-content::after{
    content:'';
    position:absolute;
    right:-20%;
    top:0;
    width:20%;
    height:100%;
    background:#fff;
}
.about-content h2{
    font-size:44px;
    margin-bottom:10px;
}
.about-content h5{
    color:#00a8c5;
    margin-bottom:4px;
    font-weight:700;
    font-family: "Nunito Sans", sans-serif;
    font-size:19px;
}
.qualification{
    color:#00a8c5;
    font-size:19px;
    font-weight:700;
    margin-bottom:15px;
}
.experience-badge{
    display:inline-block;
    background:#f89f1f;
    color:#fff;
    padding:8px 18px;
    font-weight:600;
    margin-bottom:20px;
    font-size: 19px;
    box-shadow: 0px 2px 7px #c0c0c0;
}
.about-content h3{
    font-size:24px;
    margin-bottom:8px;
}
.about-content p{    
    margin-bottom:25px;
}
.education-list{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}
.education-list li{
    position:relative;
    padding-left:18px;
    margin-bottom:6px;
}
.education-list li::before{
    content:'';
    width:8px;
    height:8px;
    background:#00a8c5;
    position:absolute;
    left:0;
    top:7px;
}
.about-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}


/* ======================
    Service Section
====================== */

.treatment-section{
    background:#fff;
}
.treatment-box{
    border:1px solid #00a8c5;
    background:#fff;
    position:relative;
}
.left-service-banner{
    position:relative;
    height:100%;
}
.left-service-banner, .treatment-content2{
    height: 505px;
}
.left-service-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
/*    min-height:500px;*/
}
.service-banner-content{
    position:absolute;
    left:30px;
    bottom:30px;
    color:#fff;
    z-index:2;
}
.service-banner-content h3{
    font-size:30px;
    margin-bottom:10px;    
    color: #fff;
}
.service-banner-content p{
    max-width:420px;
}
.left-service-banner::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.15)
    );
}
.mini-treatment-section{
    overflow-y: scroll;
    height: 370px;
}
.treatment-content{
    padding:30px;
}
.treatment-content h3{
    font-size:28px;
    margin-bottom:25px;    
}
.treatment-content h3:after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:#f4a21a;
    margin-top:10px;
}
.mini-treatment{
    border:1px solid #00a8c5;
    margin-bottom:14px;
    display:flex;
    align-items:center;
}
.mini-treatment img{
    width:120px;
    height:95px;
    object-fit:cover;
}
.treatment-info{
    flex:1;
    padding:15px;
}
.treatment-info h4{
    margin-bottom:8px;
    font-size:20px;    
}
.treatment-info p{
    margin-bottom: 0;
}
.treatment-content b{
    color: #000;
}
.view-btn{
    border:1px solid #00a8c5;
    padding:6px 12px;
    margin-right:15px;
    text-decoration:none;
    color:#111;
    white-space:nowrap;
    transition: 0.5s ease;
}
.view-btn i{
    margin-left: 5px;
    font-size: 12px;
}
.view-btn:hover{
    color:#111;
    background: #00a8c530;
    box-shadow: 0px 2px 7px #c0c0c0;
}
.treatment-content2 p{
    margin-bottom: 12px;
}
.treatment-content2 .view-btn{
    float: right;
}
.treatment-section .swiper-button-next,
.treatment-section .swiper-button-prev{
    width:40px;
    height:40px;
    background:#f89f1f;
    color:#fff;
}
.treatment-section .swiper-button-prev{
    left: 0;
}
.treatment-section .swiper-button-next{
    right: 0;
}
.treatment-section .swiper-button-next:after,
.treatment-section .swiper-button-prev:after{
    font-size:18px;
}
.treatment-section .swiper-pagination{
    position:relative;
    margin-top:30px;
}
.treatment-section .swiper-pagination-bullet{
    width:9px;
    height:9px;
    opacity:1;
    background:#f89f1f;
    border-radius: 0;
}
.treatment-section .swiper-pagination-bullet-active{
    background:#00a8c5;
}



/* ======================
    CTA
====================== */

.consultation-cta{
    margin-top: 20px;
    background:#ffffff;
}
.cta-box{
    border:1px solid #00bde7;
    padding:22px;
    box-shadow: 0px 6px 20px #0000001c;
}
.cta-content h3{
    font-size:20px;
    margin-bottom:8px;
}
.cta-content p{
    margin:0;
}
.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#f4a21a;
    color:#fff;
    text-decoration:none;

    padding:18px 40px;

    font-size:18px;
    font-weight:600;

    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
}
.cta-btn:hover{
    background:#0bb6dd;
    color:#fff;
}
.cta-btn span{
    font-size:22px;
}


/* ======================
    Tab Section
====================== */

.mental-health-section{
    background: url(../images/about-bg.jpg) center center/cover no-repeat;    
    position:relative;
    overflow: hidden;
    background-attachment: fixed;
}
.mental-health-section:before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}
.mental-health-section .container{
    position: relative;
}
.mental-health-section .section-title h2, .mental-health-section .section-title p{
    color: #fff;
}
.mental-heading span{
    display:block;
    width:70px;
    height:3px;
    background:#00a8c5;
    margin:15px auto;
}
.mh-tabs{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:40px 0;
    flex-wrap:wrap;
}
.mh-tab{
    border:none;
    background:#fff;
    padding:10px 25px;
    cursor:pointer;
    border-bottom: 2px solid #00a8c5;
    transition: 0.5s ease;
}
.mh-tab.active{
    font-weight: 700;
    color: #000;
}
.mh-tab:hover{
    transform: scale(1.05);
}
.mh-content{
    display:none;
}
.mh-content.active{
    display:block;
}
.mh-box{
    background:#f7f7f7;
    border:1px solid #00a8c5;
    padding:35px;
}
.mh-title{
    font-size:28px;
    font-family: "Playfair Display", serif;
    border-bottom: 1px solid #00a8c5;
    margin-bottom:25px;
    padding-bottom:20px;
    color: #000;
    font-weight: 700;
}
.mh-title i{
    color: #00a8c5;
    margin-right: 10px;
}
.mh-principles{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.mh-principles h4, .mh-disorder h4{
    font-size: 18px;
    margin-bottom: 5px;
}
.mh-principles p, .mh-disorder p{
    margin-bottom: 0;
}
.mh-card{
    border:1px solid #00a8c5;
    padding:25px;
    background:#fff;
    position: relative;
    padding-left: 68px;
    transition: 0.3s ease;
}
.mh-card:hover, .mh-disorder:hover, .help-card:hover{
    box-shadow: 0px 6px 20px #0000001c;
    transform: translateY(-5px);
}
.mh-card i{
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: linear-gradient(45deg, #00a8c530, #f89f1f30);
    color: #00a8c5;
    position: absolute;
    left: 20px;
    top: 27px;
    border-radius: 5px;
}
.mh-disorder{
    border:1px solid #00a8c5;
    padding:20px;
    margin-bottom:20px;
    background:#fff;
    transition: 0.3s ease;
}
.help-card{
    border:1px solid #00a8c5;
    background:#fff;
    text-align:center;
    padding:25px 20px;
    height:100%;
    transition: 0.3s ease;
}
.help-icon{
    font-size:18px;
    margin:0 auto 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(45deg, #00a8c530, #f89f1f30);
    color: #00a8c5;
    border-radius: 50%;
}
.help-card a{
    color:#00a8c5;
    text-decoration:none;
    font-weight:700;
}
.dare-care{
    margin-top: 50px;
}

/* ======================
    Counter Section
====================== */

.counter-section{
    position:relative;
    background:#f7f7f5;

    background-image:
    radial-gradient(#b8edf7 1px, transparent 1px);

    background-size:22px 22px;

    overflow:hidden;
}
.counter-section .section-title h3{
    color: #5e5e5d;
}
.counter-box{
    background:linear-gradient(45deg, #00a8c520, #f89f1f20);
    padding:30px 20px;
    text-align:center;
    position:relative;
    transition:.4s;
}
.counter-box:hover{
    background: linear-gradient(45deg, #00a8c510, #f89f1f10);
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.1);
}
.counter-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    border:2px solid #00a8c573;
    margin:auto;
    margin-bottom:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    background: #00a8c51f;
}
.counter-icon span{
    width:24px;
    height:24px;
    background:#00a8c5;
    border-radius:50%;
}
.counter-box h3{
    display:inline-block;
    font-size:50px;
    font-weight:700;
    color:#000;
    margin:0;
    font-family: "Nunito Sans", sans-serif;
}
.plus{
    font-size:50px;
    font-weight:700;
    color:#000;
}
.counter-box h4{
    margin-top:8px;
    font-size:18px;
    font-weight:700;
    color:#666;
}
.counter-line{
    width:55px;
    height:4px;
    background:#00a8c5;
    margin:20px auto 0;
    border-radius: 20px;
}
.circle{
    position:absolute;
    border-radius:50%;
    background:rgba(0,184,217,.12);
}
.circle-left{
    width:130px;
    height:130px;
    top:20px;
    left:40px;
}
.circle-right{
    width:140px;
    height:140px;
    right:40px;
    bottom:40px;
    background: rgb(248 159 31 / 8%);
}


/* ======================
    Professional Journey
====================== */

.journey-section{
    position:relative;
    background:url(../images/about-bg.jpg) center center/cover no-repeat;
    overflow: hidden;
    background-attachment: fixed;
}
.journey-section .section-title h2, .journey-section .section-title p{
    color: #fff;
}
.journey-section .section-title p{
    font-size: 19px;
    margin-top: 12px;
}
.journey-section .overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.9);
}
.journey-section .container{
    position:relative;
    z-index:2;
}
.timeline-slider{
    position:relative;
    margin: 0 30px;
}
.timeline-slider:before{
    content:'';
    position:absolute;
    top:180px;
    left:0;
    width:100%;
    height:2px;
    background:#00a8c5;
}
.timeline-item{
    text-align:center;
    padding-top:20px;
}
.timeline-year{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    position:relative;
    font-size:20px;
    font-weight:700;
    color: #000;
}
.timeline-year:before{
    content:'';
    position:absolute;
    inset:-20px;
    border-radius:50%;
    animation:pulse 2.5s infinite;
    z-index: -1;
}
.journey-section .blue{
    border:4px solid #00a8c5;
}
.journey-section .blue:before{
    border:20px solid rgb(0 168 197 / 35%);
}
.journey-section .gold{
    border:4px solid #f89f1f;
}
.journey-section .gold:before{
    border:20px solid rgba(242,165,26,.35);
}
@keyframes pulse{

    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.3);
        opacity:0;
    }
}
.timeline-year:after{
    content:'';
    position:absolute;
    width:2px;
    height:45px;
    background:#00a8c5;
    top:100%;
}
.gold:after{
    background:#f89f1f;
}
.timeline-card{
    margin-top:40px;
    background:#fff;
    padding:20px 20px 15px;
    text-align:left;
    border:2px solid #00a8c5;
    transition: 0.5s ease;
}
.timeline-card:hover{
    transform: translateY(-8px);
}
.timeline-card h3{
    font-size:19px;
    margin-bottom:15px;
}
.timeline-card h3 i{
    font-size: 19px;
}
.timeline-card h3 i, .timeline-card div i{
    margin-right: 8px;
    color: #00a8c5;
}
.timeline-card div{
    margin-bottom: 3px;
}
.timeline-card div:last-child{
    margin-bottom: 0;
}
.timeline-card .designation{
    color:#00a8c5;
    font-weight:700;
}
.journey-prev,
.journey-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    background:#fff;
    color:#00a8c5;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:20;
    font-size:20px;
    border: 1px solid #00a8c585;
}
.journey-prev{
    left:-65px;
}
.journey-next{
    right:-65px;
}
.experience-box{
    margin:60px auto 0;
    background:linear-gradient(45deg, #c3c1c1, #fff, #b1b1b1);
    padding:12px 25px 8px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    width:fit-content;
    border: 2px solid #00a8c5;
}
.exp-year{
    color:#00a8c5;
}
.exp-text, .exp-year{
    font-size:20px;
    font-weight:700;
}
.exp-text i{
    color: #f89f1f;
}
.divider{
    width:1px;
    height:40px;
    background:#ccc;
}


/* ======================
    Why Choose Us
====================== */

.why-doctor-section{
    background:#fff;
}

@media(min-width:1200px){
    .why-doctor-section .container{
        width: 1020px;
    }
}

.why-title{
    font-size:48px;
    margin-bottom:10px;
}

.why-subtitle{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    font-size:28px;
}

.why-subtitle .dot{
    color:#00a8c5;
}

.why-doctor-section .designation{
    color:#00a8c5;
    font-weight:700;
    font-size: 21px;
}

.experience{
    color:#00a8c5;
    font-size: 21px;
}

.experience i{
    color:#f89f1f;
    margin-right: 5px;
}

.title-line{
    width:90px;
    height:4px;
    background:#f89f1f;
    margin:18px auto 40px;
}

.why-content p{
    font-size:19px;
    line-height:1.6;
    color: #000;
}

.middle-divider{
    position:relative;
    text-align:center;
    margin:40px 0;
    overflow: hidden;
}

.middle-divider:before{
    content:'';
    position:absolute;
    width:100%;
    height:1px;
    background:#00a8c570;
    top:50%;
    left: 0;
}

.middle-divider span{
    width:90px;
    height:45px;
    background:#fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    color:#00a8c5;
/*    border:2px solid #00a8c5;*/   
    font-size: 30px;
}

.orange span{
    color:#f89f1f;
    border-color:#f89f1f;
}
.middle-divider.orange:before{
    background: #f89f1f70;
}

.reason-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:40px;
}

.reason-title i{
    color:#00a8c5;
    font-size:26px;
}

.reason-title h3{
    font-size:32px;
    margin:0;
}

.reason-box{
    border-left:3px solid #00a8c5;
    background:#fff;
    padding:23px 28px;
    margin-bottom:15px;
    box-shadow:0 0 15px rgba(0,0,0,.05);
    font-size:20px;
    color: #000;
}

.reason-box i{
    color:#00a8c5;
    margin-right:15px;
}

.family-box{
    border-top:2px solid #00a8c550;
    border-bottom:2px solid #00a8c550;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    padding:45px;
    margin-top:40px;
}

.family-box h3{
    font-size:32px;
    margin-bottom:25px;
}

.family-box h3 i{
    color:#00a8c5;
    margin-right: 10px;
}

.family-box p{
    font-size:18px;
    line-height:1.7;
    margin-bottom: 0;
}

.doctor-buttons{
    margin:50px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.trust-footer{
    border-top:1px solid #00a8c5;
    padding-top:35px;
    text-align:center;
    font-size:18px;
}

.trust-footer i{
    color:#00a8c5;
    margin-right:10px;
}

.trust-footer strong{

}

.trust-footer span{
    margin:0 15px;
    color:#000;
}



/* ======================
    Inner About Us
====================== */


.dvp-profile-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.dvp-image-wrapper{
    position:relative;
}

.dvp-exp-box{
    position:absolute;
    top:-15px;
    left:-15px;
    background:#f7a31a;
    color:#fff;
    text-align:center;
    z-index:5;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    padding: 8px 10px;
}

.dvp-exp-box h2{
    font-size:36px;
    margin:0;
    font-weight:700;
    color: #fff;
    margin-bottom: -5px;
    font-family: "Nunito Sans", sans-serif;
}

.dvp-exp-box span{
    font-size:16px;
}

.dvp-image-box{
    padding:14px;
    background:#e2f7fb;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.dvp-image-box img{
    width:100%;
    display:block;
}

.dvp-social-icons{
    margin-top:22px;
    display:flex;
    gap:12px;
    justify-content: center;
}

.dvp-social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    transition:.4s;
}

.dvp-social-icons a:hover{
    transform:translateY(-6px);
}

.dvp-whatsapp{background:#25D366;}
.dvp-facebook{background:#1877F2;}
.dvp-instagram{background:linear-gradient(90deg, #a8296d, #c72acd);}
.dvp-linkedin{background:#0A66C2;}
.dvp-twitter{background:#000;}
.dvp-youtube{background:#FF0000;}

.dvp-doctor-name{
    font-size:46px;
    margin-bottom:10px;
}

.dvp-content-flex{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom:10px;
}

.dvp-designation{
    color:#00acd7;
    font-size:22px;
    margin-bottom:0px;
    font-family: "Nunito Sans", sans-serif;
}

.dvp-degree-list{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
}

.dvp-degree-list span{
    padding:4px 13px 2px;
    border:1px solid #8ddff2;
    background:#e2f7fb;
    color:#009fd0;
    font-weight:700;
}

.dvp-contact-box{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.dvp-contact-icon{
    width:42px;
    height:42px;
    background:#e2f7fb;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#00acd7;
    margin-right:15px;
    font-size:20px;
}

.dvp-contact-text{
    font-size:20px;
    font-weight:600;
    color: #000;
}

.dvp-contact-text a{
    color: #000;
}

.dvp-contact-text a:hover{
    color: #5e5e5e;
}

.dvp-about-content p{
    margin-bottom:18px;
    color: #000;
}


/* ======================
    Expertise Section
====================== */

.drvt-expertise-sec{
    background:#fff;
}

.drvt-exp-heading{
    margin-bottom:70px;
}

.drvt-exp-card{
    border: 1px solid #00a8c5;
    border-left:4px solid #f89f1f;
    background:#fff;
    padding:30px;
    height:100%;
}
.drvt-exp-top{
    display:flex;
    gap:22px;
}

.drvt-exp-iconbox{
    width:60px;
    height:60px;
    border:1px solid #00a8c5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#00a8c5;
    position:relative;
    flex-shrink:0;
    background: linear-gradient(45deg, #00a8c510, #f89f1f10);
}

.drvt-exp-iconbox:before{
    content:"";
    position:absolute;
    width:12px;
    height:12px;
    background:#00a8c5;
    top:-6px;
    right:-6px;
}

.drvt-exp-top h3{
    font-size:21px;
    margin-bottom:8px;
}

.drvt-exp-top p{    
}

.drvt-exp-special{
    margin-top:20px;
    margin-bottom:10px;
    position:relative;
    padding-left: 30px;
}

.drvt-exp-special span{
    color:#00a8c5;
    font-weight:700;
    text-transform:uppercase;
    background:#fff;
    padding:0 10px;
    position:relative;
    z-index:2;
    font-size:18px;
}

.drvt-exp-special:before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:2px;
    width: 47%;
    background:#00a8c5;
    z-index:1;
}

.drvt-exp-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.drvt-exp-tags span{
    padding:5px 14px;
    border:1px solid #00a8c5;
    color: #000;
    transition:.3s;
    background: linear-gradient(45deg, #00a8c510, #00a8c500);
}

.exp-date-year{
    background: #00a8c520;
    color: #000;
    padding: 3px 15px 1px;
    display: inline-block;
    border: 1px solid #00a8c550;
    font-weight: 600;
}

#awards .drvt-exp-top h3{
    margin: 12px 0 18px;
}

#awards .drvt-exp-iconbox{
    color: #f89f1f;
}

#awards .drvt-exp-iconbox:before{
    display: none;
}


/*==========================
Education Section
===========================*/

.drvt-edu-sec{
    background:#fff;
}

.drvt-edu-card{
    background:#fff;
    border:1px solid #00a8c5;
    border-top:4px solid #f89f1f;
    padding:28px;
    height:100%;    
    position:relative;
    overflow:hidden;
}

.drvt-edu-card:before{
    content:'';
    position:absolute;
    width:120%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(9,181,226,.06),transparent);
    top:0;
    left:-130%;
    transition:.7s;
}

.drvt-edu-card:hover:before{
    left:100%;
}

.drvt-edu-card h3{
    font-size:22px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:12px;
    color:#111;
}

.drvt-edu-year{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#eefbff;
    border:1px solid #9ee6fb;
    padding:5px 15px;
    margin-bottom:25px;
}

.drvt-edu-year i{
    color:#08a8d7;
}

.drvt-edu-year span{
    font-size:18px;
    font-weight:700;
    color:#111;
}

.drvt-edu-divider{
    height:1px;
    background:#00a8c5;
    margin-bottom:20px;
}

.drvt-edu-label{
    display:flex;
    align-items:center;
    gap:12px;
    color:#08a8d7;
    text-transform:uppercase;
    font-size:16px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:5px;
}

.drvt-edu-label i{
    font-size:18px;
}

.drvt-edu-card h4{
    font-size:20px;
    font-weight:700;
    color:#111;
    line-height:1.4;
    margin:0;
    font-family: "Nunito Sans", sans-serif;
}


/*==================================================
        STOP EXCLUSION SECTION
==================================================*/

.smwc-card{
    position:relative;
    background:#fff;
    border:1px solid #00a8c5;
    border-top:3px solid #f89f1f;
    padding:28px;
/*    min-height:280px;*/
}

.smwc-card-icon{
    width:58px;
    height:58px;
    border:1px solid #00a8c5;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    color:#00a8c5;
    margin-bottom:25px;
}

.smwc-card h4{
    font-size:22px;
    margin-bottom:15px;
}

.smwc-card p{
    margin-bottom: 0;
}

/* Arrow */

.smwc-arrow{
    position:absolute;
    right:-15px;
    bottom:-1px;
    width:28px;
    height:28px;
    border-right:2px solid #66d8ff;
    border-top:2px solid #66d8ff;
    transform:rotate(-45deg);
}

/*==================================================
Warning Section
==================================================*/

.sec-alert-wrapper{
    margin-top:40px;
}

.sec-warning-box,
.sec-important-box{
    background:#fff;
    border:1px solid #00a8c5;
    padding:32px;
    height:100%;
}

.sec-alert-title{
    font-size:26px;
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:20px;
}

.sec-alert-title i{
    color:#00a8c5;
}

.sec-orange i{
    color:#f89f1f;
}

.sec-alert-desc{
    color: #000;
    margin-bottom:22px;
}

.sec-warning-list{
    list-style:none;
    padding:0;
    margin:0;
}

.sec-warning-list li{
    position:relative;
    padding-left:22px;
    margin-bottom:8px;    
    color: #000;
}

.sec-warning-list li:before{
    content:"";
    width:8px;
    height:8px;
    background:#00a8c5;
    position:absolute;
    left:0;
    top:9px;
}

.sec-info-item{
    display:flex;
    align-items:center;
    gap:15px;
    border:1px solid #00a8c5;
    padding:14px 18px;
    margin-bottom:14px;
    background: #00a8c505;
}

.sec-info-item span{
    width:36px;
    height:36px;
    border:1px solid #00a8c5;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#00a8c5;
    font-weight:700;
    background: #fff;
}

/*==================================================
Quote Section
==================================================*/

.smwc-quote{
    position:relative;
    background:linear-gradient(90deg,#edfafd,#fffdf6);
    border:1px solid #bfe9f4;
    padding:50px 20px 40px;
    text-align:center;
    margin-top: 50px;
}

/* Decorative Corners */

.smwc-corner{
    position:absolute;
    width:30px;
    height:30px;
}

.smwc-top-left{
    top:30px;
    left:100px;
    border-top:1px solid #00a8c5;
    border-left:1px solid #00a8c5;
}

.smwc-bottom-right{
    right:100px;
    top:100px;
    border-right:1px solid #00a8c5;
    border-bottom:1px solid #00a8c5;
}

.smwc-quote blockquote{
    font-size:24px;
    font-style:italic;
    color:#000;
    line-height:1.45;
    max-width:950px;
    margin:0 auto 30px;
}

/*==================================================
Counter
==================================================*/

.smwc-counter{
    padding:14px 10px 12px;
    color:#fff;
    margin-bottom:15px;
}

.smwc-counter.blue{
    background:#00a8c5;
}

.smwc-counter.orange{
    background:#f89f1f;
}

.smwc-counter h2{
    color:#fff;
    font-size:36px;
    margin:0;
    font-weight:700;
    font-family: "Nunito Sans", sans-serif;
}

.smwc-quote p{
    margin: 0;
}



/*==================================================
    CONTACT & CONSULTATION
==================================================*/

.dcc-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.dcc-section .row{
    gap: 25px 0;
}

.dcc-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(to right,rgba(8,169,220,.08) 1px,transparent 1px),
    linear-gradient(to bottom,rgba(8,169,220,.08) 1px,transparent 1px);
    background-size:64px 64px;
    pointer-events:none;
}

/*========================
Cards
========================*/

.dcc-card{
    background:#fff;
    border:1px solid #bdeefe;
    padding:30px;
    position:relative;
    z-index:2;
    height:100%;
}

.dcc-card h3{
    font-size:30px;
    margin-bottom:12px;
}

.dcc-card h3 i{
    color:#00a8c5;
    margin-right:10px;
}

.dcc-card h4{
    font-size:22px;
    margin-top:25px;
    margin-bottom:10px;
}

.dcc-card h5{
    font-size:22px;
    font-weight:600;
    margin-bottom:13px;
    font-family: "Nunito Sans", sans-serif;
    color: #4e4e4e;
}

.dcc-card hr{
    color: #00a8c5;
}

/*========================
Degrees
========================*/

.dcc-degree{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
    margin-bottom:20px;
}

.dcc-degree span{
    border:1px solid #9edff4;
    background:#eefbff;
    padding:3px 18px 1px;
    font-weight:600;
}


.dcc-about{
    margin-bottom:30px;
}


.dcc-list{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.dcc-list li{
    position:relative;
    padding-left:20px;
    margin-bottom:8px;
}

.dcc-list li::before{
    content:"";
    width:8px;
    height:8px;
    background:#f89f1f;
    position:absolute;
    left:0;
    top:9px;
    border-radius: 50%;
}

/*========================
Contact
========================*/

.dcc-contact{
    border-top:1px solid #d9eef5;
    border-bottom:1px solid #d9eef5;
    padding:20px 0;
    margin-bottom:25px;
}

.dcc-contact-item{
    display:flex;
    align-items:center;
    margin-bottom:15px;
}

.dcc-contact-item:last-child{
    margin-bottom:0;
}

.dcc-contact-item i{
    width:38px;
    height:38px;
    background:#e3f6fb;
    color:#00a8c5;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:14px;
}

.dcc-contact-item a{
    font-weight:700;
    color:#000;
    font-size:18px;
}

.dcc-social h6{
    font-size:20px;
    margin-bottom:20px;
}

.dcc-social .dvp-social-icons{
    justify-content: start !important;
}


/*========================
Form
========================*/

.dcc-field{
    margin-bottom:20px;
}

.dcc-field label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#111;
}

.dcc-field label i{
    color:#f89f1f;
    margin-right:8px;
}

.dcc-field input,
.dcc-field textarea{
    width:100%;
    border:1px solid #bdeefe;
    padding:12px 20px;
    outline:none;
    font-size:15px;
    background:#fff;
}

.dcc-field textarea{
    height: 100px;
}

.dcc-field input:focus,
.dcc-field textarea:focus{
    border-color:#00a8c5;
}

.dcc-card form .btn-1{
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

.dcc-card iframe{
    border:1px solid #bdeefe;
    margin-bottom:18px;
    width: 100%;
    height: 200px;
}


/*=========================================
    HOSPITAL ATTACHMENTS
=========================================*/

.hat-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.hat-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(to right,rgba(8,169,220,.06) 1px,transparent 1px),
    linear-gradient(to bottom,rgba(8,169,220,.06) 1px,transparent 1px);
    background-size:64px 64px;
    pointer-events:none;
}

.hat-section .container{
    position:relative;
    z-index:2;
}

/*==========================
Cards
==========================*/

.hat-card{
    background:#fff;
    border:1px solid #bfefff;
    height:100%;
    position:relative;
    overflow:hidden;
}

.hat-badge{
    position:absolute;
    top:8px;
    left:8px;
    background:#f89f1f;
    color:#fff;
    padding:3px 10px;
    font-size:15px;
    font-weight:600;
    z-index:5;
}

.hat-badge i{
    margin-right:5px;
}

/*==========================
Map
==========================*/

.hat-map{
    height:200px;
}

.hat-map iframe{
    width:100%;
    height:100%;
    border:none;
    display:block;
}

/*==========================
Content
==========================*/

.hat-content{
    padding:20px;
}

.hat-content h3{
    font-size:23px;
    margin-bottom:6px;
    line-height:1.3;
}

.hat-content h3 span{
    color:#f89f1f;
    font-size:18px;
    margin-left:5px;
}

.hat-line{
    width:70px;
    height:3px;
    background:linear-gradient(45deg, #00a8c5, #f89f1f);
    margin-bottom:25px;
}

/*==========================
Information
==========================*/

.hat-info{
    margin-bottom:26px;
}

.hat-info h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
    color:#222;
    font-family: "Nunito Sans", sans-serif;
}

.hat-info h5 i{
    color:#00a8c5;
    margin-right:8px;
    width:18px;
}

.hat-info:nth-child(4) h5 i{
    color:#f89f1f;
}

.hat-info p{
    margin:0;
}

.hat-note{
    margin-top:40px;
    text-align:center;
}



/*=========================================
        PATIENT TESTIMONIALS
=========================================*/

.tstm-section{
    position:relative;
    background:#fff;
    overflow:hidden;
}

.tstm-section-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tstm-section .container{
    position:relative;
    z-index:2;
}

.tstm-card{
    position:relative;
    background:#fff;
    border:1px solid #d8eef6;
    padding:30px;
    height:100%;
    transition: 0.5s ease;
    box-shadow: 0px 0px 20px #dddddd70;
}

.tstm-card:hover{
    transform: translateY(-10px);
}

.tstm-card:before{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:2px;
    height:35px;
    background:#00a8c58c;
}

.tstm-card:after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:35px;
    height:2px;
    background:#00a8c58c;
}

.tstm-quote-icon{
    position:absolute;
    top:15px;
    right:25px;
    font-size:60px;
    color:#e8f8fd;
    line-height:1;
}

.tstm-rating{
    display:flex;
    align-items:center;
    gap: 15px;
    margin-bottom:15px;
}

.tstm-stars{
    display:flex;
    gap:3px;
}

.tstm-stars i{
    color:#f89f1f;
    font-size:16px;
}

.tstm-rating span{
    color:#505050;
    font-weight:500;
}

.tstm-review{
    margin-bottom:20px;
    min-height:80px;
    font-style: italic;
}

.tstm-treatment{
    background:linear-gradient(45deg, #00a8c510, #f89f1f10);
    border-left:4px solid #00a8c5;
    padding:12px 20px;
    margin-bottom:25px;
    transition: 0.5s ease;
}

.tstm-card:hover .tstm-treatment{
    border-color: #f89f1f;
}

.tstm-treatment h6{
    font-size:17px;
    font-weight:700;
    color:#111;
    margin-bottom:3px;
}

.tstm-treatment p{
    margin:0;
    color:#505050;
    font-size:16px;
    line-height:26px;
}

.tstm-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding-top:20px;
    border-top:1px solid #e8eef2;
}

.tstm-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.tstm-user-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#f89f1f;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:18px;
    flex-shrink:0;
}

.tstm-user-info h5{
    font-size:18px;
    font-weight:700;
    color:#111;
    margin:0;
}

.tstm-user-info span{
    font-size:15px;
    color:#505050;
}

.tstm-date{
    color:#505050;
    font-size:14px;
    white-space:nowrap;
}

.tstm-date i{
    color:#00a8c5;
    margin-right:6px;
}

/*==================================================
        SERVICE INNER PAGE
==================================================*/

.mhip-section{
/*    background:#f8fbfd;*/
}

.mhip-sidebar{
    border: 1px solid #00a8c550;
    padding: 20px;
    box-shadow: 0px 0px 20px #dddddd70;
}

.mhip-sidebar h2{
    font-size: 30px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #00a8c550;
}

.mhip-menu-group{
    margin-bottom:30px;
}

.mhip-group-title{
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 26px;
}

.mhip-menu-group p{
    display: flex;
    gap: 10px;
    color: #000;
    align-items: baseline;
}

.mhip-menu-group p i{
    color: #00a8c5;
}

.mhip-menu-group p a{
    color: #000;
}

.mhip-menu-group p a:hover{
    color: #00a8c5;
}

.mhip-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.mhip-menu li{
    margin-bottom: 7px;
}

.mhip-menu li:last-child{
    margin-bottom: 0;
}

.mhip-menu li a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 20px;
    color:#000;
    text-decoration:none;
    transition:.35s;
    border: 1px solid #00a8c550;
}

.mhip-menu li a i{
    color:#00a8c5;
    font-size:13px;
    transition:.35s;
}

.mhip-menu li a:hover, .mhip-menu li.active a{
    background:linear-gradient(45deg, #00a8c520, #f89f1f20);
    color:#000;
    font-weight: 700;
}

.mhip-menu li a:hover i{
    transform:translateX(3px);
}

.mhip-help-box{
    background:linear-gradient(90deg, #f89f1f42, #f89f1f33, #f89f1f17);
    padding:22px;
    border-left: 3px solid #00a8c5;
}

.mhip-help-box h3{
    font-size:22px;
    line-height:32px;
    margin-bottom:12px;
}

.mhip-help-box h3 span{
    display:block;
}

.mhip-help-box p{
    margin-bottom:10px;
}

.mhip-help-box ul {
    margin-bottom:10px;
}

.mhip-help-box ul li{
    list-style: none;
    position: relative;
    padding-left: 18px;
}

.mhip-help-box ul li:before{
    position: absolute;
    content: '\f0c8';
    font-family: "FontAwesome";
    left: 0;
    top: -1px;
    font-size: 8px;
    color: #00a8c5;
}

.mhip-help-box ul li+li{
    margin-top: 3px;
}

.mhip-banner{
    position:relative;
    overflow:hidden;
    min-height:420px;
    margin-bottom:45px;
}

.mhip-banner img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.mhip-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent, #00000070, #000000db);
}

.mhip-banner-content{
    position:absolute;
    left:35px;
    bottom:35px;
    color:#fff;
    z-index:5;
}

.mhip-banner-content h1{
    font-size:36px;
    margin-bottom:12px;
    color: #fff;
}

.mhip-banner-content p{
    margin:0;
}


.mhip-content-section{
    background:#fff;
    border:1px solid #00a8c54f;
    padding:30px;
    margin-bottom:35px;
    box-shadow: 0px 0px 20px #dddddd70;
}

.mhip-content-section:last-child{
    margin-bottom:0;
}

.mhip-section-heading{
    display:flex;
    align-items:center;
    margin-bottom:15px;
    position:relative;
}

.mhip-section-heading span{
    width:35px;
    height:35px;
    background:#f89f1f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
    margin-right:12px;
    flex-shrink:0;
}

.mhip-section-heading h2{
    margin:0;
    font-size:26px;
}

.mhip-content-section p{
    margin-bottom:12px;
}

.mhip-content-section p:last-child{
    margin-bottom:0;
}

.mhip-list{
    list-style:none;
    margin:0;
    padding:0;
}

.mhip-list li{
    position:relative;
    padding-left:20px;
    margin-bottom:7px;
}

.mhip-list li:last-child{
    margin-bottom:0;
}

.mhip-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:7px;
    height:7px;
    background:#00a8c5;
}

.mhip-treatment-box{
    background:#f8f8f8a3;
    border:1px solid #ededed;
    padding:20px;
    height:100%;
    transition:.35s;
}

.mhip-treatment-box:hover{
    border-color:#00a8c5;
}

.mhip-treatment-box h4{
    font-size:20px;
    margin-bottom:10px;
}

.mhip-treatment-box p{
    margin:0;
}

.box-content{
    background: linear-gradient(45deg, #00a8c510, #f89f1f10);
    border: 1px solid #00a8c53d;
    padding: 8px 18px;
    font-weight: 500;
    margin-top: 12px;
}

.mhip-consultation{
    background: #00a8c5;
    text-align: center;
    padding: 30px;
    box-shadow: 0px 0px 20px #dddddd70;
}
.mhip-consultation h3{
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
}
.mhip-consultation p{
    color: #fff;    
}


.btn-whatsapp-pulse {
    background: #07b849;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 32px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9;
}

.btn-whatsapp-pulse:hover{
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}