@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*, *:before, *:after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:root 
{
    --primary-color : #212B5C;
    --secondary-color: #ff6f0a;
    --border-bottom-color:#434c79;
    --box-shadow: 0px -1px 14px 2px rgba(0, 0, 0, 0.08); 
    --white-color:#fff;
    --dark-color:#01224F;
    --border:#D5D0E4;
    --font-family: "Philosopher", sans-serif;
    --black:#000;
    --background-color:#06615C;
    --dark-accent-color: #020f4e;
    --background-light-color:#d7e2f5;
}
body 
{
    font-family: var(--font-family) !important;
}
.section-block 
{
    margin:40px 0px 40px 0px !important;
}
/* page_hero_section_css */
.branch-hero-section{
    padding:90px 0;
    overflow:hidden;
    background:linear-gradient(135deg,#f8fbff 0%,#ffffff 55%,#eef5ff 100%);
}

.branch-hero-content{
    padding-right:45px;
}

.hero-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    width:95%;
}

.hero_component_left_sec{
    flex:0 0 50%;
    max-width:50%;
}

.hero_component_right_sec{
    flex:0 0 50%;
    max-width:50%;
}

@media(max-width:991px){

.hero-section{
    flex-direction:column;
    gap:40px;
}

.hero_component_left_sec,
.hero_component_right_sec{
    flex:0 0 100%;
    max-width:100%;
    width:100%;
}

.branch-hero-content{
    padding-right:0;
}

}

@media(max-width:767px){

.hero-section{
    flex-direction:column;
    gap:25px;
}

.hero_component_left_sec,
.hero_component_right_sec{
    width:100%;
    max-width:100%;
}

}

.hero-badge{
    display:inline-block;
    background:#fff7e7;
    color:var(--dark-color);
    padding:8px 18px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:20px;
    font-family:var(--font-family);
}


.hero-title{

    font-family:var(--font-family);
    color:var(--primary-color);
    font-size:58px;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-description{

    color:#5b6484;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    font-family:var(--font-family);
}

.hero-btn{

    background:var(--secondary-color);
    color:var(--primary-color);
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.hero-btn:hover{

    background:var(--primary-color);
    color:#fff;
}

.hero-slider-wrapper{

    position:relative;
}

.branchHeroSwiper{

    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.branchHeroSwiper img{
    width: 110%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hero-shape{

    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,175,46,.15);
    top:-30px;
    right:-30px;
    z-index:-1;
}

@media(max-width:991px){

.hero-title{

    font-size:42px;
}

.branch-hero-content{

    text-align:center;
    padding-right:0;
    margin-bottom:40px;
}

.branchHeroSwiper img{

    height:420px;
}
.branch-hero-content{
    text-align:center;
}

}

@media(max-width:767px){

.branch-hero-section{

    padding:0px 0px !important;
}
.hero-title, .hero-description 
{
    text-align: start !important;
}
.hero-btn-group{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    flex-wrap:nowrap;
}

.hero-btn,
.direction-btn{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.direction-btn{
    margin-top:3px;
}

.hero-badge{
    display:table;
    margin:0 0 20px 0;
}


.hero-title{

    font-size:34px;
}

.hero-description{

    font-size:16px;
}

.branchHeroSwiper img{

    height:300px;
}
.hero-slider-wrapper
{
    margin-top:10px !important;
}

.hero-shape{

    width:110px;
    height:110px;
}
.right-side-carousel
{
    margin-top:10px !important;
}

}
.book-appointment a {
            background: #ff6f0a;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            padding: 15px 35px 15px 15px;
            color: #fff;
            transition: all 0.3s;
            position:relative;
            @media (max-width:767px){
                padding: 12px 20px 12px 8px;
                font-size: 12px;
            }
             @media (max-width:991px){
                margin-left: auto;
             }
            &:after{
            	transition: all .5s;
                background: url("../../btn-arrow.svg") no-repeat;
                content: '';
                width: 20px;
                height: 20px;
                position: absolute;
                top: 21px;
                bottom: 0;
                right: 7px;
                @media (max-width:767px){
                    top: 14px;
                    background-size: 60%;
                    right: -3px;
                }
            }
            &:hover {
                background: #212B5C;
                color: #fff;
                transition: all 0.3s;
                &:after{
                    filter: brightness(0) invert(1);
                    animation: mymove 600ms ease;
                    animation-iteration-count: infinite;
                    @media (max-width:767px){
                        right: -3px !important;
                    }
                }
            }
        }


.hero-btn-group{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.direction a {
            background: #ff6f0a;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            padding: 15px 35px 15px 15px;
            border-radius: 0px !important;
            border:none !important;
            color: #fff;
            transition: all 0.3s;
            position:relative;
            @media (max-width:767px){
                padding: 12px 20px 12px 8px;
                font-size: 12px;
            }
             @media (max-width:991px){
                margin-left: auto;
             }
            &:after{
            	transition: all .5s;
                background: url("../../btn-arrow.svg") no-repeat;
                content: '';
                width: 20px;
                height: 20px;
                position: absolute;
                top: 21px;
                bottom: 0;
                right: 7px;
                @media (max-width:767px){
                    top: 14px;
                    background-size: 60%;
                    right: -2px;
                }
            }
            &:hover {
                background: #212B5C;
                color: #fff;
                transition: all 0.3s;
                &:after{
                    filter: brightness(0) invert(1);
                    animation: mymove 600ms ease;
                    animation-iteration-count: infinite;
                    @media (max-width:767px){
                        right: -3px !important;
                    }
                }
            }
        }

/* about component section css*/
.about-branch-section{
    overflow:hidden;
}

.about-image-wrapper{
    position:relative;
}

.about-image{
    width:100%;
    height:480px !important;
    object-fit:cover;
    object-position:center;
    border-radius:20px;
    box-shadow:var(--box-shadow);
}
.google-rating-card{
    position:absolute;
    left:25px;
    bottom:-25px;
    background:var(--white-color);
    padding:15px 22px 30px 22px;
    border-radius:15px;
    box-shadow:var(--box-shadow);
}

.rating-star{
    color:var(--secondary-color);
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:8px;
}

.google-rating-card h5{
    margin:0;
    color:var(--primary-color);
    font-family:var(--font-family);
}

.google-rating-card span{
    font-size:14px;
    color:#666;
}

.about-content{
    padding-left:30px;
    text-align:left;
}

.about-badge{
    display:inline-block;
    background:#fff7e7;
    color:var(--dark-color);
    padding:8px 18px;
    border-radius:40px;
    font-family:var(--font-family);
    margin-bottom:18px;
    font-weight: 900;
}

.about-title{
    font-family:var(--font-family);
    color:var(--primary-color);
    font-size:46px;
    margin-bottom:15px;
    line-height:1.2;
}

.about-content p{
    color:#5b6484;
    line-height:1.75;
    margin-bottom:15px;
    text-align:left;
}

.about-features{
    margin-top:10px;
}

.about-feature{
    margin-bottom:10px;
    font-size:15px;
    color:var(--primary-color);
    font-weight:600;
}

.about-feature i{
    color:var(--secondary-color);
    margin-right:10px;
}

@media(max-width:991px){

.about-content{
    padding-left:0;
    margin-top:40px;
    text-align:left;
}

.about-title{
    font-size:38px;
}

.google-rating-card{
    left:20px;
}

}

@media(max-width:767px){

.about-title{
    font-size:30px;
}

.about-wrapper{
    flex-direction:column-reverse;
}

.about-content{
    text-align:left;
}

.about-content p{
    text-align:left;
}

.about-badge{
    margin-left:0;
}

.google-rating-card{
    position:relative;
    left:0;
    bottom:0;
    margin-top:20px;
    width:100%;
}

.about-feature{
    margin-bottom:12px;
}

.hero-btn{
    width:100%;
}
.about-image{
    height:320px;
}

}

.about-more-content{

    max-height:0;

    overflow:hidden;

    transition:max-height .5s ease;

}

.about-more-content.active{

    max-height:450px;

}

.about-read-more{

    margin-top:5px;

    background:none;

    border:none;

    color:var(--secondary-color);

    font-weight:700;

    font-size:15px;

    display:inline-flex;

    align-items:center;

    gap:8px;

    cursor:pointer;

    transition:.3s;
    font-family: var(--font-family);

}

.about-read-more:hover{

    color:var(--primary-color);

}

.about-read-more i{

    transition:.35s;

}

.about-read-more.active i{

    transform:rotate(180deg);

}

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.about-left{
    width:42%;
    flex-shrink:0;
}

.about-right{
    width:58%;
}

.about-image{
    width:100%;
    display:block;
}

.about-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px 30px;
    margin-top:20px;
}

.about-feature-item{
    width:calc(50% - 15px);
}

@media(max-width:991px){

.about-wrapper{
    flex-direction:column;
    gap:40px;
}

.about-left,
.about-right{
    width:100%;
}

.about-content{
    padding-left:0;
}

.about-feature-item{
    width:100%;
}

}

/*=====================================
 Branch Doctors
======================================*/

.branch-doctors{
    background:var(--light-bg);
    margin-top:-50px;
}


.branch-doctors .line-heading{
    text-align:start;
    margin-bottom:50px;
}

.branch-doctors .line-heading .heading{
    display:inline-block;
    padding:8px 20px;
    background:rgba(var(--primary-rgb),0.08);
    color:var(--primary-color);
    border-radius:50px;
    font-weight:700;
    margin-bottom:15px;
}

.branch-doctors .title{
    font-size:40px;
    font-weight:800;
    color:var(--dark-color);
    margin-bottom:15px;
}

.branch-doctors .description{
    margin:auto;
    color:var(--text-color);
    text-align: start;
}

/* Card */

.doctor-card{
    display:flex;
    align-items:stretch;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:.4s;
    height:420px;
}

.doctor-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.doctor-image{
    width:42%;
    overflow:hidden;
}

.doctor-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.doctor-card:hover img{
    transform:scale(1.05);
}

.doctor-content{
    width:58%;
    padding:35px;
}

.doctor-speciality{
    display:inline-block;
    background:rgba(var(--secondary-rgb),0.12);
    color:var(--secondary-color);
    padding:6px 0px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.doctor-name{
    font-size:28px;
    color:var(--dark-color);
    font-weight:700;
    margin-bottom:25px;
}

.doctor-info{
    margin-bottom:30px;
}

.info-item{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.info-item:last-child{
    border-bottom:none;
}

.info-item span{
    color:var(--text-color);
}

.info-item strong{
    color:var(--dark-color);
}

.btn-primary-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:50px;
    background:var(--primary-color);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:var(--secondary-color);
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

   .doctor-card{
        flex-direction:column;
        height:auto;
    }


    .doctor-image{
        width:100%;
        height:300px;
    }

    .doctor-content{
        width:100%;
        padding: 10px;
    }

    .branch-doctors .title{
        font-size:32px;
    }

     .doctor-image img{
        width:100%;
        height:100%;
        object-fit:auto;
        display:block;
        object-position: top;

    }


}
@media(max-width: 767px)
{
    .doctor-image img{
        height:100%;
    }
    .doctor-image{
        width:100%;
    } 
}
@media(max-width:576px){

     .doctor-image{
        width:100%;
        height:280px;
    }

    .doctor-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
    }

    .doctor-name{
        font-size:24px;
    }

    .branch-doctors{
        background:var(--light-bg);
        margin-top:10px;
    }
    
}

.doctors-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:30px;
    align-items:stretch;
}

.doctor-item{
    width:100%;
}

.doctor-card{
    display:flex;
    align-items:stretch;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
}

@media(max-width:991px){

.doctors-grid{
    grid-template-columns:1fr;
}

.doctor-card{
    flex-direction:column;
}

.doctor-image{
    width:100%;
    height:320px;
    object-fit:cover !important;
    object-position: center center !important;
}

.doctor-content{
    width:100%;
}

}

@media(max-width: 768px)
{
    .doctor-image{
    height:280px;

}

}

@media(max-width:576px){

.doctors-grid{
    gap:20px;
}

.doctor-image{
    height:280px;
}

}

/*=====================================
WHY CHOOSE
======================================*/
.why-choose-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.why-left{
    flex:0 0 40%;
    max-width:40%;
}

.why-right{
    flex:0 0 60%;
    max-width:60%;
}
@media(max-width:991px){

.why-choose-wrapper{
    flex-direction:column;
    gap:40px;
}

.why-left,
.why-right{
    flex:0 0 100%;
    max-width:100%;
    width:100%;
}

.why-counter{
    margin-bottom:30px;
}

}
@media(max-width:767px){

.why-choose-wrapper{
    gap:25px;
}

.why-counter{
    flex-direction:column;
}

}


/*=============================
CUSTOM ACCORDION
=============================*/

.custom-accordion{
    width:91%;
    margin-top:100px;
}

.accordion-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.accordion-header{
    width:100%;
    border:none;
    background:#fff;
    color:var(--primary-color);
    font-size:19px;
    font-weight:700;
    padding:22px 25px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.35s;
    text-align:left;
}

.accordion-header:hover{
    background:#f7f7f7;
}

.accordion-item.active .accordion-header{
    background:var(--primary-color);
    color:#fff;
}

.accordion-icon{
    font-size:24px;
    transition:.35s;
    font-weight:300;
}

.accordion-item.active .accordion-icon{
    transform:rotate(45deg);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fff;
}

.accordion-content p{
    padding:22px 25px;
    margin:0;
    color:#555;
    line-height:1.8;
}



.why-choose-section{
    background:#f8f9ff;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,175,46,.15);
    color:var(--primary-color);
    font-weight:900;
    margin-bottom:20px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:var(--primary-color);
    margin-bottom:20px;
    line-height:1.3;
}

.section-description{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.why-counter{
    display:flex;
    gap:20px;
}

.counter-box{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:var(--box-shadow);
}

.counter-box h3{
    color:var(--secondary-color);
    font-size:34px;
    margin-bottom:5px;
}

.counter-box span{
    color:var(--primary-color);
    font-weight:600;
}

/* Accordion */

.custom-accordion .accordion-item{
    border:none;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:var(--box-shadow);
}

.custom-accordion .accordion-button{
    background:#fff;
    color:var(--primary-color);
    font-size:19px;
    font-weight:700;
    padding:22px 25px;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:var(--primary-color);
    color:#fff;
}

.custom-accordion .accordion-button:focus{
    box-shadow:none;
}

.custom-accordion .accordion-button::after{
    filter:brightness(0);
}

.custom-accordion .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

.custom-accordion .accordion-body{
    padding:22px 25px;
    color:#555;
    line-height:1.8;
    font-size:16px;
    background:#fff;
}

/* Responsive */

@media(max-width:991px){

.section-title{
    font-size:34px;
}

.why-counter{
    margin-bottom:35px;
}

.custom-accordion
{
    width: 100%;
    margin-top:0px !important;   
}

}

@media(max-width:767px){

.section-title{
    font-size:28px;
}

.why-counter{
    flex-direction:column;
}

.custom-accordion .accordion-button{
    font-size:17px;
    padding:18px;
}

.custom-accordion .accordion-body{
    padding:18px;
}

}

/* doctors component carosel data css code */
.doctors-carousel{

    width:100%;
    overflow:hidden;
    padding:10px 2px;
}

.swiper-wrapper{

    align-items:stretch;
}

.swiper-slide{

    height:auto;
    display:flex;

}

.doctor-card{

    width:100%;

    height: auto !important;
    display:flex;
    flex-direction:column;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    border:1px solid #edf2f7;
    transition:.35s;
}

.doctor-image{

    width:100%;
    aspect-ratio:4/4.6;
    overflow:hidden;
}

.doctor-image img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.doctor-content{

    flex:1;
    display:flex;
    flex-direction:column;
}

.btn-primary-custom{

    margin-top:auto;
}

/*============================= Navigation =============================*/ 
/*=========================================
Doctor Navigation
=========================================*/

.doctor-navigation{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:40px;

}

.doctor-prev,
.doctor-next{

    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-bottom:7px;
    background:#fff;

    border:2px solid var(--secondary-color);

    color:var(--secondary-color);


    cursor:pointer;

    transition:all .3s ease;

    font-size:40px;

    box-shadow:none;
    margin-bottom:10px;

}

.doctor-prev i,
.doctor-next i{

    transition:.3s;

    line-height:1;

}

.doctor-prev:hover,
.doctor-next:hover{

    background:var(--secondary-color);

    color:#fff;

    border-color:var(--secondary-color);

    transform:translateY(-2px);

}

.doctor-prev:hover i,
.doctor-next:hover i{

    color:#fff;

}

.doctor-prev.swiper-button-disabled,
.doctor-next.swiper-button-disabled{

    opacity:.4;

    cursor:not-allowed;

    background:#fff;

    color:#bdbdbd;

    border-color:var(--secondary-color);

}

.doctor-prev.swiper-button-disabled:hover,
.doctor-next.swiper-button-disabled:hover{

    transform:none;

    background:#fff;

    color:#bdbdbd;

}










/*==========================
Corporate Doctor Card
==========================*/

.doctor-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    overflow:hidden;

    height:100%;

    display:flex;

    flex-direction:column;

    transition:.35s ease;

    box-shadow:0 8px 25px rgba(15,23,42,.06);

}

.doctor-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(15,23,42,.12);

}

.doctor-image{

    width:100%;

    height:300px;

    overflow:hidden;

    background:#f8fafc;

}

.doctor-image img{

    width:100%;

    height:100%;

    object-fit:auto;
    object-position: top!important;

    transition:.5s;

}

.doctor-card:hover .doctor-image img{

    transform:scale(1.04);

}

.doctor-content{

    
    width:100%;
    display:flex;

    flex-direction:column;

    flex:1;

    text-align:left;

}

.doctor-speciality{

    font-size:10px;

    font-weight:600;

    letter-spacing:1px;

    color:#01224F;

    text-transform:uppercase;

    margin-bottom:10px;

}



.doctor-name{

    font-size:20px;

    font-weight:700;

    color:#0f2b66;

    line-height:1.25;

    margin-bottom:10px;

}

.doctor-info{

    margin-top:0px;

    border-top:1px solid #edf2f7;

}

.info-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-bottom:1px solid #edf2f7;

}

.info-item:last-child{

    border-bottom:none;

}

.info-item span{

    font-size:15px;

    color:#6b7280;

    font-weight:500;

}

.info-item strong{

    font-size:16px;

    color:#0f2b66;

    font-weight:700;

    text-align:right;

}

.btn-primary-custom{

    margin-top:0px;

    width:100%;

    border-radius:8px;

    text-align:center;

    padding:14px;

    font-weight:600;

}