/*=========================================================
    Design Name       : Dr. TaraChand
    Version           : V1.0
    Design Date       : 01/12/2025
    Design UI/UX By   : Rohit Jangid (KadamTech Employer)
    Developed Comapny : Kadamtech Pvt. Ltd.
    Developed Comapny : https://www.kadamtech.com/
============================================================*/

/* Outfit Font-family */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,600&display=swap');
/* Feather Icons */
@import url('../font/feather-icons/dist/feather-icons.css');


/* Start By Default Reset */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

* {
    font-family: "Poppins", sans-serif;
}

:root {
    --primary-color: #cc0047;
    --secondary-color: #223645;
    --font-color: #444444;
}

body {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--font-color);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
}

hr {
    margin: 16px 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

h6,
h5,
h4,
h3,
h2,
h1 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--font-color);
}

h1 {
    font-size: 46px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 16px;
    color: var(--font-color);
}

img {
    width: 100%;
}

ol,
ul {
    padding-left: 34px;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

blockquote {
    margin: 0 0 14px;
}

b {
    font-weight: 600;
}

strong {
    font-weight: 900;
}

small {
    font-size: 12px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Container */

button {
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    border: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

input,
button,
select,
optgroup,
textarea,
.form-control {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background-color: #fff;
    border: 1px solid #DBDBDB;
    padding: 15px 20px;
}

::-moz-selection {
    background-color: #200468;
    color: #FFF;
    text-shadow: none;
}

::selection {
    text-shadow: none;
}

.default-btn {
    padding: 8px 20px;
    display: inline-block;
    font-size: 14px;
    line-height: 25px;
    font-style: normal;
    font-weight: 600;
    background: var(--primary-color);
    border-bottom: 4px solid var(--secondary-color);
    border-left: 1px solid var(--primary-color) !important;
    border-right: 1px solid var(--primary-color) !important;
    border-top: 1px solid var(--primary-color) !important;
    border-radius: 40px;
    color: #fff;
    text-transform: capitalize;
    align-items: center;
}

.default-btn:hover {
    background-color: transparent;
    color: var(--font-color);
    border-left: 1px solid var(--secondary-color) !important;
    border-right: 1px solid var(--secondary-color) !important;
    border-top: 1px solid var(--secondary-color) !important;
}

.default-btn:hover img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(74%) saturate(8%) hue-rotate(353deg) brightness(97%) contrast(92%);
}

.owl-carousel {
    z-index: 0 !important;
}

.default-btn img {
    width: 20px !important;
    margin-right: 10px;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.section-heading p {
    font-size: 14px;
}

.section-heading span {
    font-weight: 700;
    font-size: 16px;
}

/* End By Default Reset */


/* Start Header */

/* ===== Sticky Header (position: sticky based) =====
   .main-header stays in the document flow, so pinning it
   causes zero layout shift, no white gaps and no flicker.
   Works natively on scroll down and scroll up, all breakpoints. */
.main-header {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

/* Smooth visual transition between top-of-page and stuck states */
.main-header .top-navbar {
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.main-header.is-sticky .top-navbar {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* GPU-composited layer to avoid repaint flicker while scrolling */
.main-header.is-sticky {
    will-change: transform;
}

.main-header .top-navbar {
    padding: 12px 0 40px;
    border-bottom: 1px solid #dbdbdb;
    background-color: var(--secondary-color);
}

.main-header .nav-bar {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
}

.main-header .nav-bar .container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 8px 24px rgb(0 0 0 / 20%);
    padding: 8px 10px;
}

.main-header .nav-bar .logo img {
    width: 100px;
    margin-top: -50px;
    margin-left: 15px;
}

.main-header .top-navbar .support-intro {
    display: flex;
    justify-content: flex-end;
    column-gap: 50px;
}

.main-header .top-navbar .support-intro li {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
}

.main-header .top-navbar .support-intro li i {
    color: #444;
    font-size: 20px;
}

.main-header .top-navbar .support-intro li .supportBody h5 {
    font-size: 14px;
    color: #4A4B4A;
    line-height: 1.2;
    margin-bottom: 0;
}

.main-header .top-navbar .support-intro li .supportBody h5,
.main-header .top-navbar .support-intro li .supportBody h5 a {
    color: #fff;
    display: grid;
    font-weight: 600;
}

.main-header .top-navbar .support-intro li .supportBody h5 a:hover {
    color: var(--primary-color);
}

.main-header .top-navbar .support-intro li .supportBody h5 a small {
    font-weight: 500;
    font-size: 12px;
    color: #777777;
    line-height: 1.5;
}

.main-header .nav-bar .nav-bar-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .nav-bar .nav-bar-links .navbar-nav {
    display: inline-flex;
    align-items: stretch;
    flex-direction: row;
    height: 100%;
}

.main-header .nav-bar .nav-bar-links .navbar-nav ul {
    display: block;
}

.main-header .nav-bar .nav-bar-links .navbar-nav li {
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main-header .nav-bar .nav-bar-links .navbar-nav li a {
    color: var(--font-color);
    font-size: 14px;
    font-weight: 500;
    margin: 0 15px 0 0;
    position: relative;
    display: block;
    text-transform: capitalize;
}

.main-header .nav-bar .nav-bar-links .navbar-nav li:last-child a {
    margin: 0;
}

.sticky-inner-header .nav-bar-links .navbar-nav li a {
    margin: 0 0 0 30px !important;
}

.main-header .nav-bar .nav-bar-links .navbar-nav li>a:hover,
.main-header .nav-bar .nav-bar-links .navbar-nav li.current-menu-item>a {
    color: var(--primary-color);
}

.main-header .nav-outer .navbar-nav .menu-item-has-children>a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

/* .menu-item-has-children>a::before { content: ""; } */

.menu-item-has-children>a+.sub-menu {
    position: absolute;
    top: 45px;
    left: 0;
    padding: 15px 0;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background-color: #fff;
    border-radius: 10px;
    min-width: 250px;
    z-index: 2;
    box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.20);
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -ms-box-shadow: 0 7px 10px -1px rgba(0, 0, 0, .2);
    -o-box-shadow: 0 7px 10px -1px rgba(0, 0, 0, .2);
}

.menu-item-has-children>a+.sub-menu::before {
    position: absolute;
    left: 25px;
    top: -5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
    content: "";
}

.menu-item-has-children>a+.sub-menu .menu-item {
    position: relative;
    display: block;
    z-index: 1;
    margin: 6px 12px;
}

.menu-item-has-children>a+.sub-menu .menu-item a {
    position: relative;
    display: block;
    padding: 10px 15px;
    z-index: 1;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.041vw;
    white-space: nowrap;
    text-transform: capitalize;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-align: left;
    border-radius: 4px;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu {
    position: static !important;
}

.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu .sub-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 25px;
    background: #ffffff;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
    border-radius: 8px;
    top: 66px;
}

.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu .sub-menu li a {
    position: relative;
    padding-left: 24px;
}

.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu .sub-menu li a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url('https://tara.knowyourright.net/wp-content/uploads/2026/06/svgviewer-output-30.svg') no-repeat center center;
    background-size: contain;
}

.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu .sub-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu .sub-menu li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s;
    border: 1px solid transparent;
    padding-left: 32px;
}

.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu .sub-menu li a:hover,
.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu .sub-menu li.current-menu-item a {
    background: #e9ecef;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding-left: 36px;
}

.main-header .nav-bar .nav-bar-links .navbar-nav .treatment-menu .sub-menu::before {
    display: none;
}

.mobile-header {
    display: none;
}

.social-links ul {
    display: flex;
    align-items: center;
    column-gap: 8px;
    justify-content: end;
}

.social-links ul li a {
    background: #fff;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
}

.social-links ul li a:hover {
    background-color: #fff5f8;
    border-color: var(--primary-color);
}

.social-links ul li a img {
    width: 24px;
}

/* End Header */


/* main banner strat */
.main-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    padding-bottom: 0;
    padding-top: 40px;
}

.main-banner .banner-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-banner .banner-content h1 {
    font-size: 28px;
    font-weight: 600;
}

.main-banner .banner-content h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #223645;
}

.main-banner .cancer-types-icons {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.main-banner .cancer-types-icons img {
    width: 40px;
}

.main-banner .icon-item {
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    border-bottom: 3px solid;
    box-shadow: 0px 4px 7px 0 rgb(0 0 0 / 22%);
}

.main-banner .icon-item .icon_box {
    margin-bottom: 6px;
}

.main-banner .icon-item a:hover {
    color: var(--primary-color);
}

.main-banner .icon-item span {
    font-weight: 600;
}

.main-banner .icon-item span a {
    color: var(--font-color);
}

.main-banner .doctor-banner-image {
    display: flex;
    justify-content: center;
}

.main-banner .doctor-banner-image img {
    width: 80%;
}

.main-banner .about-btn {
    background-color: transparent;
}

.main-banner .cancer-types-icons {
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-banner .about-btn {
    border: 2px solid var(--secondary-color) !important;
    color: var(--font-color);
}

.main-banner .about-btn:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color) !important;
    color: #fff;
}

.main-banner .about-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(7%) hue-rotate(141deg) brightness(103%) contrast(101%);
}

.main-banner .about-btn img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(73%) saturate(316%) hue-rotate(162deg) brightness(99%) contrast(91%);
}

/* main banner end */


/* stats box start */
.stats-box {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 20px 0px 20px 70px;
    margin: auto;
    margin-bottom: 100px;
    box-shadow: 0px 4px 7px 0 rgb(0 0 0 / 22%);
}

.stats-box .icon-content .top-icon img {
    width: 30px;
}

.stats-box .icon-content .top-icon {
    align-items: baseline;
}

.stats-box .icon-content .top-icon h5 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 600;
    margin-left: 10px;
}

.stats-box .icon-content h6 {
    color: #fff;
    font-size: 16px;
}

.stats-box .col-lg-3 {
    position: relative;
}

.stats-box .col-lg-3::after {
    content: "";
    background-color: #fff;
    height: 90%;
    width: 1px;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    right: 20px;
    top: 0;
    align-items: center;
    margin: auto;
}

.stats-box .col-lg-3:last-child::after {
    display: none;
}

/* stats box end */


/* treatment section start */
.heading-box {
    margin-bottom: 30px;
}

.heading-box h6.subheading {
    border-radius: 20px;
    background-color: var(--secondary-color);
    width: max-content;
    padding: 6px 20px;
    align-items: center;
    display: flex;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    margin: auto;
    color: #fff;
}

.heading-box h6.subheading i {
    font-size: 10px;
    margin-right: 6px;
}

.heading-box .heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--font-color);
    margin-bottom: 10px;
    line-height: 1.4;
    margin-top: 10px;
}

.main-treatment-sec {
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
}

.heading span {
    color: var(--primary-color);
}

section {
    padding: 60px 0;
}

.treatment-section .treatment-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 15px 30px 15px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--secondary-color);
    text-align: center;
    box-shadow: inset 4px 4px 10px rgba(0, 0, 0, .1);
}

.treatment-section .treatment-card:hover {
    color: #fff !important;
    background-color: #e91e63;
    background-position: center;
    background-size: cover;
}

.treatment-section .treatment-card-dark .card-title,
.treatment-section .treatment-card-dark .card-text {
    color: #fff;
}

.treatment-section .treatment-card-dark .card-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
}

.treatment-section .card-icon-wrapper {
    width: 65px;
    height: 65px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.treatment-section .treatment-card:hover .card-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
}

.treatment-section .card-icon-wrapper img {
    width: 40px;
    height: 40px;
}

.treatment-section .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.treatment-section .treatment-card:hover .card-title {
    color: #fff;
}

.treatment-section .card-text {
    font-size: 14px;
    color: #0F192D;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.treatment-section .treatment-card:hover .card-text {
    color: rgba(255, 255, 255, 0.9);
}

.treatment-section .read-more-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 25px;
    border-radius: 20px 20px 0 0;
    text-decoration: none;
    transition: all 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: max-content;
    margin: auto;
}

.treatment-section .treatment-card:hover .read-more-btn {
    background-color: #fff;
    color: #e91e63;
    border-color: #fff;
}

.treatment-section .treatment-card-dark .read-more-btn {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.treatment-section .treatment-card-dark:hover .read-more-btn {
    background-color: #fff;
    color: #e91e63;
    border-color: #fff;
}

/* treatment section end */


/* consultation-section start */
.consultation-card-wrapper {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #848484;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/uploads/2025/12/consultation-background-1.webp);
    position: relative;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.consultation-section ul {
    display: flex;
    column-gap: 20px;
    margin-bottom: 8px;
}

.consultation-section ul li {
    border-radius: 10px;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 16px;
    /* color: var(--primary-color); */
    padding-left: 0;
}

.consultation-section ul li svg {
    margin-right: 10px;
}

.consultation-section .about-btn {
    background-color: var(--secondary-color);
    border: var(--secondary-color) 2px solid !important;
}

.consultation-section .about-btn img {
    filter: brightness(0) saturate(100%) invert(95%) sepia(95%) saturate(0%) hue-rotate(168deg) brightness(106%) contrast(107%);
}

.consultation-section .about-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border: var(--primary-color) 2px solid !important;
}

/* consultation-section end */


/* video section start */
.OurVideo-section {
    background: #ffffff;
    background: linear-gradient(180deg, rgba(233, 241, 247, 1) 0%, rgba(255, 255, 255, 1) 95%);
}

.OurVideo-section .video-thumb {
    width: 100%;
    height: 370px;
    object-fit: contain;
    border-radius: 10px;
    position: relative;
}

.OurVideo-section .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.OurVideo-section .watch-video-btn {
    width: 100%;
}

.OurVideo-section .watch-video-btn a {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    border-radius: 100px;
    width: fit-content;
    padding: 6px 20px 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--matte-black);
    font-family: "Poppins", sans-serif;
}

.OurVideo-section .watch-video-btn a .bx-play {
    background: #f63c25;
    border-radius: 100%;
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.OurVideo-section .default-btn {
    width: max-content;
    border-radius: 100px;
    margin: auto;
}

/* video section end */


/* services section css start */
.services_section {
    background-color: #FFF9FB;
}

.services_section .card {
    border: none;
    border-radius: 10px;
    transition: 0.3s;
    background-color: transparent;
}

.services_section .card:hover {
    transform: translateY(-5px);
}

.services_section .card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
}

.services_section .card-body {
    text-align: center;
    padding: 20px 10px;
    width: 90%;
    margin: auto;
    margin-top: -40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.services_section .card-body p {
    line-height: 1.8;
}

.services_section .card-body .card-title {
    font-weight: 700;
    color: #3F3F3F;
}

.services_section .card-body .card-title a {
    color: #3F3F3F;
}

.services_section .card-body .card-title a:hover {
    color: var(--primary-color);
}

.services_section .card-body .theme_btn {
    margin: auto;
    padding: 6px 15px;
    margin-top: 15px;
}

/* services section css end */


/* .about-doctor-section start */
.about-doctor-section {
    padding: 60px 0 0 0;
    font-family: sans-serif;
}

.about-doctor-section .heading-box h6.subheading {
    margin: initial;
}

.about-doctor-section .heading-box h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
}

.about-doctor-section .heading-box h4 span {
    color: var(--primary-color);
}

.about-doctor-section .doctor-image-col {
    position: relative;
    padding-right: 20px;
}

.about-doctor-section .doctor-image-card {
    position: relative;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.about-doctor-section .doctor-image-wrapper {
    width: 100%;
    height: 535px;
}

.about-doctor-section .doctor-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 220px 30px 30px 30px;
}

.about-doctor-section .doctor-content-col {
    position: relative;
}

.about-doctor-section .logo-badge {
    position: absolute;
    top: 0;
    right: 40px;
    width: 120px;
    height: 120px;
    z-index: 10;
}

.about-doctor-section .expert-pill {
    display: block;
    background-color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    border-radius: 40px;
    padding: 8px 20px;
    margin: 15px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    width: max-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-doctor-section .feature-pill svg {
    margin-right: 10px;
}

.about-doctor-section .feature-pill {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #3F3F3F;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 20px;
    margin-right: 15px;
    margin-bottom: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-doctor-section .feature-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-doctor-section .feature-pill__icon {
    font-size: 20px;
    color: #FF2B7A;
    margin-right: 8px;
    line-height: 1;
}

.about-doctor-section .experience-badge__number {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.4;
}

.about-doctor-section .experience-badge__text {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.about-doctor-section .experience-badge {
    align-items: center;
    gap: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9;
    position: absolute;
    bottom: 20px;
    right: -40px;
    width: 100%;
    border-radius: 90px 30px 30px 30px;
}

/* .about-doctor-section end */


/* why choose start */
.why-choose .why-choose-card .icon img {
    width: 45%;
}

.why-choose .why-choose-card {
    width: 95%;
    height: 100%;
    margin: auto;
    position: relative;
    padding: 20px;
}

.why-choose .why-choose-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.why-choose .col-lg-3:nth-child(1) .why-choose-card::after,
.why-choose .col-lg-3:nth-child(3) .why-choose-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1.8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #344654 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.why-choose .col-lg-3:nth-child(2) .why-choose-card::after,
.why-choose .col-lg-3:nth-child(4) .why-choose-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1.8px;
    background: linear-gradient(180deg, rgb(52 70 84) 0%, #ffffff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* why choose end */


/* Pitch Section start */
.pitch-section .container {
    padding: 50px 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.pitch-section .left-image img {
    position: absolute;
    left: -80px;
    top: 0;
    width: 520px;
    bottom: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: auto;
}

.pitch-section .col-lg-6 {
    margin-left: 230px;
}

.pitch-section .heading-box .doctor-profile {
    display: none;
}

.pitch-section .heading-box h6.subheading {
    background-color: transparent;
    box-shadow: none;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
}

.pitch-section .buttons .about-btn {
    background-color: var(--secondary-color);
    border: var(--secondary-color) 4px solid;
    border-top: var(--secondary-color) 1px solid !important;
    border-left: var(--secondary-color) 1px solid !important;
    border-right: var(--secondary-color) 1px solid !important;
}

.pitch-section .buttons .about-btn img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(169%) hue-rotate(214deg) brightness(117%) contrast(100%);
}

.pitch-section .buttons .about-btn:hover img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(4%) saturate(7060%) hue-rotate(164deg) brightness(95%) contrast(82%);
}

.pitch-section .buttons .about-btn:hover {
    background-color: transparent;
}

/* Pitch Section end */


/* Patient Recovery section start */
.patient-recovery .heading-box h6.subheading {
    margin: inherit;
    background-color: #fff;
    box-shadow: none;
    color: var(--secondary-color);
}

.patient-recovery .soical-btn .box {
    background-color: #fff;
    border-radius: 10px;
    width: max-content;
    padding: 15px 20px;
    text-align: center;
}

.patient-recovery .soical-btn .box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.patient-recovery .soical-btn .box img {
    width: 140px;
    height: 50px;
    object-fit: contain;
}

.patient-recovery .soical-btn {
    column-gap: 20px;
}

.patient-recovery .default-btn {
    height: max-content;
}

.patient-recovery .default-btn img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(169%) hue-rotate(214deg) brightness(117%) contrast(100%);
}

.patient-recovery .default-btn:hover {
    color: #fff;
}

.patient-recovery .recovery-image img {
    width: 90%;
}

/* Patient Recovery section end */


/* gallery section start */
.news-section {
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(254, 244, 248, 1) 95%);
}

.gallery-sec .gallery-img {
    border-radius: 10px;
    overflow: hidden;
    height: 220px;
    position: relative;
}

.gallery-sec .gallery-img .galleryName {
    display: block;
    color: #fff;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 9;
}

.gallery-sec .gallery-img img {
    max-width: 100%;
    border: solid 1px #c1c1c1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}

.gallery-sec .gallery-img .overlayer {
    width: 100%;
    height: 100%;
    background-color: #181818bc;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    padding: 0;
    transform: scale(.5);
    transition: .4s ease-in-out;
}

.gallery-sec .gallery-img .overlayer i {
    font-size: 50px;
    color: #fff;
    rotate: 45deg;
}

.gallery-sec .gallery-img .overlayer .content {
    background: #222;
    padding: 12px;
    border-radius: 5px;
    display: none;
}

.gallery-sec .gallery-img .overlayer .content h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-sec .gallery-img .overlayer .content p {
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
}

.gallery-sec .gallery-img :hover .overlayer,
.gallery-sec .our-videos-box:hover .overlayer {
    opacity: 1;
    transform: scale(1.1);
}

/* gallery section end */


/* case study section start */
.case-study ul {
    row-gap: 15px;
    width: 90%;
    justify-content: center;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    margin-top: 20px;
}

.case-study ul li {
    font-weight: 600;
    font-size: 16px;
}

.case-study ul li svg {
    margin-right: 5px;
}

.case-study .image-box img {
    width: 85%;
}

/* case study section end */


.contact-form {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-form .form-box {
    box-shadow: 0px 8.24px 24.73px 0px #959DA533;
    background: #FFFFFF;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    height: 100%;
}

.contact-form .form-box p,
.modal .form-box p {
    position: relative;
}

.form-box .input-group-text {
    border: 0;
    height: 45px;
    position: absolute;
    left: 5px;
    top: 0;
    background-color: transparent;
    z-index: 9;
}

.form-box .input-group-text i {
    font-size: 18px;
    color: #1B2336;
}

.form-box .form-control {
    border: 1px solid #DDDDDD;
    background: #F8FAFB;
    border-radius: 50px !important;
    height: 45px;
    padding: 10px 20px 10px 50px;
}

.form-box textarea.form-control {
    height: 100px;
    border-radius: 20px !important;
}

.form-box .form-control::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #1B2336BF;
}

.form-box .form-label {
    font-size: 14px;
    color: #0D1B2A;
    font-weight: 400;
    margin: 0;
}

.form-box .form-box .button-theme {
    width: 100%;
    padding: 15px 25px;
    gap: 20px;
}

.form-box .form-box .button-theme input {
    background-color: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

.form-box .form-box .button-theme:hover input {
    color: var(--color-accent);
}

.contact-form .contact-box {
    width: 100%;
}

.contact-form .contact-box h4,
.contact-form .map-box h4 {
    font-weight: 600;
    line-height: 1.5;
    font-size: 22px;
    color: var(--color-text);
    margin-bottom: 15px;
}

.contact-form .map-box .googlelinks {
    display: block;
    margin-top: 15px;
    text-decoration: underline;
    font-weight: 600;
}

.contact-form .contact-box .info-box {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.contact-form .contact-box .info-box .inner-box {
    padding: 12px 20px;
    border-radius: 10px;
    width: 48%;
    background-color: var(--secondary-color);
}

.contact-form .contact-box .info-box .inner-box a {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.contact-form .contact-box .info-box .inner-box .icon {
    background: #FFFFFF33;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.contact-form .contact-box .info-box .inner-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-form .contact-box .info-box .inner-box .content h5 {
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 0;
}

.contact-form .contact-box .info-box .inner-box .content p {
    line-height: 1.5;
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.contact-form .contact-box .info-box .inner-box.black-box {
    background-color: var(--font-color);
}

.contact-form .map-box {
    width: 100%;
    box-shadow: 0px 8.24px 24.73px 0px #959DA533;
    background: #FFFFFF;
    border-radius: 20px;
    margin-top: auto;
    padding: 20px;
}

.contact-form .map-box iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
}

.contact-form .map-box p {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .map-box p a {
    color: var(--font-color);
}

.contact-form .map-box p a:hover {
    color: var(--primary-color);
}

.contact-form .map-box p i {
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1;
    font-size: 24px;
    margin-top: 6px;
}

.contact-form .default-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}


.testimonials {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 60px 0;
    border-top: 2px solid #ededed;
    border-bottom: 2px solid #ededed;
}

.testimonials .countGoogle {
    border-radius: 6px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: #fff;
    display: inline-flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.testimonials .countGoogle p {
    padding-left: 10px;
    border-left: 1px solid #ddd;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0
}

.testimonials .countGoogle h5 {
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.testimonials .countGoogle .rating {
    font-size: 14px;
    font-weight: 700;
    color: #1e2d3b;
}

.testimonials .countGoogle .stars {
    color: #ffc107;
    font-size: 16px;
}

.testimonials .googleViewbtn {
    display: inline-flex;
    display: flex;
    column-gap: 10px;
    background-color: #fff;
    padding: 10px 25px;
    height: 100%;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif
}

.testimonials .googleViewbtn img {
    width: 20px
}

.testimonials .googleViewbtn:hover {
    background-color: var(--primary-color);
    color: #fff
}

.testimonials .box {
    padding: 20px 0;
}

.testimonial-items {
    background: #fff;
    box-shadow: 0px 8px 24px rgba(149, 157, 165, .2);
    border-radius: 10px;
    padding: 24px 15px 24px 24px;
    height: 100%
}

.testimonial-items h4 {
    color: #133240;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 8px;
    font-weight: 700
}

.testimonial-items ul {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px
}

.testimonial-items p {
    font-size: 16px;
    overflow-y: auto;
    margin-bottom: 0;
    padding-right: 10px
}

.ContentSection {
    padding: 80px 0;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;

    & img {
        width: 100%;
        border-radius: 6px
    }
}


.faq-section .accordion-item {
    background: #FFFFFF;
    border: 1.39px solid #DDDDDD;
    margin-bottom: 20px;
    border-radius: 5px !important;
}

.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-top: 3px solid var(--primary-color);
}

.faq-section .accordion-item .accordion-button {
    background-color: transparent;
    border: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: none;
}

.faq-section .accordion-item .accordion-button:not(.collapsed) {
    color: var(--primary-color);
}

.faq-section .accordion-item .accordion-button::after {
    content: "\ebc0";
    font-family: "boxicons";
    background-image: none;
    transform: none;
}

.faq-section .accordion-item .accordion-button:not(.collapsed)::after {
    content: "\eb8b";
    transform: none;
}

.faq-section .accordion-body {
    padding-top: 10px;
}

.faq-section .accordion-body p {
    color: #888888;
    font-size: 14px;
    font-weight: 500;
}

.faq-section .accordion-body p:last-child {
    margin-bottom: 0;
}

footer {
    background-color: #344654;
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top-left-radius: 50px;
    /* Matching the rounded top corners */
    border-top-right-radius: 50px;
}

footer .footer-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

footer .footer-bio {
    font-size: 14px;
    line-height: 1.8;
    color: #e0e0e0;
}

footer .contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

footer .contact-list li strong {
    font-weight: 700;
}

footer .contact-list li a {
    color: #fff;
}

footer .contact-list li a:hover {
    color: var(--primary-color);
}

footer .contact-list i {
    font-size: 20px;
    margin-right: 12px;
    color: #ffffff;
    margin-top: 2px;
}

footer .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

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

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

footer .footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

footer .footer-links li a:hover {
    opacity: 0.8;
}

footer .social-icons a {
    font-size: 24px;
    margin-right: 15px;
    text-decoration: none;
}

footer .social-icons .fb {
    color: #1877F2;
}

footer .social-icons .insta {
    color: #E4405F;
}

footer .social-icons .yt {
    color: #FF0000;
}

footer .social-icons .g-map {
    color: #4285F4;
}

footer .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
    font-size: 14px;
    letter-spacing: 1px;
}

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

footer .social-links ul {
    justify-content: start;
    margin-top: 15px;
}

footer .social-links ul li a {
    width: 35px;
    height: 35px;
    margin-right: 0;
    background-color: transparent;
}

footer .social-links ul li a img {
    width: 25px;
}



.dr-about-section {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.dr-about-section .doctor-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.dr-about-section .doctor-img-wrapper img {
    width: 80%;
    transform: scaleX(-1);
}

.dr-about-section .experience-box {
    background-color: #1e2d3b;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    justify-content: center;
}

.dr-about-section .experience-box .innerbox {
    display: none;
}

.dr-about-section .exp-icon {
    font-size: 40px;
    margin-right: 15px;
    align-items: center;
    display: flex;
}

.dr-about-section .exp-text .number {
    padding-right: 15px;
    border-right: 2px solid #fff;
    font-size: 44px;
    font-weight: 500;
    display: block;
    line-height: 1;
}

.dr-about-section .exp-text .label {
    font-size: 14px;
    font-weight: 500;
}

.dr-about-section .content .heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.dr-about-section .content h5 {
    font-weight: 600;
    font-size: 16px;
}

.dr-about-section .doctor-name {
    color: #d63384;
    font-weight: 700;
    font-size: 36px;
}

.dr-about-section .content .row.mt-4.justify-content-center {
    width: 80%;
    margin: auto;
}

.dr-about-section .doctor-title {
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.dr-about-section .doctor-speciality {
    color: #444;
    font-weight: 500;
}

.dr-about-section .doctor-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto;
}

.dr-about-section .stat-circle {
    width: 80px;
    height: 80px;
    border-bottom: 4px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-color);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dr-about-section .stat-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--font-color);
}


.Qualification {
    padding: 80px 0;
    background: linear-gradient(166.86deg, #FFFFFF 12.67%, #ffebeb 158.76%);
}

.Qualification .qualifications-left-box {
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);
    border: 1px solid #ddd;
}

.Qualification .qualifications-left-box h5 {
    color: #27374e;
    font-weight: 600
}

.Qualification .qualifications-left-box p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0px
}

.Qualification .qualifications-left-box .inner-qualifications {
    background-color: var(--color-text);
    border-radius: 10px;
}

.Qualification .qualifications-left-box .head-timing:first-child {
    margin-bottom: 12px
}

.Qualification .qualifications-left-box {
    position: relative;
}

.Qualification .qualification-tabs {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
}

.Qualification .qualification-tabs ul {
    padding-bottom: 10px;
    display: grid;
    gap: 10px;

}

.Qualification .qualification-tabs ul::-webkit-scrollbar {
    width: 100%;
    height: 5px
}

.Qualification .qualification-tabs ul::-webkit-scrollbar-track {
    background: #f1f1f1
}

.Qualification .qualification-tabs ul::-webkit-scrollbar-thumb {
    background: #888
}

.Qualification .qualification-tabs ul li button {
    color: #555;
    border: 1px solid #ddd;
    padding: 10px 30px;
    width: 100%;
    font-weight: 500;
}

.Qualification .qualification-tabs ul li button.active {
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid var(--secondary-color);
}

.Qualification .qualification-content {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background: #fff
}

.Qualification .content-box h4 {
    font-weight: 600;
    color: var(--primary-color);
}

.Qualification .qualification-content p,
.Qualification .qualification-content ul {
    margin-bottom: 10px;
    line-height: 2
}

.Qualification .qualification-content ul {
    list-style: disc;
    padding-left: 20px
}

.Qualification .qualification-content ul li {
    line-height: 2;
    margin-bottom: 8px;
}

.Qualification .qualification-content ul li strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.Qualification .qualification-content ul li::marker {
    color: var(--color-secondary);
}

.Qualification .qualification-content p strong {
    font-weight: 700;
}

.Qualification .year-box {
    background-color: #fff;
    display: flex;
    align-items: center;
}

.Qualification .year-box img {
    width: 30px;
    border-radius: 0 !important;
}

.Qualification .year-box h3 {
    font-weight: 600;
    font-size: 32px;
    margin: 0 10px;
    color: var(--color-accent);
}

.Qualification .qualifications-left-box img {
    border-radius: 10px;
}

.Qualification .qualifications-left-box h3 {
    font-size: 22px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.Qualification .year-box {
    margin-top: 10px;
    background-color: #fff;
    position: absolute;
    bottom: 10px;
    width: 92%;
    border-radius: 8px;
    left: 0;
    padding: 15px 10px;
    right: 0;
    margin: auto;
}

.Qualification .year-box h3 {
    color: var(--color-accent);
    font-size: 28px;
    font-weight: 600;
    padding: 0;
}

.Qualification .year-box p {
    font-weight: 600;
}

.Qualification .qualification-tabs ul::-webkit-scrollbar {
    height: 4px;
}

.Qualification .qualification-tabs ul::-webkit-scrollbar-thumb {
    background: #E91E65;
    border-radius: 10px;
}

.pitch-section {
    padding: 50px 0;
}

.page-id-88 .pitch-section {
    padding-top: 40px;
    padding-bottom: 0;
}

.pitch-section .pitch-container {
    background: url('/wp-content/uploads/2025/12/pitch-bg.webp') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    padding: 35px 20px;
}

.pitch-section .pitch-container .pitch-content {
    text-align: center;
    margin-bottom: 15px;
    display: none;
}

.pitch-section .pitch-container .pitch-content h5 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.pitch-section .pitch-container .pitch-content p {
    color: var(--font-color);
    font-weight: 600;
}

.pitch-section .profile-wrapper {
    position: absolute;
    bottom: 0px;
    left: 40px;
}

.pitch-section .profile-img {
    width: 172px;
    height: 172px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pitch-section .action-box {
    background: #fff;
    border-radius: 15px;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.pitch-section .action-box:hover {
    transform: translateY(-5px);
    color: #000;
}

.pitch-section .action-box svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.pitch-section .action-box span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.pitch-section .call-icon-custom {
    color: #ff6a00;
    font-size: 28px;
    margin-right: 10px;
}

.treatment-banner {
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.treatment-banner .banner-doc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.treatment-banner .banner-doc .image-doc img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.treatment-banner .banner-doc .doc-content .doc-name {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}

.treatment-banner .banner-doc .doc-content .designation {
    font-weight: 600;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    color: #000;
}

.treatment-banner.marketing-banner .banner-doc {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.treatment-banner .banner-content {
    text-align: start;
}

.treatment-banner .banner-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
    margin-top: 10px;
}

.treatment-banner .banner-content .buttons {
    justify-content: start;
}

.treatment-banner .banner-content .buttons .default-btn:last-child {
    background: #fff;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color) !important;
}

.treatment-banner .image-side {
    text-align: end;
}

.treatment-banner .image-side img {
    max-width: 450px;
    object-fit: contain;
    object-position: right;
}

.overview img {
    border-radius: 5px;
}

.overview p {
    margin-bottom: 15px;
}

.overview ul li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 500;
    color: var(--font-color);
    padding-left: 30px;
}

.overview ul li::before {
    border-radius: 100px;
    content: "\ea50";
    width: 20px;
    height: 20px;
    border: 1px solid #2480CB;
    color: #2480CB;
    font-family: 'boxicons' !important;
    position: absolute;
    left: 0;
    top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.symptoms {
    background: linear-gradient(180deg, rgba(233, 30, 101, 0.05) 0%, rgba(34, 54, 69, 0.05) 100%);

}

.symptoms .card-symptoms {
    box-shadow: 0px 4px 30px 0px #0000001A;
    background: #FFFFFF;
    padding: 20px;
    height: 100%;
    border-radius: 20px;
}

.symptoms .card-symptoms img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 16px;
}

.symptoms .card-symptoms .content h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #222;
}

.symptoms .card-symptoms .content p {
    margin: 0;
}

.causes .card-causes {
    border-bottom: 6.03px solid #A42247;
    background: #FFFFFF;
    box-shadow: 0px 2.41px 12.06px 0px #00000040;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    margin-bottom: 30px;
}

.causes .card-causes .image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 100px;
}

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

.causes .card-causes .content {
    width: calc(100% - 120px);
    padding-left: 20px;
}

.causes .card-causes .content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.causes .card-causes .content p {
    margin: 0;
}

.causes .causes-box {
    width: 100%;
    max-width: 330px;
    position: relative;
    border-radius: 20px;
    height: 350px;
    overflow: hidden;
    position: sticky;
    top: 15%;
}

.causes .causes-box .image-causes {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.causes .causes-box .default-btn {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    width: max-content;
    margin: auto;
}

.causes .causes-box .default-btn:hover {
    background-color: #ffffff;
}

.causes .causes-box::before {
    content: "";
    background: linear-gradient(180deg, rgba(19, 38, 84, 0) 0%, rgba(53, 61, 79, 0.720872) 53.21%, #1B1B1B 83.15%);
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    top: 0;
    left: 0;
}

.pitch-section.cta-pitch .heading-box h6.subheading,
.pitch-section.cta-pitch .heading-box .heading,
.pitch-section.cta-pitch p {
    color: #fff;
}

.pitch-section.cta-pitch .default-btn {
    border: 1px solid var(--primary-color) !important;
}

.pitch-section.cta-pitch .default-btn.about-btn {
    background-color: #fff;
    color: var(--secondary-color);
    border: 1px solid #fff !important;
}

.pitch-section.cta-pitch .default-btn.about-btn img {
    filter: inherit
}

.pitch-section.cta-pitch .default-btn.about-btn:hover {
    background: transparent;
    color: #fff;
}

.pitch-section.cta-pitch .default-btn.about-btn:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(169%) hue-rotate(214deg) brightness(117%) contrast(100%);
}

.pitch-section.cta-pitch .default-btn:hover {
    background-color: #fff;
}

.treatment-option {
    background: linear-gradient(180deg, rgba(233, 30, 101, 0.1) 0%, rgba(34, 54, 69, 0.1) 100%);
}

.treatment-option .card-treatment {
    width: 100%;
    height: 280px;
    position: relative;
}

.treatment-option .card-treatment .image {
    width: 90%;
    height: 200px;
    border-radius: 10px;
    margin: auto;
    overflow: hidden;
}

.treatment-option .card-treatment .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-option .card-treatment .content {
    width: 85%;
    height: auto;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3.23px 32.27px 0px #18162B24;
    padding: 20px;
}

.treatment-option .card-treatment .content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 10px;
}

.treatment-option .card-treatment .content p {
    margin: 0;
    font-size: 15px;
}

.treatContent-area {
    background: linear-gradient(180deg, rgba(19, 76, 119, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-bottom: 1px solid #DDDDDD
}

.treatContent-area #contenttab {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .05);
    border: 1px solid #ddd;
    position: sticky;
    top: 90px;
    display: flex;
    gap: 10px;
    margin-top: 50px
}

.treatContent-area #contenttab a {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fbfbfb;
    padding: 14px;
    text-align: center;
    font-weight: 600;

}

.treatContent-area #contenttab a.active {
    background: var(--secondary-color);
    border: 1px solid transparent;
    transition: background .3s ease-in-out
}

.treatContent-area .scrollspy-example h4 {
    margin-top: 20px;
    font-weight: 700;
    color: var(--secondary-color)
}

.treatContent-area .scrollspy-example img {
    margin: 0
}

.treatContent-area .scrollspy-example .content-box {
    border-bottom: 1px solid #ccc;
    padding: 10px 0
}

.treatContent-area .scrollspy-example .content-box p {
    line-height: 1.8;
    margin-bottom: 15px
}

.treatContent-area .scrollspy-example .content-box:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.treatContent-area .scrollspy-example .content-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 10px
}

.treatContent-area .scrollspy-example .content-box ul li {
    padding-left: 26px;
    position: relative;
    line-height: 1.8
}

.treatContent-area .scrollspy-example .content-box ul li::before {
    content: "\ea51";
    color: var(--primary-color);
    font-family: boxicons !important;
    position: absolute;
    left: 0;
    top: -2px;
    bottom: 0;
    font-size: 20px;
    display: flex;
    align-items: start
}

.treatContent-area .scrollspy-example .content-box strong {
    font-weight: 700;
}

.treatContent-area .scrollspy-example .content-box hr {
    margin: 20px 0
}

/* Section Background */
.consult-section {
    background: linear-gradient(45deg, var(--secondary-color), #000121);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.consult-section .heading-box .subheading {
    background: #fff;
    color: var(--secondary-color)
}

.consult-section .default-btn:hover img {
    filter: contrast(0) brightness(10);
}

.consult-section .default-btn:hover {
    border-color: #fff !important;
    color: #fff;
}

.why-choose-section .why-stats-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-section .why-stats-box .card-inner {
    box-shadow: 0px 3.74px 14.95px 0px #0000008C;
    border: 0.93px solid #DDDDDD;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}

.why-choose-section .why-stats-box .card-inner .icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 0 auto 5px;
}

.why-choose-section .why-stats-box .card-inner .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-section .why-stats-box .card-inner span {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--secondary-color);
}

.why-choose-section .why-stats-box .card-inner p {
    margin-bottom: 0;
    font-size: 12px;
}

.why-choose-section .image-box {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.why-choose-section .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-section .heading-box ul li {
    box-shadow: 0px 4px 4px 0px #00000040;
    background: #FFFFFF;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--font-color);
    padding: 10px 10px 10px 50px;
    position: relative;
    margin-top: 15px;
}

.why-choose-section .heading-box ul li::before {
    content: "\ebe6";
    font-family: 'boxicons' !important;
    position: absolute;
    left: 10px;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
}

/* Image */
.consult-section .consult-img {
    max-width: 320px;
    border-radius: 15px;
}

/* Features */
.consult-section .consult-feature {
    color: #dbe5ea;
    font-size: 13px;
    max-width: 220px;
    margin: auto;
}

.consult-section .feature-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;

}

.consult-section .feature-icon img {
    object-fit: contain;
}

.consult-section .consult-feature p {
    color: #fff;
}

.about-doctor-section.about-treatment {
    padding: 60px 0;
}

.about-doctor-section.about-treatment .doctor-image-card {
    box-shadow: none;
}

.about-doctor-section.about-treatment .doctor-image-wrapper img {
    transform: scaleX(-1);
}

.about-doctor-section.about-treatment .experience-badge {
    border-radius: 20px;
    right: 0;
    bottom: 0;
}

.about-doctor-section.about-treatment .experience-badge__text {
    font-size: 20px;
}

.about-doctor-section.about-treatment .experience-badge__number {
    font-size: 50px;
}

.contact-banner {
    background: linear-gradient(219deg, #1e2d3b, #2c3e50de);
    padding: 80px 0 60px;
    color: #fff;
}

.contact-banner .banner-content {
    text-align: center;
}

.contact-banner .banner-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-banner .banner-content .designation {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
}

.contact-banner .banner-content .about {
    color: var(--font-color);
}

.doctor-img img {
    max-width: 150px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.footer-cta {
    background: linear-gradient(135deg, #292929, #00414e);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.footer-cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff
}

.footer-cta p {
    margin-top: 15px;
    font-size: 18px;
    color: #fff
}

.footer-cta .appointmentBtn {
    border: 1px solid #ddd !important
}

.footer-cta .appointmentBtn img {
    filter: contrast(0) brightness(10);
}

.footer-cta .appointmentBtn:hover {
    color: #fff;
}

.blogs .blog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 2px 9px 13px 3px rgba(149, 157, 165, .4);
    height: 100%;
}

.blogs .blog-card .blog-img {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top
}

.blogs .blog-card .blog-body {
    padding: 20px
}

.blogs .blog-card .blog-body .date {
    color: #556171;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px
}

.blogs .blog-card .blog-body .date span {
    width: 6px;
    height: 6px;
    opacity: 1;
    border-radius: 3px;
    display: block;
    background: rgba(85, 97, 113, .14)
}

.blogs .blog-card .blog-body .blog-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #0b1030;
    margin: 12px 0
}

.blogs .blog-card .blog-body .default-btn {
    padding: 5px 20px;
}

.blogs .blog-card .blog-body .default-btn i {
    rotate: 148deg;
    font-size: 18px;
}

.banner-treatment,
.blog-details {
    padding: 60px 0
}

.blog-single-post h1,
.blog-single-post h3 {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative
}

.blog-single-post {
    position: relative;
    margin-bottom: 40px
}

.blog-single-post .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.blog-single-post ul.post-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    margin-bottom: 13px
}

.blog-single-post .post-meta li {
    margin-right: 15px;
    padding-right: 15px;
    font-weight: 600;
    border-right: 1px solid #ddd
}

.blog-single-post .post-meta li i {
    margin-right: 8px;
    color: var(--secondary-color)
}

.blog-single-post .post-meta li:last-child {
    border-right: 0
}

.blog-single-post h1 {
    font-size: 30px;
    line-height: 44px;
    color: #3f3f3f
}

.blog-single-post h3 {
    font-size: 28px;
    line-height: 42px;
    color: #3f3f3f
}

.blog-single-post .text {
    margin-bottom: 40px
}

.blog-single-post .text ul {
    padding-left: 0
}

.blog-single-post .text ul li {
    list-style: none;
    margin-bottom: 10px;
    color: #3f3f3f;
    position: relative;
    padding-left: 30px;
}

.blog-single-post .text ul li:before {
    color: var(--primary-color);
    content: "\ebe6";
    font-family: 'boxicons' !important;
    font-weight: 900;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0
}

.blog-single-post .text ol {
    list-style: auto
}

.blog-single-post .text ol li {
    list-style: inherit;
    margin-bottom: 15px;
    color: #3f3f3f;
    font-size: 16px
}

.blog-single-post .text b,
.blog-single-post .text strong {
    font-weight: 600;
    color: var(--secondary-color)
}

.blog-single-post .text h2 {
    position: relative;
    font-size: 28px;
    line-height: 44px;
    font-weight: 700;
    font-family: inherit;
    margin-bottom: 15px
}

.blog-single-post .text p {
    margin-bottom: 10px;
}

.blog-single-post .text h3,
.blog-single-post .text h4,
.blog-single-post .text h5 {
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    font-family: inherit
}

.blog-single-post .text h3 {
    font-size: 24px
}

.blog-single-post .text h4 {
    font-size: 22px
}

.blog-single-post .text h5 {
    font-size: 20px
}

.blog-single-post blockquote {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #565872;
    margin-bottom: 30px
}

.blog-single-post blockquote:before {
    position: absolute;
    content: "";
    top: 0;
    width: 8px;
    bottom: 0;
    background: var(--secondary-color);
    left: 0;
    border-radius: 5px
}

.widget {
    position: relative;
    margin-bottom: 50px
}

.widget_popular_post {
    position: relative;
    max-width: 350px;
    margin-left: auto
}

.widget .widget-title {
    position: relative;
    font-size: 20px;
    color: #3f3f3f;
    margin-bottom: 20px;
    font-weight: 600
}

.widget_popular_post .post-thumb {
    position: relative;
    margin-right: 15px;
    margin-bottom: 0;
    overflow: hidden
}

.widget_popular_post .post-thumb:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(16, 34, 53, 59%);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    transition: .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
    opacity: 1;
    width: 100%;
    height: 100%;
    border-radius: 0;
    -webkit-animation: .75s circle;
    animation: .75s circle
}

.widget_popular_post .post-thumb img {
    border-radius: 5px;
    float: left;
    height: 60px;
    width: 60px;
    object-fit: cover
}

.widget_popular_post .post {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    padding: 14px;
    border-radius: 5px
}

.widget_popular_post .content {
    position: relative;
    width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
    position: relative;
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 600;
    font-family: inherit
}

.widget_popular_post .content h5 a {
    color: #3f3f3f;
    transition: .5s
}

.widget_popular_post .content .post-info {
    font-size: 14px;
    color: #3f3f3f
}

.widget_popular_post .content .post-info i {
    margin-right: 4px;
    color: var(--secondary-color)
}

.video-gallery .video-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0px 1px 44px 0px rgba(0, 0, 0, .11);
    padding: 15px;
    border-radius: 10px;
}

.video-gallery .video-card .image {
    width: 100%;
    height: 155px;
    border-radius: 10px;
    position: relative;
    overflow: hidden
}

.video-gallery .video-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.video-gallery .video-card .image .play-btn {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 35%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease
}

.video-gallery .video-card .image .play-btn i {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: rgb(255 36 36);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff
}

.video-gallery .video-card:hover .image .play-btn {
    visibility: visible;
    opacity: 1;
}

.video-gallery .video-card .content {
    margin-top: 20px;
}

.video-gallery .video-card .content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.6
}

.video-gallery .video-card .content .read-more-btn {
    border: 0;
    padding: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-tabs .nav-link {
    border: none;
    background: #fff;
    color: #222;
    padding: 12px 28px;
    margin: 6px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px 3px rgb(0 0 0 / 15%);
}

.faq-tabs .nav-link.active {
    background: var(--primary-color);
    color: #fff;
}

.case-study-section {
    background: #f8f9fc;
}

/* Card */

.case-study-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.case-study-card:hover {
    transform: translateY(-8px);
}

.case-study-image {
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    transition: 0.5s;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.08);
}

.case-study-content {
    padding: 25px;
}

.case-study-category {
    margin-bottom: 15px;
}

.case-study-category span {
    background: #ffe7e7;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.case-study-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.case-study-content h3 a {
    color: var(--font-color);
    text-decoration: none;
}

.case-study-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: #000;
}

/* Mobile */

@media(max-width:767px) {

    .section-heading .main-title {
        font-size: 30px;
    }

    .case-study-image img {
        height: 220px;
    }

    .case-study-content {
        padding: 20px;
    }

    .case-study-content h3 {
        font-size: 20px;
    }

}

.case-study-details {
    background: #f8f9fc;
}

/* Image */

.case-study-details .case-study-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.case-study-details .case-study-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    transition: 0.5s;
}

.case-study-details .case-study-image:hover img {
    transform: scale(1.05);
}

/* Content */

.case-study-details .case-study-content {
    padding-left: 0;
}

.case-study-details .case-study-content h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #111;
}

.case-study-details .case-study-content strong {
    font-weight: 700;
}

.case-study-details .case-study-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 10px;
}

.case-study-details .case-study-content ul li {
    padding-left: 26px;
    position: relative;
    line-height: 1.8;
    margin-bottom: 10px;
}

.case-study-details .case-study-content ul li::before {
    content: "\ea51";
    color: var(--primary-color);
    font-family: boxicons !important;
    position: absolute;
    left: 0;
    top: -2px;
    bottom: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
}

/* Mobile */

@media(max-width:991px) {

    .case-study-details .case-study-content {
        padding-left: 0;
    }

    .case-study-details .case-study-content h1 {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .case-study-details .case-study-image img {
        height: 320px;
    }

    .case-study-details .case-study-content h1 {
        font-size: 28px;
    }

    .case-study-details .case-study-content p {
        font-size: 15px;
    }

}

.m-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    width: 100%;
    z-index: 999;
    padding: 5px 0;
    height: 50px;
    display: none;
    align-items: center;
    border-top: 2px solid #fff
}

.m-footer [class^=col] {
    border-right: 1px solid #fff
}

.m-footer a {
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600
}

.m-footer a i {
    font-size: 22px;
}

.m-footer a i:hover {
    color: #000 !important
}

.aiowps-captcha-answer {
    padding: 0 10px;
}

.wpcf7-spinner {
    position: absolute !important;
    right: 0;
    top: 0;
}

.morecontent span {
    display: none;
}

.testimonial-items p .morelink-2 {
    color: var(--primary-color);
    line-height: 1.5;
    padding: 5px;
    font-weight: 500;
    display: block;
}

.testimonial-items p .morelink-2 i {
    margin-left: 5px;
    vertical-align: sub;
    font-size: 22px
}

/* Desktop Table Design */

.case-study-table-wrapper {
    margin-top: 30px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.case-study-table {
    width: 100%;
    border-collapse: collapse;
}

.case-study-table th {
    background: #E91E65;
    color: #fff;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.case-study-table td {
    padding: 14px 18px;
    font-size: 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-top: 1px solid #f1f1f1;
}

/* Mobile List Design */

@media(max-width:767px) {

    .case-study-table,
    .case-study-table thead,
    .case-study-table tbody,
    .case-study-table th,
    .case-study-table td,
    .case-study-table tr {
        display: block;
        width: 100%;
    }

    .case-study-table thead {
        display: none;
    }

    .case-study-table tr {
        margin-bottom: 15px;
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
    }

    .case-study-table td {
        position: relative;
        padding: 14px 15px 14px 45%;
        text-align: left;
        border: none;
        border-bottom: 1px solid #f5f5f5;
        font-size: 14px;
    }

    .case-study-table td:last-child {
        border-bottom: none;
    }

    .case-study-table td::before {
        position: absolute;
        left: 15px;
        top: 14px;
        width: 40%;
        font-weight: 700;
        color: #E91E65;
    }

    .case-study-table td:nth-child(1)::before {
        content: "Age";
    }

    .case-study-table td:nth-child(2)::before {
        content: "Disease";
    }

    .case-study-table td:nth-child(3)::before {
        content: "Treatment";
    }

    .case-study-table td:nth-child(4)::before {
        content: "Stage";
    }

    .case-study-table td:nth-child(5)::before {
        content: "Result";
    }

    .case-study-table th {
        display: none;
    }

}

.pitch-hospital .container {
    padding: 50px;
    background: #182631;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.pitch-hospital .container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}



.pitch-hospital .doctor-flex {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.pitch-hospital .doctor-image img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
}

.pitch-hospital .content h4 {
    color: #fff;
    font-size: 26 px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pitch-hospital .content p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.pitch-hospital .hospital-name {
    font-size: 24px;
    color: #fff;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 10px;
}

.pitch-hospital .hospital-content {
    color: #fff;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 10px;
}

.pitch-hospital .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e11d48;
    color: #fff;
    padding: 16px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
}

.pitch-hospital .theme-btn:hover {
    background: #be123c;
    transform: translateY(-3px);
}

.pitch-hospital .pitch-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    max-width: 400px;
    margin-left: auto;
}

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

@media(max-width:991px) {
    .pitch-hospital {
        padding: 0;
    }

    .pitch-hospital .container {
        padding: 50px 15px;
        border-radius: 0;
    }

    .pitch-hospital .doctor-image {
        margin: auto;
    }

    .pitch-hospital .content-wrapper {
        padding: 0;
        margin-top: 30px;
        text-align: center;
    }

    .pitch-hospital .doctor-flex {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .pitch-hospital .doctor-image img {
        width: 140px;
        height: 140px;
    }

    .pitch-hospital .content h4 {
        font-size: 28px;
    }

    .pitch-hospital .hospital-name {
        font-size: 26px;
    }

    .pitch-hospital .hospital-content {
        max-width: 100%;
    }
}

.video-gallery .nav-pills {
    gap: 10px;
}

.video-gallery .nav-pills .nav-link {
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    color: #333;
    background: #f5f5f5;
}

.video-gallery .nav-pills .nav-link.active {
    background: var(--primary-color);
    color: #fff;
}

#full-video .nav-pills,
#short-reels .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start !important;
    gap: 10px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

#full-video .nav-pills::-webkit-scrollbar,
#short-reels .nav-pills::-webkit-scrollbar {
    height: 6px;
}

#full-video .nav-pills::-webkit-scrollbar-thumb,
#short-reels .nav-pills::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

#full-video .nav-item,
#short-reels .nav-item {
    flex: 0 0 auto;
}

#full-video .nav-link,
#short-reels .nav-link {
    white-space: nowrap;
    border-radius: 30px;
    padding: 10px 20px;
}

#full-video .nav-link.active,
#short-reels .nav-link.active {
    background: var(--secondary-color);
    color: #fff;
}

#menu-item-17387 ul.sub-menu {
    column-count: 2;
    left: -260px;
    padding: 15px 0;
}

#menu-item-17387 ul.sub-menu::before {
    left: 270px;
}

#menu-item-17387 ul.sub-menu {
    column-count: 2;
    left: -260px;
    padding: 15px 0;
}

#menu-item-17387 ul.sub-menu::before {
    left: 270px;
}

.treatContent-area .content-box {
    scroll-margin-top: 120px;
}

/* ============================================================
   APPOINTMENT SLOTS — FIX
   Scoped to .apt-wrapper; cannot leak into other page sections.
   Load AFTER kdm_appointments/assets/css/styles.css
   ============================================================ */

/* 1. Local tokens, inheriting the site palette with safe fallbacks. */
.apt-wrapper {
  --slot-accent: var(--primary-color, #0f4c81);
  --slot-border: #dfe6ec;
  --slot-text: #2c3e50;
  --slot-radius: 10px;
  --slot-gap: 10px;
  --slot-min: 100px;
}

/* 2. Master grid.
   `.time-slots` is a DIV holding loose <li> + <p> + <ul>. One grid here
   lays out the loose morning <li> directly; headings and the <ul> groups
   are promoted to full-width rows in rules 4 and 5. */
.apt-wrapper .time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--slot-min), 1fr));
  gap: var(--slot-gap);
  width: 100%;
  margin: 22px 0 0;
  padding: 0;
  float: none;
  overflow: visible;
  list-style: none;
}

.apt-wrapper .time-slots:empty { margin: 0; }

/* Kill any clearfix pseudo-elements from the plugin — as grid children
   they'd create phantom empty cells. */
.apt-wrapper .time-slots::before,
.apt-wrapper .time-slots::after { content: none; }

/* 3. Group headings ("Afternoon" / "Evening") span the full row. */
.apt-wrapper .time-slots > .slot-head {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding: 0 0 6px;
  border-bottom: 1px solid var(--slot-border);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #7a8894;
}

/* First heading sits tighter to the morning block above it. */
.apt-wrapper .time-slots > .slot-head:first-child { margin-top: 0; }

/* 4. Nested groups span the full row AND repeat the identical track
   definition. Same tracks + same available width = columns align
   perfectly between the loose morning slots and the nested groups. */
.apt-wrapper .time-slots > ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--slot-min), 1fr));
  gap: var(--slot-gap);
  width: 100%;
  margin: 0;
  padding: 0;              /* clears theme/Bootstrap ul padding-left */
  list-style: none;
}

/* 5. The <li> is now a pure grid cell — zero padding so the <span>
   inside can fill it edge-to-edge and remain fully clickable
   regardless of whether JS binds the click to the li or the span. */
.apt-wrapper .time-slots li,
.apt-wrapper .time-slots > ul > li {
  display: block;
  width: auto;
  min-width: 0;            /* lets cells shrink instead of overflowing */
  margin: 0;
  padding: 0;
  float: none;
  list-style: none;
}

/* Remove any list marker the plugin/theme may render on bare <li>. */
.apt-wrapper .time-slots li::marker { content: none; }

/* 6. THE SLOT CHIP — the <span.tooltips> is the visual element, since it
   carries the text, the title tooltip and the data-date attribute. */
.apt-wrapper .time-slots li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 44px;        /* comfortable touch target */
  padding: 10px 6px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;     /* keeps "10:15 am" on one line */
  color: var(--slot-text);

  background: #fff;
  border: 1px solid var(--slot-border);
  border-radius: var(--slot-radius);
  cursor: pointer;
  user-select: none;
  transition: background-color .18s ease, border-color .18s ease,
              color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.apt-wrapper .time-slots li > span:hover {
  border-color: var(--slot-accent);
  color: var(--slot-accent);
  background: #f4f9fd;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(15, 76, 129, .12);
}

.apt-wrapper .time-slots li > span:active { transform: translateY(0); }

/* 7. Selected state. The plugin ships class="" on the <li> and
   class=" tooltips" on the <span>, so a class is clearly injected at
   runtime on one or both — both levels are covered here. */
.apt-wrapper .time-slots li.active > span,
.apt-wrapper .time-slots li.selected > span,
.apt-wrapper .time-slots li > span.active,
.apt-wrapper .time-slots li > span.selected {
  background: var(--slot-accent);
  border-color: var(--slot-accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 76, 129, .25);
}

/* 8. Booked / unavailable. pointer-events:none blocks the click without
   touching the JS handler. */
.apt-wrapper .time-slots li.booked > span,
.apt-wrapper .time-slots li.disabled > span,
.apt-wrapper .time-slots li.unavailable > span,
.apt-wrapper .time-slots li > span.booked,
.apt-wrapper .time-slots li > span.disabled {
  background: #f2f4f6;
  border-color: #e6e9ec;
  color: #a8b2bc;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
  transform: none;
  box-shadow: none;
}

/* 9. OPTIONAL — this date renders 34 slots, which pushes the contact
   card far down the page. Caps the list and scrolls instead.
   Delete this block if you'd rather show everything inline. */
@media (min-width: 768px) {
  .apt-wrapper .time-slots {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
  }
  .apt-wrapper .time-slots::-webkit-scrollbar { width: 6px; }
  .apt-wrapper .time-slots::-webkit-scrollbar-thumb {
    background: #cfd8e0;
    border-radius: 3px;
  }
}

/* 10. Date navigation bar — misalignment here made the grid below
    look off-axis. */
.apt-wrapper .select-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
  padding: 6px;
  background: #f8fafb;
  border: 1px solid var(--slot-border);
  border-radius: var(--slot-radius);
}

.apt-wrapper .select-date .navigate-date {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color .18s ease;
}

.apt-wrapper .select-date .navigate-date:hover { background: #e8eff5; }

/* JS toggles .disabled on #prevDate at the start of the range. */
.apt-wrapper .select-date .navigate-date.disabled {
  opacity: .35;
  pointer-events: none;
}

.apt-wrapper .select-date .navigate-date img {
  width: 26px;
  height: auto;
  display: block;
}

/* 11. Date input — min-width:0 is essential; without it the flex item
    refuses to shrink and overflows on narrow screens. */
.apt-wrapper .select-date .selected-date {
  flex: 1 1 auto;
  min-width: 0;
  height: 38px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: var(--slot-text);
  cursor: pointer;
}

.apt-wrapper .select-date .selected-date:focus { outline: none; }

/* 12. Loading skeleton — matched to the slot grid so there's no layout
    shift when the AJAX slots replace it. */
.apt-wrapper .skeleton-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--slot-min), 1fr));
  gap: var(--slot-gap);
  margin-top: 22px;
  min-height: 44px;
  border-radius: var(--slot-radius);
  background: linear-gradient(90deg, #eef1f4 25%, #f7f9fa 37%, #eef1f4 63%);
  background-size: 400% 100%;
  animation: aptSkeleton 1.4s ease infinite;
}

/* JS toggles .disabled to hide the skeleton — respected. */
.apt-wrapper .skeleton-card.disabled {
  display: none;
  animation: none;
}

@keyframes aptSkeleton {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

/* 13. Purpose select — sat flush against the date bar. */
.apt-wrapper .apt-form .form-group { margin-bottom: 0; }

.apt-wrapper .booking_purpose {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--slot-border);
  border-radius: var(--slot-radius);
  background: #fff;
  font-size: 15px;
  color: var(--slot-text);
}

.apt-wrapper .apt-purpose {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #7a8894;
}

/* 14. Responsive. The grid wraps on its own via auto-fill; these only
    tune cell density and type size. Both the master grid and the nested
    <ul>s inherit --slot-min, so one variable resizes everything. */
@media (max-width: 767px) {
  .apt-wrapper { --slot-min: 88px; --slot-gap: 8px; }
  .apt-wrapper .time-slots li > span { font-size: 13px; padding: 9px 4px; }
  .apt-wrapper .time-slots > .slot-head { font-size: 13px; }
}

@media (max-width: 400px) {
  .apt-wrapper { --slot-min: 76px; }
  .apt-wrapper .time-slots li > span { font-size: 12.5px; min-height: 42px; }
}

/* 15. Reduced-motion respect. */
@media (prefers-reduced-motion: reduce) {
  .apt-wrapper .time-slots li > span,
  .apt-wrapper .skeleton-card { transition: none; animation: none; }
  .apt-wrapper .time-slots li > span:hover { transform: none; }
}