/* 
----------------------------------
- Preloader
----------------------------------
*/

.hero-area .swiper-slide {
    height: 100vh;
}

.hero-area .swiper-slide:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: #fff;
    opacity: .4;
    z-index: 1;
}

.hero-area .swiper-slide img {
    width: 100%;
    height: 100%;
}

.hero-area .swiper-button-next:after,
.hero-area .swiper-rtl .swiper-button-prev:after {
    content: '→';
    /* Right arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.hero-area .swiper-button-prev:after,
.hero-area .swiper-rtl .swiper-button-next:after {
    content: '←';
    /* Left arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.hero-area .swiper-button-next,
.hero-area .swiper-rtl .swiper-button-prev {

    border: 2px solid #E4282C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
}

.hero-area .swiper-button-prev,
.hero-area .swiper-rtl .swiper-button-next {

    border: 2px solid #E4282C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;

}

.preloader-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000000;
    text-align: center;
    display: table;
}

.preloader-inside {
    position: relative;
    height: auto;
    width: 200px;
    margin-top: 300px;
    vertical-align: middle;
    text-align: center;
    display: inline-block;
    color: #fff;
}

.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.spinner img {
    position: absolute;
    top: 22px;
    left: 0;
    padding: 5px;
}

.spinner:after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.spinner:before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.spinner-1:after {
    position: absolute;
    top: 0px;
    left: 0px;
    border: 4px solid transparent;
    border-top-color: #fcc012;
    border-bottom-color: #fcc012;
    animation: spinny 2s linear infinite;
}

@keyframes spinny {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(30deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/*
--blue Preloader
-------------------------------- */

.blue-spinner-1:after {
    border-top-color: #E4282C;
    border-bottom-color: #E4282C;
}

/* 
----------------------------------
- Nav Style
----------------------------------
*/
/* ---------------- **!--Navbar Section ------------------- */

/* NAVBAR BASE STYLES */
.navbar {
    margin-bottom: 0;
    padding-top: 15px;
}

.navbar-default {
    background-color: #fff;
    border-color: #e7e7e7;
    min-height: 150px;
}

.navbar-header {
    width: 100%;
}

.navbar-brand {
    padding: 0;
    width: 100%;
}

.navbar-brand>img {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.navbar-right {
    margin-top: 10px;
}

/* NAVBAR LINKS */
.navbar-default .navbar-nav>li>a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000;
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
    padding: 10px 0px 40px 0px;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.navbar-default .navbar-nav>li.active>a {
    color: #000;
    font-weight: bold;
}

.navbar-default .navbar-nav>li>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, #184271 0.03%, #E4282C 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.navbar-default .navbar-nav>li>a:hover::after {
    transform: scaleX(1);
}

.navbar-nav>li {
    margin-right: 76px;
    margin-bottom: 0px;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-default .navbar-nav>li>a:hover {
    color: #000 !important;
    opacity: 1;
}

/* DROPDOWN MENU (HOVER EFFECT) */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* MEGA DROPDOWN STYLES */
.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    width: 100%;
    box-shadow: none;
    padding: 30px 60px;
    clear: both;
}

.mega-dropdown-menu .category-type {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 25px;
    word-wrap: break-word;

}

.mega-dropdown-menu .category-type a{
    display: block;
    white-space: normal;
}

.mega-dropdown-menu>li>ul {
    padding: 0;
    margin: 0;
}

.mega-dropdown-menu>li>ul>li {
    list-style: none;
    margin-bottom: 25px;
}

.mega-dropdown-menu>li>ul>li>a {
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2E3A54;
    transition: color 0.3s ease-in-out;
}

.mega-dropdown-menu>li ul>li>a:hover,
.mega-dropdown-menu>li ul>li>a:focus {
    text-decoration: none;
    color: #444;
    background-color: #f5f5f5;
}

.mega-dropdown-header {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #222A3C;
    margin-bottom: 48px;
}

.divider {
    height: 1px;
    margin: 9px 0;
    background-color: #e5e5e5;
}

/* ANIMATION EFFECTS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FORM AND SEARCH INPUT */
.navbar-form {
    padding: 0;
}

.navbar-form .form-control {
    width: 200px;
}

.navbar-form .btn {
    margin-left: -4px;
}

input.form-control.search-input {
    border-radius: 10px;
    background: #F6F6F6;
    height: 50px;
}

/* TOGGLE MENU ICON */
.navbar-toggle {
    background-color: transparent;
    border: 1px solid transparent;
}

.navbar-toggle .icon-bar {
    width: 35px;
    margin-bottom: 6px;
    background-color: #da2052;
    transition: all .5s ease-in-out;
}

/* HAMBURGER MENU OPEN STATE */
.navbar-toggle.open span:nth-child(2) {
    transform: rotate(-45deg);
}

.navbar-toggle.open span:nth-child(3) {
    opacity: 0;
}

.navbar-toggle.open span:nth-child(4) {
    transform: rotate(45deg) translate(-11px, -11px);
}

.navbar-toggle:focus,
.navbar-toggle:hover {
    background-color: transparent;
}

/*
-- Blue Nav style
---------------------------------- */

.navbar-default.blue-nav a:hover,
.navbar-default.blue-nav a:focus,
.navbar-default.blue-nav .navbar-nav>.active>a,
.navbar-default.blue-nav .navbar-nav>.active>a:focus,
.navbar-default.blue-nav .navbar-nav>.active>a:hover,
.navbar-default.blue-nav .navbar-nav>.open>a,
.navbar-default.blue-nav .navbar-nav>.open>a:focus,
.navbar-default.blue-nav .navbar-nav>.open>a:hover {
    color: #E4282C !important;
    background-color: transparent;
}

.navbar-default.blue-nav .navbar-nav>.active>a:after {
    background-color: #E4282C;
}

.nav-area.blue-nav .social-link li:hover {
    background-color: #E4282C !important;
}

.nav-area.blue-nav .social-link li:hover i {
    color: #fff;
}

.blue-nav.navbar-default .navbar-toggle .icon-bar {
    background-color: #E4282C;
}

.search-wrapper-header {
    margin: 10px 0;
    text-align: center;
}



.dropdown-menu>li>a>span {
    font-size: 14px;
    font-weight: 400;
}

.dropdown-menu>li>a>span i {
    margin-right: 5px;
}

.dropdown-menu-special {
    min-width: 425px;
    height: auto;
}


.shop-menu-btn-wrapper a {
    margin-right: 15px;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hotline-wrapper {
    animation: pulse 1.5s infinite ease-in-out;
    margin-top: 15px;
}


.hotline-left {
    float: left;
    margin-right: 15px;
    margin-top: 10px;
}

.hotline-right {}

.hotline-right h3 {
    margin-bottom: 0;
    color: #E4282C;
    font-family: "Oswald", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1px;
}

.hotline-right h4 {
    font-family: "Oswald", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 10px;
    background: linear-gradient(182deg, #184271 22.54%, #E4282C 98.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------------------------------
- Header Section
--------------------------------- */

.hero-area {
    width: 100%;
    height: 100vh;
}

/* .hero-wrapper {
    width: 100%;
    height: 100%;
    background-image: url(../img/get-area-cover.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
} */

/* .hero-content-wrapper {
    margin-top: 30%;
    width: 350px;
} */

.hero-content-wrapper h4 {
    font-family: "Inter", sans-serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.5px;
    background: linear-gradient(269deg, #184271 8.38%, #E4282C 97.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content-wrapper h6 {
    font-family: "Inter", sans-serif;
    color: #040404;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}


.hero-area .item {
    height: 100vh;
    position: relative;
}

.hero-area .item:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: #fff;
    opacity: .4;
    z-index: 1;
}

.owl-carousel .owl-item {
    overflow: hidden;
}

.hero-slider-inner .item img {
    height: 100%;
}

.hero-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 40%;
    z-index: 10;
    left: 10%;
}

.hero-caption-inner {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}

.hero-caption-inner h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-caption-inner h1 {
    font-size: 78px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: 0px;
    color: #fcc012;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.hero-caption-inner h1 span {
    font-family: 'Raleway', sans-serif;
    font-size: 78px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
}

.hero-caption-inner p {
    width: 700px;
    margin: 0px auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    color: #fff;
    margin-bottom: 30px;
}

.hero-slider-nav {
    position: absolute;
    width: 91%;
    height: auto;
    top: 50%;
    left: 4%;
    z-index: 1;
}

/* .hero-slider-nav .nav-next i,
.hero-slider-nav .nav-prev i {
    font-size: 16px;
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 33px;
    background-color: #4b5454;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.hero-slider-nav .nav-next i:hover,
.hero-slider-nav .nav-prev i:hover {
    color: #4e4e4e;
    background-color: #fcc012;
} */


.nav-next,
.nav-prev {
    border: 2px solid #E4282C;
    box-shadow: 6px 0px 20px 20px #EFEFEF;
    font-size: 18px;
    width: 46px;
    height: 46px;
    font-weight: normal;
    color: #E4282C !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #fff;
}


/*
-- Blue Header Section
--------------------------------- */

.hero-blue .hero-caption-inner h1 {
    color: #E4282C;
}

.hero-blue .hero-slider-nav .nav-next:hover,
.hero-blue .hero-slider-nav .nav-prev:hover {
    background-color: transparent;
}

.hero-blue .owl-dot.active span,
.hero-blue .owl-dot:hover span {
    background-color: #E4282C;
    border: 3px solid #E4282C;
}

.hero-blue .btn-outline-sm {
    border: 2px solid #E4282C;
}

.hero-blue .btn-outline-sm:hover {
    background-color: #E4282C;
}

.scroll-blue {
    background-color: #E4282C;
}

/*
-- Home Category Section
----------------------------------- */

.hero-category-wrapper {
    margin: 50px 0;
}

.category-lg-item {
    width: 580px;
    height: 400px;
    display: inline-block;
    margin-bottom: 5px;
    position: relative;
}

.category-full-item {
    width: 100%;
    height: 400px;
    position: relative;
}

.category-lg-item img,
.category-full-item img {
    max-width: 100%;
    height: 100%;
}

.lg-item-inner-caption {
    position: absolute;
    bottom: 15%;
    right: 20%;
    text-align: right;
}

.category-sm-item {
    width: 350px;
    height: 400px;
    display: inline-block;
    margin-bottom: 5px;
    position: relative;
}

.category-sm-item img {
    max-width: 100%;
    height: 100%;
}


.hero-category-wrapper h4 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 5px;
    color: #222A3C;

}

.hero-category-wrapper h4 span {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    margin-bottom: 15px;
    color: #E4282C;

}


/*
-- Find Doctor
----------------------------------- */

.find-doctor-area {
    position: absolute;
    width: 100%;
    bottom: -5%;
    z-index: 100;
}

.find-doctor-wrapper {
    width: 100%;
    height: 200px;
    background: #184271;
    padding: 15px;
    color: #fff;
}

.find-doctor-wrapper h4 {
    color: #fff;
    font-weight: 400;
    margin: 10px 0px;
}

.find-doctor-wrapper p {
    color: #fff;
    font-size: 12px;
}

.all-test-wrapper {
    width: 100%;
    height: 200px;
    border: 0.5px solid #1842710a;
    background-image: url(../img/test.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 15px;
}

.all-test-wrapper h4 {
    font-weight: 400;
    margin: 10px 0px;
}

.all-test-wrapper i {
    font-size: 24px;
    font-weight: 400;
}

/* ---------------------------------
- Home Department Section
--------------------------------- */
.dept-item {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    padding: 15px;
    margin: 0 auto;
    text-align: center;
    height: 250px;
}

.dept-item-wrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.dept-item-mg-wrap {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    background: linear-gradient(to right, #1842719c, #e4282c70);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dept-item .dept-item-mg-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 10px;
    margin: 1px;
    transition: background 0.3s ease-in-out;
}

.dept-item-header {
    width: 125px;
    height: 125px;
    z-index: 1;
    margin: 0 auto;
}

.dept-item-header img {
    max-width: 100%;
    max-height: 100%;
}

.dept-footer-item-wrap {
    margin-top: 10px;
}

.dept-footer-item-wrap p a {
    font-size: 14px;
}

.department-section-area {
    width: 100%;
    height: 580px;
    background-image: url(../img/departsmentbg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.dept-section-title-wrapper {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 100px 0px 40px 0px;
}

.section-subtitle {
    color: #040404;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px
}

.section-title {
    font-family: "Inter", sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.5px;
    background: linear-gradient(270deg, #E4282C 3.58%, #184271 99.86%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-arrival-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 0 auto;
    text-align: center;

}

.new-arrival-carousel .item .item-wrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.new-arrival-carousel .item .item-mg-wrap {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    background: linear-gradient(to right, #1842719c, #e4282c70);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-arrival-carousel .item .item-mg-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 10px;
    margin: 1px;
    transition: background 0.3s ease-in-out;
}



.new-arrival-carousel .item-wrap:hover .item-mg-wrap::before {
    background: transparent;
}

.new-arrival-carousel .item-wrap:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}


.new-arrival-carousel .item .item-wrap .item-header {
    width: 125px;
    height: 125px;
    z-index: 1;
    margin: 0 auto;
}

.new-arrival-carousel .item .item-wrap .item-header img {
    max-width: 100%;
    /* Ensure the image scales properly */
    max-height: 100%;
}

.new-arrival-carousel .item .item-wrap .footer-item-wrap {
    margin-top: 20px;
}

.new-arrival-carousel .item .item-wrap .footer-item-wrap p {
    line-height: 18px;
}

.new-arrival-carousel .swiper-button-prev,
.new-arrival-carousel .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 30%);
}

.new-arrival-carousel .swiper-button-next:after,
.new-arrival-carousel .swiper-rtl .swiper-button-prev:after {
    content: '→';
    /* Right arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.new-arrival-carousel .swiper-button-prev:after,
.new-arrival-carousel .swiper-rtl .swiper-button-next:after {
    content: '←';
    /* Left arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.new-arrival-carousel .swiper-button-next,
.new-arrival-carousel .swiper-rtl .swiper-button-prev {
    border: 2px solid #E4282C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    right: var(--swiper-navigation-sides-offset, 0px);
}

.new-arrival-carousel .swiper-button-prev,
.new-arrival-carousel .swiper-rtl .swiper-button-next {

    border: 2px solid #E4282C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    left: var(--swiper-navigation-sides-offset, 0px);

}

.dept-btn-wrapper {
    text-align: center;
    margin-top: 35px;
}

/* ---------------------------------
- Patient Feedback Section
--------------------------------- */

.best-deal-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.best-deal-carousel .item .item-wrap {
    position: relative;
    height: 250px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 30px;
    margin: 0px 30px;
}

.best-deal-carousel {}

.best-deal-carousel .item .item-header {
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}

.feedbackuser-img-wrapp {
    width: 55px;
    height: 55px;
}

.feedbackuser-img-wrapp img {
    border-radius: 50%;
    border: 1px solid #ccc;
    padding: 2px;
}

.best-deal-carousel .item .item-content {
    text-align: left;
}

.best-deal-carousel .item .item-content ul {
    margin: 0;
    padding: 0;
}

.best-deal-carousel .item .item-content ul li {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
}


.best-deal-carousel .feedbackname {
    font-family: "Inter", sans-serif;
    color: #040404;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.best-deal-carousel .feedbackcategoryname {
    color: #E4282C;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.best-deal-carousel .item .item-wrap .item-header {
    z-index: 1;
}

.best-deal-carousel .item .item-wrap .item-header img {
    max-width: 100%;
    /* Ensure the image scales properly */
    max-height: 100%;
}

.best-deal-carousel .item .item-wrap .footer-item-wrap {
    margin-top: 20px;
}

.best-deal-carousel .item .item-wrap .footer-item-wrap p {
    line-height: 18px;
}

.item-header p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    /* Limit to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Add "..." if text overflows */
    line-height: 1.5;
    /* Adjust as needed */
    max-height: calc(1.5em * 4);
    /* Ensures 4 lines based on line-height */
    word-break: break-word;
    text-align: justify;
}

.best-deal-carousel .swiper-button-prev,
.best-deal-carousel .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
}

.best-deal-carousel .swiper-button-next:after,
.best-deal-carousel .swiper-rtl .swiper-button-prev:after {
    content: '→';
    /* Right arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.best-deal-carousel .swiper-button-prev:after,
.best-deal-carousel .swiper-rtl .swiper-button-next:after {
    content: '←';
    /* Left arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.best-deal-carousel .swiper-button-next,
.best-deal-carousel .swiper-rtl .swiper-button-prev {
    border: 2px solid #E4282C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    right: var(--swiper-navigation-sides-offset, 0px);
}

.best-deal-carousel .swiper-button-prev,
.best-deal-carousel .swiper-rtl .swiper-button-next {

    border: 2px solid #E4282C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    left: var(--swiper-navigation-sides-offset, 0px);

}

/* ---------------------------------
- Get In Touch Section
--------------------------------- */

.touch-area {
    width: 100%;
    height: auto;
}

.touch-area form {
    margin-right: -15px;
    margin-left: -15px;
}

.form-group {
    margin-bottom: 20px;
}

.touch-area .form-group input {
    width: 100%;
    height: 45px;
}

.touch-area .form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #5f5f5f;
    background-color: #fff;
    background-image: none;
    border: 1px solid #000;
    border-radius: 5px;
    -webkit-box-shadow: 5px;
    box-shadow: none;
}

.contact-details {
    margin: 0;
    padding: 0;
}

.contact-details li {
    margin-bottom: 63px;
}

.contact-details li:last-child {
    margin-bottom: 0px;
}

.contact-details li span {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #333333;
    float: left
}

.contact-details li p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    font-weight: 300;
    color: #333333;
    margin-bottom: 0;
}

.footer-nav {
    margin-top: 70px;
}

.footer-nav h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
    color: #242424;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.footer-nav p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    color: #242424;
    margin: 0;
}

.footer-nav ul {
    margin: 0;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 0;
}

.footer-nav a {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0;
    color: #242424;
}


/* 
----------------------------------
- Team Member Section
----------------------------------
*/
.team-area {
    width: 100%;
    height: auto;
    padding: 70px 0px;
    background: #edeeef;
}

.team-carousel {}

.team-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.team-carousel .item .item-wrap {
    width: 100%;
    height: auto;
    margin: 10px;
}

.team-carousel .item .item-wrap .item-content {
    width: 100%;
    border-radius: 10px;
    display: block;
    background: linear-gradient(to right, #184271, #E4282C);
    position: relative;
    padding-top: 15px;
}

/* .package-top-content {
    height: 465px;
} */

.team-carousel .itemt-list {
    padding-left: 30px;
    padding-right: 15px;
    display: inline;
}


.team-carousel .item .item-wrap .item-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 10px;
    margin: 1px;
}




.team-carousel .item .item-wrap .item-content {
    position: relative;
    z-index: 2;
    color: #000 !important;
    text-align: center;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.team-carousel .item .item-wrap .item-content .item-content-inner-wrapper {
    z-index: 1;
    width: 100%;
    position: relative;
}





.team-carousel .swiper-button-prev,
.team-carousel .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
}

.team-carousel .swiper-button-next,
.team-carousel .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px)
}



.team-carousel .swiper-button-prev,
.team-carousel .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
}

.team-carousel .swiper-button-next:after,
.team-carousel .swiper-rtl .swiper-button-prev:after {
    content: '→';
    /* Right arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.team-carousel .swiper-button-prev:after,
.team-carousel .swiper-rtl .swiper-button-next:after {
    content: '←';
    /* Left arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.team-carousel .swiper-button-next,
.team-carousel .swiper-rtl .swiper-button-prev {
    border: 2px solid #E4282C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    right: var(--swiper-navigation-sides-offset, 0px);
}

.team-carousel .swiper-button-prev,
.team-carousel .swiper-rtl .swiper-button-next {

    border: 2px solid #E4282C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    left: var(--swiper-navigation-sides-offset, 0px);

}



.team-carousel .item-content h6 {
    color: #184271;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.team-carousel .item-content h4 {
    color: #184271;
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.team-carousel .item-content .itemt-list ul {
    margin: 0;
    padding: 0 0 0 15px;
}


.team-carousel .item-content .itemt-list ul li {
    text-align: left;
    font-family: "Inter", sans-serif;
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.team-carousel .item-content .itemt-list ul li::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-weight: normal;
    color: #E4282C;
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
    font-size: 16px;
}

.team-carousel .item-content .note {
    margin-bottom: 20px;
    padding: 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-carousel .item-content .note span {
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.team-nav {
    position: absolute;
    width: 114%;
    height: auto;
    top: 35%;
    left: -7%;
    z-index: 0;
}

/* .team-carousel .swiper-slide-active .item .item-wrap .item-content::before {
    background: transparent !important;
} */
/* .team-carousel .swiper-slide-active .item .item-wrap .item-content .item-content-inner-wrapper,
.team-carousel .swiper-slide-active .item .item-wrap .item-content h6,
.team-carousel .swiper-slide-active .item .item-wrap .item-content h4 {
    color: #fff;
} */


/*
-- Doctor List Section
---------------------------------- */

.doctor-list-section-area {
    width: 100%;
    height: auto;
    position: relative;
}

.doctor-list-section-content-area {
    width: 100%;
    height: auto;
    position: relative;

}

.doctor-list-content-wrapper {
    position: relative;
    height: 500px;
    width: 100%;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); */
    background: #FFF;
    padding: 15px 35px;
    margin-bottom: 25px;
}

.doctor-list-header {
    position: relative;
    width: 200px;
}

.doctor-list-header img {
    width: 200px;
    height: 200px;
    border: 1px solid #cccccc82;
    border-radius: 50%;
    background: #FFF;
}

.doctor-list-inner {
    margin-top: 15px;
    height: 155px;
}

.doctor-list-inner h4 a {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.doctor-list-inner p {
    font-size: 12px;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.doctor-list-inner h6 {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.doctor-dept-logo-wrapp {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(10deg, #E4282C -0.8%, #184271 54.72%);
    border-radius: 50%;
    position: absolute;
    right: 15%;
    bottom: 0%;
    padding: 5px;
}

.doctor-dept-logo-wrapp img {
    max-width: 100% !important;
    max-height: 100% !important;
}

/*
-- HealthCare Section
---------------------------------- */

.healthcare-content-wrapper {}

.healthcare-content-wrapper ul {
    margin: 0;
    padding: 0;
}

.healthcare-content-wrapper ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 50px;
    font-size: 24px;
    color: #000;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.healthcare-content-wrapper ul li::before {
    content: "\f18e";
    font-family: FontAwesome;
    color: #E4282C;
    position: absolute;
    left: 0;
    top: 30%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 36px;
    font-weight: 100;
}

.healthcare-content-wrapper ul li span {
    font-weight: 100;
    font-size: 10px;
}

/*
-- Blog Section
---------------------------------- */

.blog-list-content-wrapper {
    position: relative;
    height: 430px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background: #FFF;
    padding: 0;
    margin-bottom: 25px;
}

.blog-list-header {
    width: 100%;
    height: 200px;
}

.blog-list-header img {
    width: 100%;
    max-height: 100%;
}

.blog-list-inner {
    padding: 15px;
}

.blog-list-inner-header {
    margin: 10px 0px;
}

.blog-list-inner-header ul {
    padding: 0;
    margin: 0;
}

.blog-list-inner-header ul li {
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
}

.blog-list-inner-header ul li i {
    margin-right: 15px;
}

.blog-list-inner h4 {
    color: #040404;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.5em * 2);
    /* Adjust max-height accordingly */
    word-break: break-word;
}


.blog-list-footer {
    padding: 15px;
    text-align: right;
}


/*
-- Partner Section
---------------------------------- */

.partner-arrival-carousel .swiper-slide {
    padding: 15px 0px;
}

.partner-arrival-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    padding: 0 15px;
}

.partner-arrival-carousel .item .item-wrap {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
    margin: 5px;
}


.partner-arrival-carousel .swiper-button-next:after,
.partner-arrival-carousel .swiper-rtl .swiper-button-prev:after {
    content: '→';
    /* Right arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.partner-arrival-carousel .swiper-button-prev:after,
.partner-arrival-carousel .swiper-rtl .swiper-button-next:after {
    content: '←';
    /* Left arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.partner-arrival-carousel .swiper-button-next,
.partner-arrival-carousel .swiper-rtl .swiper-button-prev {
    border: 2px solid #E4282C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    right: var(--swiper-navigation-sides-offset, 0px);
}

.partner-arrival-carousel .swiper-button-prev,
.partner-arrival-carousel .swiper-rtl .swiper-button-next {

    border: 2px solid #E4282C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    left: var(--swiper-navigation-sides-offset, 0px);

}

/*
-- Concern Section
---------------------------------- */

.concern-arrival-carousel {
    margin-bottom: 100px;
}

.concern-arrival-carousel .item {
    display: flex;
    /* Enable Flexbox */
    align-items: center;
    /* Center .item-wrap vertically */
    justify-content: center;
    /* Center .item-wrap horizontally */
    margin: 0px 30px;
}

.concern-arrival-carousel .item .item-wrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.concern-arrival-carousel .swiper-button-next:after,
.concern-arrival-carousel .swiper-rtl .swiper-button-prev:after {
    content: '→';
    /* Right arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.concern-arrival-carousel .swiper-button-prev:after,
.concern-arrival-carousel .swiper-rtl .swiper-button-next:after {
    content: '←';
    /* Left arrow */
    font-size: 24px;
    /* Adjust size */
    color: #E4282C;
    font-weight: bolder;
    margin-top: -3px;
}

.concern-arrival-carousel .swiper-button-next,
.concern-arrival-carousel .swiper-rtl .swiper-button-prev {
    border: 2px solid #E4282C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    right: var(--swiper-navigation-sides-offset, 0px);
}

.concern-arrival-carousel .swiper-button-prev,
.concern-arrival-carousel .swiper-rtl .swiper-button-next {

    border: 2px solid #E4282C;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    left: var(--swiper-navigation-sides-offset, 0px);

}


/*
-- Blue Get In Touch Section
---------------------------------- */

.touch-blue .btn-field-md {
    background-color: #E4282C;
}

.touch-blue .btn-field-md:hover {
    background-color: #0d87c4;
}

/* ---------------------------------
- Footer Section
--------------------------------- */

.main-footer-area {
    width: 100%;
    height: 300px;
    /* background-image: url(../img/footerbg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
    background-color: #1c4070;
    position: relative;
    padding: 80px 30px 60px 30px;
}

.footer-logo-wrapp {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.footer-logo-wrapp img {
    width: 100%;
}


.footer-item-wrapper {}

.footer-item-wrapper h4 {
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-item-wrapper h4 a {
    color: #fff;

}

.footer-item-wrapper p {
    color: #FFF;
    margin: 0;
    font-size: 12px;
    line-height: 18px;
}

.social-list {
    margin-top: 70px;
}

.social-list ul {
    margin: 0;
    padding: 0;
}

.social-list ul li {
    display: inline-block;
    margin-right: 13px;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 5px;
    vertical-align: top;
}

.social-list ul li a i{
    margin: 18%;
}


.footer-hotline-wrapper {
    margin-top: 15px;
    width: 100%;
    height: 40px;
}

.footer-hotline-wrapper img {
    max-width: 100%;
    max-height: 100%;
}

.service-list ul {
    margin: 0;
    padding: 0;
}

.service-list ul li {}

.service-list ul li a {
    color: #fff;
}

.send-query h4 {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.send-query {
    margin-top: 35px;
}

.send-query-btn {
    margin-top: 30px;
}


.footer-area {
    width: 100%;
    height: auto;
    padding: 5px 0px;
    background: linear-gradient(90deg, #E4282C 55.86%, #184271 100%);
    border-top: 1px solid #6e696961;
}


.footer-copyright {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.para-mn-0 {
    margin: 0 !important;
}

.subscribe-area-wrapper {
    width: 100%;
    height: auto;
    position: relative;
}

.subscribe-content-wrapper {
    background: linear-gradient(90deg, #E4282C 55.86%, #184271 100%);
    height: 55px;
    width: 100%;
    position: absolute;
    bottom: -35px;
    padding: 10px 15px;
    z-index: 1;
    border-radius: 10px;
}

.mail-icon-img-wrapper {
    height: 25px;
    width: 25px;
}

.subscribe-content-wrapper h6 {
    color: #fff;

}

.subscribe-content-wrapper h4 {
    color: #fff;
    font-size: 18px;
}

.subscribe-content-wrapper .form-inline .form-group {
    width: 70%;
    margin-right: 5px;
}

.subscribe-content-wrapper .form-inline .form-control {
    width: 98%;
    height: 30px;
    background: transparent;
}

.footer-item-wrapper {
    margin-top: 0px;
}

/*
-- Blue Footer Section
----------------------------- */

.get-blue .get-caption h2 span {
    color: #E4282C;
}

.get-blue .btn-field-sm {
    background-color: #E4282C;
}

.get-blue .btn-field-sm:hover {
    background-color: #0d87c4;
}

.footer-blue .social-link a:hover {
    color: #E4282C !important;
}


/*
-- Service Section
----------------------------- 
*/

.breadcum-section-area {
    width: 100%;
    position: relative;
    height: auto;
    margin-top: 180px;
}

.breadcum-content-wrapper {
    width: 100%;
    height: 180px;
}

.service-section-wrapper {
    width: 100%;
    height: auto;
    margin: 100px 0px;
}

.breadcum-title-wrapper {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.breadcum-title-wrapper h3 {
    font-family: "Inter", sans-serif;
    color: #fff;
}

.service-img-content {
    width: 100%;
    height: auto;
    /* Adjust as necessary */
    position: relative;
    display: block;
}

.service-img-content::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: url(../img/service/serviceafter.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.service-img-wrapper {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0px 4px 25px 0px rgb(0 0 0 / 6%);
}

.service-item-list-odd,
.service-item-list-even {
    margin-bottom: 120px;
}

.service-item-list-odd h2 {
    font-size: 30px;
    color: #184271;
}

.service-item-list-even h2 {
    font-size: 30px;
    color: #184271;
    text-align: right;
}

/*
-- Doctor Appointment
----------------------------- 
*/

/* Ensures the DatePicker input takes full width */
.react-datepicker-wrapper,
.form-control {
    width: 100% !important;
    display: block;
}


.appointment-section-wrapper {
    width: 100%;
    height: auto;
    margin: 200px 0px 100px;
}


.appoint-title-wrapper h1 {
    color: #184271;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0.5px;
}

.patient-content-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 50px 0;
}

.patient-content-wrapper h3 {
    color: #184271;
    font-size: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.patient-content-wrapper p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.appointment-section-wrapper .nav-tabs {
    border-bottom: none;
}

.appointment-section-wrapper .nav-tabs>li {
    margin-right: 50px;
}

.appointment-section-wrapper .nav>li>a {
    padding: 0 0 25px 0;
}

.appointment-section-wrapper .nav-tabs>li.active>a,
.appointment-section-wrapper .nav-tabs>li.active>a:focus,
.appointment-section-wrapper .nav-tabs>li.active>a:hover {
    color: #000;
    /* Change text color */
    cursor: default;
    background-color: #fff;
    border: none;
    position: relative;
    /* Required for pseudo-element positioning */
    font-size: 16px;
    font-weight: 700;
}

/* Add a pseudo-element for the gradient border */
.appointment-section-wrapper .nav-tabs>li.active>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    /* Adjust border thickness */
    background: linear-gradient(270deg, #184271 0.03%, #E4282C 100%);
    /* Gradient border */
}


.patient-content-wrapper form .form-control {
    height: 40px;
    border-radius: 5px;
    background: rgba(217, 217, 217, 0.30);
    border: none;
    box-shadow: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;

}

.patient-content-wrapper form label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.patient-content-wrapper h6 {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.serial-box {
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    margin: 4px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #e0e0e0;
    color: #333;
    transition: all 0.3s;
}

.serial-box:hover {
    background-color: #d6d6d6;
}

.serialselected {
    background-color: #e74c3c;
    color: #fff;
    font-weight: bold;
}

textarea#special_note-textarea {
    height: 100px;
}

.booking-btn-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    text-align: right;
}

.patient-content-wrapper h6 {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;

}

.patient-content-wrapper h5 {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 10px;
}


/* --------
Accident and Emergency Section
---------------------*/



.emergency-section-wrapper {
    width: 100%;
    height: auto;
    margin: 100px 0px;
}

.emergency-doctor-list-content-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
    background: #FFF;
    padding: 35px;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 10px;
}

.emergency-doctor-list-content-wrapper:hover {
    box-shadow: 0 4px 8px rgb(0 0 0 / 28%);
}


.allDeptCategories-wrapper {
    margin-bottom: 50px;
}


.doctor-details-list-content-wrapper {
    position: relative;
    height: 300px;
    width: 100%;
    background: #cccccc82;
    border-radius: 10px;

}

.doctor-details-list-content-wrapper img {
    width: 100%;
    height: 100%;
}

.doctor-details-list-right-content-wrapper {
    position: relative;
    height: auto;
    width: 100%;
    background: #FFF;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 10px;
}


.doctor-details-list-right-content-wrapper h6 {
    color: #0000008c;
    font-size: 18px;
    font-style: normal;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.dr-details-right-header {
    margin-bottom: 10px;
}

.bottom-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #e4282c 25.86%, #184271 100%);
    margin-bottom: 10px;
}

.dr-details-right-header h6,
.dr-title-right-content h6 {
    font-size: 20px;
    color: #000;
}

.dr-right-btn-footer {
    margin-top: 15px;
}

/******** Contact *************/

.contact-left-content h6 {
    color: #184271;
    font-size: 24px;
    font-style: normal;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.contact-left-content p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-left-content form .form-control {
    height: 40px;
    border-radius: 5px;
    background: rgba(217, 217, 217, 0.30);
    border: none;
    box-shadow: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.contact-left-content form label {
    color: #5B5B5B;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
}

.contact-btn-wrapper {
    margin-top: 15px;
    text-align: right;
}

.contact-right-content h6 {
    color: #184271;
    font-size: 24px;
    font-style: normal;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.contact-right-content p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-map-wrapper {
    margin-top: 30px;
}

/*********** About Us*/

.service-item-list-odd .about-us-wrapper h2 {
    font-family: "Inter", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(270deg, #E4282C 71.58%, #184271 99.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.service-item-list-even .about-us-wrapper h2 {
    font-family: "Inter", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(64deg, #E4282C 71.58%, #184271 99.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.board-backg-cover {
    background: #e3e4e6;
    border-radius: 15px;
}

.wrapping-padding {
    padding: 15px 0 0 15px;
}

.about-us-wrapper p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;

}

.about-head-img-wrapp {
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    display: block;
    border: 1px solid #000;
    padding: 0px;
    position: relative;
}


.about-head-img-wrapp-inner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    display: block;
    margin-bottom: -10px;
    margin-left: -10px;
    margin-top: 10px;
}

.vission-wrapper {
    background: #2a4978;
    width: 100%;
    height: 400px;
    padding: 25px 20px;
    border-radius: 7%;
}


.vission-wrapper h4 {
    color: #FFF;
    font-family: "Neue Montreal";
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.vission-wrapper p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: justify;
}

.vision-wrapper-content {
    width: 100%;
    height: 225px;
}

.vission-footer-wrapper {
    margin: 0 auto;
    text-align: center;
}

.vission-footer-wrapper img {
    width: 75px;
    height: 75px;
}

.mission-wrapper {
    background: #44689a;
    width: 100%;
    height: 400px;
    padding: 25px 20px;
    border-radius: 7%;
}


.mission-wrapper h4 {
    color: #FFF;
    font-family: "Neue Montreal";
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.mission-wrapper p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: justify;
}

.motto-wrapper {
    background: #6d98cb;
    width: 100%;
    height: 400px;
    padding: 25px 20px;
    border-radius: 7%;
}


.motto-wrapper h4 {
    color: #FFF;
    font-family: "Neue Montreal";
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.motto-wrapper p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: justify;
}

.about-main-wrapper {
    margin: 50px 0px;
}

.board-img-content {
    position: relative;
    margin-top: -105px;
}

.board-img-wrapper {
    position: relative;
    z-index: 0;
}

.service-item-list-odd .board-title-footer {
    background: #f0f0f0;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 15px;
    position: relative;
    z-index: 100;
    margin-top: -20px;
    padding: 20px;
}

.service-item-list-even .board-title-footer {
    background: #f0f0f0;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 15px;
    position: relative;
    z-index: 100;
     margin-top: -20px;
    padding: 20px;
}

.board-title-footer p {
    margin-bottom: 0;
}

/********* Career ************/

.career-section-wrapper {
    width: 100%;
    height: auto;
    margin: 100px 0px;
    background: linear-gradient(90deg, #e4282c82 56%, #1842718c 100%);
}

.career-content-wrapper {
    margin: 100px 0px;
    position: relative;

}

.career-form-wrapper form .form-control {
    height: 50px;
    border-radius: 5px;
    background: #ffffffb3;
    border: none;
    box-shadow: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.career-content-wrapper h6 {

    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 10px;

}

.career-content-wrapper h4 {
    color: #FFF;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 59px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.career-content-wrapper p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 15px;
}

.career-btn-wrapper {
    margin-top: 50px;
}


/*********Pateint story*********/

.review-title {
    color: #222A3C;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    margin: 30px 0px;
}

.history-img-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.history-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}

.review-right-content .stars {
    font-size: 24px;
    color: #184271;
    /* Your preferred color */
}

.review-right-content .stars .fa-star {
    cursor: pointer;
    transition: color 0.3s;
}

.review-right-content .stars .fa-star:hover {
    color: #184271;
}

.review-right-content h6 {
    color: #222A3C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-transform: capitalize;
    margin: 10px 0px;
}

.review-right-content h6 span {
    color: #00000082;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-transform: capitalize;
}

.review-right-content p {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    text-transform: capitalize;

}

.serial-box {
    width: 40px;
    height: 40px;
    margin: 5px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
}

.serial-box.selected {
    background-color: blue;
    color: white;
}

.serial-box.booked {
    background-color: red;
    color: white;
    pointer-events: none;
    /* Prevent clicking on booked serials */
}


/**************Blog List********************/

.blog-list-section-wrapper {
    width: 100%;
    height: auto;
    margin: 100px 0px;
}

.blog-list-item-wrapper {
    margin-bottom: 25px;
}

.blog-list-img-wrapper {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin-bottom: 35px;
}

.blog-list-right-header h4 {
    color: #222A3C;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.blog-list-right-header h6 {
    color: #E4282C;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
}

.blog-list-right-header p {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.old-blog-wrapper {
    width: 100%;
    display: block;
    position: relative;
    text-align: right;
}

/***********Correction after qa*******/

.booking-btn-wrapper .btn-common {
    margin-right: 10px;
}

.stars .fa-star {
    color: #184271;
    /* Filled stars */
}

.stars .fa-star.empty {
    color: #ccc;
    /* Empty stars */
}

.service-img-wrapper img {
    width: 100%;
}

.mission-vission-wrapeer {
    margin: 0px 0px 35px 0px;
}

.login-wrapper {
    display: none;
}


.packages-container .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.packages-container .item .item-wrap {
    width: 100%;
    height: auto;
}

.packages-container .item .item-wrap .item-content {
    position: relative;
    z-index: 2;
    color: #000 !important;
    text-align: center;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.packages-container .item .item-wrap .item-content {
    width: 100%;
    border-radius: 10px;
    display: block;
    background: linear-gradient(to right, #184271, #E4282C);
    position: relative;
    padding-top: 15px;
}

.packages-container .item .item-wrap .item-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 10px;
    margin: 1px;
}

.packages-container .item .item-wrap .item-content .item-content-inner-wrapper {
    z-index: 1;
    width: 100%;
    position: relative;
}

/* .package-top-content {
    height: 465px;
} */

.packages-container .item-content h6 {
    color: #184271;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    height: 52px;                   
}

.packages-container .item-content h4 {
    color: #184271;
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.packages-container .itemt-list {
    padding-left: 30px;
}

.packages-container .item-content .itemt-list ul {
    margin: 0;
    padding: 0;
}

.packages-container .item-content .itemt-list ul li {
    text-align: left;
    font-family: "Inter", sans-serif;
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.packages-container .item-content .itemt-list ul li::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-weight: normal;
    color: #E4282C;
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
    font-size: 16px;
}

.packages-container .item-content .note {
    margin-bottom: 20px;
}


.search-content-inner-wrapper {
    margin: 20px 0px 50px 0px;
}


.search-item-list-inner {
    /* border: 1px solid #ccc; */
    margin-bottom: 20px;
    width: 22%;
    height: 200px;
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 15px;
}

.search-item-list-inner h3 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

h2.search-cat-title {
    font-size: 18px;
    background: linear-gradient(270deg, #E4282C 71.58%, #184271 99.86%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.large-calendar {
    width: 300px !important;                /* Set minimum width */
    max-width: 100%;                        /* Ensure it doesn't overflow */
}
  
.large-calendar .react-datepicker {
  width: 250px !important;                /* Ensure the calendar is at least 300px wide */
}

.large-calendar .react-datepicker__month-container {
  width: 100% !important;                 /* Ensure the month container fills the width */
}

.large-calendar .react-datepicker__day-name,
.large-calendar .react-datepicker__day,
.large-calendar .react-datepicker__time-name {
  width: 13%;
  font-size: 16px;                          /* Ensure proper day layout */
  padding: 4px;
}

.large-calendar .react-datepicker__header {
  text-align: center;                     /* Center align the header */
}

.wrapping-padding.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 16;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

.read-more-btn {
  background: none;
  border: none;
  color: #007bff;
  padding: 0;
  margin-top: 10px;
  font-size: 14px;
  cursor: pointer;
  padding: 0 12px 10px;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* Expanded state: auto height */
.team-carousel .item .item-wrap .item-content.expanded {
  height: auto;
  overflow: visible;
}
.feature-list.clamped {
  max-height: 9em; /* Adjust based on font size, assuming 1.5em per line */
  overflow: hidden;
  position: relative;
}

.see-more-btn {
  background: none;
  border: none;
  color: #007bff;
  padding: 0;
  margin-top: 5px;
  font-size: 14px;
  cursor: pointer;
}

.see-more-btn:hover {
  text-decoration: underline;
}

.team-carousel .item .item-wrap .item-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.team-carousel .item .item-wrap .item-content.expanded {
  /* max-height: 750px;
  height: 750px;  */
}

.content-button-wrapper{
    margin-bottom: 20px;
}
.packages-content-button-wrapper{
    padding-bottom: 20px;
}

.service-item-list-even .wrapping-padding{
    padding-right: 30px;
}

.team-carousel .item-content h6 {
    color: #184271;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    height: 50px;
}
  
  
  
  
  