/* ==============================
   GLOBAL STYLES
============================== */
:root {
    --primary-color: #23A3D7;
    --primary-hover-color: #219ACC;
    --secondary-color: #112976;
    --accent-color: #8CC63F;
    --accent-hover-color: #83B839;
    --text-dark: #161517;
    --text-color: #454449;
    --font-primary: "Open Sans", sans-serif;
    --font-secondary: "Merriweather", serif;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
    background: #bbb;
}

::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #E8F4FC;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
}

ul,
ol,
dl {
    list-style-type: none;
    list-style-position: inside;
}

img {
    display: block;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

.btn:focus,
button:focus,
input:focus {
    outline: 0;
    border: none;
    box-shadow: none;
}

.btn {
    background-color:  var(--text-dark);
    border-radius: 30px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    padding: 18px 32px;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.btn:hover,
.btn:focus {
    background-color:  var(--text-color);
    color: #fff;
    gap: 16px;
    padding: 18px 38px;
}

.btn-shadow {
    box-shadow: 0px 6px 12px rgba(175, 175, 175, 0.4);
}

.btn > svg,
.btn > svg path {
    fill: var(--text-color);
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: transparent;
    border-color:  var(--primary-color);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover-color);
}

.btn-primary-shadow {
    box-shadow: 0px 6px 12px rgba(35, 163, 215, 0.4);
}

.btn-primary > svg,
.btn-primary > svg path {
    fill: transparent !important;
    stroke: #fff !important;
}

.btn-accent {
    background-color: var(--accent-color);
    color: #fff !important;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--accent-hover-color);
    color: #fff;
}

.btn-accent-shadow {
    box-shadow: 0px 6px 12px rgba(140, 198, 63, 0.4);
}

.btn-accent > svg,
.btn-accent > svg path {
    fill: transparent;
    stroke: #fff;
}

.btn-primary-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary-outline > svg,
.btn-primary-outline > svg path {
    fill: var(--primary-color);
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
    color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

.btn-primary-outline:hover > svg,
.btn-primary-outline:hover > svg path {
    fill: var(--primary-hover-color);
}

.btn-accent-outline {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-accent-outline > svg,
.btn-accent-outline > svg path {
    fill: var(--accent-color);
}

.btn-accent-outline:hover,
.btn-accent-outline:focus {
    color: var(--accent-hover-color);
    border-color: var(--accent-hover-color);
}

.btn-accent-outline:hover > svg,
.btn-accent-outline:hover > svg path {
    fill: var(--accent-hover-color);
}

.btn-sm {
    font-size: 14px;
    padding: 10px 20px;
}

.btn-sm:hover,
.btn-sm:focus {
    padding: 10px 26px;
}

.container {
    width: 100%;
    max-width: 1320px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.text-white {
    color: #fff !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.button-left-md-center {
    display: flex;
    align-items: center;
    justify-content: start;
}

.button-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-mt45-md-mt25 {
    margin-top: 45px;
}

.button-mt60-md-mt40 {
    margin-top: 60px;
}

.button-center-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.custom-wrapper-1024 {
    max-width: 1024px;
    margin: 0 auto;
}

.custom-wrapper-1140 {
    max-width: 1140px;
    margin: 0 auto;
}

.d-none { display: none !important; }
.d-inline-block { display: inline-block !important; }

.floating-whtsapp {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 49px;
}


/* ==============================
   SPRITES
============================== */

.sprt {
    background-image: url('../img/sprite.webp');
    background-repeat: no-repeat;
    display: inline-block;
}

.sprt-fever {
    background-position: 0 0;
    height: 36px;
    width: 27px;
}

.sprt-tb {
    background-position: -29px 0;
    height: 36px;
    width: 38px;
}

.sprt-std {
    background-position: -69px 0;
    height: 36px;
    width: 36px;
}

.sprt-infections {
    background-position: -107px 0;
    height: 36px;
    width: 36px;
}

.sprt-vaccinations {
    background-position: -145px 0;
    height: 36px;
    width: 36px;
}

.sprt-uti {
    background-position: -183px 0;
    height: 36px;
    width: 36px;
}

.sprt-bone-infections {
    background-position: -221px 0;
    height: 36px;
    width: 36px;
}

.sprt-medicine {
    background-position: -259px 0;
    height: 36px;
    width: 38px;
}

.sprt-fever-infections {
    background-position: 0 -38px;
    height: 64px;
    width: 58px;
}

.sprt-tuberculosis {
    background-position: -60px -38px;
    height: 64px;
    width: 64px;
}

.sprt-std-virus {
    background-position: -126px -38px;
    height: 64px;
    width: 65px;
}

.sprt-chronic-fever {
    background-position: -193px -38px;
    height: 64px;
    width: 54px;
}

.sprt-surgery {
    background-position: -249px -38px;
    height: 64px;
    width: 54px;
}

.sprt-kidney {
    background-position: 0 -104px;
    height: 64px;
    width: 58px;
}

.sprt-bone {
    background-position: -60px -104px;
    height: 64px;
    width: 64px;
}

.sprt-brain {
    background-position: -126px -104px;
    height: 64px;
    width: 64px;
}

.sprt-lung {
    background-position: -193px -104px;
    height: 64px;
    width: 64px;
}

.sprt-abdominal {
    background-position: -259px -104px;
    height: 64px;
    width: 64px;
}

.sprt-skin {
    background-position: 0 -170px;
    height: 64px;
    width: 62px;
}

.sprt-cancer {
    background-position: -64px -170px;
    height: 64px;
    width: 64px;
}

.sprt-icu {
    background-position: -130px -170px;
    height: 64px;
    width: 62px;
}

.sprt-fungal {
    background-position: -250px -170px;
    height: 64px;
    width: 66px;
}

.sprt-worm {
    background-position: -194px -170px;
    height: 64px;
    width: 54px;
}

.sprt-travel-medicine {
    background-position: 0 -236px;
    height: 64px;
    width: 54px;
}

.sprt-adult-vaccination {
    background-position: -60px -236px;
    height: 64px;
    width: 58px;
}

.sprt-antibiotic {
    background-position: -126px -236px;
    height: 64px;
    width: 64px;
}

.sprt-health-consultations {
    background-position: -193px -236px;
    height: 64px;
    width: 64px;
}


/* ==============================
   HEADER
============================== */
.page-header {
    position: relative;
    overflow: hidden;
}

.hero-blur-bg-primary {
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: -100px;
    height: 800px;
    width: 800px;
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
}

.hero-blur-bg-accent {
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    bottom: -100px;
    right: -100px;
    height: 800px;
    width: 800px;
    filter: blur(100px);
    opacity: 0.5;
    z-index: -1;
}

.page-header-content {
    position: relative;
}

.topbar {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0px 5px rgba(0,0,0,0.05);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-whtsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.topbar-whtsapp:hover {
    color: #25D366;
}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.hero-left {
    margin-top: 80px;
    width: 55%;
}

.hero-title {
    color: var(--secondary-color);
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 14px;
}

.hero-cta-btn {
    font-size: 16px;
}

/* Hero Social Media Icons */
.hero-social-media {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    align-items: center !important;
    justify-content: flex-start !important;
}

.hero-social-media .social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-social-media .social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #23A3D7 0%, #1a8fbe 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
}

.hero-social-media .social-icon:hover::before {
    transform: scale(1);
}

.hero-social-media .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(35, 163, 215, 0.4);
    border-color: #23A3D7;
}

.hero-social-media .social-icon:active {
    transform: translateY(-2px) scale(1.05);
}

.hero-social-media .social-icon img {
    width: 26px;
    height: 26px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.hero-social-media .social-icon:hover img {
    filter: brightness(0) invert(1);
    transform: rotate(360deg) scale(1.1);
}

/* Individual social icon colors on hover */
.hero-social-media .social-icon:nth-child(1):hover::before {
    background: linear-gradient(135deg, #1877f2 0%, #0d5cbc 100%); /* Facebook */
}

.hero-social-media .social-icon:nth-child(2):hover::before {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%); /* YouTube */
}

.hero-social-media .social-icon:nth-child(3):hover::before {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%); /* Instagram */
}

.hero-social-media .social-icon:nth-child(4):hover::before {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%); /* LinkedIn */
}

.hero-right {
    width: 45%;
    position: relative;
}

 .hero-plus {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    top: 50%;
    left: 50%;
    opacity: 0.5;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-plus::before,
.hero-plus::after {
    content: '';
    position: absolute;
    background-color: #fff;
    opacity: 0.3;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.hero-plus::before {
    width: 150px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
}

.hero-plus::after {
    width: 100%;
    height: 150px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--accent-color);
}

.hero-right img {
    position: relative;
}

.meet-doctor-wrap {
    background-color: var(--secondary-color);
    border-radius: 42px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 30px;
    position: relative;
}

.meet-doctor-left {
    width: 45%;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.fact-box {
    text-align: center;
    width: 46%;
}

.fact-box .counter {
    color: var(--accent-color);
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.fact-box p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}

.meet-doctor-right {
    width: 65%;
}

.meet-title {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 5px;
}

.meet-desc {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
}


/* ==============================
   MAIN
============================== */
.app-section {
    margin: 85px auto 0;
    position: relative;
}

.section-title-wrap {
    text-align: center;
}

.section-above-subtitle {
    font-size: 100px;
    line-height: 1;
    opacity: 0.2;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: -40px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
}

.section-title {
    color: var(--secondary-color);
    font-size: 32px;
}

.stundrln {
    position: relative;
    display: inline-block;
}

.stundrln::before {
    content: '';
    background-color: var(--accent-color);
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: -2px;
    left: 0;
    border-radius: 50px;
}

.section-below-title-desc {
    font-size: 16px;
    margin-top: 10px;
}

.section-content {
    margin-top: 30px;
}

/* ===== Choose ===== */
.section-choose .section-content {
    margin-top: 20px;
}

.key-milestones-heading {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.timeline-container {
    position: relative;
    margin-top: 30px;
    margin-bottom: 50px;
}

.timeline {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    height: 4px;
    background: var(--primary-color);
    top: 50%;
    left: 80px;
    right: 80px;
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-event {
    position: relative;
    width: 250px;
    text-align: center;
    z-index: 1;
}

.timeline-year {
    color: var(--primary-color);
    font-size: 22px;
}

.timeline-img {
    background: var(--primary-color);
    border: 5px solid #E0F0Fb;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-img img {
    width: 85%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline-title {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.join-us-link {
    color: var(--primary-color);
    margin-top: 30px;
    display: inline-block;
    position: relative;
}

.join-us-link::before {
    content: '';
    background-color: var(--accent-color);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -5px;
}



/* tiimeline-tooltip */
.tiimeline-tooltip {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 15px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    transition: opacity 0.3s ease;
    font-size: 13px;
    z-index: 10;
}

.tiimeline-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.timeline-event:hover .tiimeline-tooltip {
    visibility: visible;
    opacity: 1;
}


/* ===== Diseases ===== */
.diseases-carousel .owl-stage-outer {
    padding-bottom: 20px;
}

.diseases-card {
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.diseases-icon {
    background-color: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    border: 5px solid #E0F0Fb;
    transition: all 0.3s ease;
    position: relative;
}

.diseases-icon .sprt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diseases-heading {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.diseases-card:hover {
    background-color: var(--secondary-color);
}

.diseases-card:hover .diseases-icon {
    border-color: var(--primary-color);
    background-color: transparent;
}

.diseases-card:hover .diseases-heading {
    color: #fff;
}

.custom-owl-nav .owl-nav {
    margin-top: 0 !important;
    position: absolute;
    top: -94px;
    right: 34px;
    background-color: red;
}

.custom-owl-nav .owl-nav button.owl-prev,
.custom-owl-nav .owl-nav button.owl-next {
    border: 2px solid var(--secondary-color) !important;
    border-radius: 50%;
    color: var(--secondary-color) !important;
    font-size: 36px !important;
    line-height: 34px !important;
    position: absolute;
    top: 0;
    margin: 0;
    height: 40px;
    width: 40px;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.custom-owl-nav .owl-nav button.owl-prev:hover,
.custom-owl-nav .owl-nav button.owl-next:hover {
    background-color: transparent !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.custom-owl-nav .owl-nav button.owl-prev {
    left: -90px !important;
}

.custom-owl-nav .owl-nav button.owl-next {
    right: 0 !important;
}

.custom-owl-nav .owl-nav button span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    line-height: 20px;
    font-size: 24px;
}


/* ===== Services ===== */
.section-srvcs {
    margin-top: 65px;
}

.srvcs-blur-bg-accent {
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    height: 100%;
    width: 100%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
}

.srvcs-section-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 250px;
}

.srvcs-section-box .section-title-wrap {
    text-align: left;
}

.srvcs-inner {
    background: url("../img/dr-neha-red.webp") 50% 50% no-repeat;
    position: relative;
}

.srvcs-row {
    display: flex;
    align-items: center;
    gap: 100px;
    margin: 0 28px;
    position: relative;
    top: 80px;
}

.srvcs-left {
    width: 50%;
}

.srvcs-right {
    width: 50%;
}

.srvcs-item {
    background-color: rgba(255,255,255,0.6);
    box-shadow: 0 18px 38px rgba(0,0,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 15px;
    padding: 10px 30px 10px 50px;
    width: 80%;
    min-height: 112px;
}

.srvcs-item:last-child {
    margin-bottom: 0;
}

.srvcs-item2 {
    left: 20px;
}

.srvcs-item3 {
    left: 70px;
}

.srvcs-item4 {
    left: 120px;
}

.srvcs-item6 {
    right: 20px;
}

.srvcs-item7 {
    right: 70px;
}

.srvcs-item8 {
    right: 120px;
}

.srvcs-item-icon {
    background-color: var(--secondary-color);
    border-radius: 12px;
    height: 56px;
    width: 56px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: -28px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.srvcs-item-icon img {
    width: 36px;
}

.srvcs-item-heading {
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.srvcs-item-desc {
    font-size: 14px;
}

.srvcs-item-right {
    text-align: right;
    margin-left: auto;
    padding: 20px 50px 20px 30px;
}

.srvcs-item-right .srvcs-item-icon {
    left: auto;
    right: -28px;
}

.srvcs-item-right .srvcs-item-content {
    margin-left: auto;
}

.srvcs-inner .button-center {
    position: relative;
    top: 80px;
}


/* ===== Process ===== */
.section-prcss {
    margin-top: 215px;
}

.img-halftonet-dots {
    position: absolute;
    top: -35px;
    left: 0;
    opacity: 0.5;
}

.prcss-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 24px;
    padding: 40px;
}

.prcss-row .section-above-subtitle {
    font-size: 80px;
}

.prcss-row .section-title,
.prcss-row .section-below-title-desc {
    color: #fff;
}

.prcss-row .stundrln {
    color: var(--primary-color);
}

.prcss-left {
    width: 35%;
}

.prcss-left .section-title-wrap {
    text-align: left;
}

.prcss-right {
    width: 65%;
    display: flex;
    align-items: center;
}

.prcss-item {
    background-color: #fff;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-bottom: 15px;
    padding: 5px;
    width: 77%;
}

.prcss-item::before {
    content: '';
    background-color: #fff;
    height: 100%;
    width: 2px;
    position: absolute;
    top: 70px;
    left: 34px;
}

.prcss-item:last-child {
    margin-bottom: 0;
}

.prcss-item:last-child::before {
    display: none;
}

.prcss-number {
    background-color: var(--secondary-color);
    border-radius: 50%;
    height: 58px;
    width: 58px;
    text-align: center;
    position: relative;
    line-height: 60px;
}

.prcss-number::before {
    background-color: var(--primary-color);
    content: '';
    width: 48px;
    height: 48px;
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.prcss-number span {
    color: #fff;
    font-size: 16px;
    position: relative;
}

.prcss-text {
    width: 80%;
}

.prcss-heading {
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.prcss-desc {
    font-size: 13px;
    color: #787970;
    line-height: 1.4;
}

.prcss-right > img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 24px;
}


/* ===== Affiliations ===== */
.section-affl {
    margin-top: 120px;
}

.section-affl .section-content {
    margin-top: 100px;
}

.affl-inner {
    background: url(../img/affl-medical-bg.webp) center center no-repeat;
    background-size: cover;
    position: relative;
}

.affl-inner::before {
    content: ' ';
    background: url(../img/medical-icons-bg.webp) center center no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.affl-overlay {
    background-color: rgba(17, 41, 118, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.affl-carousel {
    top: -80px;
}

.affl-card {
    text-align: center;
}

.affl-icon {
    background-color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    margin: 0 auto;
    border: 10px solid #E0F0Fb;
}

.affl-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px !important;
}

.affl-card-content {
    background: #fff;
    border-bottom: 4px solid var(--primary-color);
    border-radius: 0 0 12px 12px;
    padding: 80px 30px 40px;
    margin-top: -40px;
}

.affl-heading {
    font-size: 17px;
    margin-bottom: 5px;
}


/* ===== Testimonials ===== */
.section-tstmnl {
    margin-top: 150px;
}

.tstmnl-inner {
    position: relative;
}

.tstmnl-inner::before {
    content: '';
    display: block;
    border: 5px solid;
    border-image-source: linear-gradient(180deg, var(--primary-color), #00000000);
    border-image-slice: 1;
    border-radius: 16px;
    height: 90%;
    width: 80%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.tstmnl-inner .section-title-wrap {
    background-color: #E0F0Fb;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    top: -52px;
}

.tstmnl-quote {
    position: absolute;
}

.tstmnl-quote.start {
    top: -15px;
    left: 0;
}

.tstmnl-quote.end {
    bottom: -15px;
    right: 0;
}

.section-tstmnl .section-content {
    margin-top: 0;
}

.tstmnl-carousel .owl-stage-outer {
    padding-bottom: 15px;
}

.tstmnl-card {
    background-color: #fff;
    box-shadow: 0px 6px 12px rgba(175, 175, 175, 0.4);
    border-bottom: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.tstmnl-desc {
    font-style: 14px;
    font-style: italic;
}

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

.tstmnl-avatar {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
}

.tstmnl-name {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tstmnl-name img {
    width: 60px !important;
}

.tstmnl-name .person-name {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1;
}

.equal-height-col-carousel .owl-stage {
    display: flex;
}

.equal-height-col-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.equal-height-col-carousel .diseases-card,
.equal-height-col-carousel .tstmnl-card {
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* ===== Faq ===== */
.img-icon-thermometer {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.07;
}

.section-faq {
    margin-top: 85px;
    margin-bottom: 60px;
}

.section-faq .section-content {
    margin-top: 40px;
}

.faq-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.faq-left {
    width: 40%;
    position: relative;
}

.faq-left img {
    border-radius: 24px 0;
}

.faq-left::before {
    content: '';
    display: block;
    background-color: var(--primary-color);
    border-radius: 30px 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: -1;
}

.faq-right {
    width: 60%;
}

.faq-item {
    border-left: 3px solid var(--primary-color);
    margin-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-header {
    background-color: #fff;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: all 0.3s ease;
}

.faq-header:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 63, 0.1);
}

.faq-header .qstn {
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: 600;
    width: 90%;
    margin-bottom: 0;
}

.faq-header .icon {
    background: var(--text-dark);
    width: 20px;
    height: 20px;
    color: #fff;
    text-align: center;
    line-height: 21px;
    border-radius: 50%;
    font-style: normal;
}

.faq-content {
    display: none;
    background-color: #fff;
    border-top: 1px solid #CAD8E1;
    border-radius: 0 0 10px 10px;
    padding: 16px 20px;
}


/* ==============================
   FOOTER
============================== */
.app-footer {
    margin-top: 150px;
}

.app-footer::before {
    content: '';
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
    display: block;
    padding: 100px 0 30px;
    width: 100%;
    height: 40%;
    position: absolute;
    top: 0;
    left: 0;
}

.img-icon-medicine {
    position: absolute;
    top: -60px;
    right: 0;
    opacity: 0.07;
}

.ftrtalkicon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(35, 163, 215, 0.4);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 100px;
    z-index: 1;
}

.ftr-content {
    background-color: var(--secondary-color);
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
    padding: 100px 0 30px;
    text-align: center;
}

.ftr-title {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
}

.ftr-title span {
    font-size: 18px;
    font-weight: 400;
}

.ftr-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.ftr-social a {
    display: block;
    width: 30px;
    height: 30px;
}

.ftr-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 17px;
}

.ftr-contact a {
    color: #fff;
}

.ftr-contact a:hover,
.ftr-contact a:focus {
    color: var(--primary-color);
}


/* ==============================
   ENQUIR FORM
============================== */
/* Close Button (X) */
.closeBtn,
.closeBtn:hover,
.closeBtn:focus {
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 22px;
    cursor: pointer;
    z-index: 1001;
    background: var(--text-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* Popup Overlay */
#popupOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Popup Form */
#enquiryPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 550px;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

#enquiryPopup .ef-title {
    margin-top: 0;
    font-size: 24px;
}

#enquiryPopup .ef-subtitle {
    font-size: 13px;
    color: #575859;
    margin-bottom: 15px;
}

#enquiryPopup .form-group {
    margin-bottom: 15px;
}

#enquiryPopup .form-group-submit {
    margin-top: 20px;
}

#enquiryPopup .form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: var(--font-primary);
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 44px;
}

#enquiryPopup textarea.form-control {
    height: 80px;
}

#enquiryPopup .form-control:focus {
    background-color: #E0F0Fb;
    border-color: var(--secondary-color);
}

.form-buttons {
    display: flex;
    justify-content: space-between;
}

.enquiry-btn {
    margin: 0 auto;
    display: block;
    min-width: 300px;
}


/* ==============================
   MAIL THANK YOU OR ERROR
============================== */
.thank-you {
    text-align: center;
    margin: 50px 0;
}

.thank-you img {
    margin: 0 auto;
}


/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1199px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 720px;
    }

    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }

    .button-left-md-center {
        justify-content: center;
    }

    .button-mt45-md-mt25 {
        margin-top: 25px;
    }

    .button-mt60-md-mt40 {
        margin-top: 40px;
    }

    .header-logo {
        width: 170px;
    }

    .hero-top,
    .meet-doctor-wrap {
        flex-direction: column;
    }
    
    .hero-top {
        gap: 60px;    
    }

    .hero-left,
    .hero-right,
    .meet-doctor-left,
    .meet-doctor-right {
        width: 100%;
    }
    
    .hero-left {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 24px;
    }

    .meet-doctor-wrap {
        text-align: center;
    }

    .app-section {
        margin: 60px auto 0;
    }

    .section-above-subtitle {
        font-size: 16px;
        margin-bottom: 5px;
        color: var(--primary-color);
        opacity: 1;
        -webkit-text-stroke: 0;
    }

    .section-title {
        font-size: 26px;
    }

    .timeline {
        flex-direction: column;
    }

    .timeline::before {
        width: 4px;
        height: 90%;
        top: 20px;
        left: 50px;
        transform: none;
    }

    .timeline-event {
        width: 100%;
        text-align: left;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .timeline-img {
        margin: 0;
    }

    .timeline-info-wrapper {
        width: 65%;
    }

    .timeline-year {
        font-size: 16px;
    }

    .timeline-title {
        font-size: 14px;
    }

    .tiimeline-tooltip {
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        border-radius: 0;
        color: #333;
        padding: 0;
        position: static;
        width: 100%;
        transform: none;
    }

    .tiimeline-tooltip::after {
        display: none;
    }

    .section-srvcs {
        margin-top: 40px;
    }

    .srvcs-row {
        flex-direction: column;
        gap: 15px;
        top: 0;
    }

    .srvcs-left,
    .srvcs-right,
    .srvcs-item {
        width: 100%;
    }

    .srvcs-item2,
    .srvcs-item3,
    .srvcs-item4 {
        left: 0;
    }

    .srvcs-item6,
    .srvcs-item7,
    .srvcs-item8 {
        right: 0;
    }
    
    .srvcs-item-right {
        text-align: left;
        padding: 20px 30px 20px 50px;
    }

    .srvcs-item-right .srvcs-item-icon {
        left: -25px;
    }

    .srvcs-item-right .srvcs-item-content {
        margin-left: 0;
    }
    
    .srvcs-inner .button-center {
        top: 0;    
    }

    .prcss-row {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
    }

    .prcss-left .section-title-wrap {
        text-align: center;
    }

    .prcss-row .section-above-subtitle {
        color: var(--primary-color);
        font-size: 16px;
    }

    .prcss-left,
    .prcss-right,
    .prcss-item {
        width: 100%;
    }

    .prcss-right {
        flex-direction: column;
    }

    .prcss-right > img {
        display: none;
    }

    .section-affl .section-content {
        margin-top: 30px;
    }

    .affl-inner {
        padding: 40px 0;
    }

    .affl-carousel {
        top: 0;
    }

    .affl-card-content {
        border-radius: 12px;
        padding: 80px 70px 40px;
    }

    .section-tstmnl {
        margin-top: 85px;
    }

    .tstmnl-inner::before {
        width: 91%;
    }

    .tstmnl-inner .section-title-wrap {
        top: -26px;
        max-width: 300px;
        padding: 0 10px;
    }
    
    .tstmnl-quote.start {
        top: -30px;
    }
    
    .tstmnl-quote.end {
        top: -30px;
        bottom: auto;
    }

    .img-icon-thermometer,
    .img-icon-medicine {
        width: 120px;
    }
    
    .section-faq .section-content {
        margin-top: 30px;
    }

    .faq-row {
        flex-direction: column;
    }

    .faq-left {
        display: none;
    }

    .faq-right {
        width: 100%;
    }

    .faq-header {
        font-size: 15px;
    }

    .app-footer {
        margin-top: 110px;
    }

    .ftr-title {
        font-size: 22px;
    }

    .ftr-title span {
        font-size: 16px;
    }

    .ftr-contact {
        font-size: 15px;
    }

    .hero-social-media {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 12px;
        margin-top: 25px;
        margin-bottom: 15px;
        justify-content: center !important;
    }

    .hero-social-media .social-icon {
        width: 44px;
        height: 44px;
    }

    .hero-social-media .social-icon img {
        width: 22px;
        height: 22px;
    }
    
    .hero-social-media .social-icon:hover {
        transform: translateY(-3px) scale(1.08);
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 540px;
    }

    .affl-card-content {
        padding: 50px 20px 30px;
    }
}