@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

a {
    text-decoration: none;
    color: #000;
    font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito Sans", sans-serif;
}

section.section {
    padding: 60px 0;
}

.main-heading h2 {
    font-size: 38px;
    color: #026586;
    font-weight: 800;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 10px;
    /* text-align: left; */
    position: relative;
}

.main-heading-light h2 {
    font-size: 38px;
    color: #fff;
    font-weight: 800;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 10px;
    /* text-align: left; */
    position: relative;
}


.main-heading h2 span {
    color: #111112;
    font-family: "Nunito Sans", sans-serif;
}

.main-heading h3 {
    position: relative;
    font-size: 22px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    color: #000;
    display: inline-block;
    padding-left: 35px;
    margin-bottom: 10px;
}

.main-heading h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #026586;
    margin-top: 20px;
}

.main-heading-light h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.main-heading-light h3 {
    position: relative;
    font-size: 22px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    padding-left: 35px;
    margin-bottom: 15px;
}

.main-heading-light h3::before {
    content: '';
    position: absolute;
    background: url('../img/headingh3.png');
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 25px;
    top: 0;
    left: 0;
}

.main-heading h3::before {
    content: '';
    position: absolute;
    background: url(../img/headingh3-color.png);
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 23px;
    top: 0;
    left: 0;
}

.sub-heading-light p {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 26px;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
}

.sub-heading p {
    font-size: 17px;
    line-height: 22px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
}

hr.border-dark {
    border-top: 1px solid #000;
}

.background-primary {
    background: url('../img//about-usbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-list ul li strong {
    font-family: "Nunito Sans", sans-serif;
}

.main-list ul li strong {
    color: #026586;
    font-weight: 700;
}

.main-list ul li {
    font-size: 17px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 500;
    list-style: none;
    position: relative;
    font-family: "Nunito Sans", sans-serif;
}

.main-list ul li::before {
    content: '';
    position: absolute;
    background: #026586;
    width: 7px;
    height: 7px;
    top: 7px;
    left: -15px;
    border-radius: 100%;
}

.main-list ul {
    margin-bottom: 10px;
    padding-left: 1rem;
}



/* ============ Custom Css Start ============== */

.top-bar {
    background: #005b86;
}

.top-bar ul {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: end;
    padding: 10px 0;
}

.top-bar ul li {
    list-style: none;

}

.top-bar ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar ul li a::before {
    content: '';
    position: absolute;
    background: #fff;
    width: 0%;
    height: 1px;
    bottom: -1px;
    left: 0;
    transition: 0.3s ease-in-out;
}

.top-bar ul li a:hover::before {
    width: 100%;
}

.top-bar ul li a object {
    width: 100%;
    height: 30px;
    display: block;
    position: relative;
}

.top-bar ul li a img {
    width: 27px;
}

.lang-selected span {
    font-size: 15px;
}

.top-bar ul li a.before-none::before {
    display: none;
}

.lang-dropdown {
    width: auto;
    position: relative;
    cursor: pointer;
    user-select: none;
    display: block;
}

.lang-selected {
    background: transparent;
    padding: 3px 0px;
    border-radius: 6px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #e76323;
    border-bottom: 2px solid #e76323;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.lang-dropdown.active .arrow {
    transform: rotate(-135deg);
}

.lang-options {
    list-style: none;
    padding: 0 !important;
    margin: 7px 0 0;
    background: #f5f9ff73;
    border: 1px solid #e5f0ff;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
    z-index: 99;
    display: block !important;
    width: fit-content;
    right: 0;
}

.lang-dropdown.active .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
    width: fit-content;
}

.lang-options li {
    padding: 5px 15px;
    transition: .5s;
    font-size: 15px;
}

.lang-options li:hover {
    background: #e76323;
    color: #fff;
}

.lang-options li.active {
    background: #e76323;
    font-weight: 600;
    color: #fff;
}

.navik-menu>ul>li>a.navbar-button {
    padding: 3px 10px;
    height: auto !important;
    color: #fff;
    line-height: normal !important;
    background: #e76323;
    border: 1px solid #e76323;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .90px;
    border-radius: 5px;
}

.navbar-button i {
    padding: 10px;
    background: #ffffff;
    margin-left: 10px;
    color: #005b86;
    border-radius: 100%;
    transition: .3s;
}

.navbar-button:hover i {
    color: #e76323;
}

.zx-nav-shell {
    position: relative;
}

/* burger */

.zx-burger-trigger {
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.zx-burger-trigger span {
    height: 3px;
    width: 100%;
    background: #e76323;
    transition: .4s;
    border-radius: 30px;
}

.zx-burger-trigger span:first-child {
    width: 80%;
}

.zx-burger-trigger span:last-child {
    width: 80%;
}

/* burger animation */

.zx-burger-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.zx-burger-trigger.active span:nth-child(2) {
    opacity: 0;
}

.zx-burger-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}


/* panel */

.zx-panel-layer {
    position: fixed;
    bottom: -104px;
    right: -100%;
    width: 30%;
    height: 100vh;
    background: #ffffff;
    transition: .8s cubic-bezier(.77, 0, .175, 1);
    backdrop-filter: blur(10px);
    box-shadow: 5px 0 25px rgb(0 0 0 / .3);
    border: none;
    padding: 0;
    overflow: auto;
}

.zx-panel-layer.open {
    right: 0;
}


/* menu */

.menu-items {
    padding: 16px 0 130px 22px;
}

.zx-menu-core {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zx-menu-core li {
    margin: 0 0;
    padding-top: 4px;
    margin-bottom: 4px;
}

.zx-menu-core a {
    color: #2d64af;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
    position: relative;
}

.zx-menu-core a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #2b61aa;
    transition: .5s;
}

.zx-menu-core a:hover {
    letter-spacing: 1px;
}

.zx-menu-core a:hover::before {
    width: 100%;
}


/* dropdown animation */

.zx-drop-layer,
.zx-subdrop-layer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding-left: 20px;
    width: 100% !important;
}

.zx-has-drop.active>.zx-drop-layer {
    max-height: 400px;
    position: unset;
    width: 100%;
    box-shadow: none;
    padding: 0 15px;
    background: #ebf4ff;
}

.zx-has-subdrop.active>.zx-subdrop-layer {
    max-height: 300px;
}


/* arrows */

.zx-has-drop>a::after,
.zx-has-subdrop>a::after {
    content: "+";
    float: right;
    transition: .3s;
    position: absolute;
    top: 0;
    right: -30px;
}

.zx-has-drop.active>a::after,
.zx-has-subdrop.active>a::after {
    transform: rotate(45deg);
}

.zx-menu-core:hover .zx-drop-layer {
    background-color: none;
    box-shadow: inherit;
    border-top: inherit;
    width: inherit;

}

.zx-drop-layer li {
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    list-style: none;
}

.zx-menu-core {
    margin: 0 0;
}

.navik-header.sticky .zx-panel-layer {
    position: fixed;
    top: 100%;
}


.search-box {
    padding: 5px;
    background-color: #fff;
    position: absolute;
    box-shadow: 0 0 32px 2px rgb(0 0 0 / .5);
    top: 52px;
    right: 6px;
    z-index: 99999;
    display: none;
    width: 400px;
    border-radius: 9px;
}

.search-box .form-control {
    border: 1px solid #e76323;
}

.search-box .form-control:focus {
    box-shadow: none;
}

button.btn-search {
    background-color: #e76323;
    border: none;
    padding: 8px 14px;
    border-radius: 0 8px 8px 0;
}


.banner-slider {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 550px;
}

.banner-slider-content h1 {
    font-size: 63px;
    font-weight: 800;
    color: #204e8d;
    max-width: 75%;
    margin-bottom: 20px;
}

.banner-slider-content p {
    font-size: 25px;
}


.boxwithiconform .input-group img {
    width: 25px;
}

.boxwithiconform .input-group .input-group-text {
    border: none;
    background: transparent;
}

.boxwithiconform .input-group .form-control,
.boxwithiconform .input-group .form-select {
    border: none;
    background-color: transparent;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.boxwithiconform .input-group .form-control:focus,
.boxwithiconform .input-group .form-select:focus {
    box-shadow: none;
}

.boxwithiconform .input-group {
    border: 1px solid #fff;
    background: #fff;
    border-radius: 5px;
}

.boxwithiconform .submit-btn {
    background: #e76323;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.form_with_golden_border .input-group img {
    width: 30px;
}

.form_with_golden_border .input-group .input-group-text {
    border: none;
    background: transparent;
}

.form_with_golden_border .input-group .form-control,
.form_with_golden_border .input-group .form-select {
    border: none;
    background-color: transparent;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.form_with_golden_border .input-group .form-control:focus,
.form_with_golden_border .input-group .form-select:focus {
    box-shadow: none;
}

.form_with_golden_border .input-group {
    border: 1px solid #e76323;
    background: transparent;
    border-radius: 5px;
}

.form_with_golden_border .submit-btn {
    background: #e76323;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    border: none;
}


.iconWithBottomForm .input-group img {
    width: 25px;
}

.iconWithBottomForm .input-group .input-group-text {
    border: none;
    background: transparent;
}

.iconWithBottomForm .input-group .form-control,
.iconWithBottomForm .input-group .form-select {
    border: none;
    background-color: transparent;
}

.iconWithBottomForm .input-group .form-control:focus,
.iconWithBottomForm .input-group .form-select:focus {
    box-shadow: none;
}

.iconWithBottomForm .input-group {
    border-bottom: 1px solid #ccc;
}

.iconWithBottomForm .submit-btn {
    background: #e76323;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.banner-form-text p {
    font-size: 17px;
    color: #9bb6c6;
    margin-bottom: 0;
    text-align: center;
}



section.section.form-section {
    background: #054870;
    padding: 80px 0px 60px;
    position: relative;
    z-index: 9999;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
    margin-top: -35px;
}

.tab-style1 .treat-tab.active {
    background: transparent;
    border-color: #00648d;
}

.tab-style1 .treat-tab {
    border: none;
    border-bottom: 4px solid transparent;
    background: transparent;
    padding: 5px 20px;
    position: relative;
    overflow: hidden;
    transition: .5s;
    font-size: 17px;
    font-weight: 600;
}



.tab-style1 .tab-group {
    display: inline-flex;
    border-bottom: 1px solid #00648d;
    gap: 30px;
    align-items: center;
}

.slider-section {
    padding-bottom: 25px !important;
}

.linear-gradient-image {
    background-image: url(../img/doctor-se-bg.jpg);
    /* background: linear-gradient(10deg, rgba(7, 97, 138, 1) 0%, rgba(0, 88, 128, 1) 40%, rgba(232, 183, 149, 1) 100%); */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.linear-gradient-image-right-left {
    background-image: url(../img/hospital-sec-bg.jpg);
    /* background: linear-gradient(329deg, rgba(7, 97, 138, 1) 9%, rgba(0, 88, 128, 1) 35%, rgba(232, 183, 149, 1) 97%); */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hospital-card {
    background: #fff;
    border-radius: 7px;
    /* overflow: hidden; */
    margin: 4px;
    transition: .5s;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hospital-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    z-index: 9999999999999999999;
    background: #111111;
    width: 100%;
    height: 10px;
    border-radius: 100%;
    filter: blur(9px);
}

.hospital-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 7px;
}

.hospital-card-content {
    padding: 10px 10px 10px;
}

.hospital-card-content h3 {
    font-size: 20px;
    color: #026586;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
    text-align: left;
}

.hospital-card-content .location-ic {
    width: 5%;
}

.hospital-card-content .location-address {
    width: 90%;
    text-align: left;
}

.hospital-card-content .location-address p {
    font-size: 17px;
    margin-bottom: 0;
}

.deatils-call-btn {
    text-align: left;
    margin-top: 10px;
    width: 100%;
    display: flex;
}

.view-details {
    font-size: 16px;
    background: #e76323;
    padding: 8px 15px;
    width: 85%;
    color: #fff;
    font-weight: 400;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deatils-call-btn .call {
    width: 15%;
    text-align: center;
    color: #fff;
    background: #026586;
    padding: 8px 9px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.deatils-call-btn .call img {
    width: 50px;
}

.swiper-nav {
    width: 100%;
    position: absolute;
    z-index: 999;
    top: 50%;
    /* transform: translate(-50%, -50%); */
    transform: translate3d(0, -50%, 0);
}

.doctor-section .slider-wrapper .swiper-nav {
    top: 85%;
    left: -66%;
}

.hospital-section .slider-wrapper .swiper-nav {
    right: -63%;
    top: 82%;
}

.swiper {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 45px;
    position: relative;
}

.swiper-slide {
    pointer-events: auto;
}

.hospital-card a {
    position: relative;
    z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    bottom: 0px;
    top: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #e76323;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    transition: .5s;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 20px;
}

.swiper-button-prev {
    left: calc(50% - 60px);
}

.swiper-button-next {
    right: calc(50% - 60px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #ffffff;
    background: #e76323;
}

.location-tab-bg {
    padding: 30px 20px 0;
    background: linear-gradient(180deg, rgb(255 255 255 / 46%) 15%, rgba(226, 242, 255, 0) 62%);
    border-radius: 15px;
    box-shadow: rgb(99 99 99 / 5%) 0px 2px 8px 0px;
}



.main-btn {
    display: inline-block;
    padding: 8px 30px;
    font-size: 16px;
    color: #fff;
    background: #e76323;
    border: 1px solid #e76323;
    border-radius: 5px;
    transition: .5s;
}

.main-btn:hover {
    background: transparent;
}

.emergency-btn {
    position: fixed;
    right: 0;
    font-size: 16px;
    top: 57%;
    letter-spacing: 0;
    z-index: 99999;
    color: #fff;
    background-color: #b31f27;
    border-radius: 0px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    padding: 8px 4px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-transform: uppercase;
    display: flex;
}

.about-us-counter-box h1 {
    font-size: 45px;
    font-weight: 800;
    color: #005b86;
    position: relative;
}

.about-us-counter-box h1::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: #005b86;
}

.about-us-bottom-part {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-us-bottom-part .bottom-part-ic {
    width: 20%;
}

.about-us-bottom-part .bottom-part-content {
    width: 80%;
}

.about-us-bottom-part .bottom-part-content h5 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
    color: #000;

}

.know-more-btn {
    border: 1px solid #e76323;
    background: #fff;
    padding: 3px 5px 3px 20px;
    color: #e76323;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
}

.know-more-btn i {
    font-size: 16px;
    color: #fff;
    background: #e76323;
    border-radius: 30px;
    padding: 10px;
    margin-left: 10px;
}

.about-us-right-col.sub-heading p {
    font-size: 18px;
}

.about-us-right-col.sub-heading p i {
    color: #fff;
    background: #e76323;
    padding: 8px;
    border-radius: 30px;
    margin-left: 10px;
}

.locations-row {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

.location-col {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    width: 23%;
    transition: .5s;
}

.location-ic img {
    width: 40px;
    height: 45px;
    transition: .5s;
}

.location-ic p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .5s;
}

.location-col:hover {
    background: #054870;
}

.location-col:hover img {
    filter: invert(100%) sepia(94%) saturate(15%) hue-rotate(338deg) brightness(130%) contrast(100%);
}

.location-col:hover .location-ic p {
    color: #fff;
}

.blue-texture {
    background: url('../img/excellence-bg.jpg');
    background-size: cover;
    background-position: center;
}

.excellence-card {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
}

.excellence-card .excellence-ic-box {
    width: 62px;
}

.excellence-card .excellence-ic-box .excellence-ic {
    background: #e76323;
    height: 62px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.excellence-ic img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.excellence-card .excellence-name {
    width: 79%;
}

.excellence-card .excellence-name p {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 10px;
}

.excellence-beforebox {
    position: absolute;
    bottom: 0;
    width: 75px;
    height: 75px;
    bottom: -6px;
    left: -6.4px;
    background: #00000000;
    border-bottom: 1px solid #e76323;
    z-index: 1;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    transition: .5s;
}

.excellence-beforebox::before {
    position: absolute;
    content: '';
    top: 54%;
    left: -2px;
    width: 5px;
    height: 5px;
    background: #e76323;
    border-radius: 50%;
    transition: .5s;
}

.excellence-beforebox::after {
    position: absolute;
    content: '';
    top: 54%;
    right: -2px;
    width: 5px;
    height: 5px;
    background: #e76323;
    border-radius: 50%;
    transition: .5s;
}

.excellence-card:hover .excellence-ic-box .excellence-ic {
    background: #054870;
}

.excellence-card:hover .excellence-beforebox::before {
    background: #054870;
}

.excellence-card:hover .excellence-beforebox::after {
    background: #054870;
}

.excellence-card:hover .excellence-beforebox {
    border-bottom: 1px solid #054870;
}

.icon-diff-form .input-group-text {
    background: #e76323;
    border-radius: 100% !important;
    margin-right: 15px;
    padding: 7px;
}

.icon-diff-form .input-group-text img {
    width: 30px;
}

.icon-diff-form .input-group .form-select,
.icon-diff-form .input-group .form-control {
    border-radius: 30px !important;
    background-color: #f0f2f1;
    border: 1px solid #fff;
    color: #4c4c4c;
    transition: .5s;
}

.icon-diff-form .input-group .form-select:focus,
.icon-diff-form .input-group .form-control:focus {
    box-shadow: none;
    border: 1px solid #054870;
}

.excellence-search-list ul li {
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid #fff;
    position: relative;
}

.excellence-search-list ul li a {
    display: block;
}

.excellence-search-list ul li a::before {
    opacity: 1;
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 35%;
    content: "\f061";
    font-size: 10px;
    margin: 0px 0px 0 0px;
    color: #fff;
    background: #e76323;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.left-half-section {
    max-width: 470px;
    margin-left: auto;
}

.view-all-doctor-btn {
    border: 0;
    background: none;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.view-all-doctor-btn i {
    border: 2px solid #e76323;
    padding: 4px;
    color: #e76323;
    border-radius: 30px;
    margin-left: 5px;
    font-size: 13px;
}

.doc-location-ic img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    object-position: left;
    transition: .5s;
}

.location-address h4 {
    font-size: 17px;
    color: #000;
    margin-bottom: 0;
}

.location-address h5 {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}

.location-address h6 {
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
}

.view-profile-btn {
    font-size: 16px;
    color: #7a7a7a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.investor-section-custom .defult-card {
    height: 100%;
}

.defult-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.defult-card .defult-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.defult-card.card-gray {
    background-color: #f4f4f4;
}

.defult-card-content {
    padding: 10px;
}

.defult-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #005b86;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.defult-card-content p {
    font-size: 17px;
    margin-bottom: 5px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 16px;
    color: #005b86;
    font-weight: 600;
    margin-bottom: 3px;
    display: inline-block;
}

.right-testimonial-col .defult-card-content h3 {
    color: #000;
}

.right-testimonial-col .defult-card-content p {
    color: #636467;
    display: block;
}

.right-testimonial-col {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.right-testimonial-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px;
    background: #fff;
    border-radius: 5px;
    width: 100%;
}

.right-testimonial-card-img {
    width: 50%;
}

.right-testimonial-card-img img {
    width: 100%;
    height: 121px;
    object-fit: cover;
    border-radius: 5px;
}

.right-testimonial-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.right-testimonial-card-content p {
    font-size: 16px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.right-testimonial-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #005b86;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.right-testimonial-col .big-img-testimonial {
    height: 425px;
    object-fit: cover;
    width: 100%;
}

.right-testimonial-card-content {
    width: 50%;
}

.right-half-section {
    max-width: 475px;
}

.health-tips-card.defult-card .defult-card-image img {
    height: 275px;
}

.icwithname {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icwith {
    width: 25px;
}

.withname {
    /* width: 90%; */
    display: inline-block;
}

.withname h5 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
}

.horizontal-card .right-testimonial-card-img {
    width: 30%;
}

.horizontal-card .right-testimonial-card-content {
    width: 65%;
}

.horizontal-card .right-testimonial-card-content h3 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-weight: 600;
}

.horizontal-card .withname h5 {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
}

.bg-none {
    background: none !important;
}

.list-style-none ul li {
    list-style: none !important;
    padding: 22px 10px 22px 0;
    border-bottom: 1px solid #d2d2d2;
}

.list-style-none ul {
    padding-left: 0;
}

footer.footer {
    padding: 0px 0px;
    background: #00648d;
}

.footer-logo {
    background: #fff;
    padding: 15px;
    border-bottom-left-radius: 30px;
    display: inline-block;
    width: 80%;
    border-top: 1px solid #00648d;
}

.footer-logo img {
    width: 100px;
}

.address-item strong {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.address-item i {
    font-size: 18px;
    color: #e8601d;
    margin-top: 8px;
}

.address-item p {
    font-size: 16px;
    color: #ffffff;
}

.footer .social-media-icon {
    display: flex;
    align-items: center;
}

.footer .social-media-icon img {
    width: 10%;
    margin-right: 10px;
}

.footer .custom-from .input-group-text#from-icon {
    background: #fff;
    border-bottom: 1px solid #ccc;
    border-top: 0px;
    border-left: 0;
    border-right: 0px;
    border-radius: 0PX;
}

.footer .custom-from .input-group {
    border: none;
    border-radius: 0;
}

.footer .custom-from .input-group .form-control {
    border: none;
    border-radius: 0;
}


.footer .newsletter h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
}

.footer .custom-from .input-group-text#from-icon i {
    font-weight: 500;
}

.footer .newsletter p {
    font-size: 16px;
    color: #ffffff;
}

.footer .link-part h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
}

.footer .link-part ul {
    padding-left: 0;
}

.footer .link-part ul li {
    list-style: none;
}

.footer .link-part ul li a {
    font-size: 15px;
    color: #ffffff;
    transition: .3s ease-in;
}

.footer .link-part ul li:hover a {
    color: #e8601d;
    margin-left: 10px;
}

.bottom-footer {
    background: #00648d;
    border-top: 1px solid #fcdb05;
    padding: 15px 0px;
}

.bottom-footer p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
}

.footer .custom-from .input-group-text#from-icon {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}



/* ================================================================ INNER PAGE CSS ============================================================== */

.breadcrumb>li {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    text-shadow: none;
    color: #ffffff;
    letter-spacing: normal;
}

.inner-page-section .breadcrumb>li {
    color: #fff;
}

.inner-page-section .breadcrumb>li a {
    color: #ffffff;
}

.inner-page-section .breadcrumb>li+li:before {
    color: #ffffff;
}

.breadcrumb>li a {
    color: #ffffff;
}

.breadcrumb>li+li:before {
    opacity: 1;
    font-family: 'FontAwesome';
    font-weight: 600;
    content: "\f068";
    font-size: 14px;
    margin: 0 5px 0 5px;
    color: #ffffff;
}

.inner-page-section {
    background: #e65a18;
}

.half-inner-section {
    margin-left: auto;
    max-width: 480px;
}

.inner-bg-color {
    height: 400px;
    position: relative;
}

.inner-page-counter {
    background: linear-gradient(178deg, rgba(0, 91, 134, 1) 19%, rgba(0, 72, 106, 1) 82%);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 60px 0;
    border-top-right-radius: 260px;
    z-index: 99;
    box-shadow: rgb(0 0 0) 0px 5px 15px;
    height: 234px;
}

.inner-page-counter::before {
    position: absolute;
    content: '';
    top: 64px;
    right: -3px;
    width: 65px;
    height: 235px;
    background: linear-gradient(165deg, rgb(0 82 120 / 51%) 6%, rgb(0 72 106) 45%);
    transform: rotate(328deg);
    border-radius: 50px;
}



.inner-page-section .different-bg-inner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 284px;
    height: 100%;
    background: #01577f;
    clip-path: polygon(0 0, 41% 0%, 100% 100%, 0% 100%);
}

.inner-page-section .about-us-counter-box {
    position: relative;
}

.inner-page-section .about-us-counter-box h1::before {
    background: #e65a18;
}

.inner-page-section .about-us-bottom-part .bottom-part-content h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;

}

.inner-page-counter .about-us-counter-box h1 {
    color: #e65a18;
}

.shape-slider {
    clip-path: polygon(0 0, 79% 0, 100% 100%, 20% 100%);
    height: 450px;
    margin-right: -60px;
}

.banner-top-box {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #005b86;
    width: 500px;
    height: 45px;
    border-bottom-left-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.banner-top-box::before {
    position: absolute;
    content: '';
    top: -19px;
    left: -15px;
    width: 30px;
    height: 100%;
    background: #005b86;
    transform: rotate(318deg);
}

.banner-line-bar {
    width: 90%;
    height: 1px;
    background: #ffffff;
}

.banner-top-right-box {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #005b86;
    width: 200px;
    height: 70px;
    border-bottom-left-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgb(0 90 133 / 64%) 0px 3px 8px;
}

.banner-top-right-box::before {
    position: absolute;
    content: '';
    top: -7px;
    left: -16px;
    width: 30px;
    height: 100%;
    background: #005b86;
    transform: rotate(318deg);
}

.inner-slider.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 385px;
    object-fit: cover;
}

.banner-triangle-right {
    position: absolute;
    top: 5px;
    right: -25px;
    width: 70px;
    height: 240px;
    /* border-top: 45px solid transparent; */
    /* border-left: 45px solid #bf3d00; */
    background: #bf3d00;
    transform: rotate(334deg);
}

.inner-slider.owl-carousel .owl-nav button.owl-next,
.inner-slider.owl-carousel .owl-nav button.owl-prev {
    background: #ffffff;
    color: #e65a18;
    padding: 8px 12px !important;
    border-radius: 100%;
}

.inner-page-counter .half-inner-section {
    max-width: 810px;
}



.speciality-cta-box {
    border-right: 1px solid #abc7d6;
    padding: 0px 10px;
}

.speciality-cta-box h2 {
    font-size: 20px;
    font-weight: 700;
    color: #005b86;
    display: flex;
    align-items: center;
}

.speciality-cta-box.sub-heading p {
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    margin-top: 15px;
}

.speciality-cta-box h2 span {
    font-size: 17px;
    color: #fff;
    background: #e65a18;
    padding: 5px 10px;
    display: inline-block;
    line-height: normal;
    margin-right: 10px;
}

.chairman-section.linear-gradient-image-right-left {
    background: linear-gradient(288deg, rgba(7, 97, 138, 1) 9%, rgba(0, 88, 128, 1) 17%, rgba(232, 183, 149, 1) 97%);
}

.chairman-section.linear-gradient-image {
    background: linear-gradient(52deg, rgba(7, 97, 138, 1) 9%, rgba(0, 88, 128, 1) 17%, rgba(232, 183, 149, 1) 80%);
}

.chairman-section.linear-gradient-image-right-left .location-tab-bg {
    background: linear-gradient(180deg, rgb(255 255 255 / 46%) 30%, rgba(226, 242, 255, 0) 95%);
}

.about-designation h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.about-designation h5 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.about-designation p {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.chairman-img {
    position: relative;
    margin-left: -70px;
}

.owl-carousel.default-slider .owl-nav button.owl-next,
.owl-carousel.default-slider .owl-nav button.owl-prev {
    background: #e65a18;
    color: #fff;
    padding: 8px 12px !important;
    border-radius: 100%;
    position: absolute;
}

.owl-carousel.default-slider .owl-nav button.owl-next {
    top: 45%;
    right: -60px;
}

.owl-carousel.default-slider .owl-nav button.owl-prev {
    top: 45%;
    left: -60px;
}

.awards-box-content {
    position: absolute;
    top: 35%;
    /* left: 4%; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.owl-carousel .owl-item .awards-box-image img {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.awards-and-achivemets-section .row .col-md-3 {
    position: relative;
    padding-bottom: 15px;
}

.awards-and-achivemets-section .row .col-md-4 {
    position: relative;
    padding-bottom: 15px;
}

.awards-box-image {
    width: 100%;
    height: 195px;
}

.awards-and-achivemets-section .row .col-md-3::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 9%;
    background: #b2c4d0;
    width: 80%;
    height: 1px;
}

.awards-and-achivemets-section .row .col-md-3::after {
    position: absolute;
    content: '';
    bottom: 7%;
    right: 3px;
    background: #b2c4d0;
    width: 1px;
    height: 100%;
}

.awards-and-achivemets-section .row .col-md-4::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 9%;
    background: #3c7b9c;
    width: 80%;
    height: 1px;
}

.awards-and-achivemets-section .row .col-md-4::after {
    position: absolute;
    content: '';
    bottom: 7%;
    right: 3px;
    background: #3c7b9c;
    width: 1px;
    height: 100%;
}

.awards-and-achivemets-section .speciality-cta-box {
    border-right: 0px solid #abc7d6;
}


.awards-box-content h3 {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    text-align: center;
    width: 45%;
}

.before-bottom-none::before {
    display: none;
}

.after-right-none::after {
    display: none;
}

.specialities-deatils-left-col {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.specialities-deatils-left-col-bottom {
    background: linear-gradient(178deg, rgba(215, 85, 20, 1) 0%, rgba(164, 59, 9, 1) 64%);
    padding: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.specialities-deatils-left-col-bottom p {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specialities-deatils-left-col-bottom h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blue-texture-secondary {
    background: url('../img/blue-texture-second.jpg');
    background-size: cover;
    background-position: center;

}

.tab-type2 .treat-tab.active {
    background: #e65a18;
    color: #fff;

}

.tab-type2 .treat-tab {
    border: none;
    background: #fff;
    padding: 8px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: .5s;
    font-size: 17px;
    font-weight: 600;
}

.speciality-cta-box.sub-heading-light h2 {
    color: #fff;
}

.right-to-left-innerbanner .inner-page-counter {
    border-top-left-radius: 260px;
}

.inner-page-section.right-to-left-innerbanner .different-bg-inner::before {
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
    right: 0;
    left: unset;
}

.inner-page-section.right-to-left-innerbanner .inner-page-counter::before {
    left: -3px;
    transform: rotate(32deg);
    background: linear-gradient(165deg, rgb(0 88 129) 0%, rgb(0 72 106) 62%);
}

.inner-page-section.right-to-left-innerbanner .shape-slider {
    clip-path: polygon(16% 0, 100% 0, 82% 100%, 0% 100%);
    margin-right: auto;
    margin-left: -45px;
}

.inner-page-section.right-to-left-innerbanner .banner-top-right-box {
    left: 0px;
    right: unset;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 28px;
    width: 315px;
    height: 71px;
}

.inner-page-section.right-to-left-innerbanner .banner-top-right-box::before {
    top: -6px;
    right: -14px;
    left: unset;
    width: 36px;
    transform: rotate(399deg);
    border-bottom-right-radius: 10px;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box {
    right: unset;
    left: 0px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 30px;
    z-index: 99999;
    width: 45%;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box .breadcrumb>li a {
    color: #fff;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box .breadcrumb>li {
    color: #fff;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box .breadcrumb>li+li:before {
    color: #fff;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box::before {
    left: unset;
    right: -10px;
    transform: rotate(393deg);
    top: -19px;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box .inner-bg-color {
    height: auto;
    position: unset;
    width: 547px;
    margin-left: auto;
}

.inner-page-section.right-to-left-innerbanner .banner-triangle-right {
    left: -25px;
    transform: rotate(23deg);
}

.cross-imageWith-bottom-open img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.cross-imageWith-bottom-open .bottom-open-text img {
    width: 35px;
    height: auto;
}

.bottom-open-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.bottom-open-text {
    padding: 8px 0;
    background: #e65a18;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.iconwithtext ul {
    padding-left: 0;
}

.iconwithtext ul li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #ffffff;
}

.iconwithtext ul li a {
    color: #ffffff;
    display: inline-block;
    position: relative;
}

.iconwithtext ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

.iconwithtext ul li i.icon-location-pin {
    font-size: 18px;
    color: #ffffff;
    margin-right: 5px;
}

.iconwithtext ul li i {
    color: #fff;
    font-size: 16px;
    margin-right: 5px;
}

.inner-page-section.right-to-left-innerbanner .main-heading-light h3 {
    font-size: 30px;
    font-weight: 700;
}

.inner-page-section.right-to-left-innerbanner .main-heading-light h3::before {
    top: 3px;
}

.rating {
    background: #00648d;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
}

.rating span {
    color: #fff;
}

.right-half-inner-section {
    max-width: 800px;
    margin-right: auto;
    position: relative;
    padding-left: 100px;
}

.banner-img-logo {
    width: 105px;
}

.hospital-details-overview-right-col-box {
    border-radius: 8px;
    overflow: hidden;
}

.hospital-details-overview-right-col-box img {
    height: 310px;
    width: 100%;
    object-fit: cover;
}

.hospital-details-overview-right-col-box-content {
    background: #005b86;
    padding: 15px 0;
    text-align: center;
}

.hospital-details-overview-right-col-box-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #005b86;
    width: 25px;
    height: 8px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e65a18;
    width: 8px;
    height: 8px;
    transition: .5s;
    margin: 4px;
}

.bg-primary {
    background: #005b86 !important;
}

.default-breadcum .breadcrumb>li a {
    color: #636466;
}

.default-breadcum .breadcrumb>li {
    color: #636466;
}

.default-breadcum .breadcrumb>li+li:before {
    color: #636466;
}

.doctor-details-card {
    background: #f5fcff;
    overflow: hidden;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.doctor-details-card-content ul {
    padding-left: 0;
}

.doctor-details-card-content h3 {
    font-size: 25px;
    font-weight: 700;
    color: #005b86;
}

.doctor-details-card-content p {
    font-size: 17px;
    font-weight: 500;
}

.doctor-details-card-content ul li {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}

.doctor-details-card-content ul li img {
    width: 25px;
}

.tab-section.treat-wrapper {
    position: relative;
}

.tab-section.treat-wrapper .tab-group {
    position: absolute;
    top: 0;
    background: #005b86;
    height: 100%;
    z-index: 999;
    width: 40%;
    clip-path: polygon(0 0, 100% 10%, 93% 88%, 0% 100%);
    padding: 60px 0;
    min-height: 510px;
}

.tab-section.treat-wrapper .tab-group button {
    display: block;
    margin-left: auto;
    width: 47%;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ffffff;
    padding: 10px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin-right: 100px;
}

.tab-section.treat-wrapper .tab-group button img {
    width: 40px;
    background: #e65a18;
    padding: 5px;
    object-fit: contain;
    height: 40px;
    border-radius: 100%;
}

.tab-section.treat-wrapper .treat-box {
    background: #f2e6e9;
    padding: 60px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    min-height: 510px;
    position: relative;
}

/* .tab-section.treat-wrapper .treat-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    filter: blur(50px);
    z-index: -1;
} */
.background-primary-white {
    background: url('../img/details-pattern-white.jpg');
    background-size: cover;
    background-position: center;
}

.doctor-details-tab-heading h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #005b86;
    margin-bottom: 20px;
}

.doctor-details-tab-heading h3 img {
    width: 40px;
    background: #e65a18;
    padding: 5px;
    object-fit: contain;
    height: 40px;
    border-radius: 100%;
}

.tab-section.treat-wrapper .tab-group button.active {
    color: #e65a18;
}

.speciality-cta-slider .speciality-cta-box {
    border-right: 1px dashed #00527e;
}

.clip-curved-design {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
    padding-bottom: 70px !important;
    margin-bottom: -35px;
}

.sub-heading-light .read-more {
    color: #e65a18;
}

.speciality-cta-box.sub-heading-light p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.master-page-inner-section .breadcrumb>li a {
    color: #000;
}

.master-page-inner-section .breadcrumb>li {
    color: #000;
}

.master-page-inner-section .breadcrumb>li+li:before {
    color: #000;
}

.master-page-inner-section {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    min-height: 250px;
}

.icon-form .input-group select {
    background-image: none;
}

.icon-form .input-group-text {
    padding: 5px;
    background: #e65a18;
    border-radius: 0;
    border: 1px solid #e65a18;
    height: 40px;
    width: 40px;
    justify-content: center;
}

.icon-form .input-group-text img {
    width: 24px;
}

.icon-form .input-group-text i {
    font-size: 18px;
    color: #fff;
}

.icon-form input.form-control,
.icon-form select.form-select {
    border: 0;
    color: #000000;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
}

.icon-form input.form-control:focus,
.icon-form select.form-select:focus {
    box-shadow: none;
}

.icon-form input.form-control::placeholder {
    color: #e65a18 !important;
    font-weight: 500;
    font-size: 15px;
}

.icon-form .input-group {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e65a18;
}

.condition-card {
    background: #f4fbff;
    padding: 20px 20px;
}

.condition-box-image img {
    width: 32px;
    filter: invert(100%) sepia(94%) saturate(15%) hue-rotate(338deg) brightness(130%) contrast(100%);
    transition: .5s;
    object-fit: contain;
    height: 32px;
}

.condition-box-content h5 {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 500;
    transition: .5s;
}

.condition-box {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 0;
    border-bottom: 1px solid #f9eced;
    transition: .5s;
}

.condition-box::before {
    opacity: 1;
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 35%;
    font-weight: 600;
    content: "\f061";
    font-size: 10px;
    margin: 0px 0px 0 0px;
    color: #fff;
    background: #e65a18;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.condition-box-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    background: #005b86;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.condition-page-right-box-type2 {
    position: relative;
    background: #005b86;
    padding: 30px 20px;
    display: flex;
    align-items: center;
}

.condition-page-right-box-type3 {
    background: #e65a18;
    padding: 25px 20px;
}

.condition-page-right-box-type3 h5 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.condition-page-right-box-type3 h4 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.condition-page-right-box-type1 {
    position: relative;
    background: #fef4f4;
    padding: 30px 20px;
    display: flex;
    align-items: center;
}

.condition-page-right-box-type1 img {
    width: 35px;
    margin-right: 10px;
}

.condition-page-right-box-type1 h5 {
    font-size: 16px;
    margin-bottom: 0;
    line-height: normal;
    color: #005b86;
    font-weight: 600;
}

.condition-page-right-box-type1::before {
    opacity: 1;
    font-family: 'FontAwesome';
    position: absolute;
    right: 25px;
    top: 35%;
    font-weight: 600;
    content: "\f054";
    font-size: 17px;
    margin: 0px 0px 0 0px;
    color: #fff;
    background: #e65a18;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.condition-page-right-box-type2 h5 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.condition-page-right-box-type3 h4 i {
    background: #fff;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    color: #e65a18;
    padding: 12px;
    margin-right: 10px;
    font-size: 18px;
}

.sticky-top {
    top: 150px;
    z-index: 99;
}

.owl-carousel.speciality-cta-slider .owl-nav button.owl-next,
.owl-carousel.speciality-cta-slider .owl-nav button.owl-prev {
    background: #e65a18;
    color: #fff;
    padding: 8px 12px !important;
    border-radius: 100%;
    position: absolute;
}

.owl-carousel.speciality-cta-slider .owl-nav button.owl-next {
    top: 30%;
    right: -70px;
}

.owl-carousel.speciality-cta-slider .owl-nav button.owl-prev {
    top: 30%;
    left: -70px;
}

.speciality-details-page .half-inner-section .main-heading-light h2 {
    font-size: 31px;
}

.details-formWithIcon {
    background-color: #005b86;
    padding: 20px;
    border-radius: 10px;
}

.details-formWithIcon h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.details-formWithIcon .input-group-text {
    background: #fff;
    border: 0;
}

.details-formWithIcon .form-control,
.details-formWithIcon .form-select {
    border: 0;
    padding: 10px 0;
}

.details-formWithIcon .input-group span i {
    color: #e65a18;
    font-size: 18px;

}

.details-formWithIcon .input-group img {
    width: 24px;
}

.details-formWithIcon .form-control:focus,
.details-formWithIcon .form-select:focus {
    box-shadow: none;
}

.you-tube-iframe {
    height: 320px;
}

.doctor-name {
    background: #00648d;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 25px;
    border-radius: 0px;
    min-height: 40px;
}

.doctor-name p {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .60px;
    margin-bottom: 0;
}

.doctor-name img {
    width: 32px;
    filter: invert(100%) sepia(94%) saturate(15%) hue-rotate(338deg) brightness(130%) contrast(100%);
}

.lenis.lenis-smooth iframe {
    pointer-events: auto;
}

.health-package-card {
    background: #f0faff;
    padding: 7px;
    border-radius: 7px;
}

.health-package-card .health-package-card-image img {
    width: 100%;
    height: 196px;
    object-fit: cover;
    border-radius: 7px;
}

.health-package-card-content h2 {
    font-size: 21px;
    color: #00648d;
    margin-top: 10px;
    font-weight: 600;
}

.health-package-card-content p {
    font-size: 17px;
    color: #000000;
    margin-top: 0px;
    margin-bottom: 5px;
}

.health-package-card-content ul {
    padding-left: 0;
    margin-bottom: 10px;
}

.health-package-card-content ul li {
    font-size: 15px;
    color: #000000;
    padding-left: 14px;
    display: inline-block;
    position: relative;
    margin-right: 15px;
}

.health-package-card-content ul li::before {
    content: '';
    position: absolute;
    top: 37%;
    left: 0;
    background: #000000;
    height: 6px;
    width: 6px;
    border-radius: 100%;
}

.location-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-with-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-with-text h6 {
    margin-bottom: 0;
    color: #000000;
    letter-spacing: .40px;
}

.icon-with-text i {
    color: #e76323;
}

.price p {
    color: #e76323;
    line-height: normal;
    margin-bottom: 0;
}

.location-price {
    margin-bottom: 15px;
}

.primary-section .talk-btn a {
    color: #e76323;
}

.primary-section .talk-btn a::before {
    background: #fcdb00;
}

.inner-page-section .main-heading-light.sub-heading-light h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.career-card .career-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    background: #005b86;
}

.career-card .career-card-heading h3 {
    color: #ffffff;
    font-size: 20px;
    letter-spacing: .40px;
    margin-bottom: 0;
    font-weight: 600;
}

.career-card .career-card-heading p {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .40px;
}

.career-card .sub-heading.main-list.main-heading {
    padding: 20px 15px;
}

.career-card {
    background: #f6f6f6;
    border: 1px solid #f7f7f7;
}

.insurance-card img {
    box-shadow: rgb(0 0 0 / .24) 0 3px 8px;
    width: 100%;
    height: 115px;
    object-fit: cover;
}

.insurance-img {
    padding-bottom: 10px;
}


.submission-table table {
    background-color: #ddebff !important;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.submission-table tbody,
td,
tfoot,
th,
thead,
tr {
    font-size: 16px;
    padding: 8px 15px 8px 15px !important;
    color: #000000 !important;
    font-weight: 400;
    line-height: 20px;
    transition: 0.5s ease;
    background-color: transparent !important;
}

.submission-table tr td,
.submission-table tr th {
    border: 1px solid #ffffff !important;
}

.submission-table tr td:first-child,
.submission-table tr th:first-child {
    border-left: none;
}

.submission-table tr td:last-child,
.submission-table tr th:last-child {
    border-right: none;
}

.submission-table table:not(:has(th)) tr:first-child td,
.submission-table table tr th {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
    padding: 10px 20px !important;
    letter-spacing: normal;
    background: #005b86 !important;
}

.static-page-section .main-heading.sub-heading img {
    display: inline-block;
    width: 24%;
    justify-content: space-between;
    margin-right: 5px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 5px solid #005b86;
}

.static-page-section .main-heading.sub-heading img:last-child {
    margin-right: 0;
}

.bg-light {
    background: #fff !important;
}

.blog-master-main-page .icon-form .input-group select {
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
}

.blog-left-col {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
}

.blog-left-col ul {
    padding-left: 0;
}

.blog-left-col ul li {
    list-style: none;
    padding-left: 0;
}

.blog-left-col ul li a {
    font-size: 15px;
    font-weight: 500;
}

.blog-card .defult-card-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #005b86;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-card .icwithname {
    gap: 5px;
}

.blog-card .icwith {
    width: 16px;
}

.blog-card .withname h5 {
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.blog-card .blog-card-image img {
    width: 100%;
    height: 265px;
    object-fit: cover;
}

.acc-title {
    border-bottom: 1px solid #ffffff;
    color: #000;
    padding: 12px 6px;
    cursor: pointer;
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    background: #005b87;
}

.acc-item {
    margin-bottom: 0px;
    /* padding: 10px; */
    background: #fceeee;
}

.acc-title span {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.acc-title::after {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: none;
    background-color: #e65a18;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.2s ease-in-out;
    margin-left: auto;
    transition: 0.3s;
    flex-shrink: 0;
}

.acc-title.active::after {
    content: "\f068";
    transform: rotate(-180deg);
}

.acc-content {
    display: none;
    padding: 10px;
    border-top: 0;
}

.acc-content p {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 25px;
    color: #000;
}

.acc-title img {
    width: 40px;
    background: #e65a18;
    padding: 5px;
    object-fit: contain;
    height: 40px;
    border-radius: 100%;
}

.testimonial-master-page .right-testimonial-col {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.testimonial-master-page .right-testimonial-col .big-img-testimonial {
    height: 310px;
    object-fit: cover;
}

.testimonial-master-page .right-testimonial-col .defult-card-content p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;

}

.doctor-master-page .hospital-card::before {
    display: none;
}

.doctor-talk-section .defult-card.health-tips-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.breadcrumb>li a {
    color: #000;
}

.breadcrumb>li {
    color: #000;
}

.breadcrumb>li+li:before {
    color: #000;
}

.investor-page-section {
    background: #e1f4ff;
}

.investor-page-section .sub-heading p {
    font-size: 20px;
    line-height: 28px;
}

.investor-primary-btn {
    background: #e76323;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 4px;
}

.investor-primary-btn img {
    width: 20px;
    filter: invert(100%) sepia(95%) saturate(6%) hue-rotate(338deg) brightness(142%) contrast(146%);
}

.investor-primary-btn.differ {
    background: #fff;
    border: 1px solid #e76323;
    color: #000;
}

.investor-primary-btn.differ img {
    filter: none;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-tab-nav-section .title {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .custom-tab-nav-section .title {
        font-size: 24px;
    }
}

.custom-tab-nav-section .title svg {
    width: 45px;
    height: 45px;
    margin: 0 10px;
}

.custom-tab-nav-section .scrollable-tabs-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .custom-tab-nav-section .scrollable-tabs-container {
        max-width: 100%;
    }
}

.custom-tab-nav-section .scrollable-tabs-container svg {
    width: 35px;
    height: 35px;
    padding: 0px;
    cursor: pointer;
    color: #000000;
    border-radius: 50%;
    pointer-events: auto;
}

.custom-tab-nav-section .scrollable-tabs-container ul {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    justify-content: space-between;
}

.custom-tab-nav-section .scrollable-tabs-container ul::-webkit-scrollbar {
    display: none;
}

.custom-tab-nav-section .scrollable-tabs-container ul.dragging {
    scroll-behavior: auto;
}

.custom-tab-nav-section .scrollable-tabs-container ul.dragging a {
    pointer-events: none;
}

.custom-tab-nav-section .scrollable-tabs-container a {
    display: inline-block;
    padding: 0 15px;
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    background: transparent;
    transition: 0.25s;
}

.custom-tab-nav-section .scrollable-tabs-container a.active {
    color: #ffffff;
    background: transparent;
    border-bottom: 1px solid #fff;
}

.custom-tab-nav-section .scrollable-tabs-container .right-arrow,
.custom-tab-nav-section .scrollable-tabs-container .left-arrow {
    position: absolute;
    height: 30px;
    width: 30px;
    top: 13px;
    border-radius: 50%;
    display: none;
    align-items: center;
    padding: 0 7px;
    pointer-events: none;
}

.custom-tab-nav-section .scrollable-tabs-container .right-arrow.active,
.custom-tab-nav-section .scrollable-tabs-container .left-arrow.active {
    display: flex;
}

.custom-tab-nav-section .scrollable-tabs-container .right-arrow svg,
.custom-tab-nav-section .scrollable-tabs-container .left-arrow svg {
    transition: 0.25s;
}

.custom-tab-nav-section .scrollable-tabs-container .right-arrow {
    right: 0;
    justify-content: flex-end;
    background: #fff;
}

.custom-tab-nav-section .scrollable-tabs-container .left-arrow {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.custom-tab-nav-section {
    position: sticky;
    top: 75px;
    background: #005b86;
    z-index: 999;
}

.invester-about-left-col ul li a {
    position: relative;
}

.invester-about-left-col ul {
    padding-left: 0;
}

.invester-about-left-col ul li {
    list-style: none;
    padding-left: 0;
}

.invester-about-left-col ul li a {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    transition: .5s;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb;
}

.invester-about-left-col ul li a:hover {
    color: #e76323;
}

.invester-about-left-col ul li a::before {
    opacity: 1;
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 13px;
    font-weight: 600;
    content: "\f061";
    font-size: 10px;
    margin: 0px 0px 0 0px;
    color: #fff;
    background: #e65a18;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.invester-about-left-col {
    padding: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
}

.calender {
    background: #f5fcff;
    padding: 10px 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
    position: relative;
}

.calendar-container .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background: #f5fcff;
}

.calendar-container .nav-button {
    background: none;
    border: none;
    color: #026586;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 12px;
    transition: opacity 0.2s;
}

.calendar-container .nav-button:hover {
    opacity: 0.7;
}

.calendar-container .current-month {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}

.calendar-container .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #d94e1f;
    color: white;
}

.calendar-container .weekday {
    padding: 7px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.calendar-container .days {
    display: flex;
    padding: 0px;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    /* min-height: 275px; */
    margin: auto 0;
}

.calendar-container .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
    color: #000000;
    transition: all 0.2s;
    position: relative;
    width: 36px;
    height: 34px;
    font-weight: 600;
}

.calendar-container .day:hover:not(.empty):not(.selected) {
    background: #e8f4f8;
}

.calendar-container.calendar-container .day.empty {
    cursor: default;
}

.calendar-container.calendar-container .day.selected {
    background: #0a5a7a;
    color: white;
    font-weight: 600;
}

.calendar-container.calendar-container .day.today {
    border: 2px solid #0a5a7a;
}

.calendar-container.calendar-container .action-button {
    margin: 0;
    width: 94%;
    padding: 8px;
    background: #0a5a7a;
    color: white;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    position: absolute;
    bottom: 6px;
}

.calendar-container .action-button:hover {
    background: #084a61;
}

.calendar-container .debug-info {
    margin: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    color: #666;
}

.calendar-container .debug-info strong {
    color: #333;
}

.company-details-card {
    padding: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
}

.company-details-card h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #005b86;
    font-weight: 700;
}

.company-details-card ul {
    padding-left: 0;
}

.company-details-card ul li {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 9px 0;
    border-bottom: 1px solid #cdcdcd;
}

.company-details-card ul li p {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 600;
    width: 35%;
}

.company-details-card ul li span {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
    width: 63%;
}

.different-bg.know-more-btn {
    border: 1px solid #e76323;
    background: #e76323;
    padding: 3px 5px 3px 13px;
    color: #ffffff;
}

.different-bg.know-more-btn i {
    background: #ffffff;
    color: #e76323;
}

.tranding-box {
    background: #005b86;
    padding: 30px 40px;
    border-radius: 15px;
}

.tranding-calender-box {
    background: #004a6c;
    display: inline-flex;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

.tranding-calender-box img {
    width: 45px;
}

.tranding-content h3 {
    color: #e8601d;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.tranding-content h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}

.tranding-content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}

.investor-relation-bg {
    background: url('../img/investor-relation-bg.jpg');
    background-size: cover;
    background-position: center;
}

.investor-relation-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    padding-bottom: 15px;
    padding-right: 15px;
}

.investor-relation-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 93%;
    height: 1px;
    background: #abc8d8;
}

.investor-relation-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 80%;
    background: #abc8d8;
}

.investor-laft-box img {
    width: 80px;
}

.investor-right-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.investor-right-box p {
    font-size: 16px;
    line-height: 22px;
}

.explore-btn {
    font-size: 17px;
    color: #e76323;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: .5s;
}

.explore-btn:hover::before {
    width: 100%;
}

.explore-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #e76323;
    transition: .5s;
}

.row .col-md-4:nth-child(3) .investor-relation-card::after {
    display: none;
}

.row .col-md-4:nth-child(4) .investor-relation-card::before {
    display: none;
}

.row .col-md-4:nth-child(5) .investor-relation-card::before {
    display: none;
}

.row .col-md-4:nth-child(6) .investor-relation-card::before {
    display: none;
}

.row .col-md-4:nth-child(6) .investor-relation-card::after {
    display: none;
}


.international-patient-services-section .row .col-md-4:nth-child(3) .investor-relation-card::after {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(4) .investor-relation-card::before {
    display: block;
}

.international-patient-services-section .row .col-md-4:nth-child(5) .investor-relation-card::before {
    display: block;
}

.international-patient-services-section .row .col-md-4:nth-child(6) .investor-relation-card::before {
    display: block;
}

.international-patient-services-section .row .col-md-4:nth-child(6) .investor-relation-card::after {
    display: block;
}

.international-patient-services-section .row .col-md-4:nth-child(9) .investor-relation-card::after {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(6) .investor-relation-card::after {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(7) .investor-relation-card::before {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(8) .investor-relation-card::before {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(9) .investor-relation-card::before {
    display: none;
}



.leatest-updates-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.latest-card-date {
    background: #e65a18;
    width: 10%;
    padding: 5px 10px;
    border-radius: 8px;
}

.latest-card-content {
    width: 90%;
}

.latest-card-date h5 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
}

.latest-card-date h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0px 0;
    color: #fff;
}

.latest-card-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #e65a18;
    margin-bottom: 0;
}

.latest-card-content p {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}

.quick-download-p p:last-child {
    font-size: 14px;
    font-weight: 600;
}

.border-opacity-1 {
    border-color: #e4e4e4;
}

.download-button {
    font-size: 18px;
    color: #fff;
    background: #e76323;
    width: 45px;
    height: 43px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-box {
    display: flex;
    gap: 60px;
    margin-bottom: 15px;
}

.journey-left-year h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.journey-content-box {
    padding-left: 60px;
    position: relative;
}

.journey-content-box::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    background: #e76323;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.journey-content-box::after {
    content: '';
    position: absolute;
    top: 4px;
    left: -3px;
    border: 1px solid #00648d;
    width: 16px;
    height: 16px;
    border-radius: 100%;
}

.journey-content-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.journey-main {
    position: relative;
}

.journey-main::before {
    position: absolute;
    top: 0;
    content: '';
    left: 75px;
    width: 2.5px;
    height: 100%;
    background: #00648d;
}

.banner-slider.owl-carousel .owl-nav .owl-next,
.banner-slider.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 60%;
    background: #e76323;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 13px;
    line-height: 15px;
    margin: 0;
}

.banner-slider.owl-carousel .owl-nav .owl-next {
    right: 70px;
}

.banner-slider.owl-carousel .owl-nav .owl-prev {
    left: 50px;
}

.international-patient-care-heading.main-heading h3 {
    font-size: 17px;
    font-weight: 600;
    color: #e76323;
    text-transform: uppercase;
}

.international-patient-care-heading.main-heading h3::before {
    background: url(../img/global.svg);
    background-size: contain;
    background-position: center;
}

.zxq-shell {
    font-family: 'DM Sans', sans-serif;
    padding: 2rem 1.5rem;
    max-width: 660px;
    margin: 0 auto;
}

.zxq-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin: 0 0 0.4rem;
    font-weight: 500;
}

.zxq-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text-primary);
    margin: 0 0 2rem;
    line-height: 1.25;
}

.zxq-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 0.5px solid var(--color-border-secondary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.zxq-item {
    border-bottom: 0.5px solid var(--color-border-tertiary);
    transition: background 0.2s;
}

.zxq-item:last-child {
    border-bottom: none;
}

.zxq-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    transition: background 0.15s;
}

.zxq-trigger:hover {
    background: var(--color-background-secondary);
}

.zxq-item.zxq-open .zxq-trigger {
    background: var(--color-background-secondary);
}

.zxq-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zxq-icon-bubble {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.zxq-trigger:hover .zxq-icon-bubble {
    transform: scale(1.08);
}

.zxq-bubble-purple {
    background: #EEEDFE;
    color: #534AB7;
}

.zxq-bubble-teal {
    background: #E1F5EE;
    color: #0F6E56;
}

.zxq-bubble-coral {
    background: #FAECE7;
    color: #993C1D;
}

.zxq-bubble-amber {
    background: #FAEEDA;
    color: #854F0B;
}

.zxq-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
}

.zxq-subtitle {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin: 2px 0 0;
}

.zxq-chevron {
    font-size: 18px;
    color: var(--color-text-tertiary);
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    flex-shrink: 0;
    color: #fff;
}

.zxq-item.zxq-open .zxq-chevron {
    transform: rotate(180deg);
}

.zxq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.zxq-item.zxq-open .zxq-body {
    min-height: 345px;
    height: 100%;
    max-height: 650px;
}

.zxq-body-inner {
    padding: 0;
}

.zxq-body-inner p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin: 0 0 0.75rem;
}

.zxq-body-inner p:last-child {
    margin-bottom: 0;
}

.zxq-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.85rem;
}

.zxq-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.zxq-tag-purple {
    background: #EEEDFE;
    color: #534AB7;
}

.zxq-tag-teal {
    background: #E1F5EE;
    color: #0F6E56;
}

.zxq-tag-coral {
    background: #FAECE7;
    color: #993C1D;
}

.zxq-tag-amber {
    background: #FAEEDA;
    color: #854F0B;
}

.zxq-divider {
    height: 0.5px;
    background: var(--color-border-tertiary);
    margin: 0.75rem 0;
}

.international-patient-care-form-col .details-formWithIcon h3 {
    margin-bottom: 2px;
}

.international-patient-care-form-col .details-formWithIcon p {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

label.form-label {
    color: #fff;
    ;
}

.investor-relation-counter-row .about-us-bottom-part .bottom-part-content h5 {
    font-size: 16px;
    font-weight: 600;
}

.investor-relation-counter-row .about-us-counter-box h1 {
    font-size: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.investor-relation-counter-row .about-us-counter-box h1::before {
    display: none;
}

.international-counter-box-icon img {
    width: 50px;
    filter: invert(100%) sepia(94%) saturate(47%) hue-rotate(379deg) brightness(175%) contrast(100%);
}

.international-counter-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #d94e1f;
    margin-bottom: 0;
}

.international-counter-box-content p {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    display: inline-flex;
}

.international-counter-box {
    border-right: 1px solid #fff;

}

.row .col-md-3:last-child .international-counter-box {
    border-right: none;
}

.international-patient-second-opinion-section {
    background: linear-gradient(35deg, rgba(2, 62, 90, 1) 29%, rgba(0, 91, 134, 0.87) 100%);
}


.main-accordion .accordion-header button {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0px;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #000;
    border-radius: 0 !important;
}

.main-accordion .accordion-item {
    border-bottom: 1px solid #bbd3df;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    background: transparent;
    border-radius: 0;
}


.main-accordion .accordion-item .accordion-button::after,
.main-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f068';
    font-family: "FontAwesome";
    position: absolute;
    right: 16px;
    top: 32%;
    font-size: 11px;
    font-weight: 900;
    line-height: normal;
    color: #ffffff;
    background-image: none;
    width: 20px;
    height: 20px;
    background: #e76323;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.main-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    color: #ffffff;
}

.main-accordion .accordion-body {
    font-size: 16px;
    font-weight: 500;
    color: #1a1515;
    padding: 5px 0 20px;
}

.main-accordion .accordion-item:last-child {
    border-bottom: none;
}

@media (min-width: 1440px) and (max-width: 1550px) {
    .tab-section.treat-wrapper .tab-group button {
        width: 65%;
    }

    .banner-triangle-right {
        right: -36px;
        transform: rotate(338deg);
    }

    .inner-page-counter .half-inner-section {
        max-width: 772px;
    }

    .half-inner-section {
        max-width: 500px;
    }

    .inner-page-section.right-to-left-innerbanner .banner-triangle-right {
        left: -41px;
        transform: rotate(18deg);
    }

    .right-half-inner-section {
        max-width: 770px;
    }

    section.section.form-section {
        margin-top: -72px;
    }
}

@media (min-width: 1180px) and (max-width: 1439px) {
    .tab-section.treat-wrapper .tab-group button {
        width: 74%;
    }

    .tab-section.treat-wrapper .tab-group {
        width: 40%;
    }

    section.section.form-section {
        margin-top: -130px;
    }

    .navik-menu>ul>li>a {
        padding: 0 10px !important;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

a {
    text-decoration: none;
    color: #000;
    font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito Sans", sans-serif;
}

section.section {
    padding: 60px 0;
}

section.section.doctor-header {
    padding: 35px 0;
}

.main-heading h2 {
    font-size: 38px;
    color: #026586;
    font-weight: 800;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 10px;
    /* text-align: left; */
    position: relative;
}

.main-heading-light h2 {
    font-size: 38px;
    color: #fff;
    font-weight: 800;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 10px;
    /* text-align: left; */
    position: relative;
}


.main-heading h2 span {
    color: #111112;
    font-family: "Nunito Sans", sans-serif;
}

.main-heading h3 {
    position: relative;
    font-size: 22px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    color: #000;
    display: inline-block;
    padding-left: 35px;
    margin-bottom: 10px;
}

.main-heading h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #026586;
    margin-top: 20px;
}

.main-heading-light h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.main-heading-light h3 {
    position: relative;
    font-size: 22px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    padding-left: 35px;
    margin-bottom: 15px;
}

.main-heading-light h3::before {
    content: '';
    position: absolute;
    background: url('../img/headingh3.png');
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 25px;
    top: 0;
    left: 0;
}

.main-heading h3::before {
    content: '';
    position: absolute;
    background: url(../img/headingh3-color.png);
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 23px;
    top: 0;
    left: 0;
}

.sub-heading-light p {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 26px;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
}

.sub-heading p {
    font-size: 17px;
    line-height: 22px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
}

hr.border-dark {
    border-top: 1px solid #000;
}

.background-primary {
    background: url('../img//about-usbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-list ul li strong {
    font-family: "Nunito Sans", sans-serif;
}

.main-list ul li strong {
    color: #026586;
    font-weight: 700;
}

.main-list ul li {
    font-size: 17px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 500;
    list-style: none;
    position: relative;
    font-family: "Nunito Sans", sans-serif;
}

.main-list ul li::before {
    content: '';
    position: absolute;
    background: #026586;
    width: 7px;
    height: 7px;
    top: 7px;
    left: -15px;
    border-radius: 100%;
}

.main-list ul {
    margin-bottom: 10px;
    padding-left: 1rem;
}



/* ============ Custom Css Start ============== */

.top-bar {
    background: #005b86;
}

.top-bar ul {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: end;
    padding: 10px 0;
}

.top-bar ul li {
    list-style: none;

}

.top-bar ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar ul li a::before {
    content: '';
    position: absolute;
    background: #fff;
    width: 0%;
    height: 1px;
    bottom: -1px;
    left: 0;
    transition: 0.3s ease-in-out;
}

.top-bar ul li a:hover::before {
    width: 100%;
}

.top-bar ul li a object {
    width: 100%;
    height: 30px;
    display: block;
    position: relative;
}

.top-bar ul li a img {
    width: 27px;
}

.lang-selected span {
    font-size: 15px;
}

.top-bar ul li a.before-none::before {
    display: none;
}

.lang-dropdown {
    width: auto;
    position: relative;
    cursor: pointer;
    user-select: none;
    display: block;
}

.lang-selected {
    background: transparent;
    padding: 3px 0px;
    border-radius: 6px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #e76323;
    border-bottom: 2px solid #e76323;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.lang-dropdown.active .arrow {
    transform: rotate(-135deg);
}

.lang-options {
    list-style: none;
    padding: 0 !important;
    margin: 7px 0 0;
    background: #f5f9ff73;
    border: 1px solid #e5f0ff;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
    z-index: 99;
    display: block !important;
    width: fit-content;
    right: 0;
}

.lang-dropdown.active .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
    width: fit-content;
}

.lang-options li {
    padding: 5px 15px;
    transition: .5s;
    font-size: 15px;
}

.lang-options li:hover {
    background: #e76323;
    color: #fff;
}

.lang-options li.active {
    background: #e76323;
    font-weight: 600;
    color: #fff;
}

.navik-menu>ul>li>a.navbar-button {
    padding: 3px 10px;
    height: auto !important;
    color: #fff;
    line-height: normal !important;
    background: #e76323;
    border: 1px solid #e76323;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .90px;
    border-radius: 5px;
}

.navbar-button i {
    padding: 10px;
    background: #ffffff;
    margin-left: 10px;
    color: #005b86;
    border-radius: 100%;
    transition: .3s;
}

.navik-menu ul li:hover>a i {
    background-color: #005b86;
    color: #fff;
}

.navbar-button:hover i {
    color: #e76323;
}

.zx-nav-shell {
    position: relative;
}

/* burger */

.zx-burger-trigger {
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.zx-burger-trigger span {
    height: 3px;
    width: 100%;
    background: #e76323;
    transition: .4s;
    border-radius: 30px;
}

.zx-burger-trigger span:first-child {
    width: 80%;
}

.zx-burger-trigger span:last-child {
    width: 80%;
}

/* burger animation */

.zx-burger-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.zx-burger-trigger.active span:nth-child(2) {
    opacity: 0;
}

.zx-burger-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}


/* panel */

.zx-panel-layer {
    position: fixed;
    bottom: -133px;
    right: -100%;
    width: 30%;
    height: 100vh;
    background: linear-gradient(10deg, rgba(7, 97, 138, 1) 0%, rgba(0, 88, 128, 1) 40%, rgba(232, 183, 149, 1) 100%);
    transition: .8s cubic-bezier(.77, 0, .175, 1);
    backdrop-filter: blur(10px);
    box-shadow: 5px 0 25px rgb(0 0 0 / .3);
    border: none;
    padding: 0;
    overflow: auto;
}

.zx-panel-layer.open {
    right: 0;
}


/* menu */

.menu-items {
    padding: 16px 0 130px 22px;
}

.zx-menu-core {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zx-menu-core li {
    margin: 0 0;
    padding-top: 4px;
    margin-bottom: 20px;
}

.zx-menu-core a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
    position: relative;
}

.zx-menu-core a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: .5s;
}

.zx-menu-core a:hover {
    letter-spacing: 1px;
}

.zx-menu-core a:hover::before {
    width: 100%;
}


/* dropdown animation */

.zx-drop-layer,
.zx-subdrop-layer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding-left: 20px;
    width: 100% !important;
}

.zx-has-drop.active>.zx-drop-layer {
    max-height: 400px;
    position: unset;
    width: 100%;
    box-shadow: none;
    padding: 0 15px;
    background: #ebf4ff;
}

.zx-has-subdrop.active>.zx-subdrop-layer {
    max-height: 300px;
}


/* arrows */

.zx-has-drop>a::after,
.zx-has-subdrop>a::after {
    content: "+";
    float: right;
    transition: .3s;
    position: absolute;
    top: 0;
    right: -30px;
}

.zx-has-drop.active>a::after,
.zx-has-subdrop.active>a::after {
    transform: rotate(45deg);
}

.zx-menu-core:hover .zx-drop-layer {
    background-color: none;
    box-shadow: inherit;
    border-top: inherit;
    width: inherit;

}

.zx-drop-layer li {
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    list-style: none;
}

.zx-menu-core {
    margin: 0 0;
}

.navik-header.sticky .zx-panel-layer {
    position: fixed;
    top: 100%;
}


.search-box {
    padding: 5px;
    background-color: #fff;
    position: absolute;
    box-shadow: 0 0 32px 2px rgb(0 0 0 / .5);
    top: 52px;
    right: 6px;
    z-index: 99999;
    display: none;
    width: 400px;
    border-radius: 5px;
}

.search-box .form-control {
    border: 1px solid #e76323;
}

.search-box .form-control:focus {
    box-shadow: none;
}

button.btn-search {
    background-color: #e76323;
    border: none;
    padding: 8px 14px;
    border-radius: 0 8px 8px 0;
}


.banner-slider {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 550px;
}

.banner-slider-content h1 {
    font-size: 63px;
    font-weight: 800;
    color: #204e8d;
    max-width: 75%;
    margin-bottom: 20px;
}

.banner-slider-content p {
    font-size: 25px;
}


.boxwithiconform .input-group img {
    width: 25px;
}

.boxwithiconform .input-group .input-group-text {
    border: none;
    background: transparent;
}

.boxwithiconform .input-group .form-control,
.boxwithiconform .input-group .form-select {
    border: none;
    background-color: transparent;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.boxwithiconform .input-group .form-control:focus,
.boxwithiconform .input-group .form-select:focus {
    box-shadow: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 5px;
    border: 1px solid #e76323 !important;
}

.boxwithiconform .input-group {
    border: 1px solid #fff;
    background: #fff;
    border-radius: 5px;
}

.boxwithiconform .submit-btn {
    background: #e76323;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.form_with_golden_border .input-group img {
    width: 30px;
}

.form_with_golden_border .input-group .input-group-text {
    border: none;
    background: transparent;
}

.form_with_golden_border .input-group .form-control,
.form_with_golden_border .input-group .form-select {
    border: none;
    background-color: transparent;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}



.form_with_golden_border .input-group .form-control:focus,
.form_with_golden_border .input-group .form-select:focus {
    box-shadow: none;
}

.form_with_golden_border .input-group {
    border: 1px solid #e76323;
    background: transparent;
    border-radius: 5px;
}

.form_with_golden_border .submit-btn {
    background: #e76323;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    border: none;
}


.iconWithBottomForm .input-group img {
    width: 25px;
}

.iconWithBottomForm .input-group .input-group-text {
    border: none;
    background: transparent;
}

.iconWithBottomForm .input-group .form-control,
.iconWithBottomForm .input-group .form-select {
    border: none;
    background-color: transparent;
}

.iconWithBottomForm .input-group .form-control:focus,
.iconWithBottomForm .input-group .form-select:focus {
    box-shadow: none;
}

.iconWithBottomForm .input-group {
    border-bottom: 1px solid #ccc;
}

.iconWithBottomForm .submit-btn {
    background: #e76323;
    padding: 8px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    border: none;
}

.banner-form-text p {
    font-size: 17px;
    color: #9bb6c6;
    margin-bottom: 0;
    text-align: center;
}



section.section.form-section {
    background: #054870;
    padding: 80px 0px 60px;
    position: relative;
    z-index: 99;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
    margin-top: -35px;
}

.tab-style1 .treat-tab.active {
    background: transparent;
    border-color: #00648d;
}

.tab-style1 .treat-tab {
    border: none;
    border-bottom: 4px solid transparent;
    background: transparent;
    padding: 5px 20px;
    position: relative;
    overflow: hidden;
    transition: .5s;
    font-size: 17px;
    font-weight: 600;
}



.tab-style1 .tab-group {
    display: inline-flex;
    border-bottom: 1px solid #00648d;
    gap: 30px;
    align-items: center;
}

.slider-section {
    padding-bottom: 25px !important;
}

.linear-gradient-image {
    background-image: url(../img/doctor-se-bg.jpg);
    /* background: linear-gradient(10deg, rgba(7, 97, 138, 1) 0%, rgba(0, 88, 128, 1) 40%, rgba(232, 183, 149, 1) 100%); */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.linear-gradient-image-right-left {
    background-image: url(../img/hospital-sec-bg.jpg);
    /* background: linear-gradient(329deg, rgba(7, 97, 138, 1) 9%, rgba(0, 88, 128, 1) 35%, rgba(232, 183, 149, 1) 97%); */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hospital-card {
    background: #fff;
    border-radius: 7px;
    /* overflow: hidden; */
    margin: 4px;
    transition: .5s;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hospital-card::before {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    z-index: 9999999999999999999;
    background: #111111;
    width: 100%;
    height: 10px;
    border-radius: 100%;
    filter: blur(9px);
}

.hospital-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 7px;
    object-position: top;
}

.hospital-card-content {
    padding: 10px 10px 10px;
}

.hospital-card-content h3 {
    font-size: 18px;
    color: #026586;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
    text-align: left;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.hospital-card-content .location-ic {
    width: 5%;
}

.hospital-card-content .location-address {
    width: 90%;
    text-align: left;
}

.hospital-card-content .location-address p {
    font-size: 17px;
    margin-bottom: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.deatils-call-btn {
    text-align: left;
    margin-top: 10px;
    width: 100%;
    display: flex;
}

.view-details {
    font-size: 16px;
    background: #e76323;
    padding: 8px 15px;
    width: 85%;
    color: #fff;
    font-weight: 400;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deatils-call-btn .call {
    width: 15%;
    text-align: center;
    color: #fff;
    background: #026586;
    padding: 8px 9px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.deatils-call-btn .call img {
    width: 50px;
}

.swiper-nav {
    width: 100%;
    position: absolute;
    z-index: 999;
    top: 50%;
    /* transform: translate(-50%, -50%); */
    transform: translate3d(0, -50%, 0);
}

.doctor-section .slider-wrapper .swiper-nav {
    top: 85%;
    left: -66%;
}

.hospital-section .slider-wrapper .swiper-nav {
    right: -63%;
    top: 82%;
}

.swiper {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 45px;
    position: relative;
}

.swiper-slide {
    pointer-events: auto;
}

.hospital-card a {
    position: relative;
    z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    bottom: 0px;
    top: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #e76323;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    transition: .5s;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 20px;
}

.swiper-button-prev {
    left: calc(50% - 60px);
}

.swiper-button-next {
    right: calc(50% - 60px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #ffffff;
    background: #e76323;
}

.location-tab-bg {
    padding: 30px 20px 0;
    background: linear-gradient(180deg, rgb(255 255 255 / 46%) 15%, rgba(226, 242, 255, 0) 62%);
    border-radius: 15px;
    box-shadow: rgb(99 99 99 / 5%) 0px 2px 8px 0px;
}

.main-btn {
    display: inline-block;
    padding: 8px 30px;
    font-size: 16px;
    color: #fff;
    background: #e76323;
    border: 1px solid #e76323;
    border-radius: 5px;
    transition: .5s;
}

.main-btn:hover {
    background: transparent;
}

.emergency-btn {
    position: fixed;
    right: 0;
    font-size: 16px;
    top: 57%;
    letter-spacing: 0;
    z-index: 99999;
    color: #fff;
    background-color: #b31f27;
    border-radius: 0px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    padding: 8px 4px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-transform: uppercase;
    display: flex;
}

.about-us-counter-box h1 {
    font-size: 45px;
    font-weight: 800;
    color: #005b86;
    position: relative;
}

.about-us-counter-box h1::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: #005b86;
}

.about-us-bottom-part {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.about-us-bottom-part .bottom-part-ic {
    width: 20%;
}

.about-us-bottom-part .bottom-part-content {
    width: 80%;
}

.about-us-bottom-part .bottom-part-content h5 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
    color: #000;

}

.know-more-btn {
    border: 1px solid #e76323;
    background: #fff;
    padding: 3px 5px 3px 20px;
    color: #e76323;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
}

.know-more-btn i {
    font-size: 16px;
    color: #fff;
    background: #e76323;
    border-radius: 30px;
    padding: 10px;
    margin-left: 10px;
}

.about-us-right-col.sub-heading p {
    font-size: 18px;
}

.about-us-right-col.sub-heading p i {
    color: #fff;
    background: #e76323;
    padding: 8px;
    border-radius: 30px;
    margin-left: 10px;
}

.locations-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

.location-col {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    width: 23%;
    transition: .5s;
}

.location-ic img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: .5s;
}

.location-ic p {
    font-size: 16px;
    line-height: 19px;
    margin-top: 6px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .5s;
}

.location-col:hover {
    background: #054870;
}

.location-col:hover img {
    filter: invert(100%) sepia(94%) saturate(15%) hue-rotate(338deg) brightness(160%) contrast(100%);
}

.location-col:hover .location-ic p {
    color: #fff;
}

.blue-texture {
    background: url('../img/excellence-bg.jpg');
    background-size: cover;
    background-position: center;
}

.excellence-card {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
}

.excellence-card .excellence-ic-box {
    width: 62px;
}

.excellence-card .excellence-ic-box .excellence-ic {
    background: #054870;
    height: 62px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.excellence-ic img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.excellence-card .excellence-name {
    width: 79%;
}

.excellence-card .excellence-name p {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 10px;
}

.excellence-beforebox {
    position: absolute;
    bottom: 0;
    width: 75px;
    height: 75px;
    bottom: -6px;
    left: -6.4px;
    background: #00000000;
    border-bottom: 1px solid #e76323;
    z-index: 1;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    transition: .5s;
}

.excellence-beforebox::before {
    position: absolute;
    content: '';
    top: 54%;
    left: -2px;
    width: 5px;
    height: 5px;
    background: #e76323;
    border-radius: 50%;
    transition: .5s;
}

.excellence-beforebox::after {
    position: absolute;
    content: '';
    top: 54%;
    right: -2px;
    width: 5px;
    height: 5px;
    background: #e76323;
    border-radius: 50%;
    transition: .5s;
}

.excellence-card:hover .excellence-ic-box .excellence-ic {
    background: #e76323;
}

.excellence-card:hover .excellence-beforebox::before {
    background: #e76323;
}

.excellence-card:hover .excellence-beforebox::after {
    background: #e76323;
}

.excellence-card:hover .excellence-beforebox {
    border-bottom: 1px solid #e76323;
}

.icon-diff-form .input-group-text {
    background: #e76323;
    border-radius: 100% !important;
    margin-right: 15px;
    padding: 7px;
}

.icon-diff-form .input-group-text img {
    width: 30px;
}

.icon-diff-form .input-group .form-select,
.icon-diff-form .input-group .form-control {
    border-radius: 30px !important;
    background-color: #f0f2f1;
    border: 1px solid #fff;
    color: #4c4c4c;
    transition: .5s;
}

.icon-diff-form .input-group .form-select:focus,
.icon-diff-form .input-group .form-control:focus {
    box-shadow: none;
    border: 1px solid #054870;
}

.excellence-search-list ul li {
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid #fff;
    position: relative;
}

.excellence-search-list ul li a {
    display: block;
}

.excellence-search-list ul li a::before {
    opacity: 1;
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 35%;
    content: "\f061";
    font-size: 10px;
    margin: 0px 0px 0 0px;
    color: #fff;
    background: #e76323;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.left-half-section {
    max-width: 470px;
    margin-left: auto;
}

.view-all-doctor-btn {
    border: 0;
    background: none;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.view-all-doctor-btn i {
    border: 2px solid #e76323;
    padding: 4px;
    color: #e76323;
    border-radius: 30px;
    margin-left: 5px;
    font-size: 13px;
}

.hospital-card-content .doc-location-ic img {
    width: 20px;
    height: auto;
    /* height: 18px;
    object-fit: cover;
    object-position: left; */
    transition: .5s;
}

.location-address h4 {
    font-size: 17px;
    color: #000;
    margin-bottom: 0;
    line-height: 26px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.location-address h5 {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
    line-height: 26px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.location-address h6 {
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
    line-height: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    min-height: 42px;
}

.view-profile-btn {
    font-size: 16px;
    color: #7a7a7a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.defult-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.defult-card .defult-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.defult-card.card-gray {
    background-color: #f4f4f4;
}

.defult-card-content {
    padding: 10px;
}

.defult-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #005b86;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.defult-card-content p {
    font-size: 17px;
    margin-bottom: 5px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 16px;
    color: #005b86;
    font-weight: 600;
    margin-bottom: 3px;
    display: inline-block;
}

.right-testimonial-col .defult-card-content h3 {
    color: #005b86;
}

.right-testimonial-col .defult-card-content p {
    color: #636467;
    display: block;
}

.right-testimonial-col {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.right-testimonial-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px;
    background: #fff;
    border-radius: 5px;
    width: 100%;
}

.right-testimonial-card-img {
    width: 50%;
}

.right-testimonial-card-img img {
    width: 100%;
    height: 121px;
    object-fit: cover;
    border-radius: 5px;
}

.health-tips-section .horizontal-card .right-testimonial-card-content h3 {
    color: #005b86;
}

.right-testimonial-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.right-testimonial-card-content p {
    font-size: 16px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.right-testimonial-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #005b86;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.right-testimonial-col .big-img-testimonial {
    height: 425px;
    object-fit: cover;
    width: 100%;
}

.right-testimonial-card-content {
    width: 50%;
}

.right-half-section {
    max-width: 475px;
}

.health-tips-card.defult-card .defult-card-image img {
    height: 275px;
}

.icwithname {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icwith {
    width: 25px;
}

.withname {
    width: 90%;
    display: inline-block;
}

.withname h5 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.doctor_talk-master-page .defult-card.health-tips-card {
    background: #effaff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.horizontal-card .right-testimonial-card-img {
    width: 30%;
}

.horizontal-card .right-testimonial-card-content {
    width: 65%;
}

.horizontal-card .right-testimonial-card-content h3 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-weight: 600;
    color: #005b86;
}

.horizontal-card .withname h5 {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
}

.bg-none {
    background: none !important;
}

.list-style-none ul li {
    list-style: none !important;
    padding: 22px 10px 22px 0;
    border-bottom: 1px solid #d2d2d2;
}

.list-style-none ul {
    padding-left: 0;
}

footer.footer {
    padding: 0px 0px;
    background: #00648d;
}

.footer-logo {
    background: #fff;
    padding: 15px;
    border-bottom-left-radius: 30px;
    display: inline-block;
    width: 80%;
    border-top: 1px solid #00648d;
}

.footer-logo img {
    width: 100px;
}

.address-item strong {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.address-item i {
    font-size: 18px;
    color: #e8601d;
    margin-top: 8px;
}

.address-item p {
    font-size: 16px;
    color: #ffffff;
}

.footer .social-media-icon {
    display: flex;
    align-items: center;
}

.footer .social-media-icon img {
    width: 35px;
    margin-right: 10px;
}

.footer .custom-from .input-group-text#from-icon {
    background: #fff;
    border-bottom: 1px solid #ccc;
    border-top: 0px;
    border-left: 0;
    border-right: 0px;
    border-radius: 0px;
}

.footer .custom-from .input-group {
    border: none;
    border-radius: 0;
}

.footer .custom-from .input-group .form-control {
    border: none;
    border-radius: 0;
}


.footer .newsletter h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
}

.footer .custom-from .input-group-text#from-icon i {
    font-weight: 500;
}

.footer .newsletter p {
    font-size: 16px;
    color: #ffffff;
}

/* .footer .link-part h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
} */

.footer .link-part h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 800;
    color: #ffd8c5;
}

.footer .link-part ul {
    padding-left: 0;
}

.footer .link-part ul li {
    list-style: none;
}

.footer .link-part ul li a {
    font-size: 15px;
    color: #ffffff;
    transition: .3s ease-in;
}

.footer .link-part ul li:hover a {
    color: #e8601d;
    margin-left: 10px;
}

.bottom-footer {
    background: #00648d;
    border-top: 1px solid #fcdb05;
    padding: 15px 0px;
}

.bottom-footer p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
}

.footer .custom-from .input-group-text#from-icon {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}



/* ================================================================ INNER PAGE CSS ============================================================== */

.breadcrumb>li {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    text-shadow: none;
    color: #ffffff;
    letter-spacing: normal;
}

/* .inner-page-section .breadcrumb>li {
    color: #bdb0b0;
}

.inner-page-section .breadcrumb>li a {
    color: #bdb0b0;
}

.inner-page-section .breadcrumb>li+li:before {
    color: #bdb0b0;
}

.breadcrumb>li a {
    color: #bdb0b0;
} */

.inner-page-section .breadcrumb>li {
    color: #e65a18;
}

.inner-page-section .breadcrumb>li a {
    color: #e65a18;
}

.inner-page-section .breadcrumb>li+li:before {
    color: #e65a18;
}

.breadcrumb>li a {
    color: #e65a18;
}


.breadcrumb>li+li:before {
    opacity: 1;
    font-family: 'FontAwesome';
    font-weight: 600;
    content: "\f068";
    font-size: 14px;
    margin: 0 5px 0 5px;
    color: #ffffff;
}

.inner-page-section {
    background: #e65a18;
}

.half-inner-section {
    margin-left: auto;
    max-width: 480px;
}

.inner-bg-color {
    height: 400px;
    position: relative;
}

.inner-page-counter {
    background: linear-gradient(178deg, rgba(0, 91, 134, 1) 19%, rgba(0, 72, 106, 1) 82%);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 60px 0;
    border-top-right-radius: 260px;
    z-index: 99;
    box-shadow: rgb(0 0 0) 0px 5px 15px;
    height: 234px;
}

.inner-page-counter::before {
    position: absolute;
    content: '';
    top: 64px;
    right: -3px;
    width: 65px;
    height: 235px;
    background: linear-gradient(165deg, rgb(0 82 120 / 51%) 6%, rgb(0 72 106) 45%);
    transform: rotate(328deg);
    border-radius: 50px;
}



.inner-page-section .different-bg-inner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 284px;
    height: 100%;
    background: #01577f;
    clip-path: polygon(0 0, 41% 0%, 100% 100%, 0% 100%);
}

.inner-page-section .about-us-counter-box {
    position: relative;
}

.inner-page-section .about-us-counter-box h1::before {
    background: #e65a18;
}

.inner-page-section .about-us-bottom-part .bottom-part-content h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;

}

.inner-page-counter .about-us-counter-box h1 {
    color: #e65a18;
}

.shape-slider {
    clip-path: polygon(0 0, 79% 0, 100% 100%, 20% 100%);
    height: 450px;
    margin-right: -60px;
}

.banner-top-box {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #005b86;
    width: 500px;
    height: 45px;
    border-bottom-left-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.banner-top-box::before {
    position: absolute;
    content: '';
    top: -19px;
    left: -15px;
    width: 30px;
    height: 100%;
    background: #005b86;
    transform: rotate(318deg);
}

.banner-line-bar {
    width: 90%;
    height: 1px;
    background: #ffffff;
}

.banner-top-right-box {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #005b86;
    width: 200px;
    height: 70px;
    border-bottom-left-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgb(0 90 133 / 64%) 0px 3px 8px;
}

.banner-top-right-box::before {
    position: absolute;
    content: '';
    top: -7px;
    left: -16px;
    width: 30px;
    height: 100%;
    background: #005b86;
    transform: rotate(318deg);
}

.inner-slider.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 385px;
    object-fit: cover;
}

.banner-triangle-right {
    position: absolute;
    top: 5px;
    right: -25px;
    width: 70px;
    height: 240px;
    /* border-top: 45px solid transparent; */
    /* border-left: 45px solid #bf3d00; */
    background: #bf3d00;
    transform: rotate(334deg);
}

.inner-slider.owl-carousel .owl-nav button.owl-next,
.inner-slider.owl-carousel .owl-nav button.owl-prev {
    background: #ffffff;
    color: #e65a18;
    padding: 8px 12px !important;
    border-radius: 100%;
}

.inner-page-counter .half-inner-section {
    max-width: 810px;
}



.speciality-cta-box {
    border-right: 1px solid #abc7d6;
    padding: 0px 10px;
}

.speciality-cta-box h2 {
    font-size: 20px;
    font-weight: 700;
    color: #005b86;
    display: flex;
    align-items: center;
}

.speciality-cta-box.sub-heading p {
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    margin-top: 15px;
}

.speciality-cta-box h2 span {
    font-size: 17px;
    color: #fff;
    background: #e65a18;
    padding: 5px 10px;
    display: inline-block;
    line-height: normal;
    margin-right: 10px;
}

.chairman-section.linear-gradient-image-right-left {
    background: linear-gradient(288deg, rgba(7, 97, 138, 1) 9%, rgba(0, 88, 128, 1) 17%, rgba(232, 183, 149, 1) 97%);
}

.chairman-section.linear-gradient-image {
    background: linear-gradient(52deg, rgba(7, 97, 138, 1) 9%, rgba(0, 88, 128, 1) 17%, rgba(232, 183, 149, 1) 80%);
}

.chairman-section.linear-gradient-image-right-left .location-tab-bg {
    background: linear-gradient(180deg, rgb(255 255 255 / 46%) 30%, rgba(226, 242, 255, 0) 95%);
}

.about-designation h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.about-designation h5 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.about-designation p {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.chairman-img {
    position: relative;
    margin-left: -70px;
}

.owl-carousel.default-slider .owl-nav button.owl-next,
.owl-carousel.default-slider .owl-nav button.owl-prev {
    background: #e65a18;
    color: #fff;
    padding: 8px 12px !important;
    border-radius: 100%;
    position: absolute;
}

.owl-carousel.default-slider .owl-nav button.owl-next {
    top: 45%;
    right: -60px;
}

.owl-carousel.default-slider .owl-nav button.owl-prev {
    top: 45%;
    left: -60px;
}

.awards-box-content {
    position: absolute;
    top: 35%;
    /* left: 4%; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.owl-carousel .owl-item .awards-box-image img {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.awards-and-achivemets-section .row .col-md-3 {
    position: relative;
    padding-bottom: 15px;
}

.awards-and-achivemets-section .row .col-md-4 {
    position: relative;
    padding-bottom: 15px;
}

.awards-box-image {
    width: 100%;
    height: 195px;
}

.awards-and-achivemets-section .row .col-md-3::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 9%;
    background: #b2c4d0;
    width: 80%;
    height: 1px;
}

.awards-and-achivemets-section .row .col-md-3::after {
    position: absolute;
    content: '';
    bottom: 7%;
    right: 3px;
    background: #b2c4d0;
    width: 1px;
    height: 100%;
}

.awards-and-achivemets-section .row .col-md-4::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 9%;
    background: #3c7b9c;
    width: 80%;
    height: 1px;
}

.awards-and-achivemets-section .row .col-md-4::after {
    position: absolute;
    content: '';
    bottom: 7%;
    right: 3px;
    background: #3c7b9c;
    width: 1px;
    height: 100%;
}

.awards-and-achivemets-section .speciality-cta-box {
    border-right: 0px solid #abc7d6;
}


.awards-box-content h3 {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    text-align: center;
    width: 45%;
}

.before-bottom-none::before {
    display: none;
}

.after-right-none::after {
    display: none;
}

.specialities-deatils-left-col {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.specialities-deatils-left-col-bottom {
    background: linear-gradient(178deg, rgba(215, 85, 20, 1) 0%, rgba(164, 59, 9, 1) 64%);
    padding: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.specialities-deatils-left-col-bottom p {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specialities-deatils-left-col-bottom h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blue-texture-secondary {
    background: url('../img/blue-texture-second.jpg');
    background-size: cover;
    background-position: center;

}

.tab-type2 .treat-tab.active {
    background: #e65a18;
    color: #fff;

}

.tab-type2 .treat-tab {
    border: none;
    background: #fff;
    padding: 8px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: .5s;
    font-size: 17px;
    font-weight: 600;
}

.speciality-cta-box.sub-heading-light h2 {
    color: #fff;
}

.right-to-left-innerbanner .inner-page-counter {
    border-top-left-radius: 260px;
}

.inner-page-section.right-to-left-innerbanner .different-bg-inner::before {
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
    right: 0;
    left: unset;
}

.inner-page-section.right-to-left-innerbanner .inner-page-counter::before {
    left: -3px;
    transform: rotate(32deg);
    background: linear-gradient(165deg, rgb(0 88 129) 0%, rgb(0 72 106) 62%);
}

.inner-page-section.right-to-left-innerbanner .shape-slider {
    clip-path: polygon(16% 0, 100% 0, 82% 100%, 0% 100%);
    margin-right: auto;
    margin-left: -45px;
}

.inner-page-section.right-to-left-innerbanner .banner-top-right-box {
    left: 0px;
    right: unset;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 28px;
    width: 315px;
    height: 71px;
}

.inner-page-section.right-to-left-innerbanner .banner-top-right-box::before {
    top: -6px;
    right: -14px;
    left: unset;
    width: 36px;
    transform: rotate(399deg);
    border-bottom-right-radius: 10px;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box {
    right: unset;
    left: 0px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 30px;
    z-index: 99999;
    width: 45%;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box .breadcrumb>li a {
    color: #fff;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box .breadcrumb>li {
    color: #fff;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box .breadcrumb>li+li:before {
    color: #fff;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box::before {
    left: unset;
    right: -10px;
    transform: rotate(393deg);
    top: -19px;
}

.inner-page-section.right-to-left-innerbanner .banner-top-box .inner-bg-color {
    height: auto;
    position: unset;
    width: 547px;
    margin-left: auto;
}

.inner-page-section.right-to-left-innerbanner .banner-triangle-right {
    left: -25px;
    transform: rotate(23deg);
}

.cross-imageWith-bottom-open img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.cross-imageWith-bottom-open .bottom-open-text img {
    width: 35px;
    height: auto;
}

.bottom-open-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.bottom-open-text {
    padding: 8px 0;
    background: #e65a18;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.iconwithtext ul {
    padding-left: 0;
}

.iconwithtext ul li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #ffffff;
}

.iconwithtext ul li a {
    color: #ffffff;
    display: inline-block;
    position: relative;
}

.iconwithtext ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

.iconwithtext ul li i.icon-location-pin {
    font-size: 18px;
    color: #ffffff;
    margin-right: 5px;
}

.iconwithtext ul li i {
    color: #fff;
    font-size: 16px;
    margin-right: 5px;
}

.inner-page-section.right-to-left-innerbanner .main-heading-light h3 {
    font-size: 30px;
    font-weight: 700;
}

.inner-page-section.right-to-left-innerbanner .main-heading-light h3::before {
    top: 3px;
}

.rating {
    background: #00648d;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
}

.rating span {
    color: #fff;
}

.right-half-inner-section {
    max-width: 800px;
    margin-right: auto;
    position: relative;
    padding-left: 100px;
}

.banner-img-logo {
    width: 105px;
}

.hospital-details-overview-right-col-box {
    border-radius: 8px;
    overflow: hidden;
}

.hospital-details-overview-right-col-box img {
    height: 310px;
    width: 100%;
    object-fit: cover;
}

.hospital-details-overview-right-col-box-content {
    background: #005b86;
    padding: 15px 0;
    text-align: center;
}

.hospital-details-overview-right-col-box-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #005b86;
    width: 25px;
    height: 8px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e65a18;
    width: 8px;
    height: 8px;
    transition: .5s;
    margin: 4px;
}

.bg-primary {
    background: #005b86 !important;
}

.default-breadcum .breadcrumb>li a {
    color: #636466;
}

.default-breadcum .breadcrumb>li {
    color: #636466;
}

.default-breadcum .breadcrumb>li+li:before {
    color: #636466;
}

.doctor-details-card {
    background: #f5fcff;
    overflow: hidden;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.doctor-details-card-content ul {
    padding-left: 0;
}

.doctor-details-card-content h3 {
    font-size: 25px;
    font-weight: 700;
    color: #005b86;
}

.doctor-details-card-content p {
    font-size: 17px;
    font-weight: 500;
}

.doctor-details-card-content ul li {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}

.doctor-details-card-content ul li img {
    width: 25px;
}

.tab-section.treat-wrapper {
    position: relative;
}

.tab-section.treat-wrapper .tab-group {
    position: absolute;
    top: 0;
    background: #005b86;
    height: 100%;
    z-index: 999;
    width: 40%;
    clip-path: polygon(0 0, 100% 10%, 93% 88%, 0% 100%);
    padding: 60px 0;
    min-height: 510px;
}

.tab-section.treat-wrapper .tab-group button {
    display: block;
    margin-left: auto;
    width: 47%;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ffffff;
    padding: 10px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin-right: 100px;
}

.tab-section.treat-wrapper .tab-group button img {
    width: 40px;
    margin-right: 10px;
    background: #e65a18;
    padding: 5px;
    object-fit: contain;
    height: 40px;
    border-radius: 100%;
}

.tab-section.treat-wrapper .treat-box {
    background: #f2e6e9;
    padding: 60px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    min-height: 510px;
    position: relative;
}

/* .tab-section.treat-wrapper .treat-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    filter: blur(50px);
    z-index: -1;
} */
.background-primary-white {
    background: url('../img/details-pattern-white.jpg');
    background-size: cover;
    background-position: center;
}

.doctor-details-tab-heading h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #005b86;
    margin-bottom: 20px;
}

.doctor-details-tab-heading h3 img {
    width: 40px;
    background: #e65a18;
    padding: 5px;
    object-fit: contain;
    height: 40px;
    border-radius: 100%;
}

.tab-section.treat-wrapper .tab-group button.active {
    color: #e65a18;
}

.speciality-cta-slider .speciality-cta-box {
    border-right: 1px dashed #00527e;
}

.clip-curved-design {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
    padding-bottom: 70px !important;
    margin-bottom: -35px;
}

.sub-heading-light .read-more {
    color: #e65a18;
}

.speciality-cta-box.sub-heading-light p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.master-page-inner-section .breadcrumb>li a {
    color: #000;
}

.master-page-inner-section .breadcrumb>li {
    color: #000;
}

.master-page-inner-section .breadcrumb>li+li:before {
    color: #000;
}

.master-page-inner-section {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    min-height: 250px;
    position: relative;
}

.icon-form .input-group select {
    background-image: none;
}

.icon-form .input-group-text {
    padding: 5px;
    background: #e65a18;
    border-radius: 0;
    border: 1px solid #e65a18;
    height: 40px;
    width: 40px;
    justify-content: center;
}

.icon-form .input-group-text img {
    width: 24px;
}

.icon-form .input-group-text i {
    font-size: 18px;
    color: #fff;
}

.icon-form input.form-control,
.icon-form select.form-select {
    border: 0;
    color: #000000;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
}

.icon-form input.form-control:focus,
.icon-form select.form-select:focus {
    box-shadow: none;
}

.icon-form input.form-control::placeholder {
    color: #e65a18 !important;
    font-weight: 500;
    font-size: 15px;
}

.icon-form .input-group {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e65a18;
}

.condition-card {
    background: #f4fbff;
    padding: 20px 20px;
}

.condition-box-image img {
    width: 32px;
    filter: unset;
    transition: .5s;
    object-fit: contain;
    height: 32px;
}

.condition-box-content h5 {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 500;
    transition: .5s;
}

.condition-box {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 0;
    border-bottom: 1px solid #f9eced;
    transition: .5s;
}

.condition-box::before {
    opacity: 1;
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 35%;
    font-weight: 600;
    content: "\f061";
    font-size: 10px;
    margin: 0px 0px 0 0px;
    color: #fff;
    background: #e65a18;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.condition-box-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    background: #005b86;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.condition-page-right-box-type2 {
    position: relative;
    background: #005b86;
    padding: 30px 20px;
    display: flex;
    align-items: center;
}

.condition-page-right-box-type3 {
    background: #e65a18;
    padding: 25px 20px;
}

.condition-page-right-box-type3 h5 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.condition-page-right-box-type3 h4 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.condition-page-right-box-type1 {
    position: relative;
    background: #fef4f4;
    padding: 30px 20px;
    display: flex;
    align-items: center;
}

.condition-page-right-box-type1 img {
    width: 35px;
    margin-right: 10px;
}

.condition-page-right-box-type1 h5 {
    font-size: 16px;
    margin-bottom: 0;
    line-height: normal;
    color: #005b86;
    font-weight: 600;
}

.condition-page-right-box-type1::before {
    opacity: 1;
    font-family: 'FontAwesome';
    position: absolute;
    right: 25px;
    top: 35%;
    font-weight: 600;
    content: "\f054";
    font-size: 17px;
    margin: 0px 0px 0 0px;
    color: #fff;
    background: #e65a18;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.condition-page-right-box-type2 h5 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.condition-page-right-box-type3 h4 i {
    background: #fff;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    color: #e65a18;
    padding: 12px;
    margin-right: 10px;
    font-size: 18px;
}

.sticky-top {
    top: 150px;
}

.owl-carousel.speciality-cta-slider .owl-nav button.owl-next,
.owl-carousel.speciality-cta-slider .owl-nav button.owl-prev {
    background: #e65a18;
    color: #fff;
    padding: 8px 12px !important;
    border-radius: 100%;
    position: absolute;
}

.owl-carousel.speciality-cta-slider .owl-nav button.owl-next {
    top: 30%;
    right: -70px;
}

.owl-carousel.speciality-cta-slider .owl-nav button.owl-prev {
    top: 30%;
    left: -70px;
}

.speciality-details-page .half-inner-section .main-heading-light h2 {
    font-size: 31px;
}

.details-formWithIcon {
    background-color: #005b86;
    padding: 20px;
    border-radius: 10px;
}

.details-formWithIcon h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.details-formWithIcon .input-group-text {
    background: #fff;
    border: 0;
}

.details-formWithIcon .form-control,
.details-formWithIcon .form-select {
    border: 0;
    padding: 10px 0;
}

.details-formWithIcon .input-group span i {
    color: #e65a18;
    font-size: 18px;

}

.details-formWithIcon .input-group img {
    width: 24px;
}

.details-formWithIcon .form-control:focus,
.details-formWithIcon .form-select:focus {
    box-shadow: none;
}

.you-tube-iframe {
    height: 320px;
}

.doctor-name {
    background: #00648d;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 25px;
    border-radius: 0px;
    min-height: 40px;
}

.doctor-name p {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .60px;
    margin-bottom: 0;
}

.doctor-name img {
    width: 32px;
    filter: invert(100%) sepia(94%) saturate(15%) hue-rotate(338deg) brightness(130%) contrast(100%);
}

.lenis.lenis-smooth iframe {
    pointer-events: auto;
}

.health-package-card {
    background: #f0faff;
    padding: 7px;
    border-radius: 7px;
    height: 100%;
}

.health-package-card .health-package-card-image img {
    width: 100%;
    height: 196px;
    object-fit: cover;
    border-radius: 7px;
}

.health-package-card-content h2 {
    font-size: 21px;
    color: #00648d;
    margin-top: 10px;
    font-weight: 600;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.health-package-card-content p {
    font-size: 17px;
    color: #000000;
    margin-top: 0px;
    margin-bottom: 5px;
}

.health-package-card-content ul {
    padding-left: 0;
    margin-bottom: 10px;
}

.health-package-card-content ul li {
    font-size: 15px;
    color: #000000;
    padding-left: 14px;
    display: block;
    position: relative;
    margin-right: 15px;
}

.health-package-card-content ul li::before {
    content: '';
    position: absolute;
    top: 37%;
    left: 0;
    background: #000000;
    height: 6px;
    width: 6px;
    border-radius: 100%;
}

.location-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-with-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-with-text h6 {
    margin-bottom: 0;
    color: #000000;
    letter-spacing: .40px;
}

.icon-with-text i {
    color: #e76323;
}

.price p {
    color: #e76323;
    line-height: normal;
    margin-bottom: 0;
}

.location-price {
    margin-bottom: 15px;
}

.primary-section .talk-btn a {
    color: #e76323;
}

.primary-section .talk-btn a::before {
    background: #fcdb00;
}

.inner-page-section .main-heading-light.sub-heading-light h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.career-card .career-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    background: #005b86;
}

.career-card .career-card-heading h3 {
    color: #ffffff;
    font-size: 20px;
    letter-spacing: .40px;
    margin-bottom: 0;
    font-weight: 600;
}

.career-card .career-card-heading p {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .40px;
}

.career-card .sub-heading.main-list.main-heading {
    padding: 20px 15px;
}

.career-card {
    background: #f6f6f6;
    border: 1px solid #f7f7f7;
}

.insurance-card img {
    box-shadow: rgb(0 0 0 / .24) 0 3px 8px;
    width: 100%;
    height: 115px;
    object-fit: cover;
}

.insurance-img {
    padding-bottom: 10px;
}


.submission-table table {
    background-color: #ddebff !important;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.submission-table tbody,
td,
tfoot,
th,
thead,
tr {
    font-size: 16px;
    padding: 8px 15px 8px 15px !important;
    color: #000000 !important;
    font-weight: 400;
    line-height: 20px;
    transition: 0.5s ease;
    background-color: transparent !important;
}

.submission-table tr td,
.submission-table tr th {
    border: 1px solid #ffffff !important;
}

.submission-table tr td:first-child,
.submission-table tr th:first-child {
    border-left: none;
}

.submission-table tr td:last-child,
.submission-table tr th:last-child {
    border-right: none;
}

.submission-table table:not(:has(th)) tr:first-child td,
.submission-table table tr th {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
    padding: 10px 20px !important;
    letter-spacing: normal;
    background: #005b86 !important;
}

.static-page-section .main-heading.sub-heading img {
    display: inline-block;
    width: 24%;
    justify-content: space-between;
    margin-right: 5px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 5px solid #005b86;
}

.static-page-section .main-heading.sub-heading img:last-child {
    margin-right: 0;
}

.bg-light {
    background: #fff !important;
}

.blog-master-main-page .icon-form .input-group select {
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
}

.blog-left-col {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
}

.blog-left-col ul {
    padding-left: 0;
}

.blog-left-col ul li {
    list-style: none;
    padding-left: 0;
}

.blog-left-col ul li a {
    font-size: 15px;
    font-weight: 500;
}

.blog-card .defult-card-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #005b86;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-card .icwithname {
    gap: 5px;
}

.blog-card .icwith {
    width: 16px;
}

.blog-card .withname h5 {
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.blog-card .blog-card-image img {
    width: 100%;
    height: 265px;
    object-fit: cover;
}

.acc-title {
    border-bottom: 1px solid #ffffff;
    color: #000;
    padding: 12px 6px;
    cursor: pointer;
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    background: #005b87;
}

.acc-item {
    margin-bottom: 0px;
    /* padding: 10px; */
    background: #fceeee;
}

.acc-title span {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.acc-title::after {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: none;
    background-color: #e65a18;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.2s ease-in-out;
    margin-left: auto;
    transition: 0.3s;
    flex-shrink: 0;
}

.acc-title.active::after {
    content: "\f068";
    transform: rotate(-180deg);
}

.acc-content {
    display: none;
    padding: 10px;
    border-top: 0;
}

.acc-content p {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 25px;
    color: #000;
}

.acc-title img {
    width: 40px;
    background: #e65a18;
    padding: 5px;
    object-fit: contain;
    height: 40px;
    border-radius: 100%;
}

.testimonial-master-page .right-testimonial-col {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.testimonial-master-page .right-testimonial-col .big-img-testimonial {
    height: 310px;
    object-fit: cover;
}

.testimonial-master-page .right-testimonial-col .defult-card-content p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;

}

.doctor-master-page .hospital-card::before {
    display: none;
}

.doctor-talk-section .defult-card.health-tips-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.breadcrumb>li a {
    color: #000;
}

.breadcrumb>li {
    color: #000;
}

.breadcrumb>li+li:before {
    color: #000;
}

.investor-page-section {
    background: #e1f4ff;
}

.investor-page-section .sub-heading p {
    font-size: 20px;
    line-height: 28px;
}

.investor-primary-btn {
    background: #e76323;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 4px;
}

.investor-primary-btn img {
    width: 20px;
    filter: invert(100%) sepia(95%) saturate(6%) hue-rotate(338deg) brightness(142%) contrast(146%);
}

.investor-primary-btn.differ {
    background: #fff;
    border: 1px solid #e76323;
    color: #000;
}

.investor-primary-btn.differ img {
    filter: none;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-tab-nav-section .title {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .custom-tab-nav-section .title {
        font-size: 24px;
    }
}

.custom-tab-nav-section .title svg {
    width: 45px;
    height: 45px;
    margin: 0 10px;
}

.custom-tab-nav-section .scrollable-tabs-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .custom-tab-nav-section .scrollable-tabs-container {
        max-width: 100%;
    }
}

.custom-tab-nav-section .scrollable-tabs-container svg {
    width: 35px;
    height: 35px;
    padding: 0px;
    cursor: pointer;
    color: #000000;
    border-radius: 50%;
    pointer-events: auto;
}

.custom-tab-nav-section .scrollable-tabs-container ul {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    justify-content: space-between;
}

.custom-tab-nav-section .scrollable-tabs-container ul::-webkit-scrollbar {
    display: none;
}

.custom-tab-nav-section .scrollable-tabs-container ul.dragging {
    scroll-behavior: auto;
}

.custom-tab-nav-section .scrollable-tabs-container ul.dragging a {
    pointer-events: none;
}

.custom-tab-nav-section .scrollable-tabs-container a {
    display: inline-block;
    padding: 0 15px;
    border-radius: 3px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    background: transparent;
    transition: 0.25s;
}

.custom-tab-nav-section .scrollable-tabs-container a.active {
    color: #ffffff;
    background: transparent;
    border-bottom: 1px solid #fff;
}

.custom-tab-nav-section .scrollable-tabs-container .right-arrow,
.custom-tab-nav-section .scrollable-tabs-container .left-arrow {
    position: absolute;
    height: 30px;
    width: 30px;
    top: 13px;
    border-radius: 50%;
    display: none;
    align-items: center;
    padding: 0 7px;
    pointer-events: none;
}

.custom-tab-nav-section .scrollable-tabs-container .right-arrow.active,
.custom-tab-nav-section .scrollable-tabs-container .left-arrow.active {
    display: flex;
}

.custom-tab-nav-section .scrollable-tabs-container .right-arrow svg,
.custom-tab-nav-section .scrollable-tabs-container .left-arrow svg {
    transition: 0.25s;
}

.custom-tab-nav-section .scrollable-tabs-container .right-arrow {
    right: 0;
    justify-content: flex-end;
    background: #fff;
}

.custom-tab-nav-section .scrollable-tabs-container .left-arrow {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.custom-tab-nav-section {
    position: sticky;
    top: 120px;
    background: #005b86;
    z-index: 999;
}

.invester-about-left-col ul li a {
    position: relative;
}

.invester-about-left-col ul {
    padding-left: 0;
}

.invester-about-left-col ul li {
    list-style: none;
    padding-left: 0;
}

.invester-about-left-col ul li a {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    transition: .5s;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb;
}

.invester-about-left-col ul li a:hover {
    color: #e76323;
}

.invester-about-left-col ul li a::before {
    opacity: 1;
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 13px;
    font-weight: 600;
    content: "\f061";
    font-size: 10px;
    margin: 0px 0px 0 0px;
    color: #fff;
    background: #e65a18;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.invester-about-left-col {
    padding: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
}

.calender {
    background: #f5fcff;
    padding: 10px 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
    position: relative;
}

.calendar-container .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background: #f5fcff;
}

.calendar-container .nav-button {
    background: none;
    border: none;
    color: #026586;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 12px;
    transition: opacity 0.2s;
}

.calendar-container .nav-button:hover {
    opacity: 0.7;
}

.calendar-container .current-month {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}

.calendar-container .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #d94e1f;
    color: white;
    margin-bottom: 10px;
}

.calendar-container .weekday {
    padding: 7px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.calendar-container .days {
    display: flex;
    padding: 0px;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    /* min-height: 275px; */
    margin: auto 0;
}

.calendar-container .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
    color: #000000;
    transition: all 0.2s;
    position: relative;
    width: 36px;
    height: 34px;
    font-weight: 600;
}

.calendar-container .day:hover:not(.empty):not(.selected) {
    background: #e8f4f8;
}

.calendar-container.calendar-container .day.empty {
    cursor: default;
}

.calendar-container.calendar-container .day.selected {
    background: #0a5a7a;
    color: white;
    font-weight: 600;
}

.calendar-container.calendar-container .day.today {
    border: 2px solid #0a5a7a;
}

.calendar-container.calendar-container .action-button {
    margin: 0;
    width: 94%;
    padding: 8px;
    background: #0a5a7a;
    color: white;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    position: absolute;
    bottom: 6px;
}

.calendar-container .action-button:hover {
    background: #084a61;
}

.calendar-container .debug-info {
    margin: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    color: #666;
}

.calendar-container .debug-info strong {
    color: #333;
}

.company-details-card {
    padding: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
}

.company-details-card h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #005b86;
    font-weight: 700;
}

.company-details-card ul {
    padding-left: 0;
}

.company-details-card ul li {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 9px 0;
    border-bottom: 1px solid #cdcdcd;
}

.company-details-card ul li p {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 600;
    width: 35%;
}

.company-details-card ul li span {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
    width: 63%;
}

.different-bg.know-more-btn {
    border: 1px solid #e76323;
    background: #e76323;
    padding: 3px 5px 3px 13px;
    color: #ffffff;
}

.different-bg.know-more-btn i {
    background: #ffffff;
    color: #e76323;
}

.tranding-box {
    background: #005b86;
    padding: 30px 40px;
    border-radius: 15px;
}

.tranding-calender-box {
    background: #004a6c;
    display: inline-flex;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

.tranding-calender-box img {
    width: 45px;
}

.tranding-content h3 {
    color: #e8601d;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.tranding-content h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}

.tranding-content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}

.investor-relation-bg {
    background: url('../img/investor-relation-bg.jpg');
    background-size: cover;
    background-position: center;
}

.investor-relation-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    padding-bottom: 15px;
    padding-right: 15px;
}

.investor-relation-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 93%;
    height: 1px;
    background: #abc8d8;
}

.investor-relation-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 80%;
    background: #abc8d8;
}

.investor-laft-box img {
    width: 80px;
}

.investor-right-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: #026586;
}

.investor-right-box p {
    font-size: 16px;
    line-height: 22px;
}

.explore-btn {
    font-size: 17px;
    color: #e76323;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: .5s;
}

.explore-btn:hover::before {
    width: 100%;
}

.explore-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #e76323;
    transition: .5s;
}

.row .col-md-4:nth-child(3) .investor-relation-card::after {
    display: none;
}

.row .col-md-4:nth-child(4) .investor-relation-card::before {
    display: none;
}

.row .col-md-4:nth-child(5) .investor-relation-card::before {
    display: none;
}

.row .col-md-4:nth-child(6) .investor-relation-card::before {
    display: none;
}

.row .col-md-4:nth-child(6) .investor-relation-card::after {
    display: none;
}


.international-patient-services-section .row .col-md-4:nth-child(3) .investor-relation-card::after {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(4) .investor-relation-card::before {
    display: block;
}

.international-patient-services-section .row .col-md-4:nth-child(5) .investor-relation-card::before {
    display: block;
}

.international-patient-services-section .row .col-md-4:nth-child(6) .investor-relation-card::before {
    display: block;
}

.international-patient-services-section .row .col-md-4:nth-child(6) .investor-relation-card::after {
    display: block;
}

.international-patient-services-section .row .col-md-4:nth-child(9) .investor-relation-card::after {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(6) .investor-relation-card::after {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(7) .investor-relation-card::before {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(8) .investor-relation-card::before {
    display: none;
}

.international-patient-services-section .row .col-md-4:nth-child(9) .investor-relation-card::before {
    display: none;
}



.leatest-updates-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.latest-card-date {
    background: #fff;
    width: 10%;
    padding: 5px 10px;
    border-radius: 8px;
}

.latest-card-content {
    width: 90%;
}

.latest-card-date h5 {
    font-size: 18px;
    color: #e65a18;
    margin-bottom: 0;
}

.latest-card-date h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0px 0;
    color: #e65a18;
}

.latest-card-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #005983;
    margin-bottom: 0;
}

.latest-card-content p {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}

.quick-download-p p:last-child {
    font-size: 14px;
    font-weight: 600;
}

.border-opacity-1 {
    border-color: #e4e4e4;
}

.download-button {
    font-size: 18px;
    color: #fff;
    background: #e76323;
    width: 45px;
    height: 43px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-box {
    display: flex;
    gap: 60px;
    margin-bottom: 15px;
}

.journey-left-year h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.journey-content-box {
    padding-left: 60px;
    position: relative;
}

.journey-content-box::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    background: #e76323;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.journey-content-box::after {
    content: '';
    position: absolute;
    top: 4px;
    left: -3px;
    border: 1px solid #00648d;
    width: 16px;
    height: 16px;
    border-radius: 100%;
}

.journey-content-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    color: #00648d;
}

.journey-main {
    position: relative;
}

.journey-main::before {
    position: absolute;
    top: 0;
    content: '';
    left: 130px;
    width: 2.5px;
    height: 100%;
    background: #00648d;
}
.journey-left-year {
    width: 8%;
    text-align: end;
}

.banner-slider.owl-carousel .owl-nav .owl-next,
.banner-slider.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 70%;
    background: #e76323;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 13px;
    line-height: 15px;
    margin: 0;
}

.banner-slider.owl-carousel .owl-nav .owl-next {
    right: 70px;
}

.banner-slider.owl-carousel .owl-nav .owl-prev {
    left: 50px;
}

.international-patient-care-heading.main-heading h3 {
    font-size: 17px;
    font-weight: 600;
    color: #e76323;
    text-transform: uppercase;
}

.international-patient-care-heading.main-heading h3::before {
    background: url(../img/global.svg);
    background-size: contain;
    background-position: center;
}

.zxq-shell {
    font-family: 'DM Sans', sans-serif;
    padding: 2rem 1.5rem;
    max-width: 660px;
    margin: 0 auto;
}

.zxq-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin: 0 0 0.4rem;
    font-weight: 500;
}

.zxq-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text-primary);
    margin: 0 0 2rem;
    line-height: 1.25;
}

.zxq-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 0.5px solid var(--color-border-secondary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.zxq-item {
    border-bottom: 0.5px solid var(--color-border-tertiary);
    transition: background 0.2s;
}

.zxq-item:last-child {
    border-bottom: none;
}

.zxq-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    transition: background 0.15s;
}

.zxq-trigger:hover {
    background: var(--color-background-secondary);
}

.zxq-item.zxq-open .zxq-trigger {
    background: var(--color-background-secondary);
}

.zxq-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zxq-icon-bubble {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.zxq-trigger:hover .zxq-icon-bubble {
    transform: scale(1.08);
}

.zxq-bubble-purple {
    background: #EEEDFE;
    color: #534AB7;
}

.zxq-bubble-teal {
    background: #E1F5EE;
    color: #0F6E56;
}

.zxq-bubble-coral {
    background: #FAECE7;
    color: #993C1D;
}

.zxq-bubble-amber {
    background: #FAEEDA;
    color: #854F0B;
}

.zxq-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
}

.zxq-subtitle {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin: 2px 0 0;
}

.zxq-chevron {
    font-size: 18px;
    color: var(--color-text-tertiary);
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    flex-shrink: 0;
    color: #fff;
}

.zxq-item.zxq-open .zxq-chevron {
    transform: rotate(180deg);
}

.zxq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.zxq-item.zxq-open .zxq-body {
    min-height: 345px;
    height: 100%;
    max-height: 650px;
}

.zxq-body-inner {
    padding: 0;
}

.zxq-body-inner p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin: 0 0 0.75rem;
}

.zxq-body-inner p:last-child {
    margin-bottom: 0;
}

.zxq-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.85rem;
}

.zxq-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.zxq-tag-purple {
    background: #EEEDFE;
    color: #534AB7;
}

.zxq-tag-teal {
    background: #E1F5EE;
    color: #0F6E56;
}

.zxq-tag-coral {
    background: #FAECE7;
    color: #993C1D;
}

.zxq-tag-amber {
    background: #FAEEDA;
    color: #854F0B;
}

.zxq-divider {
    height: 0.5px;
    background: var(--color-border-tertiary);
    margin: 0.75rem 0;
}

.international-patient-care-form-col .details-formWithIcon h3 {
    margin-bottom: 2px;
}

.international-patient-care-form-col .details-formWithIcon p {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

label.form-label {
    color: #fff;
    ;
}

.investor-relation-counter-row .about-us-bottom-part .bottom-part-content h5 {
    font-size: 16px;
    font-weight: 600;
}

.investor-relation-counter-row .about-us-counter-box h1 {
    font-size: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.investor-relation-counter-row .about-us-counter-box h1::before {
    display: none;
}

.international-counter-box-icon img {
    width: 50px;
    filter: invert(100%) sepia(94%) saturate(47%) hue-rotate(379deg) brightness(175%) contrast(100%);
}

.international-counter-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #d94e1f;
    margin-bottom: 0;
}

.international-counter-box-content p {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    display: inline-flex;
}

.international-counter-box {
    border-right: 1px solid #fff;

}

.row .col-md-3:last-child .international-counter-box {
    border-right: none;
}

.international-patient-second-opinion-section {
    background: linear-gradient(35deg, rgba(2, 62, 90, 1) 29%, rgba(0, 91, 134, 0.87) 100%);
}


.main-accordion .accordion-header button {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px 10px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #000;
    border-radius: 0 !important;
    border-bottom: 1px solid #005b86;
    color: #005b86;
}

.main-accordion .accordion-header button.collapsed {
    border-bottom: 0;
    color: #000;
}

.main-accordion .accordion-item {
    border-bottom: 1px solid #bbd3df;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    background: transparent;
    border-radius: 0;
}


.main-accordion .accordion-item .accordion-button::after,
.main-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f068';
    font-family: "FontAwesome";
    position: absolute;
    right: 16px;
    top: 32%;
    font-size: 11px;
    font-weight: 900;
    line-height: normal;
    color: #ffffff;
    background-image: none;
    width: 20px;
    height: 20px;
    background: #e76323;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.main-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    color: #ffffff;
}

.main-accordion .accordion-body {
    font-size: 16px;
    font-weight: 500;
    color: #1a1515;
    padding: 5px 0 20px;
}

.main-accordion .accordion-item:last-child {
    border-bottom: none;
}

.contact-us-section {
    height: 530px;
}

.contact-us-box .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /* width: 660px; */
    box-shadow: 0 2px 16px rgb(0 0 0 / 21%);
    border: 0;
    margin-bottom: 30px;
}

/* â”€â”€ Header â”€â”€ */
.contact-us-box .card-header {
    background: #1a5276;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
}

.contact-us-box .card-header .hospital-info h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.contact-us-box .card-header .hospital-info p {
    color: #ebf3f8;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0;
}

.contact-us-box .emergency-btn1 {
    background: #fff;
    color: #1a5276;
    border: none;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
    margin-top: 10px;
}

/* â”€â”€ Info Grid â”€â”€ */
.contact-us-box .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 22px 22px 0px;
    background: #eaf4fb;
}

.contact-us-box .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 10px 16px 0;
}

.contact-us-box .icon-wrap {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-us-box .icon-wrap svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.contact-us-box .info-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.contact-us-box .info-text p {
    font-size: 14px;
    color: #000000;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 10px;
}

/* â”€â”€ Action Buttons â”€â”€ */
.contact-us-box .action-bar {
    display: flex;
    gap: 16px;
    padding: 14px 22px 18px;
    background: #eaf4fb;
}

.contact-us-box .action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #e76323;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 3px 20px 3px 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s;
}

.contact-us-box .action-btn-reverse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background-color: #ffffff;
    color: #e76323;
    border: none;
    border-radius: 4px;
    padding: 3px 20px 3px 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.5s all;
}

.contact-us-box .action-btn-reverse:hover {
    background-color: #005b86;
    color: #ffffff;
}

.contact-us-box .action-btn-reverse:hover img {
    filter: invert(100%) sepia(94%) saturate(47%) hue-rotate(392deg) brightness(175%) contrast(100%);
}

.contact-us-box .action-btn:hover {
    background: #c95e28;
}

.contact-us-box .action-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.contact-us-box .icon-wrap img {
    /* filter: invert(100%) sepia(94%) saturate(47%) hue-rotate(392deg) brightness(175%) contrast(100%); */
    width: 25px;
}

.action-btn img {
    width: 40px;
}

.details-formWithIcon.contact-us-page-form .form-control,
.details-formWithIcon.contact-us-page-form .form-select {
    padding: 7px 10px;
}

.details-formWithIcon.contact-us-page-form p {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.details-formWithIcon.contact-us-page-form h3 {
    margin-bottom: 2px;
}

.details-formWithIcon.contact-us-page-form .contact-us-form-heading {
    background: #e76323;
    padding: 20px 15px;
}

.contact-us-cta-card .card-ic {
    width: 50px;
    position: relative;
    margin: auto;
}

.contact-us-cta-card .card-ic::before {
    content: '';
    position: absolute;
    bottom: 10px;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 8px;
}

.contact-us-cta-card .card-ic img {
    width: 50px;
    filter: invert(100%) sepia(94%) saturate(47%) hue-rotate(392deg) brightness(175%) contrast(100%);
    margin-bottom: 20px;
}

.contact-us-cta-card .card-content h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
}

.contact-us-cta-card .card-content p {
    font-size: 15px;
    color: #fff;
}

.half-inner-section .main-heading-light.sub-heading-light {
    position: relative;
    max-width: 80%;
}

.blog-details-main-page .inner-page-counter {
    height: 320px;
}

.blog-details-main-page .inner-page-counter::before {
    top: 100px;
    right: -27px;
    width: 78px;
    height: 277px;
}

.blog-details-main-page .half-inner-section .main-heading-light h2 {
    font-size: 35px;
}

.paragraph-content.main-heading h3::before {
    display: none;
}






.cf-root {
    padding: 2rem 0 1.5rem;
}

.cf-stage {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1100px;
    overflow: hidden;
}

.cf-card {
    position: absolute;
    width: 350px;
    height: auto;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    /* overflow: hidden; */
    user-select: none;
    display: flex;
    flex-direction: column;
}







.cf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 1.5rem;
    position: absolute;
    bottom: 95px;
    left: 33%;
}

.cf-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 0.5px solid var(--color-border-secondary);
    background: #fff;
    color: #e76323;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, transform 0.1s;
}



.cf-dots {
    display: flex;
    gap: 6px;
}

.cf-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-border-secondary);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.cf-dot.active {
    background: #e8601c;
    transform: scale(1.4);
}

/* MOBILE RESPONSIVE */

@media (max-width: 767px) {

    .cf-stage {
        height: 625px;
        display: block;
    }

    .cf-card {
        width: 100%;
    }

    .cf-controls {
        bottom: 34px;
        left: 37%;
    }


}

.file-input-group {
    position: relative;
}

.file-input__input {
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    border: none;
}

.file-input-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    color: #21283c;
    padding: 7px 15px;
    line-height: 1.85;
    background-color: #f3f3f3;
    width: 100%;
    justify-content: start;
    border: none;
}

.file-input-label span {
    font-size: 16px;
    font-weight: 400;
}

.file-input-group label i {
    color: #c95e28;
    margin-right: 20px;
    font-weight: 600;
}


/* Doctor Card */
.doctor-booking-system-main-page .doctor-card {
    background: #eaf3fb;
    border-radius: 12px;
    padding: 20px 22px 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.doctor-booking-system-main-page .doctor-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.doctor-booking-system-main-page .doctor-photo {
    width: 145px;
    height: 145px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #9dbfd6 0%, #6a9db8 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.doctor-booking-system-main-page .doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-booking-system-main-page .doctor-info {
    flex: 1;
    min-width: 0;
}

.doctor-booking-system-main-page .doctor-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}

.doctor-booking-system-main-page .doctor-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a5276;
    background: transparent;
    padding: 0;
    margin-bottom: 2px;
    min-height: auto;
}

.doctor-booking-system-main-page .doctor-degree {
    font-size: 14px;
    color: #000000;
    margin-bottom: 8px;
    font-weight: 500;
}

.doctor-booking-system-main-page .doctor-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.doctor-booking-system-main-page .meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

.doctor-booking-system-main-page .meta-item img {
    width: 25px;
}

.doctor-booking-system-main-page .meta-item.specialty {
    font-weight: 700;
    color: #111;
}

.doctor-booking-system-main-page .meta-item img.img-fluid.location-ic {
    width: 20px;
}

.doctor-booking-system-main-page .experience-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333333;
    font-weight: 700;
    white-space: nowrap;
}

.doctor-booking-system-main-page .experience-badge img {
    width: 25px;
}

/* Slot */
.doctor-booking-system-main-page .slot-label {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0px;
}

.doctor-booking-system-main-page .slot-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.doctor-booking-system-main-page .slot-btn {
    padding: 4px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #10658e;
    background: transparent;
    color: #1a5276;
    transition: .5s;
    line-height: normal;
}

.doctor-booking-system-main-page .slot-btn:hover {
    background: #1a5276;
    color: #fff;
}

.doctor-booking-system-main-page .slot-btn.active {
    background: #e76323;
    border-color: #e76323;
    color: #fff;
}

.doctor-booking-system-main-page .divider {
    border-top: 1px solid #005b86;
    margin: 14px 0;
    opacity: inherit;
}

/* Time */
.doctor-booking-system-main-page .time-label {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.doctor-booking-system-main-page .time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    max-height: 0;
    opacity: 0;

    overflow: hidden;

    transform-origin: top;
    transform: scaleY(0.8);

    transition: .5s;

    margin-top: 0;
    max-height: 500px;
    position: absolute;
    top: 0;
    width: 100%;
}

.doctor-booking-system-main-page .time-btn {
    padding: 5px 5px;
    border-radius: 6px;
    border: 1.5px solid #aac4d8;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #0a0a0a;
    cursor: pointer;
    text-align: center;
    transition: .5s;
    line-height: normal;
}

.doctor-booking-system-main-page .time-btn:hover {
    border-color: #e76323;
    color: #e76323;
}

.doctor-booking-system-main-page .time-btn.active {
    background: #e76323;
    border-color: #e76323;
    color: #fff;
}

/* Logo */
.doctor-booking-system-main-page .card-logo {
    text-align: center;
    margin-top: 18px;
    opacity: 0.4;
    font-size: 12.5px;
    font-weight: 800;
    color: #1a5276;
    letter-spacing: 0.3px;
}

.doctor-booking-system-main-page .card-logo span {
    color: #f47c20;
}


.time-grid.show-grid {
    opacity: 1;
    transform: scaleY(1);
    z-index: 99;
}

.time-box {
    min-height: 80px;
}

.time-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.doctor-box-appointment-logo img {
    width: 240px;
    margin-top: 0px;
    opacity: .2;
}

.appointment-mobile-card {
    background: #f5fcff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px 0;
}

.appointment-mobile-card .left-panel {
    padding: 10px 0 10px 50px;
}

.appointment-mobile-card .left-panel .iti {
    width: 100%;
}

.appointment-mobile-card .tab-style1 .treat-tab.active {
    border-color: #e76323;
}

.appointment-mobile-card .tab-style1 .tab-group {
    border-bottom: 1px solid #e763236b;
}

.appointment-mobile-card .tab-style1 .treat-tab {
    border-bottom: 1px solid transparent;
    color: #005b86;
}

.appointment-mobile-card .left-panel .form-label {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.appointment-mobile-card .left-panel .label-span {
    font-size: 14px;
    color: #000;
}

.varticale-line-bar {
    width: 1px;
    height: 100%;
    background: #bababa;
    display: flex;
    margin: auto;
}




.appointment-mobile-card .right-panel {
    padding: 20px 50px 20px 0;
}

.appointment-mobile-card .apt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.appointment-mobile-card .apt-title {
    font-size: 20px;
    font-weight: 600;
    color: #005b86;
}

.appointment-mobile-card .change-link {
    font-size: 13px;
    color: #e05c2a;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.appointment-mobile-card .change-link:hover {
    text-decoration: underline;
}

/* Detail rows */
.appointment-mobile-card .detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.appointment-mobile-card .detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    padding: 5px 0;
}

.appointment-mobile-card .right-panel ul.detail-list li img {
    width: 30px;
    height: 22px;
    object-fit: contain;
}

.appointment-mobile-card .detail-list li .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: #e05c2a;
}

/* Doctor card */
.appointment-mobile-card .doctor-card {
    /* display: flex; */
    /* align-items: center; */
    gap: 14px;
    background: transparent;
    border-radius: 10px;
    padding: 0;
    box-shadow: none;
}

.appointment-mobile-card .doctor-avatar {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    object-fit: cover;
    background: #d8e6f0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.appointment-mobile-card .doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-mobile-card .doctor-info .name {
    font-size: 15px;
    font-weight: 700;
    color: #1c2232;
    margin-bottom: 4px;
}

.appointment-mobile-card .doctor-info .role {
    font-size: 12.5px;
    color: #7a8394;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
}

/* .appointment-mobile-card .doctor-info .specialty {
    font-size: 12.5px;
    font-weight: 700;
    color: #1c2232;
    display: flex;
    align-items: center;
    gap: 5px;
} */

.appointment-mobile-card .doctor-info .specialty svg,
.doctor-info .role svg {
    color: #e05c2a;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.doctor-booking-system-main-page .appointment-mobile-card .doctor-card .doctor-photo {
    width: 100px;
    height: 100px;
}



.day-strip-wrapper {
    width: 100%;
}

.day-strip-wrapper .day-strip {
    display: flex;
    align-items: center;
    gap: 6px;
}

.day-strip-wrapper .arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8632a;
    border: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}

.day-strip-wrapper .arrow-btn:hover {
    background: #c0521f;
}

.day-strip-wrapper .arrow-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.day-strip-wrapper .days-wrapper {
    flex: 1;
    overflow: hidden;
}

.day-strip-wrapper .days-row {
    display: flex;
    border-radius: 4px;
    overflow-y: hidden;
}

.day-strip-wrapper .day-cell {
    flex: 1;
    padding: 10px 4px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #1a5276;
    border: none;
    transition: background 0.15s;
    user-select: none;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.day-strip-wrapper .day-month {
    font-size: 11px;
    opacity: 0.75;
    display: block;
}

.day-strip-wrapper .day-date {
    display: block;
}

.day-strip-wrapper .day-cell.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}


.day-strip-wrapper .day-cell:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.day-strip-wrapper .day-cell:hover {
    background: #154360;
}

.day-strip-wrapper .day-cell.active {
    background: #e8632a;
}

.day-strip-wrapper .selected-label {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.day-strip-wrapper .day-cell p {
    margin-bottom: 0;
}

.day-strip-wrapper .day-cell h3 {
    font-size: 15px;
    margin-bottom: 0;
    line-height: normal;

}

.day-strip-wrapper .arrow-btn i {
    font-size: 15px;
}

.appointment-mobile-card .page-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a6fa8;
    margin-bottom: 12px;
}

.appointment-mobile-card .subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.55;
    margin-bottom: 15px;
}

.appointment-mobile-card .subtitle strong {
    color: #1c2232;
    font-weight: 600;
}

.appointment-mobile-card .otp-label {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

/* OTP boxes */
.appointment-mobile-card .otp-row {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
    width: 100%;
}

.appointment-mobile-card .otp-box {
    height: 40px;
    border: 1px solid #d0d4dc;
    border-radius: 4px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1c2232;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    caret-color: #1a6fa8;
    width: 16%;
}

.appointment-mobile-card .otp-box:focus {
    border-color: #1a6fa8;
    box-shadow: 0 0 0 3px rgba(26, 111, 168, .12);
}

.appointment-mobile-card .otp-box.filled {
    border-color: #1a6fa8;
}

.appointment-mobile-card .otp-box.error {
    border-color: #e05c2a;
    box-shadow: 0 0 0 3px rgba(224, 92, 42, .12);
}

/* Resend */
.appointment-mobile-card .resend-row {
    font-size: 12.5px;
    color: #7a8394;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.appointment-mobile-card .resend-row .resend-label {
    font-weight: 500;
}

.appointment-mobile-card .resend-row .timer {
    font-weight: 600;
    color: #2e3748;
    min-width: 54px;
}

.appointment-mobile-card .resend-link {
    font-weight: 600;
    color: #1a6fa8;
    cursor: pointer;
    text-decoration: underline;
    display: none;
}

.appointment-mobile-card .resend-link:hover {
    color: #155d8e;
}

/* Change number */
.appointment-mobile-card .change-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 26px;
    cursor: pointer;
}

.appointment-mobile-card .change-row svg {
    color: #e05c2a;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.appointment-mobile-card .change-row span {
    font-size: 13px;
    font-weight: 500;
    color: #2e3748;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.appointment-mobile-card .change-row:hover span {
    color: #1a6fa8;
}

.appointment-mobile-card .error-msg {
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.appointment-mobile-card .labelwithbox-form .form-label {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
    display: block;
}

.appointment-mobile-card .labelwithbox-form .form-control,
.appointment-mobile-card .labelwithbox-form .form-select {
    font-size: 14px;
    color: #1c2232;
    border: 1px solid #005b86;
    border-radius: 5px;
    padding: 7px 13px;
    width: 100%;
    outline: none;
    transition: border-color .2s;
    background: #fff;
}

.appointment-mobile-card .labelwithbox-form .form-control:focus,
.appointment-mobile-card .labelwithbox-form .form-select:focus {
    border-color: #005b86;
    box-shadow: none;
}

.appointment-mobile-card .labelwithbox-form .select2-container--default .select2-selection--single {
    border: 1px solid #005b86;
    border-radius: 5px;
}

.appointment-mobile-card .labelwithbox-form .form-check-input {
    margin-top: 0;
    margin-left: 0px;
    border: 1px solid #e76323;
}

.appointment-mobile-card .labelwithbox-form .form-check-label h3 {
    font-size: 15px;
    margin-bottom: 0;
}

.appointment-mobile-card .labelwithbox-form .form-check-label {
    width: 90%;
}

.appointment-mobile-card .labelwithbox-form .form-check-input:checked {
    background-color: #e76323;
    border-color: #e76323;
    box-shadow: none;
}

.appointment-mobile-card .labelwithbox-form .form-check {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 10px 10px;
    border: 1px solid #005b86;
    border-radius: 4px;
    margin-bottom: 6px;
}

.appointment-mobile-card .check-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e05c2a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(224, 92, 42, .30);
}

.appointment-mobile-card .check-circle svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.appointment-mobile-card .thank-you {
    font-size: 25px;
    line-height: normal;
    font-weight: 700;
    color: #e05c2a;
    margin-bottom: 15px;
}

.appointment-mobile-card .booked-msg {
    font-size: 17px;
    font-weight: 600;
    color: #333333;
    line-height: normal;
    margin-bottom: 15px;
}

.appointment-mobile-card .shared-msg {
    font-size: 13px;
    color: #000000;
    line-height: normal;
    margin-bottom: 22px;
    font-weight: 500;
}

.appointment-mobile-card .shared-msg strong {
    color: #2e3748;
    font-weight: 600;
}

/* Star rating */
.appointment-mobile-card .stars {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.appointment-mobile-card .star {
    cursor: pointer;
    color: #000;
    transition: color .15s, transform .15s;
}

.appointment-mobile-card .star:hover,
.appointment-mobile-card .star.active {
    color: #e05c2a;
}

.appointment-mobile-card .star:hover {
    transform: scale(1.15);
}

.appointment-mobile-card .star svg {
    width: 26px;
    height: 26px;
}

.appointment-mobile-card .right-panel .main-list ul li {
    font-size: 15px;
    margin-bottom: 2px;
    color: #333333;
}

.appointment-mobile-card .right-panel .main-list ul li::before {
    background: #000000;
    width: 5px;
    height: 5px;
}





















.search-data {
    overflow-y: scroll;
    max-height: 300px;
}

.search-data h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    padding: 5px;
    background: #005b86;
    margin-top: 8px;
    margin-bottom: 5px;
    border-radius: 3px;
}

.search-data.main-list ul li {
    font-size: 15px;
    padding-bottom: 0px;
    text-align: left;
    margin-bottom: 3px;
}

.search-data.main-list ul li a {
    color: #000 !important;
    display: block;
}

.search-data.main-list ul {
    display: block;
    padding: 0 25px;
}



.shareholder-box {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 190px;
}

.shareholder-box-heading h3 {
    font-size: 17px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0;
}

.shareholder-box-heading {
    padding: 15px 15px;
    border-bottom: 1px solid #E5E7EB;
    text-align: left;
    background: #F9FAFB;
}

.shareholder-box ul {
    padding-left: 0;
}

.shareholder-box ul li {
    list-style: none;
}

.shareholder-box ul li a {
    appearance: none;
    background: transparent;
    border: none;
    text-align: left;
    padding: 14px 36px 18px 18px;
    font-size: 17px;
    font-weight: 500;
    color: #1A1A2E;
    border-bottom: 1px solid #E5E7EB;
    display: block;
    font-family: inherit;
    line-height: 1.4;
    letter-spacing: -.005em;
    position: relative;
    transition: .5s;
    cursor: pointer;
}

.shareholder-box ul li:last-child a {
    border-bottom: 0;
}

.shareholder-box ul li a:hover {
    background: #E8531D;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.shareholder-box ul li a {
    color: #1A1A2E;
    display: block;
    transition: .5s;
}

.shareholder-box ul li a:hover {
    color: #fff;
}

.shareholder-box ul li a:hover::before {
    color: #fff;
    transform: translateX(5px);
}

.shareholder-box ul li a {
    display: block;
}

.shareholder-box ul li a::before {
    content: '\f105';
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    top: 35%;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    color: #333333;
    background-image: none;
    transition: .5s;
}

.shareholder-box ul li:last-child {
    border: 0;
}

.shareholder-right-box .panel-head {
    background: #005b86;
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.shareholder-right-box .panel-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.01em;
}

.shareholder-right-box .panel-head span {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
    white-space: nowrap;
}

.filter-box-form {
    background: #F9FAFB;
    padding: 15px 20px;

}

.filter-box-form .form-control,
.filter-box-form .form-select {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
}

.filter-box-form .form-control:focus,
.filter-box-form .form-select:focus {
    box-shadow: none;
    border: 1px solid #054870;
}

.filter-box-form .view-details {
    padding: 4px 10px;
    border-radius: 4px;
}

table.filings thead th {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: #fdf1eb !important;
}

/* table.filings thead{
    border: none;
} */
table.filings tbody,
table.filings td,
table.filings tfoot,
table.filings th,
table.filings thead,
table.filings tr {
    border: 0;
}

table.filings .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid transparent;
    font-family: inherit;
    background: #FDF1EB;
    color: #E8531D;
    border-color: #FDF1EB;
}

table.filings tbody tr td {
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid #E5E7EB;
    vertical-align: middle;
}

table.filings tbody tr td:nth-child(2) {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280 !important;
    white-space: nowrap;
}

.shareholder-right-box {
    border-radius: 10px;
    overflow: hidden;
}

.shareholder-box .submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;

    list-style: none;
    padding-left: 0px;
    margin-top: 0;
    background: #ffc7af;
}

.shareholder-box .dropdown.active .submenu {
    max-height: 500px;
    /* adjust if needed */
    opacity: 1;
    margin-top: 0px;
}

.shareholder-box li.dropdown>a::before {
    display: none;
}

.shareholder-box .dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shareholder-box .dropdown .icon {
    transition: transform 0.3s ease;
    position: absolute;
    right: 23px;
}

.shareholder-box .dropdown.active .icon {
    transform: rotate(90deg);
}

.shareholder-box .submenu li a {
    padding: 10px 10px;
    background: transparent;
    border-bottom: 1px solid #E8531D !important;
}

.shareholder-box ul li.dropdown.active {
    background: #fdf1eb;
    color: #E8531D;
}

.shareholder-box ul li.dropdown.active>a {
    border-bottom: 1px solid #fff;
}

.shareholder-modal .modal-header {
    background: #054870;
}

.shareholder-modal .modal-header h1 {
    color: #fff;
}

.shareholder-modal .modal-header .btn-close {
    background-image: none;
    opacity: 1;
    background-color: #ffffff;
    border-radius: 50%;
}

.shareholder-modal .modal-header .btn-close i {
    color: #E8531D;
    transform: translate(0px, -2px);
}

.shareholder-modal .modal-header .btn-close:focus {
    box-shadow: none;
}

.select2-container {
    width: auto;
    z-index: 99;
}

/* Main selection box */
.select2-container--default .select2-selection--single {
    height: 40px;
    border: none;
    border-left: 0;
    border-radius: 0 6px 6px 0;
    background: #fff;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

/* Selected text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    color: inherit;
    padding-left: 8px;
    padding-right: 30px;
}

/* Dropdown arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

/* Remove focus styles if needed */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

/* Dropdown */
.select2-dropdown {
    border-color: #dee2e6;
}


.input-group .select2-container {
    flex: 1 1 auto;
}

.input-group .select2-selection--single {
    border-left: 0 !important;
}



.select2-container--default .select2-results__option--selected {
    background-color: #ffddcc;
}

.icon-diff-form .input-group .select2-container--default .select2-selection--single {
    background: #f0f2f1;
    border: 1px solid #fff;
    border-radius: 30px;
    height: 46px;
}

.form_with_golden_border .input-group .select2-container--default .select2-selection--single {
    background: transparent;
}

.form-control:focus {
    box-shadow: none;
}

.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget-icon {
    display: none !important;
}



#google_translate_element {
    display: none;
}

.select2-results__option .wrap:before {
    content: "☐";
    display: inline-block;
    width: 20px;
    margin-right: 8px;
}

.select2-results__option[aria-selected="true"] .wrap:before {
    content: "☑️";
}

.select2-results__option--highlighted .wrap:before,
.select2-results__option:hover .wrap:before {
    color: inherit !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e76323;
    color: white;
}


.appointment-mobile-card .bill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #3a4556;
}

.appointment-mobile-card .bill-row .label {
    font-weight: 600;
}

.appointment-mobile-card .bill-row .amount {
    font-weight: 500;
    color: #2e3748;
}

.appointment-mobile-card .divider {
    border: none;
    border-top: 1px solid #005b86;
    margin: 4px 0;
}

.appointment-mobile-card .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 0;
    font-size: 14.5px;
}

.appointment-mobile-card .total-row .label {
    font-weight: 700;
    color: #1c2232;
}

.appointment-mobile-card .total-row .amount {
    font-weight: 700;
    color: #1c2232;
    font-size: 15px;
}

.stepper-wrap {
    background: #ffffff;
    padding: 10px 0;
    border-radius: 8px;
}

.stepper {
    display: flex;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px
}

.snode {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 10%;
}

.scircle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #005b86;
    color: #005b86;
    background: #fff;
    transition: all .2s
}

.scircle.filled {
    background: #005b86;
    color: #fff
}

.sline {
    flex: 1;
    height: 2px;
    background: #d0e4f5;
    margin: 0 4px;
    margin-top: 25px
}

.sline.filled {
    background: #005b86
}

.slabel {
    font-size: 11px;
    color: #888;
    margin-top: 6px;
    text-align: center;
    white-space: nowrap
}

.snode.active .slabel {
    color: #005b86;
    font-weight: 600
}


/* ── Country list ── */
.immigration-form .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #005b86;
    margin-bottom: 16px;
    border-left: 4px solid #f7c948;
    padding-left: 10px
}

.immigration-form .country-search {
    width: 100%;
    padding: 9px 14px;
    border: 1.5px solid #d0e4f5;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 14px;
    outline: none
}

.immigration-form .country-search:focus {
    border-color: #005b86
}

.immigration-form .country-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1.5px solid #005b86;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
}

.immigration-form .country-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    padding: 10px 14px;
    margin-bottom: 8px;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s, background .15s;
    background: #fff;
}

.immigration-form .country-row:hover {
    border-color: #005b86;
    background: #ffffff;
}

.immigration-form .country-row.sel {
    border-color: #005b86;
    background: #ffffff
}

.immigration-form .country-row input[type=radio] {
    width: 16px;
    height: 16px;
    accent-color: #005b86;
    pointer-events: none;
    flex-shrink: 0
}

.immigration-form .cname {
    font-size: 14px;
    font-weight: 500;
    color: #222
}

/* ── Error hints ── */
.err-hint {
    color: #d0021b;
    font-size: 12px;
    margin-top: 5px;
    display: none
}

.err-hint.show {
    display: block
}

.immigration-card-eraper {
    background: #eaf3fb;
    padding: 15px;
    border-radius: 8px;
}

.immigration-form.form_with_golden_border .input-group {
    border: 1px solid #005b86;
    background: #fff;
}

.immigration-form.form_with_golden_border .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

/* ── Buttons ── */
.immigration-form .btn-continue {
    background: #005b86;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 18px;
    transition: background .2s
}

.immigration-form .btn-continue:hover {
    background: #e76323;
    color: #fff
}

.immigration-form .btn-back {
    background: #fff;
    color: #005b86;
    border: 1.5px solid #005b86;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 18px;
    margin-right: 10px;
    transition: all .2s
}

.immigration-form .btn-back:hover {
    background: #e8f4ff
}

.immigration-form .btn-edit {
    background: #fff;
    color: #005b86;
    border: 1.5px solid #005b86;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 14px;
    cursor: pointer
}

.immigration-form .btn-book-appt {
    background: #e76323;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer
}

.immigration-form .btn-book-appt:hover {
    background: #005b86;
    color: #fff
}

.immigration-form .input-ic .ck {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #005b86;
    font-size: 14px;
    display: none
}

.immigration-form .input-ic .form-control.ok~.ck {
    display: inline
}

.immigration-form .review-item {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px
}

.immigration-form .review-item:last-child {
    border-bottom: none
}

.immigration-form .review-label {
    color: #333333;
    min-width: 180px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
}

.immigration-form .review-val {
    color: #005b86;
    font-weight: 500;
    font-size: 14px;
    font-weight: 600;
}

.doctor-details-card-img img {
    height: 370px;
    width: 100%;
    object-fit: cover;
}

.doctor-details-tab-content.main-list ul {
    column-count: 2;
    column-gap: 35px;
}

.doctor-details-tab-content.main-list ul li {
    font-size: 16px;
}

.current-menu.mega-menu ul li {
    list-style: none;
}

.mega-menu .condition-box::before {
    display: none;
}

.mega-menu .condition-box .condition-box-image {
    width: 35px;
    height: 35px;
    padding: 5px;
}

.mega-menu .condition-box .condition-box-image img {
    height: 20px !important;
}

.header-location .condition-box-image img {
    filter: invert(100%) sepia(94%) saturate(36%) hue-rotate(338deg) brightness(176%) contrast(100%);

}

.mega-menu .condition-box .condition-box-content h5 {
    font-size: 16px;
}

.mega-menu ul {
    border-bottom-left-radius: 23px;
    border-bottom-right-radius: 23px;
    background: #f7f7f7 !important;
}

.mega-menu .condition-box:hover {
    background: #ccc;
}

.mega-menu .condition-box {
    border-radius: 7px;
    transition: .4s;
    padding-left: 10px;
}

.default--fourslider .defult-card-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hospital-section .cf-controls {
    bottom: 150px;
    left: 60%;
}

.pagination {
    gap: 6px;
}

.pagination .page-link {
    color: #005b86;
    border: 1px solid #005b86;
    background: #fff;
    border-radius: 5px;
    padding: 8px 14px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #005b86;
    color: #fff;
    border-color: #005b86;
}

.pagination .page-item.disabled .page-link {
    color: #999;
    background: #f5f5f5;
    border-color: #ddd;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    background: #005b86;
    border-color: #005b86;
    color: #fff;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
    background: #e76323;
    border-color: #e76323;
}

.pagination .page-item.active .page-link {
    background: #e76323;
    border-color: #e76323;
    color: #fff;
    font-weight: 600;
}

.footer-logo-acc.social-media-icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.footer-logo-acc.social-media-icon a img {
    width: 80px;
}


/* =========================
Body Lock
========================= */

body.emergency-open {
    overflow: hidden;
}

/* =========================
Overlay
========================= */

#emergency-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #004a6cf7;
    display: flex;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 99999999;
    padding: 90px 20px 40px;
}

#emergency-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
Wrapper
========================= */

.emergency-wrapper {
    width: 100%;
    max-width: 850px;

    min-height: calc(100vh - 130px);

    display: flex;
    flex-direction: column;

    transform: translateY(30px);
    transition: 0.4s ease;
}

#emergency-overlay.active .emergency-wrapper {
    transform: translateY(0);
}

/* =========================
Close Button
========================= */

#close-emergency {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #e76323;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 9999999;
}

#close-emergency:hover {
    background: #1a5276;
    transform: rotate(90deg);
}

.lang-dropdown.insu-filter {
    display: inline-block;
}

.lang-dropdown.insu-filter .lang-selected {
    color: #fff;
}

.page-header-text h1 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 700;
}

@media (max-width: 768px) {
    #emergency-overlay {
        padding-top: 80px;
    }

    #close-emergency {
        width: 42px;
        height: 42px;
        top: 18px;
        right: 18px;
    }

    .page-header-text h1 {
        font-size: 22px;
        font-weight: 500;
    }
}

@media (min-width: 1551px) and (max-width: 1600px) {
    .cf-card {
        width: 300px;
    }
}

@media (min-width: 1420px) and (max-width: 1550px) {
    .tab-section.treat-wrapper .tab-group button {
        width: 65%;
    }

    .banner-triangle-right {
        right: -36px;
        transform: rotate(338deg);
    }

    .inner-page-counter .half-inner-section {
        max-width: 772px;
    }

    .half-inner-section {
        max-width: 500px;
    }

    .inner-page-section.right-to-left-innerbanner .banner-triangle-right {
        left: -41px;
        transform: rotate(18deg);
    }

    .right-half-inner-section {
        max-width: 770px;
    }

    /* section.section.form-section {
        margin-top: -72px;
    } */

    .cf-card {
        width: 255px;
    }

    section.section.form-section {
        margin-top: -100px;
    }
}

@media (min-width: 1180px) and (max-width: 1439px) {
    .tab-section.treat-wrapper .tab-group button {
        width: 74%;
    }

    .tab-section.treat-wrapper .tab-group {
        width: 40%;
    }

    section.section.form-section {
        margin-top: -130px;
    }

    .navik-menu>ul>li>a {
        padding: 0 10px !important;
    }

    .cf-card {
        width: 250px;
    }
}