* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
    text-decoration: none;
}
body{
    overflow:visible;
}
p,
ul,
li {
    padding: 0;
    margin: 0;
}

p {
    margin: 0 0 25px;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
}

h2 {
    margin: 0;
    color: #da2028;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

#ginniDeviHeader {
    background: #fff;
    border-top: 8px solid var(--maroon);
    position: relative;
    z-index: 999;
}

#ginniDeviHeader .header-wrapper {
    min-height: 130px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

/* ---------- LOGO ---------- */

#ginniDeviHeader .header-logo {
    width: 42%;
    display: flex;
    align-items: center;
}

#ginniDeviHeader .logo-mark {
    margin: 0;
    padding: 0;
    width: 350px;
}

#ginniDeviHeader .logo-mark img {
    width: 100%
}

/* ---------- NAV WRAPPER ---------- */

#ginniDeviHeader .header-navigation {
    width: 58%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* ---------- TOP NAV ---------- */

#ginniDeviHeader .top-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

#ginniDeviHeader .top-menu .nav-link {
    color: #111;
    font-size: 17px;
    font-weight: 400;
    padding: 7px 12px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

#ginniDeviHeader .top-menu .nav-link:hover {
    color: var(--purple);
}

#ginniDeviHeader .top-menu .nav-link.active {
    color: var(--purple);
    border-bottom: 2px solid var(--purple);
}

/* ---------- BOTTOM NAV ---------- */

#ginniDeviHeader .bottom-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

#ginniDeviHeader .bottom-menu .nav-link {
    color: #111;
    font-size: 19px;
    font-weight: 500;
    padding: 6px 12px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

#ginniDeviHeader .bottom-menu .nav-link:hover {
    color: var(--purple);
}

/* ---------- DROPDOWN (desktop) ---------- */

#ginniDeviHeader .nav-item {
    position: relative;
    list-style: none;
}

#ginniDeviHeader .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    margin-top: 6px;
    padding: 8px 0;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
    list-style: none;
    display: none;
    z-index: 20;
}

#ginniDeviHeader .nav-item.open .dropdown-menu {
    display: block;
}

#ginniDeviHeader .dropdown-menu li a {
    display: block;
    padding: 9px 18px;
    color: #222;
    font-size: 15px;
    text-decoration: none;
}

#ginniDeviHeader .dropdown-menu li a:hover {
    background: #f3f3f3;
    color: var(--purple);
}

#ginniDeviHeader .caret {
    font-size: 11px;
    transition: transform .25s ease;
}

#ginniDeviHeader .nav-item.open>.nav-link .caret {
    transform: rotate(180deg);
}

/* ---------- MOBILE TOGGLER (hidden on desktop) ---------- */

#ginniDeviHeader .mobile-toggler {
    display: none;
}

/* ---------- FLOATING CALL BUTTON ---------- */

#ginniDeviHeader .float-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25c065;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    z-index: 1100;
}

/* ---------- MOBILE PANEL (built once, only shown < 991px) ---------- */

#ginniDeviHeader .mobile-panel {
    display: none;
}


/* ==========================================
   RESPONSIVE — TABLET/LAPTOP
========================================== */

@media (max-width:1199px) and (min-width:992px) {
    #ginniDeviHeader .header-wrapper {
        min-height: 120px;
        max-width: 1140px;
    }

    #ginniDeviHeader .header-logo {
        width: 38%;
    }

    #ginniDeviHeader .header-navigation {
        width: 62%;
    }

    #ginniDeviHeader .logo-text .name {
        font-size: 22px;
    }

    #ginniDeviHeader .top-menu .nav-link {
        font-size: 14px;
        padding: 6px 8px;
    }

    #ginniDeviHeader .bottom-menu .nav-link {
        font-size: 16px;
        padding: 6px 8px;
    }
}

/* ==========================================
   RESPONSIVE — MOBILE
========================================== */

@media (max-width:991px) {

    #ginniDeviHeader {
        border-top: 0;
    }

    #ginniDeviHeader .header-wrapper {
        min-height: auto;
        padding: 10px 16px;
        justify-content: space-between;
    }

    #ginniDeviHeader .header-logo {
        width: auto;
    }

    #ginniDeviHeader .logo-text .name {
        font-size: 18px;
    }

    #ginniDeviHeader .logo-text .sub {
        font-size: 8px;
        letter-spacing: 1px;
    }

    #ginniDeviHeader .logo-badges {
        display: none;
    }

    /* hide the desktop nav entirely on mobile */
    #ginniDeviHeader .header-navigation {
        display: none;
    }

    /* show hamburger */
    #ginniDeviHeader .mobile-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: transparent;
        border: 1px solid #333;
        border-radius: 0;
        font-size: 20px;
        color: #222;
        cursor: pointer;
    }

    /* ---- MOBILE SLIDE-DOWN PANEL ---- */

    #ginniDeviHeader .mobile-panel {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 100vh;
        overflow-y: auto;
        background: #fff;
        transform: translateY(-100%);
        transition: transform .38s ease;
        z-index: 1050;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    }

    #ginniDeviHeader .mobile-panel.open {
        transform: translateY(0);
    }

    #ginniDeviHeader .mobile-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        border-bottom: 1px solid #eee;
    }

    #ginniDeviHeader .mobile-panel-header .logo-mark {
        transform: scale(.85);
        transform-origin: left center;
    }

    #ginniDeviHeader .mobile-panel-close {
        width: 36px;
        height: 36px;
        border: 1px solid #333;
        background: #fff;
        font-size: 16px;
        color: #222;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    #ginniDeviHeader .mobile-panel-body {
        display: flex;
        flex-direction: column;
        padding: 6px 0 30px;
    }

    #ginniDeviHeader .mobile-panel-body .nav-item {
        width: 100%;
    }

    #ginniDeviHeader .mobile-panel-body .nav-link {
        width: 100%;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 24px;
        color: var(--navy);
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 1.6px;
        text-decoration: none;
        text-transform: uppercase;
        cursor: pointer;
    }

    #ginniDeviHeader .mobile-panel-body .nav-link:hover {
        background: #f8f8f8;
    }

    #ginniDeviHeader .mobile-panel-body .nav-item.open>.nav-link {
        background: #000;
        color: #fff;
    }

    #ginniDeviHeader .mobile-panel-body .nav-item.open>.nav-link .caret {
        transform: rotate(180deg);
    }

    #ginniDeviHeader .mobile-panel-body .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
        background: #f8f8f8;
    }

    #ginniDeviHeader .mobile-panel-body .nav-item.open .dropdown-menu {
        display: block;
    }

    #ginniDeviHeader .mobile-panel-body .dropdown-menu li a {
        padding: 12px 46px;
        font-size: 14px;
        letter-spacing: 1px;
        color: var(--navy);
        text-transform: uppercase;
    }

    #ginniDeviHeader .mobile-panel-body .dropdown-menu li a:hover {
        background: #eee;
        color: var(--purple);
    }

    /* order items to match: Home, Trauma, Joint Replacement, Sports Injury,
       Spine Surgery, Other Treatments, About Us, Testimonials, Gallery,
       Cashless Facility, Blogs, Contact Us */
    #ginniDeviHeader .o-home {
        order: 1;
    }

    #ginniDeviHeader .o-trauma {
        order: 2;
    }

    #ginniDeviHeader .o-joint {
        order: 3;
    }

    #ginniDeviHeader .o-sports {
        order: 4;
    }

    #ginniDeviHeader .o-spine {
        order: 5;
    }

    #ginniDeviHeader .o-other {
        order: 6;
    }

    #ginniDeviHeader .o-about {
        order: 7;
    }

    #ginniDeviHeader .o-testimonials {
        order: 8;
    }

    #ginniDeviHeader .o-gallery {
        order: 9;
    }

    #ginniDeviHeader .o-cashless {
        order: 10;
    }

    #ginniDeviHeader .o-blogs {
        order: 11;
    }

    #ginniDeviHeader .o-contact {
        order: 12;
    }
}

@media (max-width:575px) {
    #ginniDeviHeader .mobile-panel-body .nav-link {
        font-size: 15px;
        padding: 12px 20px;
        letter-spacing: 1.2px;
    }

    #ginniDeviHeader .mobile-panel-body .dropdown-menu li a {
        padding: 11px 40px;
        font-size: 13px;
    }

    #ginniDeviHeader .float-call {
        width: 50px;
        height: 50px;
        font-size: 20px;
        right: 16px;
        bottom: 16px;
    }
}




/* ==========================================
   HOSPITAL FOOTER
========================================== */

#hospitalFooter {
    background: #fff;
    color: #111;
    font-family: "Roboto", Sans-serif;
    border-top: 4px solid #111;
}


/* ==========================================
   MAIN FOOTER
========================================== */

#hospitalFooter .footer-main {
    padding: 18px 19px 28px;
}

#hospitalFooter .footer-main .container-fluid {
    padding: 0;
}

#hospitalFooter .footer-main .row {
    margin: 0;
}


/* ==========================================
   ABOUT
========================================== */

#hospitalFooter .footer-about {
    padding: 0 25px 0 0;
}

#hospitalFooter .footer-logo {
    margin-bottom: 18px;
}

#hospitalFooter .footer-logo img {
    width: 250px;
    max-width: 100%;
    height: auto;
}

#hospitalFooter .footer-description {
    max-width: 270px;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: #000000;
}


/* ==========================================
   CONTACT INFO
========================================== */

#hospitalFooter .footer-info {
    margin-top: 10px;
}

#hospitalFooter .footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: #000
}

#hospitalFooter .info-icon {
    width: 25px;
    min-width: 25px;
    font-size: 21px;
    color: #6d6d6d;
    text-align: center;
}


/* ==========================================
   SOCIAL ICONS
========================================== */

#hospitalFooter .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

#hospitalFooter .footer-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 2px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

#hospitalFooter .footer-social .facebook {
    background: #4267a9;
}

#hospitalFooter .footer-social .instagram {
    background: #333;
}

#hospitalFooter .footer-social .youtube {
    background: #d71920;
}

#hospitalFooter .footer-social a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}


/* ==========================================
   FOOTER LINKS
========================================== */

#hospitalFooter .footer-links {
    padding: 12px 20px 0;
}

#hospitalFooter .footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#hospitalFooter .footer-links li {
    margin-bottom: 10px;
}

#hospitalFooter .footer-links a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #111;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.35;
    transition: 0.2s ease;
    margin-bottom: 15px;
}

#hospitalFooter .footer-links a i {
    color: #7b7b7b;
    font-size: 18px;
    margin-top: 6px;
    flex-shrink: 0;
}

#hospitalFooter .footer-links a:hover {
    color: #483e6e;
}


/* ==========================================
   FACEBOOK WIDGET
========================================== */

#hospitalFooter .footer-facebook {
    padding: 0;
}

#hospitalFooter .facebook-widget {
    width: 100%;
    max-width: 260px;
    height: 300px;
    border: 1px solid #ddd;
    overflow: hidden;
    background: #fff;
}


/* Facebook Header */

#hospitalFooter .facebook-header {
    height: 75px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 4px 6px;
}

#hospitalFooter .facebook-page-logo img {
    width: 43px;
    height: 43px;
    object-fit: cover;
}

#hospitalFooter .facebook-page-title {
    flex: 1;
    overflow: hidden;
}

#hospitalFooter .facebook-page-title h5 {
    font-size: 14px;
    font-weight: 400;
    color: #273d91;
    margin: 2px 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#hospitalFooter .facebook-follow {
    display: flex;
    align-items: center;
    gap: 4px;
}

#hospitalFooter .facebook-follow button {
    background: #4267a9;
    color: #fff;
    border: 0;
    font-size: 10px;
    padding: 3px 5px;
}

#hospitalFooter .facebook-follow span {
    font-size: 10px;
    white-space: nowrap;
}


/* Facebook Tabs */

#hospitalFooter .facebook-tabs {
    height: 34px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 10px;
    color: #555;
}

#hospitalFooter .facebook-tabs span {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

#hospitalFooter .facebook-tabs .active {
    color: #273d91;
    border-bottom: 2px solid #273d91;
}


/* Facebook Post */

#hospitalFooter .facebook-post {
    height: 190px;
    overflow-y: auto;
    padding: 10px;
}

#hospitalFooter .post-header {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    position: relative;
}

#hospitalFooter .post-header img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

#hospitalFooter .post-header strong {
    font-size: 11px;
    line-height: 1.2;
    display: block;
}

#hospitalFooter .post-header small {
    display: block;
    font-size: 9px;
    color: #777;
    margin-top: 3px;
}

#hospitalFooter .facebook-post-icon {
    margin-left: auto;
    color: #1877f2;
    font-size: 18px;
}

#hospitalFooter .facebook-post p {
    font-size: 11px;
    line-height: 1.35;
    margin: 9px 0;
}

#hospitalFooter .post-location {
    font-size: 10px;
    line-height: 1.3;
}

#hospitalFooter .post-location a {
    color: #555;
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

#hospitalFooter .footer-bottom {
    padding: 0 19px 90px;
}

#hospitalFooter .footer-bottom-inner {
    border-top: 1px dashed #222;
    padding-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Terms & Privacy */

#hospitalFooter .footer-policy {
    display: flex;
    align-items: center;
    gap: 12px;
}

#hospitalFooter .footer-policy a {
    color: #111;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

#hospitalFooter .footer-policy span {
    width: 1px;
    height: 25px;
    background: #777;
}


/* Copyright */

#hospitalFooter .footer-copyright {
    font-size: 13px;
    color: #555;
}

#hospitalFooter .footer-facebook {
    padding: 0;
}

#hospitalFooter .facebook-widget {
    width: 100%;
    max-width: 340px;
    overflow: hidden;
}

#hospitalFooter .facebook-widget iframe {
    display: block;
    width: 100%;
    max-width: 340px;
    border: none;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {

    #hospitalFooter .footer-links a {
        font-size: 16px;
    }

    #hospitalFooter .footer-about {
        padding-right: 10px;
    }

    #hospitalFooter .facebook-widget {
        max-width: 100%;
    }

}


@media (max-width: 991px) {

    #hospitalFooter .footer-about,
    #hospitalFooter .footer-links,
    #hospitalFooter .footer-facebook {
        margin-bottom: 30px;
    }

    #hospitalFooter .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

}


@media (max-width: 767px) {

    #hospitalFooter .footer-main {
        padding: 30px 20px 10px;
    }

    #hospitalFooter .footer-about {
        padding-right: 0;
    }

    #hospitalFooter .footer-description {
        max-width: 100%;
    }

    #hospitalFooter .footer-links {
        padding: 0;
    }

    #hospitalFooter .footer-links a {
        font-size: 16px;
    }

    #hospitalFooter .footer-facebook {
        padding: 0;
    }

    #hospitalFooter .facebook-widget {
        max-width: 100%;
    
    }

    #hospitalFooter .footer-policy {
        flex-wrap: wrap;
    }

    #hospitalFooter .footer-policy a {
        font-size: 15px;
    }

    #hospitalFooter .footer-copyright {
        font-size: 12px;
    }

}


@media (max-width: 480px) {

    #hospitalFooter .footer-bottom-inner {
        align-items: flex-start;
    }

    #hospitalFooter .footer-policy {
        gap: 8px;
    }

    #hospitalFooter .footer-policy a {
        font-size: 14px;
    }

    #hospitalFooter .footer-copyright {
        line-height: 1.5;
    }

}

/* ==========================================
   HOSPITAL FAQ SECTION
========================================== */

#hospitalFaq {
    width: 100%;
    background: #483e6e;
    padding: 8px 0 20px;
    color: #fff;
    border-bottom: 6px solid #000
}


/* ==========================================
   FAQ CONTAINER
========================================== */

#hospitalFaq .faq-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   FAQ TITLE
========================================== */

#hospitalFaq .faq-title {
    margin: 0 0 20px;
    padding: 0;
    text-align: center;

    color: #fff;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
}


/* ==========================================
   FAQ LIST
========================================== */

#hospitalFaq .faq-list {
    width: 100%;
}


/* ==========================================
   FAQ ITEM
========================================== */

#hospitalFaq .faq-item {
    width: 100%;
    margin-bottom: 24px;

    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;

    overflow: hidden;
}


/* ==========================================
   FAQ QUESTION
========================================== */

#hospitalFaq .faq-question {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;

    padding: 10px 18px;

    border: 0;
    outline: none;

    background: transparent;
    color: #fff;

    text-align: left;
    cursor: pointer;

    font-family: inherit;
}


/* ==========================================
   FAQ ICON
========================================== */

#hospitalFaq .faq-icon {
    position: relative;

    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    margin-right: 10px;
}


/* Horizontal line */

#hospitalFaq .faq-icon .horizontal {
    position: absolute;

    width: 17px;
    height: 3px;

    background: #fff;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 2px;
}


/* Vertical line */

#hospitalFaq .faq-icon .vertical {
    position: absolute;

    width: 3px;
    height: 17px;

    background: #fff;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 2px;

    transition: all 0.25s ease;
}


/* ==========================================
   QUESTION TEXT
========================================== */

#hospitalFaq .faq-question-text {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;

    color: #fff;
}


/* ==========================================
   ACTIVE ICON = MINUS
========================================== */

#hospitalFaq .faq-item.active .faq-icon .vertical {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}


/* ==========================================
   ANSWER
========================================== */

#hospitalFaq .faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease,
        padding 0.35s ease;

    padding: 0 13px;

    border-top: 0 solid rgba(255, 255, 255, 0.75);
}


/* Answer content wrapper effect */

#hospitalFaq .faq-answer p {
    min-height: 0;
    overflow: hidden;

    margin: 0;

    color: #fff;

    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
}


/* ==========================================
   ACTIVE ANSWER
========================================== */

#hospitalFaq .faq-item.active .faq-answer {
    grid-template-rows: 1fr;

    padding: 38px 13px 42px;

    border-top: 1px solid rgba(255, 255, 255, 0.75);
}


/* ==========================================
   HOVER
========================================== */

#hospitalFaq .faq-question:hover {
    background: rgba(255, 255, 255, 0.025);
}


/* ==========================================
   LAST ITEM
========================================== */

#hospitalFaq .faq-item:last-child {
    margin-bottom: 0;
}

/* ==========================================
   HOSPITAL LOCATION
========================================== */

#hospitalLocation {
    width: 100%;
    background: #fff;
    padding: 30px 0;
}


/* Map Wrapper */

#hospitalLocation .location-map {
    width: calc(100% - 30px);
    max-width: 1140px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
}


/* Google Map */

#hospitalLocation .location-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #hospitalLocation {
        padding: 35px 0;
    }

    #hospitalLocation .location-map {
        width: calc(100% - 30px);
        height: 400px;
    }

    #hospitalLocation .location-map iframe {
        height: 400px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #hospitalLocation {
        padding: 25px 0;
    }

    #hospitalLocation .location-map {
        width: calc(100% - 24px);
        height: 350px;
    }

    #hospitalLocation .location-map iframe {
        height: 350px;
    }

}


/* ==========================================
   HOSPITAL NEWS SECTION
========================================== */

#hospitalNews {
    width: 100%;
    background: #483E6E;
    padding: 45px 0;
    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#hospitalNews .hospitalNews-container {
    width: calc(100% - 30px);
    max-width: 1140px;

    margin: 0 auto;
}


/* ==========================================
   TITLE
========================================== */

#hospitalNews .hospitalNews-title {
    margin: 0;
    padding: 0 0 27px;

    text-align: center;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
}


/* ==========================================
   GALLERY
========================================== */
#hospitalNews .hospitalNews-gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

#hospitalNews .hospitalNews-item {
    position: relative;
    display: block;
    overflow: hidden;

    flex: 1 1 auto;

    height: 220px;

    text-decoration: none;

    opacity: 0;
    transform: scale(0.9);

    animation: hospitalNewsFadeIn 0.7s ease forwards;
}


/* ==========================================
   STAGGER ANIMATION
========================================== */

#hospitalNews .hospitalNews-item:nth-child(1) {
    animation-delay: 0.05s;
}

#hospitalNews .hospitalNews-item:nth-child(2) {
    animation-delay: 0.12s;
}

#hospitalNews .hospitalNews-item:nth-child(3) {
    animation-delay: 0.19s;
}

#hospitalNews .hospitalNews-item:nth-child(4) {
    animation-delay: 0.26s;
}

#hospitalNews .hospitalNews-item:nth-child(5) {
    animation-delay: 0.33s;
}

#hospitalNews .hospitalNews-item:nth-child(6) {
    animation-delay: 0.40s;
}

#hospitalNews .hospitalNews-item:nth-child(7) {
    animation-delay: 0.47s;
}

#hospitalNews .hospitalNews-item:nth-child(8) {
    animation-delay: 0.54s;
}


/* ==========================================
   FADE + SCALE ANIMATION
========================================== */

@keyframes hospitalNewsFadeIn {

    0% {
        opacity: 0;
        transform: scale(0.88);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* ==========================================
   IMAGE WRAPPER
========================================== */
#hospitalNews .hospitalNews-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#hospitalNews .hospitalNews-image-wrap img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

/* ==========================================
   PURPLE OVERLAY
========================================== */

#hospitalNews .hospitalNews-overlay {
    position: absolute;

    inset: 0;

    background-color: rgba(0, 0, 0, 0.5);

    opacity: 0;

    transition: opacity 0.4s ease;
}

#hospitalNews .hospitalNews-item:hover img {
    transform: scale(1.08);
}

#hospitalNews .hospitalNews-item:hover .hospitalNews-overlay {
    opacity: 1;
}

/* FADE + SCALE */

@keyframes hospitalNewsFadeIn {

    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* ==========================================
   GLIGHTBOX
   REMOVE BOTTOM DESCRIPTION / CAPTION
========================================== */

.glightbox-container .gslide-description {
    display: none !important;
}

.glightbox-container .gslide-title {
    display: none !important;
}

.glightbox-container .gslide-desc {
    display: none !important;
}


/* Remove description content completely */

.glightbox-container .gslide-description,
.glightbox-container .gslide-title,
.glightbox-container .gslide-desc {

    visibility: hidden !important;

    opacity: 0 !important;

    height: 0 !important;

    min-height: 0 !important;

    padding: 0 !important;

    margin: 0 !important;

}


/* ==========================================
   GLIGHTBOX SLIDE
========================================== */

.glightbox-container .gslide {

    padding: 0 !important;
}


/* ==========================================
   GLIGHTBOX IMAGE
========================================== */

.glightbox-container .gslide-image img {

    max-height: 90vh !important;

    object-fit: contain;
}


/* ==========================================
   GLIGHTBOX BACKGROUND
========================================== */

.glightbox-container .goverlay {

    background: rgba(0, 0, 0, 0.88) !important;
}


/* ==========================================
   EMPANELLED ORGANIZATIONS
========================================== */

#empanelledOrganizations {
    width: 100%;
    background: #fff;
    padding: 45px 20px 55px;
    overflow: hidden;
}

#empanelledOrganizations .empanelledOrganizations-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

#empanelledOrganizations .empanelledOrganizations-title {
    margin: 0 0 38px;

    text-align: center;

    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;

    color: #da2028;
}


/* ==========================================
   TABS
========================================== */

#empanelledOrganizations .empanelledOrganizations-tabs {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: stretch;

    margin-bottom: 30px;
}


/* TAB */

#empanelledOrganizations .empanelledOrganizations-tab {
    border: none;
    outline: none;

    background: transparent;
    color: #000;

    padding: 7px 14px;

    font-family: inherit;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


/* ==========================================
   ACTIVE TAB
   ACTIVE = BLACK
========================================== */

#empanelledOrganizations .empanelledOrganizations-tab.active {
    background: #1d1d1d;
    color: #fff;
}


/* ==========================================
   HOVER
   ONLY NON-ACTIVE TAB = RED
========================================== */

#empanelledOrganizations .empanelledOrganizations-tab:not(.active):hover {
    background: #da2028;
    color: #fff;
}


/* ==========================================
   LOGOS AREA
========================================== */

#empanelledOrganizations .empanelledOrganizations-logos {
    width: 100%;
    min-height: 150px;

    position: relative;
}


/* ==========================================
   LOGO GROUP
========================================== */

#empanelledOrganizations .empanelledOrganizations-logo-group {
    width: 100%;

    display: none;

    justify-content: center;
    align-items: center;

    gap: 40px;

    animation: empanelledOrganizationsFade 0.4s ease;
}


/* ACTIVE LOGO GROUP */

#empanelledOrganizations .empanelledOrganizations-logo-group.active {
    display: flex;
}


/* ==========================================
   LOGO BOX
========================================== */

#empanelledOrganizations .empanelledOrganizations-logo {
    width: 190px;
    height: 120px;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* ==========================================
   LOGO IMAGE
========================================== */

#empanelledOrganizations .empanelledOrganizations-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 115px;

    object-fit: contain;

    transition: transform 0.3s ease;
}


/* LOGO HOVER */

#empanelledOrganizations .empanelledOrganizations-logo:hover img {
    transform: scale(1.05);
}


/* ==========================================
   LOGO FADE
========================================== */

@keyframes empanelledOrganizationsFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    #empanelledOrganizations .empanelledOrganizations-title {
        font-size: 44px;
    }

    #empanelledOrganizations .empanelledOrganizations-tab {
        font-size: 20px;
        padding: 12px 14px;
    }

    #empanelledOrganizations .empanelledOrganizations-logo-group {
        gap: 45px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #empanelledOrganizations {
        padding: 18px 0 40px;
    }


    /* --------------------------------------
       CONTAINER
    -------------------------------------- */

    #empanelledOrganizations .empanelledOrganizations-container {
        width: 100%;
        max-width: 100%;
    }


    /* --------------------------------------
       HEADING
    -------------------------------------- */

    #empanelledOrganizations .empanelledOrganizations-title {
        width: 100%;

        margin: 0 auto 28px;

        padding: 0 20px;

        text-align: center;

        font-size: 38px;
        line-height: 1.28;
        font-weight: 700;

        color: #da2028;
    }


    /* --------------------------------------
       TABS
    -------------------------------------- */

    #empanelledOrganizations .empanelledOrganizations-tabs {

        width: 100%;

        display: flex;
        flex-direction: column;

        justify-content: flex-start;
        align-items: stretch;

        margin: 0 0 35px;

        padding: 0 23px;

        gap: 0;
    }


    /* --------------------------------------
       TAB
    -------------------------------------- */

    #empanelledOrganizations .empanelledOrganizations-tab {

        width: 100%;

        padding: 11px 17px;

        text-align: center;

        font-size: 18px;
        line-height: 1.35;
        font-weight: 600;

        white-space: nowrap;
    }


    /* ACTIVE */

    #empanelledOrganizations .empanelledOrganizations-tab.active {
        background: #1d1d1d;
        color: #fff;
    }


    /* HOVER ONLY NON ACTIVE */

    #empanelledOrganizations .empanelledOrganizations-tab:not(.active):hover {
        background: #da2028;
        color: #fff;
    }


    /* --------------------------------------
       LOGOS
    -------------------------------------- */

    #empanelledOrganizations .empanelledOrganizations-logos {
        min-height: 130px;

        padding: 0 15px;
    }


    #empanelledOrganizations .empanelledOrganizations-logo-group {
        width: 100%;

        display: none;

        flex-wrap: wrap;

        justify-content: center;
        align-items: center;

        gap: 20px;
    }


    #empanelledOrganizations .empanelledOrganizations-logo-group.active {
        display: flex;
    }


    /* --------------------------------------
       LOGO
    -------------------------------------- */

    #empanelledOrganizations .empanelledOrganizations-logo {

        width: 125px;
        height: 95px;
    }


    #empanelledOrganizations .empanelledOrganizations-logo img {

        max-width: 115px;
        max-height: 85px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #empanelledOrganizations {
        padding-top: 15px;
    }


    #empanelledOrganizations .empanelledOrganizations-title {

        font-size: 38px;
        line-height: 1.3;

        margin-bottom: 27px;

        padding: 0 35px;
    }


    #empanelledOrganizations .empanelledOrganizations-tabs {

        padding: 0 23px;

        margin-bottom: 30px;
    }


    #empanelledOrganizations .empanelledOrganizations-tab {

        font-size: 17px;

        padding: 10px 12px;
    }


    #empanelledOrganizations .empanelledOrganizations-logo-group {

        gap: 12px;
    }


    #empanelledOrganizations .empanelledOrganizations-logo {

        width: 105px;
        height: 80px;
    }


    #empanelledOrganizations .empanelledOrganizations-logo img {

        max-width: 100px;
        max-height: 72px;
    }

}





/* ==========================================
   PATIENT TESTIMONIALS
========================================== */

#patientTestimonials {
    width: 100%;
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
}

#patientTestimonials .patientTestimonials-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

#patientTestimonials .patientTestimonials-heading {
    text-align: center;
    margin-bottom: 34px;
}

#patientTestimonials .patientTestimonials-heading h2 {
    margin: 0 0 18px;
    color: #da2028;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
}

#patientTestimonials .patientTestimonials-heading p {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.4;
}


/* ==========================================
   OWL CAROUSEL
========================================== */

#patientTestimonials .patientTestimonials-carousel {
    position: relative;
    padding: 0 55px;
}

#patientTestimonials .patientTestimonials-carousel .owl-stage {
    display: flex;
}

#patientTestimonials .patientTestimonials-carousel .owl-item {
    display: flex;
}


/* ==========================================
   CARD
========================================== */

#patientTestimonials .patientTestimonials-card {
    position: relative;

    width: 100%;

    padding: 36px 17px 20px;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 10px;

    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


/* ==========================================
   REVIEW CONTENT SCROLL
========================================== */

#patientTestimonials .patientTestimonials-content {
    height: 200px;
    overflow-y: auto;
    padding-right: 8px;
    color: #444;
    font-size: 22px;
    line-height: 1.42;
    font-weight: 400;
    scrollbar-width: thin;
    scrollbar-color: #da2028 #f1f1f1;
}


/* Chrome / Edge / Safari */

#patientTestimonials .patientTestimonials-content::-webkit-scrollbar {
    width: 4px;
}

#patientTestimonials .patientTestimonials-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#patientTestimonials .patientTestimonials-content::-webkit-scrollbar-thumb {
    background: #da2028;
    border-radius: 10px;
}


/* ==========================================
   STARS
========================================== */

#patientTestimonials .patientTestimonials-stars {
    display: flex;
    gap: 4px;
    margin-top: 15px;
}

#patientTestimonials .patientTestimonials-stars i {
    color: #ffb000;
    font-size: 17px;
}


/* ==========================================
   NAME
========================================== */

#patientTestimonials .patientTestimonials-name {
    margin-top: 16px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
}


/* ==========================================
   ROLE
========================================== */

#patientTestimonials .patientTestimonials-role {
    margin-top: 12px;
    color: #777;
    font-size: 15px;
}


/* ==========================================
   QUOTE
========================================== */

#patientTestimonials .patientTestimonials-quote {
    position: absolute;
    right: 18px;
    bottom: 25px;

    color: #da2028;
    font-size: 42px;
    line-height: 1;
}


/* ==========================================
   OWL NAVIGATION
========================================== */

#patientTestimonials .owl-nav {
    margin: 0;
}

#patientTestimonials .owl-nav button.owl-prev,
#patientTestimonials .owl-nav button.owl-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 35px;
    height: 45px;

    margin: 0 !important;

    background: transparent !important;

    color: #da2028 !important;

    font-size: 38px !important;
    font-weight: 400;

    line-height: 1;

    border: 0 !important;

    transition: all 0.25s ease;
}

#patientTestimonials .owl-nav button.owl-prev {
    left: 5px;
}

#patientTestimonials .owl-nav button.owl-next {
    right: 5px;
}

#patientTestimonials .owl-nav button:hover {
    color: #a80d26 !important;
    background: transparent !important;
    transform: translateY(-50%) scale(1.12);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1199px) {

    #patientTestimonials .patientTestimonials-container {
        width: calc(100% - 50px);
    }

    #patientTestimonials .patientTestimonials-carousel {
        padding: 0 45px;
    }

    #patientTestimonials .patientTestimonials-heading h2 {
        font-size: 34px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #patientTestimonials {
        padding: 30px 0 15px;
    }

    #patientTestimonials .patientTestimonials-container {
        width: calc(100% - 30px);
    }

    #patientTestimonials .patientTestimonials-heading {
        margin-bottom: 25px;
    }

    #patientTestimonials .patientTestimonials-heading h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    #patientTestimonials .patientTestimonials-heading p {
        font-size: 15px;
    }

    #patientTestimonials .patientTestimonials-carousel {
        padding: 0 30px;
    }

    #patientTestimonials .patientTestimonials-card {
        height: 310px;
        padding: 28px 16px 20px;
    }

    #patientTestimonials .patientTestimonials-content {
        height: 135px;
        font-size: 17px;
    }

    #patientTestimonials .owl-nav button.owl-prev {
        left: -5px;
    }

    #patientTestimonials .owl-nav button.owl-next {
        right: -5px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #patientTestimonials .patientTestimonials-carousel {
        padding: 0 25px;
    }

    #patientTestimonials .patientTestimonials-card {
        height: 300px;
    }

    #patientTestimonials .patientTestimonials-content {
        height: 125px;
        font-size: 16px;
    }

    #patientTestimonials .owl-nav button.owl-prev,
    #patientTestimonials .owl-nav button.owl-next {
        font-size: 30px !important;
    }
}


/* ==========================================
   HOSPITAL FACILITIES SECTION
========================================== */

#hospitalFacilities {
    width: 100%;
    background: #fff;
    padding: 45px 0px;
    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#hospitalFacilities .hospitalFacilities-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   CONTENT
========================================== */

/* #hospitalFacilities .hospitalFacilities-content {
    padding-right: 35px;
} */


/* ==========================================
   HEADING
========================================== */

#hospitalFacilities .hospitalFacilities-content h2 {
    margin: 0 0 30px;
    color: #da2028;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}


/* ==========================================
   DESCRIPTION
========================================== */

#hospitalFacilities .hospitalFacilities-content>p {
    margin: 0 0 40px;
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

#hospitalFacilities .hospitalFacilities-content>p em {
    font-style: italic;
}


/* ==========================================
   FACILITIES LIST
========================================== */

/* #hospitalFacilities .hospitalFacilities-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 35px;
} */


#hospitalFacilities .hospitalFacilities-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: 2;
    column-gap: 20px
}


#hospitalFacilities .hospitalFacilities-list li {
    position: relative;
    margin: 0 0 17px;
    padding-left: 32px;
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
}


/* ==========================================
   CHECK ICON BEFORE LI
========================================== */

#hospitalFacilities .hospitalFacilities-list li::before {
    content: "\f14a";

    position: absolute;

    left: 0;
    top: 2px;

    color: #e3262f;

    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 400;

    line-height: 1;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

#hospitalFacilities .hospitalFacilities-slider {
    width: 100%;
    margin: 0;
}


#hospitalFacilities .hospitalFacilities-image {
    width: 100%;
    height: 100%;

    overflow: hidden;
}


#hospitalFacilities .hospitalFacilities-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}


#hospitalFacilities .hospitalFacilities-image:hover img {
    transform: scale(1.03);
}


/* ==========================================
   OWL DOTS
========================================== */

#hospitalFacilities .owl-dots {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 8px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 6px;

    margin: 0;
}


#hospitalFacilities .owl-dots .owl-dot {
    width: 13px;
    height: 13px;

    margin: 0;
    padding: 0;

    border: 0;
    outline: none;

    background: transparent;
}


#hospitalFacilities .owl-dots .owl-dot span {
    display: block;

    width: 13px;
    height: 13px;

    margin: 0;

    background: #fff;

    border-radius: 50%;

    opacity: 1;
}


#hospitalFacilities .owl-dots .owl-dot.active span {
    background: #da2028;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    #hospitalFacilities {
        padding: 40px 0 45px;
    }

    #hospitalFacilities .hospitalFacilities-content {
        padding-right: 15px;
    }

    #hospitalFacilities .hospitalFacilities-content h2 {
        font-size: 34px;
    }

    #hospitalFacilities .hospitalFacilities-content>p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    #hospitalFacilities .hospitalFacilities-list li {
        font-size: 16px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #hospitalFacilities .hospitalFacilities-container {
        width: calc(100% - 30px);
    }

    #hospitalFacilities .hospitalFacilities-content {
        padding-right: 0;
        margin-bottom: 30px;
    }


    #hospitalFacilities .hospitalFacilities-list ul li {
        column-count: 1;
    }

}


/* ==========================================
   ORTHO EXCELLENCE VIDEO SECTION
========================================== */

#orthoExcellence {
    width: 100%;
    background: #483e6e;
    padding: 28px 0 45px;
    overflow: hidden;
    font-family: "Roboto", Sans-serif;
}


/* ==========================================
   CONTAINER
========================================== */

#orthoExcellence .orthoExcellence-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   LEFT CONTENT
========================================== */

#orthoExcellence .orthoExcellence-content {
    padding-right: 0px;
}


/* ==========================================
   HEADING
========================================== */

#orthoExcellence .orthoExcellence-content h2 {
    margin: 0 0 30px;

    color: #fff;
    font-size: 36px;
    line-height: 1.28;
    font-weight: 700;
}


/* ==========================================
   DESCRIPTION
========================================== */

#orthoExcellence .orthoExcellence-content p {
    margin: 0 0 38px;
    color: #fff;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
}


/* ==========================================
   SUBSCRIBE BUTTON
========================================== */

#orthoExcellence .orthoExcellence-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 280px;

    background-color: rgb(219, 0, 0);
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: 500;
    padding: 15px 20px;
    color: #fff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 25px;
    font-weight: 700;

    transition: all 0.3s ease;
}

#orthoExcellence .orthoExcellence-btn i {
    font-size: 25px;
}

#orthoExcellence .orthoExcellence-btn:hover {
    background: #d00000;
    color: #fff;
}


/* ==========================================
   OWL CAROUSEL
========================================== */

#orthoExcellence .orthoExcellence-carousel {
    width: 100%;
}


/* ==========================================
   VIDEO
========================================== */

#orthoExcellence .orthoExcellence-video {
    width: 100%;
    height: 220px;
    /* background: #000; */
    overflow: hidden;
}


/* ==========================================
   IFRAME
========================================== */

#orthoExcellence .orthoExcellence-video iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==========================================
   OWL DOTS
========================================== */

#orthoExcellence .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-top: 22px;
}

#orthoExcellence .owl-dots .owl-dot {
    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
}

#orthoExcellence .owl-dots .owl-dot span {
    display: block;

    width: 8px;
    height: 8px;

    margin: 0;

    background: #292344;

    border-radius: 50%;
}

#orthoExcellence .owl-dots .owl-dot.active span {
    background: #000;
}



/* ==========================================
   HOSPITAL TEAM SECTION
========================================== */

#hospitalTeam {
    width: 100%;
    background: #fff;

    padding: 0;

    overflow: hidden;

    border-bottom: 3px solid #483e6e;
}


/* ==========================================
   CONTAINER
========================================== */

#hospitalTeam .hospitalTeam-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   IMAGE WRAPPER
========================================== */

#hospitalTeam .hospitalTeam-image {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: flex-end;

    overflow: hidden;
}


/* ==========================================
   TEAM IMAGE
========================================== */

#hospitalTeam .hospitalTeam-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
}



/* ==========================================
   ORTHOPEDIC SPECIALISTS SECTION
========================================== */

#orthopedicSpecialists {
    width: 100%;
    background: #fff;
    padding: 40px 0 30px;
    overflow: hidden;
    font-family: "Roboto", Sans-serif;
}


/* ==========================================
   CONTAINER
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-heading {
    width: 100%;
    text-align: center;
    margin: 0 auto 55px;
}

#orthopedicSpecialists .orthopedicSpecialists-heading h2 {
    margin: 0 0 20px;
    padding: 0;

    color: #da2028;

    font-family: Arial, sans-serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

#orthopedicSpecialists .orthopedicSpecialists-heading p {
    margin: 0;
    padding: 0;

    color: #000;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}


/* ==========================================
   ROW
========================================== */

#orthopedicSpecialists .row {
    margin-left: -10px;
    margin-right: -10px;
}

#orthopedicSpecialists .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}


/* ==========================================
   DOCTOR CARD
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-card {
    width: 100%;
    min-height: 330px;

    display: flex;
    align-items: stretch;

    background: #fffafa;

    border: 1px solid #e5e5e5;
    border-radius: 18px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);

    overflow: hidden;

    transition: all 0.3s ease;
}


/* ==========================================
   CARD HOVER
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.13);
}


/* ==========================================
   DOCTOR IMAGE
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-image {
    width: 43%;
    flex: 0 0 43%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

#orthopedicSpecialists .orthopedicSpecialists-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;
}


/* ==========================================
   DOCTOR INFORMATION
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-info {
    width: 57%;
    flex: 0 0 57%;

    padding: 15px 20px 20px;
}


/* ==========================================
   DOCTOR NAME
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-info h3 {
    margin: 0;
    padding: 0;
    color: #111;
    /* font-family: Arial, sans-serif; */
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}


/* ==========================================
   DESIGNATION
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-designation {
    display: inline-block;

    margin: 0 0 34px;
    padding-bottom: 2px;

    color: #111;

    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;

    letter-spacing: 1px;

    border-bottom: 1px dotted #da2028;
}


/* ==========================================
   DESCRIPTION
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-info p {
    margin: 0 0 30px;
    padding: 0;

    color: #111;

    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
}


/* ==========================================
   QUALIFICATION TITLE
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-info strong {
    display: block;

    margin: 0 0 12px;

    color: #111;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================
   QUALIFICATION LIST
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-info ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

#orthopedicSpecialists .orthopedicSpecialists-info li {
    position: relative;

    margin: 0 0 8px;
    padding: 0 0 0 28px;

    color: #222;

    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
}


/* ==========================================
   QUALIFICATION ICON
========================================== */

#orthopedicSpecialists .orthopedicSpecialists-info li::before {
    content: "\f0a4";

    position: absolute;

    left: 0;
    top: 2px;

    color: #ed1c24;

    font-family: "Font Awesome 5 Free";
    font-size: 17px;
    font-weight: 400;

    line-height: 1;
}


/* ==========================================
   OUR SPECIALIZATION
========================================== */

#ourSpecialization {
    width: 100%;

    background-image: url("../images/spacialization-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 45px 0 55px;

    overflow: hidden;

    font-family: "Roboto", Sans-serif;

    position: relative;
    z-index: 1;
}


/* ==========================================
   BACKGROUND OVERLAY
========================================== */

#ourSpecialization::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: #1e1e1e;
    opacity: 0.4;

    z-index: -1;
}

/* ==========================================
   CONTAINER
========================================== */

#ourSpecialization .ourSpecialization-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   BODY AREA
========================================== */

#ourSpecialization .ourSpecialization-body {
    position: relative;

    width: 100%;
    height: 580px;

    display: flex;
    justify-content: center;
    align-items: center;
}


#ourSpecialization .ourSpecialization-body-img {
    display: block;

    width: 100%;
    max-width: 370px;
    height: 100%;

    object-fit: contain;
    object-position: center;
}


/* ==========================================
   NUMBERED DOT
========================================== */
/* ==========================================
   SPECIALIZATION DOT
========================================== */

#ourSpecialization .specialization-dot {
    position: absolute;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #da2028;

    border-radius: 50%;

    cursor: pointer;

    z-index: 5;

    transition: transform 0.3s ease;
}


/* ==========================================
   PULSE / FADE ANIMATION
========================================== */

#ourSpecialization .specialization-dot::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    background: rgba(220, 0, 0, 0.42);
    animation: specializationPulse 2.2s infinite ease-out;

    border-radius: 50%;

    z-index: -1;
}


/* ==========================================
   SECOND SOFT RIPPLE
========================================== */

#ourSpecialization .specialization-dot::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;


    border-radius: 50%;

    z-index: -2;
    background: rgba(220, 0, 0, 0.25);
    animation: specializationPulse 2.2s infinite ease-out;
    animation-delay: 1.1s;
}


/* ==========================================
   PULSE KEYFRAMES
========================================== */

@keyframes specializationPulse {

    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(2.1);
        opacity: 0;
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
    }

}


/* ==========================================
   NUMBER
========================================== */

#ourSpecialization .specialization-dot span {
    position: relative;

    z-index: 3;

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    line-height: 1;
}


/* ==========================================
   HOVER
========================================== */

#ourSpecialization .specialization-dot:hover {
    transform: scale(1.15);

    z-index: 20;
}


/* Stop/soften pulse on hover */

#ourSpecialization .specialization-dot:hover::before,
#ourSpecialization .specialization-dot:hover::after {
    animation-play-state: paused;
}


/* ==========================================
   DOT POSITIONS
========================================== */

#ourSpecialization .dot-1 {
    top: 13%;
    left: 50%;
}

#ourSpecialization .dot-2 {
    top: 20%;
    left: 28%;
}

#ourSpecialization .dot-3 {
    top: 31%;
    left: 48%;

}

#ourSpecialization .dot-4 {
    top: 43%;
    left: 42%;
}

#ourSpecialization .dot-5 {
    top: 25%;
    left: 85%;
}

#ourSpecialization .dot-6 {
    top: 60%;
    left: 80%;
}

#ourSpecialization .dot-7 {
    top: 81%;
    left: 51%;
}


/* ==========================================
   HOVER TOOLTIP
========================================== */

#ourSpecialization .specialization-tooltip {
    position: absolute;

    left: 50%;
    bottom: calc(100% + 14px);

    width: 260px;

    padding: 16px 18px;

    background: #fff;

    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 10px);

    transition: all 0.3s ease;

    pointer-events: none;
}


/* Tooltip arrow */

#ourSpecialization .specialization-tooltip::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 16px;
    height: 16px;

    background: #fff;

    transform: translateX(-50%) rotate(45deg);
}


/* Show tooltip */

#ourSpecialization .specialization-dot:hover .specialization-tooltip {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}


/* ==========================================
   TOOLTIP CONTENT
========================================== */

#ourSpecialization .specialization-tooltip h4 {
    margin: 0 0 7px;

    color: #da2028;

    font-size: 18px;
    font-weight: 700;
}


#ourSpecialization .specialization-tooltip p {
    margin: 0;

    color: #333;

    font-size: 13px;
    line-height: 1.45;
}


/* ==========================================
   RIGHT CONTENT
========================================== */

#ourSpecialization .ourSpecialization-content {
    padding-left: 15px;
}


#ourSpecialization .ourSpecialization-content h2 {
    margin: 0 0 28px;
    font-family: Roboto, sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 52px;
    color: rgb(255, 255, 255);
}


#ourSpecialization .specialization-intro {
    margin: 0 0 38px;

    color: #fff;

    font-size: 16px;
    line-height: 1.5;
}


#ourSpecialization .specialization-intro strong {
    color: #d8e9f7;
}


/* ==========================================
   SPECIALIZATION GRID
========================================== */

#ourSpecialization .specialization-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 45px;
}


#ourSpecialization .specialization-column {
    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* ==========================================
   SPECIALIZATION ITEM
========================================== */

#ourSpecialization .specialization-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}


#ourSpecialization .specialization-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #c5e5ff;

    font-size: 30px;
}


#ourSpecialization .specialization-item h3 {
    font-family: "Roboto", Sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #da2028;
    margin: 0
}


#ourSpecialization .specialization-item p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    #ourSpecialization {
        padding: 40px 0;
    }

    #ourSpecialization .ourSpecialization-body {
        height: 500px;
    }

    #ourSpecialization .ourSpecialization-content {
        padding-left: 0;
    }

    #ourSpecialization .ourSpecialization-content h2 {
        font-size: 34px;
    }

    #ourSpecialization .specialization-grid {
        column-gap: 25px;
    }

    #ourSpecialization .specialization-item {
        gap: 10px;
    }

    #ourSpecialization .specialization-icon {
        width: 42px;
        min-width: 42px;
        font-size: 25px;
    }

    #ourSpecialization .specialization-item h3 {
        font-size: 18px;
    }

    #ourSpecialization .specialization-item p {
        font-size: 12px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #ourSpecialization {
        padding: 35px 0 40px;
    }

    #ourSpecialization .ourSpecialization-container {
        width: calc(100% - 30px);
        max-width: 1140px;
        margin: 0 auto;
    }


    /* BODY */

    #ourSpecialization .ourSpecialization-body {
        height: 430px;

        margin-bottom: 25px;
    }

    #ourSpecialization .ourSpecialization-body-img {
        max-width: 300px;
    }


    /* DOTS */

    #ourSpecialization .specialization-dot {
        width: 34px;
        height: 34px;
    }

    #ourSpecialization .specialization-dot span {
        font-size: 13px;
    }


    /* CONTENT */

    #ourSpecialization .ourSpecialization-content {
        padding-left: 0;
    }

    #ourSpecialization .ourSpecialization-content h2 {
        margin-bottom: 18px;

        font-size: 30px;

        text-align: center;
    }

    #ourSpecialization .specialization-intro {
        margin-bottom: 30px;

        font-size: 15px;

        text-align: center;
    }


    /* GRID */

    #ourSpecialization .specialization-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    #ourSpecialization .specialization-column {
        gap: 22px;
    }


    #ourSpecialization .specialization-item {
        gap: 12px;
    }

    #ourSpecialization .specialization-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;

        font-size: 25px;
    }

    #ourSpecialization .specialization-item h3 {
        font-size: 18px;
    }

    #ourSpecialization .specialization-item p {
        font-size: 13px;
    }


    /* TOOLTIP */

    #ourSpecialization .specialization-tooltip {
        width: 220px;

        padding: 13px 15px;
    }

    #ourSpecialization .specialization-tooltip h4 {
        font-size: 16px;
    }

    #ourSpecialization .specialization-tooltip p {
        font-size: 12px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #ourSpecialization .ourSpecialization-body {
        height: 360px;
    }

    #ourSpecialization .ourSpecialization-body-img {
        max-width: 260px;
    }

    #ourSpecialization .specialization-dot {
        width: 31px;
        height: 31px;
    }

    #ourSpecialization .specialization-dot span {
        font-size: 12px;
    }

    #ourSpecialization .ourSpecialization-content h2 {
        font-size: 27px;
    }
}

/* ==========================================
   WHY CHOOSE GDHM
========================================== */

#whyChooseGDMH {
    width: 100%;
    background: #fff;

    padding: 10px 0;

    overflow: hidden;

    font-family: "Roboto", Sans-serif;
}


/* ==========================================
   HEADING
========================================== */

#whyChooseGDMH .whyChooseGDMH-heading {
    width: calc(100% - 30px);
    max-width: 1140px;

    margin: 0 auto;

    text-align: center;

    padding: 0 0 8px;
}


#whyChooseGDMH .whyChooseGDMH-heading h2 {
    margin: 0;

    color: #da2028;

    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}


/* ==========================================
   COUNTER BACKGROUND
========================================== */

#whyChooseGDMH .whyChooseGDMH-counter-bg {
    width: 100%;

    background: #f5f5f5;

    padding: 25px 0 28px;
}


/* ==========================================
   CONTAINER
========================================== */

#whyChooseGDMH .whyChooseGDMH-container {
    width: calc(100% - 30px);

    max-width: 1140px;

    margin: 0 auto;
}


/* ==========================================
   ROW
========================================== */

#whyChooseGDMH .row {
    display: flex;
    flex-wrap: wrap;

    margin-left: -10px;
    margin-right: -10px;
}


#whyChooseGDMH .row>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}


/* ==========================================
   COUNTER ITEM
========================================== */

#whyChooseGDMH .whyChooseGDMH-item {
    text-align: center;

    padding: 0 5px;
}


/* ==========================================
   ICON
========================================== */

#whyChooseGDMH .whyChooseGDMH-icon {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 5px;
}


#whyChooseGDMH .whyChooseGDMH-icon i {
    color: #da2028;

    font-size: 34px;

    line-height: 1;
}


/* ==========================================
   COUNTER NUMBER
========================================== */

#whyChooseGDMH .whyChooseGDMH-number {
    color: #000;

    font-family: Arial, sans-serif;

    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;

    margin-bottom: 5px;
}


/* ==========================================
   TITLE
========================================== */

#whyChooseGDMH .whyChooseGDMH-title {
    color: #111;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}


/* ==========================================
   HOVER
========================================== */

#whyChooseGDMH .whyChooseGDMH-item {
    transition: transform 0.3s ease;
}

#whyChooseGDMH .whyChooseGDMH-item:hover {
    transform: translateY(-3px);
}

#whyChooseGDMH .whyChooseGDMH-item:hover .whyChooseGDMH-icon i {
    transform: scale(1.08);
}

#whyChooseGDMH .whyChooseGDMH-icon i {
    transition: transform 0.3s ease;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #whyChooseGDMH .whyChooseGDMH-heading h2 {
        font-size: 23px;
    }

    #whyChooseGDMH .whyChooseGDMH-number {
        font-size: 32px;
    }

    #whyChooseGDMH .whyChooseGDMH-title {
        font-size: 15px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #whyChooseGDMH .whyChooseGDMH-heading {
        width: calc(100% - 30px);

        padding-bottom: 12px;
    }

    #whyChooseGDMH .whyChooseGDMH-heading h2 {
        font-size: 20px;
    }

    #whyChooseGDMH .whyChooseGDMH-counter-bg {
        padding: 25px 0;
    }

    #whyChooseGDMH .row>[class*="col-"] {
        margin-bottom: 25px;
    }

    #whyChooseGDMH .whyChooseGDMH-icon {
        height: 42px;
    }

    #whyChooseGDMH .whyChooseGDMH-icon i {
        font-size: 29px;
    }

    #whyChooseGDMH .whyChooseGDMH-number {
        font-size: 29px;
    }

    #whyChooseGDMH .whyChooseGDMH-title {
        font-size: 14px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #whyChooseGDMH .whyChooseGDMH-heading h2 {
        font-size: 18px;
    }

    #whyChooseGDMH .whyChooseGDMH-number {
        font-size: 26px;
    }

    #whyChooseGDMH .whyChooseGDMH-title {
        font-size: 13px;
    }

    #whyChooseGDMH .whyChooseGDMH-icon i {
        font-size: 27px;
    }
}

/* ==========================================
   ORTHOPEDIC SERVICES SECTION
========================================== */

#orthopedicServices {
    width: 100%;

    background: #fff;

    padding: 40px 0;

    overflow: hidden;

    font-family: "Roboto", Sans-serif;
}


/* ==========================================
   CONTAINER
========================================== */

#orthopedicServices .orthopedicServices-container {
    width: calc(100% - 30px);

    max-width: 1140px;

    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

#orthopedicServices h2 {
    margin: 0 0 28px;

    text-align: center;

    color: #da2028;

    font-family: Arial, sans-serif;

    font-size: 36px;

    line-height: 1.2;

    font-weight: 700;
}


#orthopedicServices p {
    /* text-align: center; */
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.3px;
    word-spacing: 0px;
}



/* ==========================================
   GRID
========================================== */

#orthopedicServices .row {
    row-gap: 15px;
}


/* ==========================================
   CARD
========================================== */

#orthopedicServices .service-card {
    width: 100%;

    height: 300px;

    perspective: 1200px;
}


/* ==========================================
   CARD INNER
========================================== */

#orthopedicServices .service-card-inner {
    position: relative;

    width: 100%;
    height: 100%;

    transform-style: preserve-3d;

    transition: transform 0.7s ease;
}


/* ==========================================
   CARD FLIP
========================================== */

#orthopedicServices .service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}


/* ==========================================
   FRONT + BACK
========================================== */

#orthopedicServices .service-card-front,
#orthopedicServices .service-card-back {
    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    border-radius: 8px;

    overflow: hidden;

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;
}


/* ==========================================
   FRONT
========================================== */

#orthopedicServices .service-card-front {
    transform: rotateY(0deg);
}


/* ==========================================
   FRONT IMAGE
========================================== */

#orthopedicServices .service-card-front>img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ==========================================
   FRONT IMAGE OVERLAY
========================================== */

#orthopedicServices .service-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.50);

    z-index: 1;
}


/* ==========================================
   FRONT CONTENT
========================================== */

#orthopedicServices .service-front-content {
    position: absolute;

    left: 20px;
    right: 20px;

    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    text-align: left;

    color: #fff;
}


/* ==========================================
   FRONT ICON
========================================== */

#orthopedicServices .service-front-content .service-icon {
    width: 100px;
    height: 100px;

    object-fit: contain;

    margin-bottom: 8px;

    display: block;

    filter: brightness(0) invert(1);
}


/* ==========================================
   FRONT TITLE
========================================== */

#orthopedicServices .service-front-content h3 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 700;
}


/* ==========================================
   FRONT DESCRIPTION
========================================== */

#orthopedicServices .service-front-content p {
    max-width: 330px;

    margin: 0 auto;

    color: #fff;
    font-family: "Roboto", Sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.45;
}


/* ==========================================
   BACK
========================================== */

#orthopedicServices .service-card-back {
    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    text-align: center;

    background: #000;

    color: #fff;

    transform: rotateY(180deg);
}


/* ==========================================
   BACKGROUND IMAGE
========================================== */

#orthopedicServices .service-back-bg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    z-index: 0;
}


/* ==========================================
   BACK RED OVERLAY
========================================== */

#orthopedicServices .service-back-overlay {
    position: absolute;

    inset: 0;

    background: rgba(253, 0, 0, 0.55);

    z-index: 1;
}


/* ==========================================
   BACK CONTENT
========================================== */

#orthopedicServices .service-back-content {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


/* ==========================================
   BACK TITLE
========================================== */

#orthopedicServices .service-back-content h3 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 700;
}


/* ==========================================
   BACK DESCRIPTION
========================================== */

#orthopedicServices .service-back-content p {
    max-width: 320px;

    margin: 0 0 15px;

    color: #fff;

    font-size: 18px;

    line-height: 1.45;
}


/* ==========================================
   BUTTON
========================================== */

#orthopedicServices .service-btn {

    border-radius: 3px;
    color: #fff;
    display: inline-block;
    fill: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    background: transparent;
    border: 1px solid #fff;
    padding: 12px 24px;
    text-align: center;
    transition: all .3s;
}


#orthopedicServices .service-btn:hover {
    color: #da2028;

    background: #fff;

    text-decoration: none;
}


/* ==========================================
   HOSPITAL AWARD SECTION
========================================== */

#hospitalAwardSection {
    width: 100%;
    padding: 45px 0 50px;

    background-color: #10233D;

    background-image:
        linear-gradient(rgba(16, 35, 61, 0.88),
            rgba(16, 35, 61, 0.88)),
        url("../images/Indian-Icon-of-The-Year-2021_-img-1.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    font-family: "Roboto", Sans-serif;
}


/* ==========================================
   CONTAINER
========================================== */

#hospitalAwardSection .hospitalAward-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 45px;
}


/* ==========================================
   LEFT
========================================== */

#hospitalAwardSection .hospitalAward-left {
    width: 72%;
}


/* ==========================================
   HEADING
========================================== */

#hospitalAwardSection .hospitalAward-left h2 {
    margin: 0 0 20px;

    color: #fff;

    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
}


/* ==========================================
   SUBTITLE
========================================== */

#hospitalAwardSection .hospitalAward-subtitle {
    display: inline-block;
    margin: 0 0 30px;
    /* padding: 7px 12px; */
    color: #fff;
    /* background: rgba(255, 255, 255, 0.08); */
    /* border-left: 3px solid #da2028; */
    font-size: 17px;
    line-height: 1.4;
}


/* ==========================================
   GALLERY
========================================== */

#hospitalAwardSection .hospitalNews-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-template-rows: 160px 160px;

    gap: 8px;
}


/* ==========================================
   GALLERY ITEM
========================================== */

#hospitalAwardSection .hospitalNews-item {
    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;

    text-decoration: none;
}


/* ==========================================
   IMAGE WRAP
========================================== */

#hospitalAwardSection .hospitalNews-image-wrap {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


/* ==========================================
   IMAGE
========================================== */

#hospitalAwardSection .hospitalNews-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* ==========================================
   IMAGE OVERLAY
========================================== */

#hospitalAwardSection .hospitalNews-overlay {
    position: absolute;

    inset: 0;

    background: rgba(16, 35, 61, 0);

    transition: background 0.4s ease;
}


/* ==========================================
   IMAGE HOVER
========================================== */

#hospitalAwardSection .hospitalNews-item:hover img {
    transform: scale(1.08);
}


/* ==========================================
   FIRST IMAGE
========================================== */

#hospitalAwardSection .hospitalNews-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}


/* ==========================================
   SECOND IMAGE
========================================== */

#hospitalAwardSection .hospitalNews-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}


/* ==========================================
   THIRD IMAGE - BIG IMAGE
========================================== */

#hospitalAwardSection .hospitalNews-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / 3;
}


/* ==========================================
   FOURTH IMAGE
========================================== */

#hospitalAwardSection .hospitalNews-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}


/* ==========================================
   FIFTH IMAGE
========================================== */

#hospitalAwardSection .hospitalNews-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}


/* ==========================================
   RIGHT SIDE
========================================== */

#hospitalAwardSection .hospitalAward-right {
    width: 28%;

    display: flex;
    justify-content: center;
    align-items: flex-end;
}


/* ==========================================
   DOCTOR
========================================== */

#hospitalAwardSection .hospitalAward-doctor {
    position: relative;

    width: 100%;

    text-align: center;
}


/* ==========================================
   DOCTOR IMAGE
========================================== */

#hospitalAwardSection .hospitalAward-doctor-img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: bottom center;
}


/* ==========================================
   DOCTOR INFO BOX
========================================== */

#hospitalAwardSection .hospitalAward-doctor-info {
    position: relative;
    width: 90%;
    margin: -45px auto 0;
    padding: 5px;
    background: #fff;
    border-radius: 0 45px 45px 0;
    border-left: 4px solid #da2028;
    text-align: center;
    z-index: 5;
}


/* ==========================================
   DOCTOR NAME
========================================== */

#hospitalAwardSection .hospitalAward-doctor-info h3 {
    margin: 0 0 5px;

    color: #111;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}


/* ==========================================
   DOCTOR QUALIFICATION
========================================== */

#hospitalAwardSection .hospitalAward-doctor-info p {
    margin: 0 0 6px;

    color: #333;

    font-size: 14px;
    line-height: 1.4;
}


/* ==========================================
   KNOW MORE BUTTON
========================================== */

#hospitalAwardSection .hospitalAward-know-btn {
    display: inline-block;

    color: #da2028;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


#hospitalAwardSection .hospitalAward-know-btn:hover {
    color: #10233D;

    text-decoration: underline;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #hospitalAwardSection .hospitalAward-container {
        gap: 25px;
    }

    #hospitalAwardSection .hospitalAward-left {
        width: 65%;
    }

    #hospitalAwardSection .hospitalAward-right {
        width: 35%;
    }

    #hospitalAwardSection .hospitalAward-left h2 {
        font-size: 32px;
    }

    #hospitalAwardSection .hospitalNews-gallery {
        grid-template-rows: 130px 130px;
    }

    #hospitalAwardSection .hospitalAward-doctor-img {
        height: 330px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #hospitalAwardSection {
        padding: 35px 0 40px;
    }

    #hospitalAwardSection .hospitalAward-container {
        flex-direction: column;

        gap: 35px;
    }

    #hospitalAwardSection .hospitalAward-left,
    #hospitalAwardSection .hospitalAward-right {
        width: 100%;
    }

    #hospitalAwardSection .hospitalAward-left h2 {
        font-size: 29px;
    }

    #hospitalAwardSection .hospitalAward-subtitle {
        font-size: 15px;
    }

    #hospitalAwardSection .hospitalNews-gallery {
        grid-template-columns: repeat(2, 1fr);

        grid-template-rows: 130px 130px 130px;
    }

    #hospitalAwardSection .hospitalNews-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    #hospitalAwardSection .hospitalNews-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    #hospitalAwardSection .hospitalNews-item:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    #hospitalAwardSection .hospitalNews-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    #hospitalAwardSection .hospitalNews-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    #hospitalAwardSection .hospitalAward-doctor-img {
        height: 350px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #hospitalAwardSection .hospitalAward-left h2 {
        font-size: 25px;
    }

    #hospitalAwardSection .hospitalNews-gallery {
        grid-template-rows: 110px 110px 110px;
    }

    #hospitalAwardSection .hospitalAward-doctor-img {
        height: 300px;
    }

}


/* ==========================================
   BIG IMPACT AWARDS
========================================== */

#bigImpactAwards {
    width: 100%;

    padding: 25px 0 35px;


    background-image:
        url("../images/ginidevi-2.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    font-family: "Roboto", Sans-serif;
}


/* ==========================================
   CONTAINER
========================================== */

#bigImpactAwards .bigImpactAwards-container {
    width: calc(100% - 30px);

    max-width: 1140px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 40px;
}


/* ==========================================
   LEFT
========================================== */

#bigImpactAwards .bigImpactAwards-left {
    width: 72%;
}


/* ==========================================
   HEADING
========================================== */

#bigImpactAwards .bigImpactAwards-left h2 {
    margin: 0 0 15px;

    color: #fff;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 700;
}


/* ==========================================
   SUBTITLE
========================================== */

#bigImpactAwards .bigImpactAwards-subtitle {
    margin: 0 0 25px;

    color: #fff;

    font-size: 17px;

    line-height: 1.5;
}


/* ==========================================
   GALLERY
========================================== */

#bigImpactAwards .bigImpactAwards-gallery {
    display: flex;

    align-items: center;


    gap: 0;

    height: 330px;
}


/* ==========================================
   GALLERY IMAGE
========================================== */

#bigImpactAwards .bigImpactAwards-image {
    position: relative;
    display: block;
    width: 220px;
    height: 220px;
    overflow: hidden;
    text-decoration: none;
}

/* ==========================================
   FIRST IMAGE
========================================== */

#bigImpactAwards .bigImpactAwards-image:first-child {
    transform: translateX(35px);
    z-index: 1;
    top: 20%;
    left: 18px;
}


/* ==========================================
   SECOND IMAGE
========================================== */

#bigImpactAwards .bigImpactAwards-image:nth-child(2) {
    width: 280px;

    height: 300px;


    z-index: 2;
}


/* ==========================================
   IMAGE
========================================== */

#bigImpactAwards .bigImpactAwards-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}




/* ==========================================
   RIGHT SIDE
========================================== */

#bigImpactAwards .bigImpactAwards-right {
    width: 28%;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* ==========================================
   DOCTOR WRAPPER
========================================== */

#bigImpactAwards .bigImpactAwards-doctor {
    position: relative;

    width: 100%;

    text-align: center;
}


/* ==========================================
   DOCTOR IMAGE
========================================== */

#bigImpactAwards .bigImpactAwards-doctor-img {
    width: 100%;

    max-width: 300px;

    height: 400px;

    display: block;

    margin: 0 auto;

    object-fit: contain;

    object-position: bottom center;
}


/* ==========================================
   DOCTOR INFO BOX
========================================== */

#bigImpactAwards .bigImpactAwards-doctor-info {
    position: relative;

    width: 88%;

    margin: -25px auto 0;

    padding: 13px 15px 12px;

    background: #fff;

    border-left: 4px solid #da2028;

    border-radius: 0 45px 45px 0;

    text-align: center;

    z-index: 5;
}


/* ==========================================
   DOCTOR NAME
========================================== */

#bigImpactAwards .bigImpactAwards-doctor-info h3 {
    margin: 0 0 5px;

    color: #111;

    font-size: 20px;

    line-height: 1.2;

    font-weight: 700;
}


/* ==========================================
   QUALIFICATION
========================================== */

#bigImpactAwards .bigImpactAwards-doctor-info p {
    margin: 0 0 5px;

    color: #333;

    font-size: 14px;

    line-height: 1.4;
}


/* ==========================================
   KNOW MORE
========================================== */

#bigImpactAwards .bigImpactAwards-btn {
    display: inline-block;

    color: #da2028;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


#bigImpactAwards .bigImpactAwards-btn:hover {
    color: #10233D;

    text-decoration: underline;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #bigImpactAwards .bigImpactAwards-container {
        gap: 20px;
    }

    #bigImpactAwards .bigImpactAwards-left {
        width: 65%;
    }

    #bigImpactAwards .bigImpactAwards-right {
        width: 35%;
    }

    #bigImpactAwards .bigImpactAwards-left h2 {
        font-size: 32px;
    }

    #bigImpactAwards .bigImpactAwards-gallery {
        height: 280px;
    }

    #bigImpactAwards .bigImpactAwards-image {
        width: 210px;
        height: 200px;
    }

    #bigImpactAwards .bigImpactAwards-image:nth-child(2) {
        width: 230px;
        height: 260px;
    }

    #bigImpactAwards .bigImpactAwards-doctor-img {
        height: 320px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #bigImpactAwards {
        padding: 35px 0;
    }

    #bigImpactAwards .bigImpactAwards-container {
        flex-direction: column;

        gap: 30px;
    }

    #bigImpactAwards .bigImpactAwards-left,
    #bigImpactAwards .bigImpactAwards-right {
        width: 100%;
    }

    #bigImpactAwards .bigImpactAwards-left h2 {
        font-size: 29px;

        text-align: center;
    }

    #bigImpactAwards .bigImpactAwards-subtitle {
        font-size: 15px;

        text-align: center;
    }

    #bigImpactAwards .bigImpactAwards-gallery {
        height: 270px;
    }

    #bigImpactAwards .bigImpactAwards-image {
        width: 190px;

        height: 190px;
    }

    #bigImpactAwards .bigImpactAwards-image:first-child {
        transform: translateX(25px);
    }

    #bigImpactAwards .bigImpactAwards-image:nth-child(2) {
        width: 220px;

        height: 240px;
    }

    #bigImpactAwards .bigImpactAwards-doctor-img {
        height: 330px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #bigImpactAwards .bigImpactAwards-left h2 {
        font-size: 25px;
    }

    #bigImpactAwards .bigImpactAwards-gallery {
        height: 220px;
    }

    #bigImpactAwards .bigImpactAwards-image {
        width: 150px;

        height: 160px;
    }

    #bigImpactAwards .bigImpactAwards-image:first-child {
        transform: translateX(20px);
    }

    #bigImpactAwards .bigImpactAwards-image:nth-child(2) {
        width: 175px;

        height: 200px;
    }

    #bigImpactAwards .bigImpactAwards-doctor-img {
        height: 300px;
    }
}


/* ==========================================
   BHASKAR HEALTH CARE AWARD
========================================== */

#bhaskarHealthAward {
    width: 100%;

    padding: 30px 0 10px;

    background-color: #10233D;

    background-image:
        linear-gradient(rgba(8, 28, 58, 0.88),
            rgba(8, 28, 58, 0.88)),
        url("../images/Indian-Icon-of-The-Year-2021_-img-1.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    font-family: "Roboto", Sans-serif;
}


/* ==========================================
   CONTAINER
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-container {
    width: calc(100% - 30px);

    max-width: 1140px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;
}


/* ==========================================
   LEFT
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-left {
    width: 68%;
}


/* ==========================================
   HEADING
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-left h2 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 700;
}


/* ==========================================
   SUBTITLE
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-subtitle {
    max-width: 760px;

    margin: 0 0 30px;

    color: #fff;

    font-size: 18px;

    line-height: 1.5;
}


/* ==========================================
   GALLERY
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-gallery {
    display: flex;

    align-items: center;

    gap: 38px;

    height: 245px;
}


/* ==========================================
   LEFT IMAGE
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-image {
    position: relative;

    display: block;

    width: 350px;

    height: 235px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.5);

    text-decoration: none;

    transition: all 0.4s ease;
}


/* ==========================================
   IMAGE
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}




/* ==========================================
   RIGHT
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-right {
    width: 32%;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* ==========================================
   RIGHT IMAGE WRAPPER
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-right-image {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

#bhaskarHealthAward .bhaskarHealthAward-right-image img {
    width: 100%;

    max-width: 360px;

    height: 360px;

    display: block;

    object-fit: contain;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #bhaskarHealthAward .bhaskarHealthAward-container {
        gap: 20px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-left {
        width: 65%;
    }

    #bhaskarHealthAward .bhaskarHealthAward-right {
        width: 35%;
    }

    #bhaskarHealthAward .bhaskarHealthAward-left h2 {
        font-size: 32px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-gallery {
        gap: 15px;

        height: 210px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-image {
        width: 50%;

        height: 200px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-right-image img {
        height: 300px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #bhaskarHealthAward {
        padding: 35px 0;
    }

    #bhaskarHealthAward .bhaskarHealthAward-container {
        flex-direction: column;

        gap: 30px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-left,
    #bhaskarHealthAward .bhaskarHealthAward-right {
        width: 100%;
    }

    #bhaskarHealthAward .bhaskarHealthAward-left h2 {
        font-size: 29px;

        text-align: center;
    }

    #bhaskarHealthAward .bhaskarHealthAward-subtitle {
        font-size: 15px;

        text-align: center;
    }

    #bhaskarHealthAward .bhaskarHealthAward-gallery {
        height: auto;

        gap: 10px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-image {
        width: 50%;

        height: 180px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-right-image img {
        height: 330px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #bhaskarHealthAward .bhaskarHealthAward-left h2 {
        font-size: 25px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-image {
        height: 145px;
    }

    #bhaskarHealthAward .bhaskarHealthAward-right-image img {
        height: 290px;
    }
}


/* ==========================================
   ABOUT HOSPITAL SECTION
========================================== */

#aboutHospital {
    width: 100%;

    padding: 45px 45px 0 55px;

    background: #fff;

    font-family: "Roboto", Sans-serif;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#aboutHospital .aboutHospital-container {
    width: calc(100% - 30px);

    max-width: 1140px;

    margin: 0 auto;

    display: flex;

    align-items: flex-start;

    gap: 45px;
}


/* ==========================================
   LEFT CONTENT
========================================== */

#aboutHospital .aboutHospital-content {
    width: 58%;
}


/* ==========================================
   HEADING
========================================== */

#aboutHospital .aboutHospital-content h2 {
    margin: 0 0 22px;

    color: #da2028;

    font-size: 38px;

    line-height: 1.35;

    font-weight: 700;
}


/* ==========================================
   PARAGRAPHS
========================================== */

#aboutHospital .aboutHospital-content p {
    margin: 0 0 25px;

    color: #111;

    font-size: 20px;

    line-height: 1.45;
}


/* INTRO
========================================== */

#aboutHospital .aboutHospital-content .aboutHospital-intro {
    font-size: 18px;

    line-height: 1.45;

    font-weight: 600;

    margin-bottom: 40px;
}


/* ==========================================
   RIGHT CONTENT
========================================== */

#aboutHospital .aboutHospital-right {
    width: 42%;
}


/* ==========================================
   HOSPITAL IMAGE
========================================== */

#aboutHospital .aboutHospital-image {
    width: 100%;
    overflow: hidden;
    height: 400px;
    margin-bottom: 18px;
}


#aboutHospital .aboutHospital-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform 0.4s ease;
}


#aboutHospital .aboutHospital-image:hover img {
    transform: scale(1.03);
}


/* ==========================================
   FEATURES GRID
========================================== */

#aboutHospital .aboutHospital-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 35px;

    row-gap: 18px;
}


/* ==========================================
   FEATURE
========================================== */

#aboutHospital .aboutHospital-feature {
    display: flex;

    align-items: center;

    gap: 12px;
}


/* ==========================================
   FEATURE ICON
========================================== */

#aboutHospital .aboutHospital-feature-icon {
    width: 34px;

    min-width: 34px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #da2028;

    font-size: 28px;
}


/* ==========================================
   FEATURE TITLE
========================================== */

#aboutHospital .aboutHospital-feature h3 {
    margin: 0;

    color: #111;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 600;
}


/* ==========================================
   MISSION
========================================== */

#aboutHospital .aboutHospital-mission {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-top: 35px;

    padding-bottom: 10px;
}


/* ==========================================
   MISSION ICON
========================================== */

#aboutHospital .aboutHospital-mission-icon {
    width: 48px;

    min-width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #da2028;

    font-size: 43px;
}


/* ==========================================
   MISSION CONTENT
========================================== */

#aboutHospital .aboutHospital-mission-content {
    flex: 1;
}


#aboutHospital .aboutHospital-mission-content h3 {
    margin: 0 0 7px;

    color: #111;

    font-size: 20px;

    font-weight: 700;
}


#aboutHospital .aboutHospital-mission-content p {
    margin: 0;

    color: #111;

    font-size: 20px;

    line-height: 1.45;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {


    #aboutHospital .aboutHospital-content {
        width: 55%;
    }

    #aboutHospital .aboutHospital-right {
        width: 45%;
    }

    #aboutHospital .aboutHospital-content h2 {
        font-size: 32px;
    }

    #aboutHospital .aboutHospital-content p,
    #aboutHospital .aboutHospital-mission-content p {
        font-size: 17px;
    }

    #aboutHospital .aboutHospital-features {
        column-gap: 15px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #aboutHospital {
        padding: 35px 0 45px;
    }

    #aboutHospital .aboutHospital-content,
    #aboutHospital .aboutHospital-right {
        width: 100%;
    }

    #aboutHospital .aboutHospital-content h2 {
        font-size: 29px;

        line-height: 1.3;
    }

    #aboutHospital .aboutHospital-content p,
    #aboutHospital .aboutHospital-mission-content p {
        font-size: 17px;
    }

    #aboutHospital .aboutHospital-content .aboutHospital-intro {
        font-size: 17px;

        margin-bottom: 30px;
    }

    #aboutHospital .aboutHospital-features {
        column-gap: 25px;
    }

    #aboutHospital .aboutHospital-feature h3 {
        font-size: 16px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #aboutHospital .aboutHospital-content h2 {
        font-size: 25px;
    }

    #aboutHospital .aboutHospital-features {
        grid-template-columns: 1fr 1fr;

        column-gap: 10px;

        row-gap: 18px;
    }

    #aboutHospital .aboutHospital-feature {
        gap: 7px;
    }

    #aboutHospital .aboutHospital-feature-icon {
        width: 30px;

        min-width: 30px;

        font-size: 23px;
    }

    #aboutHospital .aboutHospital-feature h3 {
        font-size: 14px;
    }


    #aboutHospital .aboutHospital-mission {
        gap: 12px;
    }

    #aboutHospital .aboutHospital-mission-icon {
        width: 40px;

        min-width: 40px;

        font-size: 36px;
    }
}


/* ==========================================
   HERO BANNER
========================================== */

#heroBanner {
    position: relative;
    background-color: #483E6E;
    overflow: hidden;
}

#heroBanner .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    background-color: transparent;

    --background-overlay: '';

    background-image:
        linear-gradient(97deg,
            #483E6E 16%,
            #FFFFFF00 100%),
        linear-gradient(0deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.35) 100%),
        url('../images/Best-Knee-Replacement-Hospital-in-jaipur-ginni-devi.webp');

    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    margin: 0 auto;
    padding: 70px 15px 55px;
    height: 85vh
}

#heroBanner .hero-content {
    max-width: 620px;
}

#heroBanner .hero-title {
    font-family: "Roboto", Sans-serif;
    font-size: 31px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 45px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

#heroBanner .hero-text {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
}

#heroBanner .hero-text b {
    color: #fff;
    font-weight: 700;
}

#heroBanner .hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

#heroBanner .btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #da2028;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    padding: 20px 40px;
    transition: background .25s ease;
}

#heroBanner .btn-enquire:hover {
    background: #a80d26;
}

#heroBanner .hero-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;

}

#heroBanner .hero-phone i {
    font-size: 20px;
    transform: rotate(0deg);
}

#heroBanner .hero-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .28);
    max-width: 680px;
    margin: 0 0 22px;
}

#heroBanner .hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

#heroBanner .rating-label {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

#heroBanner .rating-stars {
    display: flex;
    gap: 3px;
    color: #f5b301;
    font-size: 18px;
}

#heroBanner .rating-stars i.far {
    color: #cfc9df;
}

#heroBanner .rating-copy {
    color: #e9e7f2;
    font-size: 15px;
}

#heroBanner .rating-copy b {
    color: #fff;
    font-weight: 700;
}

/* ==========================================
   HERO BANNER RESPONSIVE
========================================== */

@media (max-width:991px) {
    #heroBanner .hero-bg-wrapper {
        background-image:
            linear-gradient(180deg,
                #483E6E 0%,
                #483E6E 55%,
                rgba(72, 62, 110, 0.85) 70%,
                rgba(72, 62, 110, 0.35) 88%,
                rgba(72, 62, 110, 0.15) 100%),
            url('assets/images/hero-ot.jpg');
        background-position: center, center 30%;
    }

    #heroBanner .hero-inner {
        padding: 50px 20px 40px;
    }

    #heroBanner .hero-title {
        font-size: 30px;
    }
}

@media (max-width:575px) {
    #heroBanner .hero-title {
        font-size: 24px;
    }

    #heroBanner .hero-text {
        font-size: 15px;
    }

    #heroBanner .hero-actions {
        gap: 16px;
    }

    #heroBanner .btn-enquire {
        padding: 14px 24px;
        font-size: 15px;
    }

    #heroBanner .hero-phone {
        font-size: 16px;
    }

    #heroBanner .hero-rating {
        gap: 8px 12px;
    }
}


/* ==========================================
   HOSPITAL FEATURES
========================================== */

#hospitalFeatures {
    width: 100%;
    position: relative;
    background: #da2028;
    font-family: "Roboto", Sans-serif;
    z-index: 10;

    display: flow-root;
    /* 👈 overflow:hidden ki jagah yeh use karo */

    margin-top: 0;
}

/* ==========================================
   CAROUSEL
========================================== */

#hospitalFeatures .hospitalFeatures-carousel-wrap {
    width: calc(100% - 30px);
    max-width: 1140px;

    margin: -90px auto 0;

    position: relative;
    z-index: 20;
}


/* ==========================================
   CAROUSEL SLIDE
========================================== */

#hospitalFeatures .hospitalFeatures-slide {
    display: block;

    width: 100%;
    height: 180px;

    overflow: hidden;

    background: #fff;

    text-decoration: none;

    cursor: pointer;
}


/* IMAGE */

#hospitalFeatures .hospitalFeatures-slide img {
    width: 100%;
    height: 180px;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}


/* IMAGE HOVER */

#hospitalFeatures .hospitalFeatures-slide:hover img {
    transform: scale(1.04);
}


/* ==========================================
   RED CONTENT
========================================== */

#hospitalFeatures .hospitalFeatures-content {
    position: relative;

    margin-top: -1px;

    background: #da2028;

    padding: 35px 0 50px;

    z-index: 5;
}


/* ==========================================
   CONTAINER
========================================== */

#hospitalFeatures .hospitalFeatures-container {
    width: calc(100% - 30px);

    max-width: 1140px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;
}


/* ==========================================
   ITEM
========================================== */

#hospitalFeatures .hospitalFeatures-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    color: #fff;
}


/* ==========================================
   ICON
========================================== */

#hospitalFeatures .hospitalFeatures-icon {
    width: 50px;
    min-width: 50px;

    color: #fff;

    font-size: 42px;

    line-height: 1;
}


/* ==========================================
   TEXT
========================================== */

#hospitalFeatures .hospitalFeatures-text {
    flex: 1;
}


/* TITLE */

#hospitalFeatures .hospitalFeatures-text h3 {
    margin: 0 0 15px;

    color: #fff;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 700;
}


/* DESCRIPTION */

#hospitalFeatures .hospitalFeatures-text p {
    margin: 0;

    color: #fff;

    font-size: 20px;

    line-height: 1.5;
}


/* ==========================================
   OWL
========================================== */

#hospitalFeatures .owl-dots,
#hospitalFeatures .owl-nav {
    display: none;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #hospitalFeatures .hospitalFeatures-carousel-wrap {
        margin-top: -65px;
    }

    #hospitalFeatures .hospitalFeatures-slide,
    #hospitalFeatures .hospitalFeatures-slide img {
        height: 165px;
    }

    #hospitalFeatures .hospitalFeatures-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #hospitalFeatures .hospitalFeatures-carousel-wrap {
        width: calc(100% - 20px);

        margin-top: -45px;
    }

    #hospitalFeatures .hospitalFeatures-slide,
    #hospitalFeatures .hospitalFeatures-slide img {
        height: 180px;
    }

    #hospitalFeatures .hospitalFeatures-content {
        padding: 30px 0 40px;
    }

    #hospitalFeatures .hospitalFeatures-container {
        grid-template-columns: 1fr;

        gap: 28px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #hospitalFeatures .hospitalFeatures-carousel-wrap {
        margin-top: -35px;
    }

    #hospitalFeatures .hospitalFeatures-slide,
    #hospitalFeatures .hospitalFeatures-slide img {
        height: 160px;
    }

}

/* ================================
   Contact Info Section
================================ */

#contact-info {
    background: linear-gradient(180deg, #161E26 52%, #1B252F 1%);
    padding: 30px 0px 20px;
    color: #ffffff;
}

#contact-info .contact-info-item {
    text-align: center;
    padding: 0 15px;
}

#contact-info .contact-info-icon {
    position: relative;
    width: 55px;
    height: 55px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-info .contact-info-icon i {
    font-size: 45px;
    color: #da2028;
    font-weight: 400;
}

#contact-info .contact-info-icon span {
    position: absolute;
    right: -3px;
    bottom: 0;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

#contact-info .contact-info-item h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.3px;
}

#contact-info .contact-info-item p {
    margin: 0;
    color: #d8dce0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

#contact-info .contact-info-item a {
    color: #d8dce0;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

#contact-info .contact-info-item a:hover {
    color: #da2028;
}


/* ================================
   GET IN TOUCH FORM
================================ */

#get-in-touch-form {
    width: 100%;
    background: #FFEDED;
    padding: 70px 0;
    display: flex;
    align-items: center;
}

#get-in-touch-form .container-fluid {
    width: 100%;
}

#get-in-touch-form .get-in-touch-form-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

#get-in-touch-form .section-title {
    margin-bottom: 65px;
}

#get-in-touch-form .section-title h2 {
    margin: 0;
    color: #da2028;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

#get-in-touch-form .form-group {
    width: 100%;
}

#get-in-touch-form .form-control,
#get-in-touch-form .form-select {
    width: 100%;
    height: 52px;
    border: 1px solid #d2d2d2;
    border-radius: 0;
    background: #ffffff;
    color: #555;
    font-size: 15px;
    padding: 12px 14px;
    box-shadow: none;
}

#get-in-touch-form .form-control:focus,
#get-in-touch-form .form-select:focus {
    border-color: #da2028;
    box-shadow: none;
}

#get-in-touch-form textarea.form-control {
    height: 150px;
    resize: vertical;
}

#get-in-touch-form .form-control::placeholder {
    color: #68717a;
    opacity: 1;
}

#get-in-touch-form .terms-check {
    margin-top: 15px;
    padding-left: 28px;
}

#get-in-touch-form .terms-check .form-check-input {
    width: 17px;
    height: 17px;
    margin-left: -28px;
    margin-top: 3px;
    border-radius: 2px;
}

#get-in-touch-form .terms-check .form-check-label {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

#get-in-touch-form .terms-check a {
    color: #da2028;
    text-decoration: none;
}

#get-in-touch-form .terms-check a:hover {
    text-decoration: underline;
}

#get-in-touch-form .submit-btn {
    min-width: 190px;
    height: 50px;
    margin-top: 25px;
    border: 0;
    border-radius: 0;
    background: #075ddd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 0 35px;
    cursor: pointer;
    transition: 0.3s ease;
}

#get-in-touch-form .submit-btn:hover {
    background: #da2028;
}


#get-in-touch-form .select-icon {
    position: relative;
}

#get-in-touch-form .select-icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a92d19;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

#get-in-touch-form .select-icon .form-select {
    padding-right: 45px;
}

/* ================================
   Page Breadcrumb
================================ */

#page-breadcrumb {
    width: 100%;
    background: #a92d19;
    overflow: hidden;
    padding: 0px 70px
}

#page-breadcrumb .breadcrumb-wrapper {
    position: relative;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

/* Image Div */
#page-breadcrumb .breadcrumb-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#page-breadcrumb .breadcrumb-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(97deg,
            #a92d19 20%,
            #FFFFFF00 100%);
}

#page-breadcrumb .breadcrumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Content Div */
#page-breadcrumb .breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
    display: flex;
    align-items: center;
}

#page-breadcrumb .breadcrumb-text {
    padding: 20px 0;
}

#page-breadcrumb .breadcrumb-text h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

#page-breadcrumb .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

#page-breadcrumb .breadcrumb-list a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}

#page-breadcrumb .breadcrumb-list a:hover {
    color: #000;
    text-decoration: none;
}

#page-breadcrumb .breadcrumb-list span:last-child {
    font-weight: 700;
}


/* =================================
   Vision Mission Section
================================= */

#vision-mission {
    width: 100%;
    padding: 30px 0;
    background: #fff;
    font-family: "Roboto", Sans-serif;
    overflow: hidden;
}

#vision-mission .container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}

#vision-mission .vision-mission-content {
    width: 100%;
    margin-bottom: 45px;
}

#vision-mission .vision-mission-content p {
    margin: 0 0 25px;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
}

#vision-mission .vision-mission-content h2 {
    font-family: "Roboto", Sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 52px;
    color: #da2028;
}

#vision-mission .vision-mission-content p:last-child {
    margin-bottom: 0;
}

#vision-mission .vision-mission-content strong {
    color: #171717;
    font-weight: 700;
}


/* Vision Mission Row */

#vision-mission .vision-mission-row {
    row-gap: 35px;
}

#vision-mission .vision-mission-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}

#vision-mission .vision-mission-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#vision-mission .vision-mission-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

#vision-mission .vision-mission-text {
    flex: 1;
}

#vision-mission .vision-mission-text h3 {
    margin: 0 0 5px;
    color: #000;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

#vision-mission .vision-mission-text p {
    margin: 0 0 25px;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
    ;
}


/* =================================
   Hospital Services
================================= */

#hospital-services {
    width: 100%;
    background: #1D1D1D;
    padding: 40px 0 45px;
}

#hospital-services .section-heading {
    margin-bottom: 30px;
}

#hospital-services .section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

#hospital-services .service-item {
    text-align: center;
    padding: 0 10px;
}

#hospital-services .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hospital-services .service-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

#hospital-services .service-item h3 {
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 700;
}



/* =================================
   Accreditation Section
================================= */

#accreditation-section {
    width: 100%;
    background: #ffffff;
    padding: 25px 0 35px;
}

#accreditation-section .accreditation-top {
    min-height: 210px;
}

#accreditation-section .accreditation-content {
    padding-right: 30px;
}

#accreditation-section .accreditation-content h2 {
    margin: 0 0 18px;
    color: #da2028;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

#accreditation-section .accreditation-content p {
    margin: 0 0 25px;
    color: #111;
    font-size: 18px;
    line-height: 1.45;
}

#accreditation-section .accreditation-image {
    text-align: center;
}

#accreditation-section .accreditation-image img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    display: inline-block;
}


/* Divider */

#accreditation-section .accreditation-divider {
    width: 100%;
    height: 1px;
    background: #dddddd;
    margin: 5px 0 20px;
}


/* Counters */

#accreditation-section .accreditation-counter-row {
    row-gap: 25px;
}

#accreditation-section .counter-box {
    text-align: center;
    padding: 0 10px;
}

#accreditation-section .counter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#accreditation-section .counter-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#accreditation-section .counter-number {
    color: #000000;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 7px;
}

#accreditation-section .counter-box p {
    margin: 0 0 25px;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
}



/* =========================================
   WHY CHOOSE US
========================================= */

#why-choose-us {
    width: 100%;
    background: #f7f7f7;
    padding: 45px 0;
}

#why-choose-us .why-title {
    margin-bottom: 20px;
}

#why-choose-us .why-title h2 {
    margin: 0;
    color: #da2028;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px
}

#why-choose-us .why-title p {
    text-align: center;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.3px;
    word-spacing: 0px;
}


/* Card */

#why-choose-us .why-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 5px;
    padding: 18px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}


/* Main Content */

#why-choose-us .why-card-main {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#why-choose-us .why-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
}

#why-choose-us .why-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

#why-choose-us .why-content {
    flex: 1;
}

#why-choose-us .why-content h3 {
    margin: 0 0 14px;
    color: #000;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

#why-choose-us .why-content p {
    margin: 0 0 25px;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
}


/* =========================================
   Bottom Right Watermark
========================================= */

#why-choose-us .why-watermark {
    position: absolute;
    z-index: 1;
    right: -5px;
    bottom: 0px;

    width: 105px;
    height: 105px;

    object-fit: contain;

    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity 0.45s ease,
        transform 0.55s ease;
}


/* Hover */

#why-choose-us .why-card:hover .why-watermark {
    opacity: 0.12;
    transform: translateY(0);
}


#video-1 {
    width: 100%;
    padding: 35px 0 45px;
    background: #ffffff;
}

#video-1 .video-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

#video-1 .video-section-head h2 {
    position: relative;
    margin: 0;
    padding-left: 14px;
    color: #da2028;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

#video-1 .video-section-head h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #da2028;
}

#video-1 .video-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 52px;
    padding: 0 25px;
    border-radius: 5px;
    background: #da2028;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

#video-1 .video-all-btn:hover {
    background: #7d1d0d;
}

#video-1 .video-box {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #111111;
}

#video-1 .video-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* Mobile */

@media (max-width: 767px) {

    #video-1 .video-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
    }
}





#video-2 {
    width: 100%;
    padding: 35px 0 45px;
    background: #FFEDED;
}

#video-2 .video-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

#video-2 .video-section-head h2 {
    position: relative;
    margin: 0;
    padding-left: 14px;
    color: #da2028;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

#video-2 .video-section-head h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #da2028;
}

#video-2 .video-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 52px;
    padding: 0 25px;
    border-radius: 5px;
    background: #da2028;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

#video-2 .video-all-btn:hover {
    background: #7d1d0d;
}

#video-2 .video-box {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #111111;
}

#video-2 .video-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* Mobile */

@media (max-width: 767px) {

    #video-2 .video-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
    }
}




/* =========================================
   AWARDS / HOSPITAL FEATURES SECTION
========================================= */

#hospital-features {
    width: 100%;
    padding: 40px 0 0px;
    background: #ffffff;
}

#hospital-features .container {
    max-width: 1140px;
}


/* =========================================
   HEADING
========================================= */

#hospital-features .awards-heading {
    width: 100%;
    margin-bottom: 0px;
}

#hospital-features .awards-heading h2 {
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    font-family: inherit;
}

#hospital-features .awards-heading p {
    margin: 5px 0 15px;
    padding: 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

#hospital-features .awards-heading span {
    display: block;
    width: 230px;
    height: 4px;
    margin-top: 14px;
    background: #eb0000;
}


/* =========================================
   GALLERY
========================================= */

#hospital-features .row {
    margin-top: 0;
}

#hospital-features .hospitalFeatures-slide {
    position: relative;
    display: block;
    width: 100%;
    height: 315px;
    overflow: hidden;
    background: #eeeeee;
    text-decoration: none;
}

#hospital-features .hospitalFeatures-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* =========================================
   BLACK HOVER OVERLAY
========================================= */

#hospital-features .hospitalFeatures-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

#hospital-features .hospitalFeatures-slide:hover .hospitalFeatures-overlay {
    opacity: 1;
}

#hospital-features .hospitalFeatures-slide:hover img {
    transform: scale(1.04);
}



/* =========================================
   GOVERNMENT EMPANELLED ORGANIZATIONS
========================================= */

#government-empanelled,
.cashless-section {
    width: 100%;
    background: #ffffff;
    padding: 38px 0 30px;
}

#government-empanelled .government-heading,
.cashless-section .government-heading {
    margin-bottom: 38px;
}

#government-empanelled .government-heading h2,
.cashless-section .government-heading h2 {
    font-family: "Roboto", Sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 52px;
    color: #da2028;
}


/* Organization Item */

#government-empanelled .government-item,
.cashless-section .government-item {
    width: 100%;
    text-align: center;
    min-height: 180px;
    padding: 15px 10px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.cashless-section .government-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
    transform: translateY(-3px);
}


/* Logo */

#government-empanelled .government-logo,
.cashless-section .government-logo {
    width: 100%;
    height: 90px;
    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#government-empanelled .government-logo img,
.cashless-section .government-logo img {
    max-width: 150px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}


/* Text */

#government-empanelled .government-item h3,
.cashless-section .government-item h3 {
    color: #1e1e1e;
    font-family: "Roboto", Sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}


/* Divider */

#government-empanelled .government-divider,
.cashless-section .government-divider {
    width: 100%;
    height: 1px;
    background: #bdbdbd;
    margin-top: 35px;
}



/* =========================================
   LATEST BLOGS
========================================= */

#latest-blogs {
    width: 100%;
    padding: 55px 0 60px;
    background: #f7f7f7;
}

#latest-blogs .blog-heading {
    margin-bottom: 25px;
}

#latest-blogs .blog-heading h2 {
    margin: 0;
    color: #da2028;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

#latest-blogs .blog-heading span {
    display: block;
    width: 230px;
    height: 4px;
    margin-top: 12px;
    background: #da2028;
}


/* =========================================
   BLOG CARD
========================================= */

#latest-blogs .blog-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

#latest-blogs .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* =========================================
   IMAGE
========================================= */

#latest-blogs .blog-image {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

#latest-blogs .blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#latest-blogs .blog-card:hover .blog-image img {
    transform: scale(1.05);
}


/* =========================================
   CONTENT
========================================= */

#latest-blogs .blog-content {
    padding: 18px 28px 20px;
}

#latest-blogs .blog-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}

#latest-blogs .blog-content h3 a {
    color: #111111;
    text-decoration: none;
    transition: 0.3s ease;
}

#latest-blogs .blog-content h3 a:hover {
    color: #da2028;
}

#latest-blogs .blog-content p {
    margin: 0;
    color: #222222;
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================
   META
========================================= */

#latest-blogs .blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-top: 1px solid #e5e5e5;
    color: #222222;
    font-size: 13px;
    line-height: 1.4;
}

#latest-blogs .blog-meta i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #da2028;
    flex-shrink: 0;
}

/* =========================================
   BLOG DETAIL PAGE
========================================= */

#blog-detail-page {
    width: 100%;
    background: #ffffff;
    color: #111111;
    padding: 40px 0
}


/* =========================================
   MAIN CONTENT
========================================= */

/* #blog-detail-page .blog-detail-content {
    padding: 20px 0 50px;
} */


/* Featured Image */

#blog-detail-page .blog-featured-image {
    width: 100%;
    margin-bottom: 10px;
}

#blog-detail-page .blog-featured-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================
   META
========================================= */

#blog-detail-page .blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;

    color: #333333;
    font-size: 12px;
}

#blog-detail-page .blog-detail-meta span:first-child {
    color: #da2028;
}


/* =========================================
   BLOG TEXT
========================================= */

#blog-detail-page .blog-detail-text {
    margin: 0 0 25px;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
}

#blog-detail-page .blog-detail-text p {
    margin: 0 0 14px;
}

#blog-detail-page .blog-detail-text h2 {
    margin: 22px 0 10px;
    color: #111111;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

#blog-detail-page .blog-detail-text h3 {
    margin: 18px 0 8px;
    color: #111111;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
}

#blog-detail-page .blog-detail-text h4 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 25px;
    font-weight: 700;
}

#blog-detail-page .blog-detail-text ul {
    margin: 5px 0 15px;
    padding-left: 20px;
}

#blog-detail-page .blog-detail-text li {
    margin-bottom: 3px;
}


/* =========================================
   PREVIOUS / NEXT
========================================= */

#blog-detail-page .blog-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 35px;
    padding: 20px 0;

    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

#blog-detail-page .blog-prev,
#blog-detail-page .blog-next {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 48%;

    color: #da2028;
    text-decoration: none;
}

#blog-detail-page .blog-next {
    justify-content: flex-end;
    text-align: right;
}

#blog-detail-page .nav-arrow {
    color: #cccccc;
    font-size: 25px;
    line-height: 1;
}

#blog-detail-page .blog-navigation small {
    display: block;
    margin-bottom: 3px;
    color: #111;
    font-size: 18px;
}

#blog-detail-page .blog-navigation strong {
    display: block;
    color: #da2028;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}


/* =========================================
   AUTHOR
========================================= */

#blog-detail-page .blog-author {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 25px 0;

    border-bottom: 1px solid #eeeeee;
}

#blog-detail-page .author-image {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #cccccc;
    color: #ffffff;

    font-size: 32px;
}

#blog-detail-page .blog-author strong {
    color: #da2028;
    font-size: 20px;
}


/* =========================================
   COMMENTS
========================================= */

#blog-detail-page .blog-comments {
    padding-top: 25px;
}

#blog-detail-page .blog-comments h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 20px;
    font-weight: 600;
}

#blog-detail-page .comment-note {
    margin: 11px 0 20px;
    color: #111;
    font-size: 20px;
}

#blog-detail-page .comment-field {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#blog-detail-page .comment-field label {
    width: 110px;
    flex-shrink: 0;
    color: #111;
    font-size: 20px;
}

#blog-detail-page .comment-field input,
#blog-detail-page .comment-field textarea {
    width: 220px;
    height: 25px;
    padding: 4px 7px;

    border: 1px solid #cccccc;
    outline: none;

    font-size: 11px;
}

#blog-detail-page .comment-field textarea {
    height: 80px;
    resize: vertical;
}

#blog-detail-page .comment-field input:focus,
#blog-detail-page .comment-field textarea:focus {
    border-color: #da2028;
}

#blog-detail-page .comment-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;

    margin: 15px 0;
}

#blog-detail-page .comment-checkbox input {
    margin-top: 2px;
}

#blog-detail-page .comment-checkbox label {
    color: #111;
    font-size: 20px;
    line-height: 1.4;
}

#blog-detail-page .blog-comments button {
    padding: 8px 18px;

    border: 0;
    background: #111111;
    color: #ffffff;

    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

#blog-detail-page .blog-comments button:hover {
    background: #da2028;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {



    #blog-detail-page .blog-prev,
    #blog-detail-page .blog-next {
        width: 50%;
    }

    #blog-detail-page .comment-field {
        display: block;
    }

    #blog-detail-page .comment-field label {
        display: block;
        width: 100%;
        margin-bottom: 4px;
    }

    #blog-detail-page .comment-field input,
    #blog-detail-page .comment-field textarea {
        width: 100%;
    }
}



/* ==========================================
   JOINT REPLACEMENT HERO BANNER
========================================== */

#jointHeroBanner {

    position: relative;

    background-color: #C6F4FF;

    overflow: hidden;

}


/* ==========================================
   BACKGROUND IMAGE WRAPPER
========================================== */

#jointHeroBanner .joint-bg-wrapper {

    position: absolute;

    top: 0;
    right: 0;

    width: 65%;
    height: 100%;

    overflow: hidden;

    z-index: 0;

}

#jointHeroBanner .joint-bg-wrapper img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

}


/* Gradient over image */

#jointHeroBanner .joint-bg-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(97deg,
            #C6F4FF 30%,
            #FFFFFF00 100%);

}


/* ==========================================
   INNER
========================================== */

#jointHeroBanner .joint-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    background-color: transparent;

    --background-overlay: '';

    background-image: linear-gradient(97deg, #C6F4FF 30%, #FFFFFF00 100%),
        url('../images/gallery21.webp');

    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    margin: 0 auto;
    padding: 70px 15px 55px;
    height: 85vh
}



/* ==========================================
   CONTENT
========================================== */

#jointHeroBanner .joint-hero-content {

    max-width: 620px;

}


/* ==========================================
   TITLE
========================================== */

#jointHeroBanner .joint-hero-title {

    font-family: "Roboto", Sans-serif;

    font-size: 31px;

    font-weight: 700;

    line-height: 1.45;

    color: #da2028;

    margin-bottom: 18px;

}


/* ==========================================
   TEXT
========================================== */

#jointHeroBanner .joint-hero-text {

    font-family: "Roboto", Sans-serif;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.1;

    color: #111;

    margin-bottom: 18px;

}

#jointHeroBanner .joint-hero-text b {

    color: #111;

    font-weight: 700;

}


/* ==========================================
   FEATURES
========================================== */

#jointHeroBanner .joint-features {

    display: flex;

    gap: 5px;

    margin-bottom: 25px;

}

#jointHeroBanner .joint-feature-box {

    width: 138px;

    height: 92px;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.20);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

#jointHeroBanner .joint-feature-box i {

    font-size: 34px;

    color: #e32828;

    margin-bottom: 8px;

}

#jointHeroBanner .joint-feature-box span {

    font-family: "Roboto", Sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #111;

}


/* ==========================================
   ACTIONS
========================================== */

#jointHeroBanner .joint-hero-actions {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-bottom: 28px;

}


/* Button */

#jointHeroBanner .joint-btn-enquire {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 58px;

    padding: 0 30px;

    background: #da2028;

    color: #fff;

    font-family: "Roboto", Sans-serif;

    font-size: 17px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 5px;

    transition: background .25s ease;

}

#jointHeroBanner .joint-btn-enquire:hover {

    background: #8d210e;

    color: #fff;

}


/* Phone */

#jointHeroBanner .joint-phone-list {

    display: flex;

    flex-direction: column;

    gap: 7px;

}

#jointHeroBanner .joint-phone-list a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #111;

    text-decoration: none;

    font-family: "Roboto", Sans-serif;

    font-size: 18px;

    font-weight: 500;

}

#jointHeroBanner .joint-phone-list i {

    font-size: 21px;

    color: #e32828;

}


/* ==========================================
   DIVIDER
========================================== */

#jointHeroBanner .joint-divider {

    border: 0;

    border-top: 1px solid rgba(0, 0, 0, .18);

    width: 562px;

    max-width: 100%;

    margin: 0 0 20px;

}


/* ==========================================
   RATING
========================================== */

#jointHeroBanner .joint-rating {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}

#jointHeroBanner .joint-rating-label {

    color: #111;

    font-weight: 600;

    font-size: 15px;

}

#jointHeroBanner .joint-rating-stars {

    display: flex;

    gap: 3px;

    color: #f5a623;

    font-size: 18px;

}

#jointHeroBanner .joint-rating-stars i.fa-regular {

    color: #cfcfcf;

}

#jointHeroBanner .joint-rating-copy {

    color: #111;

    font-size: 15px;

}

#jointHeroBanner .joint-rating-copy b {

    color: #111;

    font-weight: 700;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #jointHeroBanner .joint-bg-wrapper {

        width: 62%;

    }

    #jointHeroBanner .joint-hero-inner {

        padding-left: 30px;

    }

    #jointHeroBanner .joint-hero-title {

        font-size: 28px;

    }

    #jointHeroBanner .joint-feature-box {

        width: 125px;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #jointHeroBanner {

        min-height: auto;

    }

    #jointHeroBanner .joint-bg-wrapper {

        width: 100%;

        height: 100%;

    }

    #jointHeroBanner .joint-bg-wrapper::after {

        background:
            linear-gradient(180deg,
                #C6F4FF 0%,
                rgba(198, 244, 255, .94) 55%,
                rgba(198, 244, 255, .82) 100%);

    }

    #jointHeroBanner .joint-hero-inner {

        min-height: auto;

        padding: 35px 20px;

    }

    #jointHeroBanner .joint-hero-title {

        font-size: 25px;

        line-height: 1.3;

    }

    #jointHeroBanner .joint-hero-text {

        font-size: 15px;

        line-height: 1.3;

    }

    #jointHeroBanner .joint-features {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

    }

    #jointHeroBanner .joint-feature-box {

        width: 100%;

        height: 85px;

    }

    #jointHeroBanner .joint-hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

    }

}

/* ==========================================
   DOCTOR DETAILS
========================================== */

#doctorDetails {
    padding: 35px 0;
    background: #fff;
}

#doctorDetails .doctor-info-row {
    margin-bottom: 35px;
}

#doctorDetails .doctor-section-title {
    margin: 0 0 25px;
    color: #da2028;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

#doctorDetails .doctor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#doctorDetails .doctor-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #111;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
}


/* ==========================================
   WORK EXPERIENCE ICON
   Image used in ::before
========================================== */

#doctorDetails .doctor-list li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 2px;

    width: 22px;
    height: 22px;

    background-image: url("../images/medical-symbol.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* ==========================================
   EDUCATION ICON
========================================== */

#doctorDetails .doctor-education li::before {

    background-image:
        url("../images/cap.png");

}


/* ==========================================
   TREATMENT ICON
========================================== */

#doctorDetails .doctor-treatment li::before {

    background-image:
        url("../images/stethoscope.png");

}


/* ==========================================
   AWARDS ICON
========================================== */

#doctorDetails .doctor-awards li::before {

    background-image:
        url("../images/trophy.png");

}


/* ==========================================
   SECOND COLUMN TITLE
========================================== */

#doctorDetails .doctor-title-space {
    visibility: hidden;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #doctorDetails .doctor-list li {
        font-size: 15px;
        padding-left: 32px;
        margin-bottom: 13px;
    }

    #doctorDetails .doctor-list li::before {
        width: 20px;
        height: 20px;
    }

    #doctorDetails .doctor-title-space {
        display: none;
    }

}

/* ==========================================
   DOCTOR INTRO SECTION
========================================== */

#doctorIntro {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}


/* Doctor Image */

#doctorIntro .doctor-image-box {
    /* width: 325px;*/
    height: 437px;
    margin: 0 auto;

    overflow: hidden;
    width: 100%;
    border-radius: 5% 5% 5% 5%;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

#doctorIntro .doctor-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}



#doctorIntro .doctor-intro-content h1 {
    margin: 0;

    color: #da2028;
    font-family: "Roboto", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 50px;
}

#doctorIntro .doctor-intro-content h3 {
    margin: 0;

    color: #111;

    font-family: "Roboto", sans-serif;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 600;
}


/* Small Red Dotted Line */

#doctorIntro .doctor-heading-line {
    width: 397px;
    max-width: 100%;

    margin: 10px 0 35px;

    border-top: 1px dashed #e32828;
}


/* Description */

#doctorIntro .doctor-intro-content p {
    max-width: 750px;

    margin: 0 0 55px;

    color: #111;

    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
}

#doctorIntro .doctor-intro-content p strong {
    font-weight: 700;
}


/* Contact Area */

#doctorIntro .doctor-contact-area {
    display: flex;
    align-items: center;
    gap: 95px;
}


/* Enquire Button */

#doctorIntro .doctor-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 149px;
    height: 47px;

    background: #da2028;
    color: #fff;

    border-radius: 4px;

    text-decoration: none;

    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 700;

    transition: .25s ease;
}

#doctorIntro .doctor-enquiry-btn:hover {
    background: #8d210e;
    color: #fff;
}


/* Phone */

#doctorIntro .doctor-phone-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#doctorIntro .doctor-phone-list a {
    position: relative;

    display: flex;
    align-items: center;

    padding-left: 43px;

    min-height: 25px;

    color: #111;

    text-decoration: none;

    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
}


/* Phone Image Icon */

#doctorIntro .doctor-phone-list a::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 26px;
    height: 26px;

    transform: translateY(-50%);

    background-image: url("../images/phone-call.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    #doctorIntro .doctor-contact-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}


/* ==========================================
   JOINT CONDITIONS SECTION
========================================== */

#jointConditions {
    padding: 30px 0;

    background: #fff;
}



/* ==========================================
   VIDEO
========================================== */

#jointConditions .jointConditions-video {
    width: 100%;

    aspect-ratio: 1;

    overflow: hidden;

    background: #000;
}

#jointConditions .jointConditions-video iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ==========================================
   CONTENT
========================================== */

#jointConditions .jointConditions-content {
    padding-left: 0px;
}

#jointConditions .jointConditions-content h2 {

    margin: -5px 0 25px;

    color: #da2028;
    font-family: "Roboto", Sans-serif;
    font-size: 29px;
    font-weight: 600;

    text-align: center;
}


/* Paragraph */

#jointConditions .jointConditions-content p {

    margin: 0 0 24px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;

    line-height: 1.45;

    font-weight: 400;
}

#jointConditions .jointConditions-content strong {
    font-weight: 700;
}


/* ==========================================
   LIST
========================================== */

#jointConditions .jointConditions-content ul {

    margin: 0 0 10px;

    padding-left: 32px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;

    line-height: 1.5;
}

#jointConditions .jointConditions-content li {
    margin-bottom: 2px;
}


/* ==========================================
   I-ALIGN TECHNIQUE
========================================== */

#iAlignTechnique {
    position: relative;
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}

#iAlignTechnique::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../images/bg-1.webp");
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: left center;

    opacity: 0.10;
    /* yahan opacity control karo */
    z-index: 0;
}

#iAlignTechnique .container {
    position: relative;
    z-index: 1;
}

#iAlignTechnique .iAlignTechnique-content {
    padding: 0 0 0 20px;
}

#iAlignTechnique .iAlignTechnique-content h2 {
    margin: 0 0 12px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 600;
}

#iAlignTechnique .iAlignTechnique-content h2 span {
    color: red;
    font-family: "Cookie", cursive;
    font-size: -webkit-xxx-large;
    font-style: italic;
}

#iAlignTechnique .iAlignTechnique-subtitle {
    margin: 0;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 19px;
    line-height: 1.4;
}

#iAlignTechnique .iAlignTechnique-line {
    width: 100%;
    max-width: 490px;

    margin: 18px 0 20px;

    border-top: 1px dashed #da2028;
}

#iAlignTechnique .i-align-image {
    width: 100%;
    text-align: center;
}

#iAlignTechnique .i-align-image img {
    width: 100%;
    /* max-width: 500px; */
    display: block;
    margin: 0 auto;
}

#iAlignTechnique .iAlignTechnique-list {
    list-style: none;

    margin: 0;
    padding: 0;
}

#iAlignTechnique .iAlignTechnique-list li {
    position: relative;

    padding-left: 25px;

    margin-bottom: 12px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 17px;
    line-height: 1.45;
}

#iAlignTechnique .iAlignTechnique-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 16px;
    height: 16px;

    background-image: url("../images/check.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#iAlignTechnique .iAlignTechnique-list li strong {
    font-weight: 700;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #iAlignTechnique {
        background-size: 48% auto;
    }

    #iAlignTechnique .iAlignTechnique-content {
        padding-left: 10px;
    }

    #iAlignTechnique .iAlignTechnique-content h2 {
        font-size: 29px;
    }

    #iAlignTechnique .iAlignTechnique-subtitle {
        font-size: 17px;
    }

    #iAlignTechnique .iAlignTechnique-list li {
        font-size: 15px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #iAlignTechnique {
        padding: 30px 0;

        background-size: 100% auto;

        background-position: center top;

        background-color: #fff;
    }

    #iAlignTechnique .row>.col-lg-6:first-child {
        min-height: 300px;
    }

    #iAlignTechnique .iAlignTechnique-content {
        padding: 25px 0 0;
    }

    #iAlignTechnique .iAlignTechnique-content h2 {
        font-size: 27px;
    }

    #iAlignTechnique .iAlignTechnique-subtitle {
        font-size: 16px;
    }

    #iAlignTechnique .iAlignTechnique-list li {
        font-size: 15px;
        line-height: 1.5;

        padding-left: 24px;
        margin-bottom: 14px;
    }

}


#iAlignTechnique p {
    margin: 0 0 25px;
    color: #111;
    font-size: 20px;
    line-height: 1.45;
}


/* ==========================================
   COUNTER SECTION
========================================== */

#whyChooseGDMHcounter {
    background: #333333;
    padding: 32px 0;
    overflow: hidden;
}

#whyChooseGDMHcounter .container {
    max-width: 1150px;
}

#whyChooseGDMHcounter .row {
    margin: 0;
}


/* ==========================================
   COUNTER BOX
========================================== */

#whyChooseGDMHcounter .whyChooseGDMHcounter-counter {
    display: flex;
    align-items: center;

    min-height: 105px;

    gap: 28px;
}


/* ==========================================
   ICON
========================================== */

#whyChooseGDMHcounter .whyChooseGDMHcounter-icon {
    width: 62px;
    min-width: 62px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#whyChooseGDMHcounter .whyChooseGDMHcounter-icon img {
    width: 60px;
    height: 60px;

    object-fit: contain;
    display: block;
}


/* ==========================================
   CONTENT
========================================== */

#whyChooseGDMHcounter .whyChooseGDMHcounter-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ==========================================
   NUMBER
========================================== */

#whyChooseGDMHcounter .whyChooseGDMHcounter-number {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 40px;
    line-height: 1;

    font-weight: 700;

    margin-bottom: 7px;
}


/* ==========================================
   TITLE
========================================== */

#whyChooseGDMHcounter .whyChooseGDMHcounter-title {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    line-height: 1.2;

    font-weight: 600;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #whyChooseGDMHcounter {
        padding: 28px 0;
    }

    #whyChooseGDMHcounter .whyChooseGDMHcounter-counter {
        gap: 18px;
    }

    #whyChooseGDMHcounter .whyChooseGDMHcounter-icon {
        width: 52px;
        min-width: 52px;
    }

    #whyChooseGDMHcounter .whyChooseGDMHcounter-icon img {
        width: 52px;
        height: 52px;
    }

    #whyChooseGDMHcounter .whyChooseGDMHcounter-number {
        font-size: 34px;
    }

    #whyChooseGDMHcounter .whyChooseGDMHcounter-title {
        font-size: 15px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #whyChooseGDMHcounter .whyChooseGDMHcounter-counter {
        min-height: 85px;

        justify-content: flex-start;

        gap: 20px;

        margin-bottom: 15px;
    }

    #whyChooseGDMHcounter .col-12:last-child .whyChooseGDMHcounter-counter {
        margin-bottom: 0;
    }

    #whyChooseGDMHcounter .whyChooseGDMHcounter-icon {
        width: 55px;
        min-width: 55px;
    }

    #whyChooseGDMHcounter .whyChooseGDMHcounter-icon img {
        width: 50px;
        height: 50px;
    }

}


/* ==========================================
   HOSPITAL SUCCESS STORIES
========================================== */

#hospitalSuccessStories-1 {
    width: 100%;
    background: #da2028;
    padding: 45px 0 25px;
    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#hospitalSuccessStories-1 .hospitalSuccessStories-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   TITLE
========================================== */

#hospitalSuccessStories-1 .hospitalSuccessStories-title {
    margin: 0;
    padding: 0 0 27px;

    text-align: center;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
}


/* ==========================================
   VIDEO GRID
========================================== */

#hospitalSuccessStories-1 .hospitalSuccessStories-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;
}


/* ==========================================
   VIDEO ITEM
========================================== */

#hospitalSuccessStories-1 .hospitalSuccessStories-item {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000;

    border-radius: 0;
}


/* ==========================================
   VIDEO BOX
========================================== */

#hospitalSuccessStories-1 .hospitalSuccessStories-video {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #000;
}


/* ==========================================
   YOUTUBE IFRAME
========================================== */

#hospitalSuccessStories-1 .hospitalSuccessStories-video iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ==========================================
   BUTTON WRAPPER
========================================== */

#hospitalSuccessStories-1 .hospitalSuccessStories-button-wrap {
    display: flex;

    justify-content: center;
    align-items: center;

    margin-top: 30px;
}


/* ==========================================
   BUTTON
========================================== */

#hospitalSuccessStories-1 .hospitalSuccessStories-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 30px;

    background: #FDEA00;

    color: #000;

    font-family: "Roboto", Sans-serif;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    border-radius: 2px;
}



/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #hospitalSuccessStories-1 {
        padding: 40px 0 30px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-container {
        width: calc(100% - 30px);
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-title {
        font-size: 44px;

        padding-bottom: 25px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #hospitalSuccessStories-1 {
        padding: 30px 0 25px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-container {
        width: calc(100% - 24px);

        max-width: 100%;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-title {
        font-size: 36px;

        line-height: 1.2;

        padding: 0 15px 22px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-item {
        aspect-ratio: 16 / 9;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-button-wrap {
        margin-top: 25px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-button {
        font-size: 15px;

        padding: 11px 24px;

        min-height: 45px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #hospitalSuccessStories-1 {
        padding: 25px 0 22px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-title {
        font-size: 32px;

        line-height: 1.25;

        padding-left: 10px;
        padding-right: 10px;

        padding-bottom: 20px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-grid {
        gap: 13px;
    }


    #hospitalSuccessStories-1 .hospitalSuccessStories-button {
        font-size: 14px;

        padding: 10px 20px;
    }

}



/* ==========================================
   HOSPITAL NEWS SECTION
========================================== */

#hospitalNewssection {
    width: 100%;
    background: #da2028;
    padding: 45px 0;
    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#hospitalNewssection .hospitalNews-container {
    width: calc(100% - 30px);
    max-width: 1140px;

    margin: 0 auto;
}


/* ==========================================
   TITLE
========================================== */

#hospitalNewssection .hospitalNews-title {
    margin: 0;
    padding: 0 0 27px;

    text-align: center;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
}


/* ==========================================
   GALLERY
========================================== */
#hospitalNewssection .hospitalNews-gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

#hospitalNewssection .hospitalNews-item {
    position: relative;
    display: block;
    overflow: hidden;

    flex: 1 1 auto;

    height: 220px;

    text-decoration: none;

    opacity: 0;
    transform: scale(0.9);

    animation: hospitalNewsFadeIn 0.7s ease forwards;
}


/* ==========================================
   STAGGER ANIMATION
========================================== */

#hospitalNewssection .hospitalNews-item:nth-child(1) {
    animation-delay: 0.05s;
}

#hospitalNewssection .hospitalNews-item:nth-child(2) {
    animation-delay: 0.12s;
}

#hospitalNewssection .hospitalNews-item:nth-child(3) {
    animation-delay: 0.19s;
}

#hospitalNewssection .hospitalNews-item:nth-child(4) {
    animation-delay: 0.26s;
}

#hospitalNewssection .hospitalNews-item:nth-child(5) {
    animation-delay: 0.33s;
}

#hospitalNewssection .hospitalNews-item:nth-child(6) {
    animation-delay: 0.40s;
}

#hospitalNewssection .hospitalNews-item:nth-child(7) {
    animation-delay: 0.47s;
}

#hospitalNewssection .hospitalNews-item:nth-child(8) {
    animation-delay: 0.54s;
}


/* ==========================================
   FADE + SCALE ANIMATION
========================================== */

@keyframes hospitalNewsFadeIn {

    0% {
        opacity: 0;
        transform: scale(0.88);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* ==========================================
   IMAGE WRAPPER
========================================== */
#hospitalNewssection .hospitalNews-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#hospitalNewssection .hospitalNews-image-wrap img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

/* ==========================================
   PURPLE OVERLAY
========================================== */

#hospitalNewssection .hospitalNews-overlay {
    position: absolute;

    inset: 0;

    background-color: rgba(0, 0, 0, 0.5);

    opacity: 0;

    transition: opacity 0.4s ease;
}

#hospitalNewssection .hospitalNews-item:hover img {
    transform: scale(1.08);
}

#hospitalNewssection .hospitalNews-item:hover .hospitalNews-overlay {
    opacity: 1;
}

/* FADE + SCALE */

@keyframes hospitalNewsFadeIn {

    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* ==========================================
   HOSPITAL SUCCESS STORIES
========================================== */

#hospitalSuccessStories {
    width: 100%;
    background: #483E6E;
    padding: 45px 0 25px;
    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#hospitalSuccessStories .hospitalSuccessStories-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}


/* ==========================================
   TITLE
========================================== */

#hospitalSuccessStories .hospitalSuccessStories-title {
    margin: 0;
    padding: 0 0 27px;

    text-align: center;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
}


/* ==========================================
   VIDEO GRID
========================================== */

#hospitalSuccessStories .hospitalSuccessStories-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;
}


/* ==========================================
   VIDEO ITEM
========================================== */

#hospitalSuccessStories .hospitalSuccessStories-item {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000;

    border-radius: 0;
}


/* ==========================================
   VIDEO BOX
========================================== */

#hospitalSuccessStories .hospitalSuccessStories-video {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #000;
}


/* ==========================================
   YOUTUBE IFRAME
========================================== */

#hospitalSuccessStories .hospitalSuccessStories-video iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ==========================================
   BUTTON WRAPPER
========================================== */

#hospitalSuccessStories .hospitalSuccessStories-button-wrap {
    display: flex;

    justify-content: center;
    align-items: center;

    margin-top: 30px;
}


/* ==========================================
   BUTTON
========================================== */

#hospitalSuccessStories .hospitalSuccessStories-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 30px;

    background: rgba(255, 255, 255, 0.02);

    color: #fff;

    font-family: "Roboto", Sans-serif;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    border-radius: 2px;
}



/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #hospitalSuccessStories {
        padding: 40px 0 30px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-container {
        width: calc(100% - 30px);
    }


    #hospitalSuccessStories .hospitalSuccessStories-title {
        font-size: 44px;

        padding-bottom: 25px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #hospitalSuccessStories {
        padding: 30px 0 25px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-container {
        width: calc(100% - 24px);

        max-width: 100%;
    }


    #hospitalSuccessStories .hospitalSuccessStories-title {
        font-size: 36px;

        line-height: 1.2;

        padding: 0 15px 22px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-item {
        aspect-ratio: 16 / 9;
    }


    #hospitalSuccessStories .hospitalSuccessStories-button-wrap {
        margin-top: 25px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-button {
        font-size: 15px;

        padding: 11px 24px;

        min-height: 45px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    #hospitalSuccessStories {
        padding: 25px 0 22px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-title {
        font-size: 32px;

        line-height: 1.25;

        padding-left: 10px;
        padding-right: 10px;

        padding-bottom: 20px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-grid {
        gap: 13px;
    }


    #hospitalSuccessStories .hospitalSuccessStories-button {
        font-size: 14px;

        padding: 10px 20px;
    }

}



/* ==========================================
   HOSPITAL FAQ SECTION
========================================== */

#hospitalFaqs {
    width: 100%;
    background: #F7F7F7;
    padding: 40px 0 20px;
    color: #111;
    border-bottom: 6px solid #000
}




/* ==========================================
   FAQ TITLE
========================================== */

#hospitalFaqs .faq-title {
    color: #da2028;
    font-family: "Roboto", Sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
}


/* ==========================================
   FAQ LIST
========================================== */

#hospitalFaqs .faq-list {
    width: 100%;
}


/* ==========================================
   FAQ ITEM
========================================== */

#hospitalFaqs .faq-item {
    width: 100%;
    margin-bottom: 24px;

    border: 1px solid rgba(0, 0, 0, 0.75);
    background: transparent;

    overflow: hidden;
}


/* ==========================================
   FAQ QUESTION
========================================== */

#hospitalFaqs .faq-question {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;

    padding: 10px 18px;

    border: 0;
    outline: none;

    background: transparent;
    color: #111;

    text-align: left;
    cursor: pointer;

    font-family: inherit;
}


/* ==========================================
   FAQ ICON
========================================== */

#hospitalFaqs .faq-icon {
    position: relative;

    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    margin-right: 10px;
}


/* Horizontal line */

#hospitalFaqs .faq-icon .horizontal {
    position: absolute;

    width: 17px;
    height: 3px;

    background: #111;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 2px;
}


/* Vertical line */

#hospitalFaqs .faq-icon .vertical {
    position: absolute;

    width: 3px;
    height: 17px;

    background: #111;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 2px;

    transition: all 0.25s ease;
}


/* ==========================================
   QUESTION TEXT
========================================== */

#hospitalFaqs .faq-question-text {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;

    color: #111;
}


/* ==========================================
   ACTIVE ICON = MINUS
========================================== */

#hospitalFaqs .faq-item.active .faq-icon .vertical {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}


/* ==========================================
   ANSWER
========================================== */

#hospitalFaqs .faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease,
        padding 0.35s ease;

    padding: 0 13px;

    border-top: 0 solid rgba(0, 0, 0, 0.75);
}


/* Answer content wrapper effect */

#hospitalFaqs .faq-answer p {
    min-height: 0;
    overflow: hidden;

    margin: 0;

    color: #111;

    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
}


/* ==========================================
   ACTIVE ANSWER
========================================== */

#hospitalFaqs .faq-item.active .faq-answer {
    grid-template-rows: 1fr;

    padding: 38px 13px 42px;

    border-top: 1px solid rgba(0, 0, 0, 0.75);
}

/* ==========================================
   FAQ CONTAINER
========================================== */

#hospitalFaqs .faq-container {
    width: calc(100% - 30px);
    max-width: 1140px;
    margin: 0 auto;
}



/* ==========================================
   HOVER
========================================== */

#hospitalFaqs .faq-question:hover {
    background: rgba(255, 255, 255, 0.025);
}


/* ==========================================
   LAST ITEM
========================================== */

#hospitalFaqs .faq-item:last-child {
    margin-bottom: 0;
}


/* ==========================================
   PATIENT REVIEWS
========================================== */

#patientReviews {
    padding: 20px 0 40px;
    background: #fff;
}

#patientReviews .container {
    max-width: 1150px;
}


/* ==========================================
   HEADING
========================================== */

#patientReviews .patientReviews-heading h2 {
    margin: 0 0 2px;

    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 40px;
    line-height: 1.25;

    font-weight: 600;
}

#patientReviews .patientReviews-heading p {
    margin: 0 0 25px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
}


/* ==========================================
   CAROUSEL
========================================== */

#patientReviews .patientReviews-carousel {
    position: relative;
    padding: 0 45px;
}

#patientReviews .patientReviews-item {
    padding: 5px;
}


/* ==========================================
   CARD
========================================== */

#patientReviews .patientReviews-card {
    min-height: 350px;

    padding: 38px 30px 25px;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 10px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ==========================================
   REVIEW TEXT
========================================== */

#patientReviews .patientReviews-text {
    max-width: 970px;

    margin: 0 auto 25px;

    color: #111;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    line-height: 1.55;
}


/* ==========================================
   STARS
========================================== */

#patientReviews .patientReviews-stars {
    display: flex;

    justify-content: center;

    gap: 5px;

    margin-bottom: 18px;
}

#patientReviews .patientReviews-stars i {
    color: #ffb800;

    font-size: 20px;
}


/* ==========================================
   PATIENT NAME
========================================== */

#patientReviews .patientReviews-card h3 {
    margin: 0 0 10px;

    color: #222;

    font-family: "Roboto", sans-serif;

    font-size: 18px;

    font-weight: 700;
}

#patientReviews .patientReviews-card span {
    color: #777;

    font-family: "Roboto", sans-serif;

    font-size: 14px;
}


/* ==========================================
   OWL NAVIGATION
========================================== */

#patientReviews .owl-nav button.owl-prev,
#patientReviews .owl-nav button.owl-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    margin: 0;

    padding: 0 !important;

    background: transparent !important;

    color: #da2028 !important;

    font-size: 32px !important;

    line-height: 1;

    transition: .3s ease;
}

#patientReviews .owl-nav button.owl-prev {
    left: 0;
}

#patientReviews .owl-nav button.owl-next {
    right: 0;
}

#patientReviews .owl-nav button:hover {
    color: #7d1d0d !important;

    background: transparent !important;
}


/* Hide dots */

#patientReviews .owl-dots {
    display: none;
}

/* ==========================================
   DOCTOR PROFILE
========================================== */

#doctorProfile {
    position: relative;
    padding: 35px 0;
    background-color: #fff;
    overflow: hidden;
}


/* ==========================================
   INNER BACKGROUND
========================================== */

#doctorProfile .doctorProfile-inner {
    position: relative;

    max-width: 1140px;

    margin: 0 auto;

    padding: 0;

    background-color: #AEF2FF;

    overflow: hidden;
}


/* ==========================================
   DARK TEAL SHAPE
========================================== */

#doctorProfile .doctorProfile-inner::after {
    content: "";

    display: block;

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 220px;

    background-color: #066D7D;

    z-index: 0;

    border-radius: 0 30px 30px 30px;
}


/* ==========================================
   CONTENT ABOVE SHAPE
========================================== */

#doctorProfile .doctorProfile-inner .container {
    position: relative;
    z-index: 1;
}


/* ==========================================
   DOCTOR IMAGE
========================================== */

#doctorProfile .doctorProfile-image {
    position: relative;

    max-width: 295px;

    margin: 0 auto;

    z-index: 2;
}

#doctorProfile .doctorProfile-image img {
    width: 100%;

    height: 395px;

    object-fit: cover;

    display: block;

    border-radius: 18px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* ==========================================
   CONTENT
========================================== */

#doctorProfile .doctorProfile-content {
    padding: 45px 20px 35px;
}

#doctorProfile .doctorProfile-content h2 {
    margin: 0 0 42px;

    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 700;
}

#doctorProfile .doctorProfile-content h4 {
    margin: 0 0 65px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 20px;

    font-weight: 700;
}

#doctorProfile .doctorProfile-content p {
    max-width: 700px;

    margin: 0 0 38px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 19px;

    line-height: 1.5;
}


/* ==========================================
   ACTIONS
========================================== */

#doctorProfile .doctorProfile-actions {
    display: flex;

    align-items: center;

    gap: 38px;

    flex-wrap: wrap;
}

#doctorProfile .doctorProfile-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 17px 30px;

    background-color: #da2028;

    color: #fff;

    text-decoration: none;

    border-radius: 5px;

    font-size: 17px;

    font-weight: 700;
}

#doctorProfile .doctorProfile-phone {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

#doctorProfile .doctorProfile-phone a {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #111;

    text-decoration: none;

    font-size: 18px;
}

#doctorProfile .doctorProfile-phone i {
    color: #ed2b22;
    font-size: 20px;
}


/* ==========================================
   DIVIDER
========================================== */

#doctorProfile .doctorProfile-content hr {
    width: 100%;

    margin: 32px 0 0;

    border: 0;

    border-top: 1px solid rgba(0, 0, 0, .18);
}


/* ==========================================
   GDMH STATS
========================================== */

#gdmhStats {
    background-color: #333333;
    padding: 30px 0;
    overflow: hidden;
}

#gdmhStats .container {
    max-width: 1150px;
}

#gdmhStats .row {
    align-items: center;
}


/* ==========================================
   COUNTER
========================================== */

#gdmhStats .gdmhStats-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    min-height: 155px;
}


/* ==========================================
   ICON
========================================== */

#gdmhStats .gdmhStats-icon {
    width: 60px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}

#gdmhStats .gdmhStats-icon img {
    width: 55px;
    height: 55px;

    object-fit: contain;

    display: block;
}


/* ==========================================
   NUMBER
========================================== */

#gdmhStats .gdmhStats-number {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 40px;
    line-height: 1;

    font-weight: 700;

    margin-bottom: 8px;
}


/* ==========================================
   TITLE
========================================== */

#gdmhStats .gdmhStats-title {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    line-height: 1.2;

    font-weight: 600;
}


/* ==========================================
   TRAUMA & FRACTURE SECTION
========================================== */

#traumaFracture {
    background: #fff;
    padding: 55px 0 35px;
    overflow: hidden;
}

#traumaFracture .container {
    max-width: 1150px;
}


/* ==========================================
   SECTION HEADING
========================================== */

#traumaFracture .traumaFracture-heading {
    text-align: center;

    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 600;

    margin: 0 0 28px;
}


/* ==========================================
   TWO COLUMN UL
========================================== */

#traumaFracture .traumaFracture-list {
    column-count: 2;
    column-gap: 65px;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* ==========================================
   LI
========================================== */

#traumaFracture .traumaFracture-list li {
    position: relative;

    padding-left: 34px;
    padding-right: 5px;

    margin-bottom: 20px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    line-height: 1.45;

    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}


/* ==========================================
   IMAGE ICON BEFORE LI
========================================== */

#traumaFracture .traumaFracture-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 3px;

    width: 21px;
    height: 21px;

    background-image: url("../images/check.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* ==========================================
   BOTTOM CTA AREA
========================================== */

#traumaFracture .traumaFracture-bottom {
    text-align: center;

    margin-top: 20px;
}


/* ==========================================
   BOTTOM TEXT
========================================== */

#traumaFracture .traumaFracture-bottom p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 20px;
}

#traumaFracture .traumaFracture-bottom p b {
    font-weight: 700;
}


/* ==========================================
   CTA BUTTON
========================================== */

#traumaFracture .traumaFracture-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 203px;

    padding: 12px 25px;

    background: #da2028;
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 3px;

    transition: all 0.3s ease;
}

#traumaFracture .traumaFracture-btn:hover {
    background: #7f1e0d;
    color: #fff;
}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    #traumaFracture .traumaFracture-list {
        column-count: 1;
        column-gap: 0;
    }
}

/* ==========================================
   EMERGENCY TRAUMA SECTION
========================================== */

#emergencyTrauma {
    background: #fff;
    padding: 15px 0 35px;
    overflow: hidden;
}

#emergencyTrauma .container {
    max-width: 1150px;
}


/* ==========================================
   HEADING
========================================== */

#emergencyTrauma .emergencyTrauma-heading {
    color: #da2028;

    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;

    text-align: center;

    margin: 0 0 32px;
}


/* ==========================================
   INTRO TEXT
========================================== */

#emergencyTrauma .emergencyTrauma-intro {
    color: #111;

    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 400;

    line-height: 1.45;

    margin: 0 0 22px;
}


/* ==========================================
   SERVICES
========================================== */

#emergencyTrauma .emergencyTrauma-services {
    margin-top: 0;
}


/* ==========================================
   UL
========================================== */

#emergencyTrauma .emergencyTrauma-list {
    list-style: none;
    column-count: 2;
    column-gap: 65px;
    padding: 0 25px 0 36px;
    margin: 0;
}


/* ==========================================
   LI
========================================== */

#emergencyTrauma .emergencyTrauma-list li {
    position: relative;

    padding: 0 0 0 3px;

    margin-bottom: 25px;
}


/* ==========================================
   IMAGE ICON
========================================== */

#emergencyTrauma .emergencyTrauma-list li::before {
    content: "";

    position: absolute;

    left: -36px;
    top: 0;

    width: 25px;
    height: 25px;

    background-image: url("../images/check.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* ==========================================
   SERVICE TITLE
========================================== */

#emergencyTrauma .emergencyTrauma-list h3 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.3;

    margin: 0 0 5px;
}


/* ==========================================
   SERVICE DESCRIPTION
========================================== */

#emergencyTrauma .emergencyTrauma-list p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.45;

    margin: 0;
}



/* ==========================================
   BOTTOM CTA AREA
========================================== */

#emergencyTrauma .traumaFracture-bottom {
    width: 1150px;
    margin: 0 AUTO;
    margin-top: 20px;
}


/* ==========================================
   BOTTOM TEXT
========================================== */

#emergencyTrauma .traumaFracture-bottom p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0 0 20px;
}


#trauma-fracture-care {
    width: 100%;
    padding: 45px 0;
    background: #fff;
}

#trauma-fracture-care .tf-content {
    padding-right: 25px;
}

/* Main Heading */

#trauma-fracture-care h2 {
    color: #da2028;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 32px;
}


/* Paragraph */

#trauma-fracture-care .tf-content p {
    color: #111;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0 0 20px;
}

#trauma-fracture-care .tf-content strong {
    font-weight: 700;
}


/* What sets us apart */

#trauma-fracture-care .tf-apart {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}


/* Services Heading */

#trauma-fracture-care .tf-content h3 {
    color: #111;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 22px;
}


/* UL - 2 Columns */

#trauma-fracture-care .tf-service-list {
    column-count: 2;
    column-gap: 40px;

    list-style: none;
    padding: 0;
    margin: 0;
}


/* LI */

#trauma-fracture-care .tf-service-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 28px;

    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

/* Icon Before LI */

#trauma-fracture-care .tf-service-list li::before {
       content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 21px;
    height: 21px;
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Service Title */

#trauma-fracture-care .tf-service-list li strong {
    display: block;
    color: #111;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 7px;
}


/* Service Description */

#trauma-fracture-care .tf-service-list li p {
    color: #111;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
}

/* IMAGE */
#trauma-fracture-care .tf-image {
    width: 85%;
    margin: 0 auto;
}

#trauma-fracture-care .tf-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

/* MOBILE */

@media (max-width: 767px) {

    #trauma-fracture-care .tf-service-list {
        column-count: 1;
    }


}


/* ==========================================
   TRAUMA HERO BANNER
========================================== */

#traumaHeroBanner {
    position: relative;
    width: 100%;
    background: #2D0064;
    overflow: hidden;
}


/* ==========================================
   INNER / BACKGROUND IMAGE
========================================== */

#traumaHeroBanner .trauma-hero-inner {
    position: relative;
    z-index: 1;

    max-width: 1150px;
    min-height: 520px;

    margin: 0 auto;
    padding: 35px 25px;

    box-sizing: border-box;

    background-image: url("../images/gallery21.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* ==========================================
   PURPLE GRADIENT OVER IMAGE
========================================== */

#traumaHeroBanner .trauma-hero-inner::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(97deg,
            #2D0064 30%,
            #FFFFFF00 100%);

    z-index: 0;
}


/* ==========================================
   CONTENT
========================================== */

#traumaHeroBanner .trauma-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 700px;
}


/* ==========================================
   TITLE
========================================== */

#traumaHeroBanner .trauma-hero-title {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 29px;
    font-weight: 700;
    line-height: 1.35;

    margin: 0 0 35px;
}


/* ==========================================
   DESCRIPTION
========================================== */

#traumaHeroBanner .trauma-hero-text {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;

    margin: 0 0 25px;
}


/* ==========================================
   FEATURES
========================================== */

#traumaHeroBanner .trauma-features {
    display: flex;
    flex-wrap: wrap;

    max-width: 650px;

    column-gap: 35px;
    row-gap: 18px;

    margin-bottom: 38px;
}


/* FEATURE */

#traumaHeroBanner .trauma-feature {
    display: flex;
    align-items: center;

    width: 270px;

    gap: 10px;
}


/* FEATURE ICON */

#traumaHeroBanner .trauma-feature i {
    color: #FFF900;

    font-size: 20px;

    flex-shrink: 0;
}


/* FEATURE TEXT */

#traumaHeroBanner .trauma-feature span {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}


/* ==========================================
   ACTIONS
========================================== */

#traumaHeroBanner .trauma-actions {
    display: flex;
    align-items: center;

    gap: 60px;

    margin-bottom: 32px;
}


/* ==========================================
   ENQUIRE BUTTON
========================================== */

#traumaHeroBanner .trauma-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    height: 58px;

    padding: 0 25px;

    background: #a92d15;
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 5px;

    transition: background .25s ease;
}


#traumaHeroBanner .trauma-enquire-btn:hover {
    background: #8f2410;
    color: #fff;
}


/* ==========================================
   PHONE LIST
========================================== */

#traumaHeroBanner .trauma-phone-list {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


#traumaHeroBanner .trauma-phone-list a {
    display: flex;
    align-items: center;

    gap: 14px;

    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.3;

    text-decoration: none;
}


#traumaHeroBanner .trauma-phone-list a:hover {
    color: #fff;
}


#traumaHeroBanner .trauma-phone-list i {
    color: #fff;

    font-size: 20px;

    width: 25px;

    text-align: center;
}


/* ==========================================
   DIVIDER
========================================== */

#traumaHeroBanner .trauma-divider {
    width: 607px;
    max-width: 100%;

    height: 1px;

    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .55);

    margin: 0 0 28px;
}


/* ==========================================
   RATING
========================================== */

#traumaHeroBanner .trauma-rating {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* RATING LABEL */

#traumaHeroBanner .trauma-rating-label {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 15px;
    font-weight: 600;
}


/* STARS */

#traumaHeroBanner .trauma-stars {
    display: flex;
    align-items: center;

    gap: 3px;

    color: #f5a623;

    font-size: 18px;
}


#traumaHeroBanner .trauma-stars .fa-regular {
    color: #cfcfcf;
}


/* RATING TEXT */

#traumaHeroBanner .trauma-rating-text {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 15px;
    font-weight: 500;
}


#traumaHeroBanner .trauma-rating-text b {
    color: #fff;

    font-weight: 700;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #traumaHeroBanner {
        min-height: auto;
    }


    /* INNER */

    #traumaHeroBanner .trauma-hero-inner {
        min-height: auto;

        padding: 35px 20px 40px;

        background-position: center;
    }


    /* FEATURES */

    #traumaHeroBanner .trauma-features {
        flex-direction: column;

        gap: 15px;

        max-width: 100%;

        margin-bottom: 30px;
    }


    #traumaHeroBanner .trauma-feature {
        width: 100%;
    }

    /* ACTIONS */

    #traumaHeroBanner .trauma-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 28px;
    }
}






/* ==========================================
   JOINT REPLACEMENT HERO BANNER
========================================== */

#kneeBanner {

    position: relative;

    background-color: #00496D;

    overflow: hidden;

}


/* ==========================================
   BACKGROUND IMAGE WRAPPER
========================================== */

#kneeBanner .joint-bg-wrapper {

    position: absolute;

    top: 0;
    right: 0;

    width: 65%;
    height: 100%;

    overflow: hidden;

    z-index: 0;

}

#kneeBanner .joint-bg-wrapper img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

}


/* Gradient over image */

#kneeBanner .joint-bg-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(97deg,
            #C6F4FF 30%,
            #FFFFFF00 100%);

}


/* ==========================================
   INNER
========================================== */

#kneeBanner .joint-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    background-color: transparent;

    --background-overlay: '';

    background-image: linear-gradient(97deg, #00496D 30%, #FFFFFF00 100%),
        url('../images/gallery21.webp');

    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    margin: 0 auto;
    padding: 70px 15px 55px;
    height: 85vh
}



/* ==========================================
   CONTENT
========================================== */

#kneeBanner .joint-hero-content {

    max-width: 620px;

}


/* ==========================================
   TITLE
========================================== */

#kneeBanner .joint-hero-title {

    font-family: "Roboto", Sans-serif;

    font-size: 31px;

    font-weight: 700;

    line-height: 1.45;

    color: #fff;

    margin-bottom: 18px;

}


/* ==========================================
   TEXT
========================================== */

#kneeBanner .joint-hero-text {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 18px;

}

#kneeBanner .joint-hero-text b {

    color: #fff;

    font-weight: 700;

}


/* ==========================================
   FEATURES
========================================== */

#kneeBanner .joint-features {

    display: flex;

    gap: 5px;

    margin-bottom: 25px;

}

#kneeBanner .joint-feature-box {

    width: 138px;

    height: 92px;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.20);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

#kneeBanner .joint-feature-box i {

    font-size: 34px;

    color: #e32828;

    margin-bottom: 8px;

}

#kneeBanner .joint-feature-box span {

    font-family: "Roboto", Sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #111;

}


/* ==========================================
   ACTIONS
========================================== */

#kneeBanner .joint-hero-actions {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-bottom: 28px;

}


/* Button */

#kneeBanner .joint-btn-enquire {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 58px;

    padding: 0 30px;

    background: #da2028;

    color: #fff;

    font-family: "Roboto", Sans-serif;

    font-size: 17px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 5px;

    transition: background .25s ease;

}

#kneeBanner .joint-btn-enquire:hover {

    background: #8d210e;

    color: #fff;

}


/* Phone */

#kneeBanner .joint-phone-list {

    display: flex;

    flex-direction: column;

    gap: 7px;

}

#kneeBanner .joint-phone-list a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    text-decoration: none;

    font-family: "Roboto", Sans-serif;

    font-size: 18px;

    font-weight: 500;

}

#kneeBanner .joint-phone-list i {

    font-size: 21px;

    color: #fff;

}


/* ==========================================
   DIVIDER
========================================== */

#kneeBanner .joint-divider {

    border: 0;

    border-top: 1px solid rgba(0, 0, 0, .18);

    width: 562px;

    max-width: 100%;

    margin: 0 0 20px;

}


/* ==========================================
   RATING
========================================== */

#kneeBanner .joint-rating {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}

#kneeBanner .joint-rating-label {

    color: #fff;

    font-weight: 600;

    font-size: 15px;

}

#kneeBanner .joint-rating-stars {

    display: flex;

    gap: 3px;

    color: #f5a623;

    font-size: 18px;

}

#kneeBanner .joint-rating-stars i.fa-regular {

    color: #cfcfcf;

}

#kneeBanner .joint-rating-copy {

    color: #fff;

    font-size: 15px;

}

#kneeBanner .joint-rating-copy b {

    color: #fff;

    font-weight: 700;

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #kneeBanner {

        min-height: auto;

    }

    #kneeBanner .joint-bg-wrapper {

        width: 100%;

        height: 100%;

    }

    #kneeBanner .joint-bg-wrapper::after {

        background:
            linear-gradient(180deg,
                #C6F4FF 0%,
                rgba(198, 244, 255, .94) 55%,
                rgba(198, 244, 255, .82) 100%);

    }

    #kneeBanner .joint-hero-inner {

        min-height: auto;

        padding: 35px 20px;

    }

    #kneeBanner .joint-hero-title {

        font-size: 25px;

        line-height: 1.3;

    }

    #kneeBanner .joint-hero-text {

        font-size: 15px;

        line-height: 1.3;

    }

    #kneeBanner .joint-features {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

    }

    #kneeBanner .joint-feature-box {

        width: 100%;

        height: 85px;

    }

    #kneeBanner .joint-hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

    }

}


/* ==========================================
   DOCTOR PROFILE SECTION
========================================== */

#doctorProfileSection {
    width: 100%;
    background: #fff;
    padding: 30px 0 0;
    overflow: hidden;
}


/* ==========================================
   IMAGE
========================================== */

#doctorProfileSection .doctor-profile-image {
    width: 100%;
    height: 400px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


#doctorProfileSection .doctor-profile-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: right bottom;

    display: block;
}


/* ==========================================
   CONTENT
========================================== */

#doctorProfileSection .doctor-profile-content {
    padding: 35px 30px 35px 20px;
}


/* ==========================================
   MAIN HEADING
========================================== */

#doctorProfileSection .doctor-profile-content h2 {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.3;

    margin: 0 0 5px;
}


/* ==========================================
   SUBTITLE
========================================== */

#doctorProfileSection .doctor-profile-subtitle {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.25;

    letter-spacing: 1px;

    margin-bottom: 13px;
}


/* ==========================================
   RED DOTTED LINE
========================================== */

#doctorProfileSection .doctor-profile-line {
    width: 235px;

    border-top: 1px dashed #e32828;

    margin-bottom: 30px;
}


/* ==========================================
   DESCRIPTION
========================================== */

#doctorProfileSection .doctor-profile-description {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.5;

    margin: 0 0 32px;
}


#doctorProfileSection .doctor-profile-description strong {
    font-weight: 700;
}


/* ==========================================
   QUALIFICATION HEADING
========================================== */

#doctorProfileSection .doctor-profile-content h3 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.4;

    margin: 0 0 15px;
}


/* ==========================================
   QUALIFICATIONS
========================================== */

#doctorProfileSection .doctor-qualifications {
    list-style: none;

    padding: 0;
    margin: 0;
}


#doctorProfileSection .doctor-qualifications li {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.5;

    margin-bottom: 8px;
}


/* ==========================================
   QUALIFICATION ICON
========================================== */

#doctorProfileSection .doctor-qualifications li i {
    color: #da2028;

    font-size: 17px;

    width: 18px;

    flex-shrink: 0;

    margin-top: 2px;
}


/* ==========================================
   KNEE REPLACEMENT PROCESS
========================================== */

#kneeReplacementProcess {
    width: 100%;
    background: #f8f8f8;
    padding: 35px 0 45px;
}


/* ==========================================
   CONTAINER
========================================== */

#kneeReplacementProcess .container {
    max-width: 1150px;
}


/* ==========================================
   MAIN HEADING
========================================== */

#kneeReplacementProcess .knee-process-title {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 30px;
    font-weight: 600;

    line-height: 1.3;

    margin: 0 0 48px;
}


/* ==========================================
   CONTENT
========================================== */

#kneeReplacementProcess .knee-process-content {
    padding-right: 20px;
}


/* ==========================================
   INTRO
========================================== */

#kneeReplacementProcess .knee-process-intro {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.45;

    margin: 0 0 25px;
}


#kneeReplacementProcess .knee-process-intro strong {
    font-weight: 700;
}


/* ==========================================
   LIST
========================================== */

#kneeReplacementProcess .knee-process-list {
    margin: 0;
    padding-left: 40px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.45;
}


/* ==========================================
   LIST ITEM
========================================== */

#kneeReplacementProcess .knee-process-list li {
    padding-left: 0;
    margin-bottom: 5px;
}


#kneeReplacementProcess .knee-process-list li strong {
    font-weight: 700;
}


/* ==========================================
   IMAGE
========================================== */

#kneeReplacementProcess .knee-process-image {
    width: 100%;

    margin-top: 5px;
}


#kneeReplacementProcess .knee-process-image img {
    display: block;
    width: 300px;
    height: 100%;
    object-fit: cover;
    /* object-position: revert; */
    margin: 0;
}



/* ==========================================
   TYPES OF KNEE REPLACEMENT
========================================== */

#kneeTypesSection {
    width: 100%;
    background: #fff;

    padding: 40px 0 20px;

    overflow: hidden;
}


/* ==========================================
   CONTENT
========================================== */

#kneeTypesSection .knee-types-content {
    padding-right: 20px;
}


/* ==========================================
   MAIN HEADING
========================================== */

#kneeTypesSection .knee-types-content h2 {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 30px;
    font-weight: 600;

    line-height: 1.3;

    margin: 0 0 25px;
}


/* ==========================================
   TYPE ITEM
========================================== */

#kneeTypesSection .knee-type-item {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    margin-bottom: 20px;
}


/* ==========================================
   ICON
========================================== */

#kneeTypesSection .knee-type-icon {
    width: 46px;
    min-width: 46px;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 4px;
}


#kneeTypesSection .knee-type-icon img {
    width: 42px;
    height: 42px;

    object-fit: contain;
    display: block;

    /* White icon → Red */
    filter: brightness(0) saturate(100%) invert(17%) sepia(96%) saturate(3757%) hue-rotate(351deg) brightness(89%) contrast(90%);
}

/* ==========================================
   TYPE TEXT
========================================== */

#kneeTypesSection .knee-type-text {
    flex: 1;
}


#kneeTypesSection .knee-type-text h3 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.3;

    margin: 0 0 5px;
}


#kneeTypesSection .knee-type-text p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.4;

    margin: 0;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

#kneeTypesSection .knee-types-image {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}


#kneeTypesSection .knee-types-image img {
    width: 100%;
    max-width: 520px;

    height: 330px;

    object-fit: contain;

    display: block;
}


/* ==========================================
   BUTTON
========================================== */

#kneeTypesSection .knee-types-button {
    display: flex;
    justify-content: center;

    margin-top: 15px;
}


#kneeTypesSection .knee-types-button a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 205px;
    height: 55px;

    padding: 0 25px;

    background: #da2028;
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 4px;

    transition: .25s ease;
}


#kneeTypesSection .knee-types-button a:hover {
    background: #96230f;
    color: #fff;
}



/* ==========================================
   HIP REPLACEMENT - WHEN NEEDED
========================================== */

#hipNeedSection {
    width: 100%;
    background: #f8f8f8;

    padding: 35px 0 20px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#hipNeedSection .container {
    max-width: 1150px;
}


/* ==========================================
   HEADING
========================================== */

#hipNeedSection .hip-need-title {
    color: #da2028;
    text-align: center;
    font-family: "Roboto", Sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
}


/* ==========================================
   INTRO
========================================== */

#hipNeedSection .hip-need-intro {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.4;

    text-align: center;

    max-width: 1100px;

    margin: 0 auto 42px;
}


/* ==========================================
   LEFT LIST
========================================== */

#hipNeedSection .hip-need-list {
    list-style: none;

    padding: 0 15px 0 0;

    margin: 0;
}


#hipNeedSection .hip-need-list li {
    position: relative;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 400;

    padding-left: 28px;

    margin-bottom: 11px;
}


/* ==========================================
   CHECK ICON
========================================== */

#hipNeedSection .hip-need-list li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 2px;

    font-family: "Font Awesome 6 Free";

    font-weight: 400;

    color: #ff3030;

    font-size: 18px;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

#hipNeedSection .hip-need-image {
    width: 100%;

    margin-top: 0;

    display: flex;

    justify-content: flex-end;
}


#hipNeedSection .hip-need-image img {
   display: block;
    width: 100%;
    max-width: 440px;
    object-fit: cover;
    object-position: center;
}


/* ==========================================
   BOTTOM
========================================== */

#hipNeedSection .hip-need-bottom {
    text-align: center;

    margin-top: 20px;
}


#hipNeedSection .hip-need-bottom p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.4;

    margin: 0 0 22px;
}


#hipNeedSection .hip-need-bottom p strong {
    font-weight: 700;
}


/* ==========================================
   BUTTON
========================================== */

#hipNeedSection .hip-need-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 204px;

    height: 55px;

    padding: 0 25px;

    background: #da2028;

    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 3px;

    transition: background .25s ease;
}


#hipNeedSection .hip-need-btn:hover {
    background: #96230f;
    color: #fff;
}




/* ==========================================
   BHASKAR HEALTH CARE AWARD
========================================== */

#bhaskarHealthAwardNew {
    width: 100%;

    padding: 30px 0 10px;

    background-color: #10233D;

    background-image:
        linear-gradient(rgba(8, 28, 58, 0.88),
            rgba(8, 28, 58, 0.88)),
        url("../images/Indian-Icon-of-The-Year-2021_-img-1.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    font-family: "Roboto", Sans-serif;
}


/* ==========================================
   CONTAINER
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-container {
    width: calc(100% - 30px);

    max-width: 1140px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;
}


/* ==========================================
   LEFT
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-left {
    width: 100%;
}


/* ==========================================
   HEADING
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-left h2 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 700;
}


/* ==========================================
   SUBTITLE
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-subtitle {

    margin: 0 0 30px;

    color: #fff;

    font-size: 18px;

    line-height: 1.5;
}


/* ==========================================
   GALLERY
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-gallery {
    display: flex;

    align-items: center;

    gap: 38px;
}


/* ==========================================
   LEFT IMAGE
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-image {
    position: relative;

    display: block;

    width: 100%;

    height: 300px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.5);

    text-decoration: none;

    transition: all 0.4s ease;
}


/* ==========================================
   IMAGE
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}




/* ==========================================
   RIGHT
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-right {
    width: 32%;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* ==========================================
   RIGHT IMAGE WRAPPER
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-right-image {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

#bhaskarHealthAwardNew .bhaskarHealthAward-right-image img {
    width: 100%;

    max-width: 360px;

    height: 360px;

    display: block;

    object-fit: contain;
}





/* ==========================================
   JOINT REPLACEMENT HERO BANNER
========================================== */

#hipBanner {

    position: relative;

    background-color: #006E8D;

    overflow: hidden;

}


/* ==========================================
   BACKGROUND IMAGE WRAPPER
========================================== */

#hipBanner .joint-bg-wrapper {

    position: absolute;

    top: 0;
    right: 0;

    width: 65%;
    height: 100%;

    overflow: hidden;

    z-index: 0;

}

#hipBanner .joint-bg-wrapper img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

}


/* Gradient over image */

#hipBanner .joint-bg-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(97deg,
            #C6F4FF 30%,
            #FFFFFF00 100%);

}


/* ==========================================
   INNER
========================================== */

#hipBanner .joint-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    background-color: transparent;

    --background-overlay: '';

    background-image: linear-gradient(97deg, #006E8D 30%, #FFFFFF00 100%),
        url('../images/gallery21.webp');

    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    margin: 0 auto;
    padding: 70px 15px 55px;
    height: 85vh
}



/* ==========================================
   CONTENT
========================================== */

#hipBanner .joint-hero-content {

    max-width: 620px;

}


/* ==========================================
   TITLE
========================================== */

#hipBanner .joint-hero-title {

    font-family: "Roboto", Sans-serif;

    font-size: 31px;

    font-weight: 700;

    line-height: 1.45;

    color: #fff;

    margin-bottom: 18px;

}


/* ==========================================
   TEXT
========================================== */

#hipBanner .joint-hero-text {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 18px;

}

#hipBanner .joint-hero-text b {

    color: #fff;

    font-weight: 700;

}


/* ==========================================
   FEATURES
========================================== */

#hipBanner .joint-features {

    display: flex;

    gap: 5px;

    margin-bottom: 25px;

}

#hipBanner .joint-feature-box {

    width: 138px;

    height: 92px;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.20);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

#hipBanner .joint-feature-box i {

    font-size: 34px;

    color: #e32828;

    margin-bottom: 8px;

}

#hipBanner .joint-feature-box span {

    font-family: "Roboto", Sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #111;

}


/* ==========================================
   ACTIONS
========================================== */

#hipBanner .joint-hero-actions {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-bottom: 28px;

}


/* Button */

#hipBanner .joint-btn-enquire {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 58px;

    padding: 0 30px;

    background: #da2028;

    color: #fff;

    font-family: "Roboto", Sans-serif;

    font-size: 17px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 5px;

    transition: background .25s ease;

}

#hipBanner .joint-btn-enquire:hover {

    background: #8d210e;

    color: #fff;

}


/* Phone */

#hipBanner .joint-phone-list {

    display: flex;

    flex-direction: column;

    gap: 7px;

}

#hipBanner .joint-phone-list a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    text-decoration: none;

    font-family: "Roboto", Sans-serif;

    font-size: 18px;

    font-weight: 500;

}

#hipBanner .joint-phone-list i {

    font-size: 21px;

    color: #fff;

}


/* ==========================================
   DIVIDER
========================================== */

#hipBanner .joint-divider {

    border: 0;

    border-top: 1px solid rgba(0, 0, 0, .18);

    width: 562px;

    max-width: 100%;

    margin: 0 0 20px;

}


/* ==========================================
   RATING
========================================== */

#hipBanner .joint-rating {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}

#hipBanner .joint-rating-label {

    color: #fff;

    font-weight: 600;

    font-size: 15px;

}

#hipBanner .joint-rating-stars {

    display: flex;

    gap: 3px;

    color: #f5a623;

    font-size: 18px;

}

#hipBanner .joint-rating-stars i.fa-regular {

    color: #cfcfcf;

}

#hipBanner .joint-rating-copy {

    color: #fff;

    font-size: 15px;

}

#hipBanner .joint-rating-copy b {

    color: #fff;

    font-weight: 700;

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #hipBanner {

        min-height: auto;

    }

    #hipBanner .joint-bg-wrapper {

        width: 100%;

        height: 100%;

    }

    #hipBanner .joint-bg-wrapper::after {

        background: linear-gradient(97deg, #006E8D 30%, #FFFFFF00 100%);

    }

    #hipBanner .joint-hero-inner {

        min-height: auto;

        padding: 35px 20px;

    }

    #hipBanner .joint-hero-title {

        font-size: 25px;

        line-height: 1.3;

    }

    #hipBanner .joint-hero-text {

        font-size: 15px;

        line-height: 1.3;

    }

    #hipBanner .joint-features {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

    }

    #hipBanner .joint-feature-box {

        width: 100%;

        height: 85px;

    }

    #hipBanner .joint-hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

    }

}





/* ==========================================
   JOINT REPLACEMENT HERO BANNER
========================================== */
#JointBanner {
    position: relative;
    overflow: hidden;

    background-image: url('../images/aT4J1StO-Orthopedics-Surgery-And-Joint-Replacement-100-1-jpg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    background-attachment: fixed
}

/* Color / Gradient Overlay */
#JointBanner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(-90deg, #006E8D00 0%, #222222 100%)
}


/* ==========================================
   INNER
========================================== */

#JointBanner .joint-hero-inner {
    position: relative;
    z-index: 2;

    max-width: 1150px;
    margin: 0 auto;
}

/* ==========================================
   CONTENT
========================================== */

#JointBanner .joint-hero-content {

    max-width: 620px;

}


/* ==========================================
   TITLE
========================================== */

#JointBanner .joint-hero-title {

    font-family: "Roboto", Sans-serif;

    font-size: 31px;

    font-weight: 700;

    line-height: 1.45;

    color: #fff;

    margin-bottom: 18px;

}


/* ==========================================
   TEXT
========================================== */

#JointBanner .joint-hero-text {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 18px;

}

#JointBanner .joint-hero-text b {

    color: #fff;

    font-weight: 700;

}


/* ==========================================
   FEATURES
========================================== */

#JointBanner .joint-features {

    display: flex;

    gap: 5px;

    margin-bottom: 25px;

}

#JointBanner .joint-feature-box {

    width: 138px;

    height: 92px;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.20);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

#JointBanner .joint-feature-box i {

    font-size: 34px;

    color: #e32828;

    margin-bottom: 8px;

}

#JointBanner .joint-feature-box span {

    font-family: "Roboto", Sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #111;

}


/* ==========================================
   ACTIONS
========================================== */

#JointBanner .joint-hero-actions {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-bottom: 28px;

}


/* Button */

#JointBanner .joint-btn-enquire {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 58px;

    padding: 0 30px;

    background: #da2028;

    color: #fff;

    font-family: "Roboto", Sans-serif;

    font-size: 17px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 5px;

    transition: background .25s ease;

}

#JointBanner .joint-btn-enquire:hover {

    background: #8d210e;

    color: #fff;

}


/* Phone */

#JointBanner .joint-phone-list {

    display: flex;

    flex-direction: column;

    gap: 7px;

}

#JointBanner .joint-phone-list a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    text-decoration: none;

    font-family: "Roboto", Sans-serif;

    font-size: 18px;

    font-weight: 500;

}

#JointBanner .joint-phone-list i {

    font-size: 21px;

    color: #fff;

}


/* ==========================================
   DIVIDER
========================================== */

#JointBanner .joint-divider {
    border: 0;
    border-top: 1px solid rgb(255 255 255 / 91%);
    width: 562px;
    max-width: 100%;
    margin: 0 0 20px;

}


/* ==========================================
   RATING
========================================== */

#JointBanner .joint-rating {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}

#JointBanner .joint-rating-label {

    color: #fff;

    font-weight: 600;

    font-size: 15px;

}

#JointBanner .joint-rating-stars {

    display: flex;

    gap: 3px;

    color: #f5a623;

    font-size: 18px;

}

#JointBanner .joint-rating-stars i.fa-regular {

    color: #cfcfcf;

}

#JointBanner .joint-rating-copy {

    color: #fff;

    font-size: 15px;

}

#JointBanner .joint-rating-copy b {

    color: #fff;

    font-weight: 700;

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #JointBanner {

        min-height: auto;

    }

    #JointBanner .joint-bg-wrapper {

        width: 100%;

        height: 100%;

    }

    #JointBanner .joint-bg-wrapper::after {

        background: linear-gradient(-90deg, #006E8D00 0%, #222222 100%);

    }

    #JointBanner .joint-hero-inner {

        min-height: auto;

        padding: 35px 20px;

    }

    #JointBanner .joint-hero-title {

        font-size: 25px;

        line-height: 1.3;

    }

    #JointBanner .joint-hero-text {

        font-size: 15px;

        line-height: 1.3;

    }

    #JointBanner .joint-features {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

    }

    #JointBanner .joint-feature-box {

        width: 100%;

        height: 85px;

    }

    #JointBanner .joint-hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

    }

}


/* ==========================================
   BOTTOM FIXED BAR
========================================== */

#bottomStickyBar {
    position: fixed;

    left: 0;
    bottom: 0;

    width: 100%;

    background: #C4E8FF;

    display: flex;
    justify-content: center;
    align-items: center;
/* z-index: 9999; */
    z-index: 22;

    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}


/* ITEM */

#bottomStickyBar .sticky-item {
    flex: 1;

    max-width: 340px;

    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    text-decoration: none;

    border-right: 1px solid rgba(0, 0, 0, 0.12);

    transition: .3s;
}

#bottomStickyBar .sticky-item:last-child {
    border-right: none;
}


/* ICON IMAGE */

#bottomStickyBar .sticky-item img {
    width: 34px;
    height: 34px;

    object-fit: contain;
}


/* TEXT */

#bottomStickyBar .sticky-item span {
    color: #111;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
}


/* HOVER */

#bottomStickyBar .sticky-item:hover {
    background: rgba(255, 255, 255, 0.5);
}


/* ==========================================
   COMMON TYPES OF JOINT REPLACEMENT
========================================== */

#commonJointTypes {
    width: 100%;

    background: #fff;

    padding: 40px 0 40px;

    overflow: hidden;
}


#commonJointTypes .container {
    max-width: 1150px;
}


/* ==========================================
   MAIN HEADING
========================================== */

#commonJointTypes .cjt-title {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 30px;
    font-weight: 600;

    line-height: 1.3;

    text-align: center;

    margin: 0 0 28px;
}


/* ==========================================
   INTRO
========================================== */

#commonJointTypes .cjt-intro {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.4;

    text-align: center;

    margin: 0 0 35px;
}


/* ==========================================
   MAIN CATEGORY HEADING
========================================== */

#commonJointTypes .cjt-main-heading {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;

    line-height: 1.3;

    margin: 0 0 14px;
}


/* ==========================================
   CHECK ICON
========================================== */

#commonJointTypes .cjt-check {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 19px;
    height: 19px;

    color: #ff3030;

    border: 2px solid #ff3030;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;

    flex-shrink: 0;
}


/* ==========================================
   ITEM
========================================== */

#commonJointTypes .cjt-item {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    margin-bottom: 19px;

}


/* ==========================================
   IMAGE
========================================== */

#commonJointTypes .cjt-image {
    width: 125px;
    min-width: 125px;

    height: 122px;

    overflow: hidden;

    border-radius: 5px;
}


#commonJointTypes .cjt-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* ==========================================
   CONTENT
========================================== */

#commonJointTypes .cjt-content {
    flex: 1;

    padding-top: 0;
}


/* ==========================================
   ITEM HEADING
========================================== */

#commonJointTypes .cjt-content h3 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;

    margin: 0 0 6px;
}


/* ==========================================
   ITEM PARAGRAPH
========================================== */

#commonJointTypes .cjt-content p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.45;

    margin: 0;
}


/* ==========================================
   KNEE ITEM
========================================== */

#commonJointTypes .cjt-knee-item {
    margin-top: 27px;
}


/* ==========================================
   ANKLE HEADING
========================================== */

#commonJointTypes .cjt-ankle-heading {
    margin-top: 28px;

    margin-bottom: 14px;
}


/* ==========================================
   ANKLE ITEM
========================================== */

#commonJointTypes .cjt-ankle-heading+.cjt-item {
    margin-bottom: 0;
}

/* ==========================================
   JOINT PROCEDURE + BENEFITS
========================================== */

#jointProcedureBenefits {
    width: 100%;
    background: #f8f8f8;
    padding: 40px 0 50px;
    overflow: visible;
}


#jointProcedureBenefits .container {
    max-width: 1150px;
}


/* ==========================================
   COMMON TITLE
========================================== */

#jointProcedureBenefits .jpb-title {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 30px;
    font-weight: 600;

    line-height: 1.3;

    margin: 0 0 8px;
}


/* ==========================================
   COMMON INTRO
========================================== */

#jointProcedureBenefits .jpb-intro,
#jointProcedureBenefits .jpb-benefit-intro {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.6;

    margin: 0 0 30px;
}


/* ==========================================
   PROCEDURE
========================================== */

#jointProcedureBenefits .jpb-steps {
    margin-top: 5px;
}


#jointProcedureBenefits .jpb-step {
    padding: 0 12px 0 10px;
    margin-bottom: 28px;
}


#jointProcedureBenefits .jpb-step h3 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.4;

    margin: 0 0 18px;
}


#jointProcedureBenefits .jpb-step ul {
    list-style: none;

    padding: 0;
    margin: 0;
}


#jointProcedureBenefits .jpb-step li {
    position: relative;

    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.45;

    padding-left: 34px;

    margin-bottom: 18px;
}


#jointProcedureBenefits .jpb-step li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 2px;

    font-family: "Font Awesome 6 Free";

    font-weight: 400;

    color: #ff3030;

    font-size: 19px;
}


#jointProcedureBenefits .jpb-step li strong {
    font-weight: 700;
}


/* ==========================================
   BENEFITS SECTION
========================================== */

#jointProcedureBenefits .jpb-benefits {
    margin-top: 8px;
}


#jointProcedureBenefits .jpb-benefits .jpb-title {
    margin-bottom: 8px;
}


#jointProcedureBenefits .jpb-benefit-intro {
    margin-bottom: 25px;
}


/* ==========================================
   BENEFIT ROW
========================================== */

#jointProcedureBenefits .jpb-benefit-row {
    row-gap: 38px;
}


/* ==========================================
   BENEFIT CARD
========================================== */

#jointProcedureBenefits .jpb-benefit-card {
    min-height: 300px;

    border: 1px solid #d7d7d7;

    background: #fafafa;

    padding: 14px 14px 18px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;
}


/* ==========================================
   BENEFIT ICON
========================================== */

#jointProcedureBenefits .jpb-benefit-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}


#jointProcedureBenefits .jpb-benefit-icon img {
    width: 48px;
    height: 48px;

    object-fit: contain;

    display: block;
}


/* ==========================================
   BENEFIT HEADING
========================================== */

#jointProcedureBenefits .jpb-benefit-card h3 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.35;

    margin: 0 0 8px;
}


/* ==========================================
   BENEFIT TEXT
========================================== */

#jointProcedureBenefits .jpb-benefit-card p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.4;

    margin: 0;
}


/* ==========================================
   RISKS SECTION
========================================== */

#jointProcedureBenefits .jpb-risks {
    margin-top: 55px;

    margin-bottom: 55px;
}


#jointProcedureBenefits .jpb-risks .jpb-title {
    margin-bottom: 25px;
}


#jointProcedureBenefits .jpb-risk-list {
    margin-top: 5px;
}


#jointProcedureBenefits .jpb-risk-item {
    margin-bottom: 38px;
}


#jointProcedureBenefits .jpb-risk-item h3 {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #222;

    font-family: "Roboto", sans-serif;

    font-size: 22px;

    font-weight: 700;

    line-height: 1.4;

    margin: 0 0 2px;
}


/* ==========================================
   RISK ICON
========================================== */

#jointProcedureBenefits .jpb-risk-icon {
    width: 20px;

    height: 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: #a92c15;

    color: #fff;

    border-radius: 50%;
}


#jointProcedureBenefits .jpb-risk-icon i {
    font-size: 10px;
}


/* ==========================================
   RISK TEXT
========================================== */

#jointProcedureBenefits .jpb-risk-item p {
    color: #222;

    font-family: "Roboto", sans-serif;

    font-size: 22px;

    font-weight: 400;

    line-height: 1.4;

    margin: 0 0 0 30px;
}


/* ==========================================
   CANDIDATE SECTION
========================================== */

#jointProcedureBenefits .jpb-candidate {
    margin-top: 10px;

    margin-bottom: 30px;
}


#jointProcedureBenefits .jpb-candidate .jpb-title {
    margin-bottom: 25px;
}


#jointProcedureBenefits .jpb-candidate .jpb-intro {
    margin-bottom: 25px;
}


/* ==========================================
   CANDIDATE ROW
========================================== */

#jointProcedureBenefits .jpb-candidate-row {
    row-gap: 20px;
}


/* ==========================================
   CANDIDATE CARD
========================================== */

#jointProcedureBenefits .jpb-candidate-card {
    height: 100%;

    min-height: 330px;

    border: 1px solid #d7d7d7;

    background: #fafafa;

    padding: 18px 20px 22px;

    text-align: left;
}


/* ==========================================
   CANDIDATE ICON
========================================== */

#jointProcedureBenefits .jpb-candidate-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    margin-bottom: 10px;

    color: #111;

    font-size: 42px;
}


#jointProcedureBenefits .jpb-candidate-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}


/* ==========================================
   CANDIDATE HEADING
========================================== */

#jointProcedureBenefits .jpb-candidate-card h3 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.4;

    margin: 0 0 20px;
}


/* ==========================================
   CANDIDATE TEXT
========================================== */

#jointProcedureBenefits .jpb-candidate-card p {
    color: #555;

    font-family: "Roboto", sans-serif;

    font-size: 22px;

    font-weight: 400;

    line-height: 1.4;

    margin: 0;
}


/* ==========================================
   STICKY DOCTOR AREA
========================================== */

#jointProcedureBenefits .jpb-doctor-sticky {
    position: sticky;

    top: 20px;

    width: 100%;
}


/* ==========================================
   DOCTOR CARD
========================================== */

#jointProcedureBenefits .jpb-doctor-card {
    width: 100%;

    max-width: 260px;

    margin: 10px auto 0;

    border: 1px solid #d7d7d7;

    background: #fafafa;

    padding: 10px 15px 10px;

    text-align: center;
}


/* ==========================================
   DOCTOR IMAGE
========================================== */

#jointProcedureBenefits .jpb-doctor-image {
    width: 200px;

    height: 200px;

    margin: 0 auto 10px;

    overflow: hidden;

    border-radius: 5px;
}


#jointProcedureBenefits .jpb-doctor-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;
}


/* ==========================================
   DOCTOR NAME
========================================== */

#jointProcedureBenefits .jpb-doctor-card h3 {
    color: #a92c15;

    font-family: "Roboto", sans-serif;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.3;

    margin: 0 0 10px;
}


/* ==========================================
   DOCTOR DESIGNATION
========================================== */

#jointProcedureBenefits .jpb-doctor-card p {
    color: #333;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.45;

    margin: 0 0 12px;
}


/* ==========================================
   CALLBACK BUTTON
========================================== */

#jointProcedureBenefits .jpb-callback-btn {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 42px;

    background: #a92c15;

    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 3px;

    transition: .25s ease;
}


#jointProcedureBenefits .jpb-callback-btn:hover {
    background: #8f230f;

    color: #fff;
}




/* ==========================================
   TRAUMA HERO BANNER
========================================== */

#spineHeroBanner {
    position: relative;
    width: 100%;
    background: #28304d;
    overflow: hidden;
}


/* ==========================================
   INNER / BACKGROUND IMAGE
========================================== */

#spineHeroBanner .trauma-hero-inner {
    position: relative;
    z-index: 1;

    max-width: 1150px;
    min-height: 520px;

    margin: 0 auto;
    padding: 35px 25px;

    box-sizing: border-box;

    background-image: url("../images/gallery21.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* ==========================================
   PURPLE GRADIENT OVER IMAGE
========================================== */

#spineHeroBanner .trauma-hero-inner::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(97deg, #28304D 30%, #FFFFFF00 100%);

    z-index: 0;
}


/* ==========================================
   CONTENT
========================================== */

#spineHeroBanner .trauma-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 700px;
}


/* ==========================================
   TITLE
========================================== */

#spineHeroBanner .trauma-hero-title {
    color: #fff;

    font-family: "Roboto", sans-serif;
  text-transform: uppercase;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.35;

    margin: 0 0 35px;
}


/* ==========================================
   DESCRIPTION
========================================== */

#spineHeroBanner .trauma-hero-text {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;

    margin: 0 0 25px;
}


/* ==========================================
   FEATURES
========================================== */

#spineHeroBanner .trauma-features {
    display: flex;
    flex-wrap: wrap;

    max-width: 650px;

    column-gap: 35px;
    row-gap: 18px;

    margin-bottom: 38px;
}


/* FEATURE */

#spineHeroBanner .trauma-feature {
    display: flex;
    align-items: center;

    width: 270px;

    gap: 10px;
}


/* FEATURE ICON */

#spineHeroBanner .trauma-feature i {
    color: #FFF900;

    font-size: 20px;

    flex-shrink: 0;
}


/* FEATURE TEXT */

#spineHeroBanner .trauma-feature span {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}


/* ==========================================
   ACTIONS
========================================== */

#spineHeroBanner .trauma-actions {
    display: flex;
    align-items: center;

    gap: 60px;

    margin-bottom: 32px;
}


/* ==========================================
   ENQUIRE BUTTON
========================================== */

#spineHeroBanner .trauma-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    height: 58px;

    padding: 0 25px;

    background: #a92d15;
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 5px;

    transition: background .25s ease;
}


#spineHeroBanner .trauma-enquire-btn:hover {
    background: #8f2410;
    color: #fff;
}


/* ==========================================
   PHONE LIST
========================================== */

#spineHeroBanner .trauma-phone-list {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


#spineHeroBanner .trauma-phone-list a {
    display: flex;
    align-items: center;

    gap: 14px;

    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.3;

    text-decoration: none;
}


#spineHeroBanner .trauma-phone-list a:hover {
    color: #fff;
}


#spineHeroBanner .trauma-phone-list i {
    color: #fff;

    font-size: 20px;

    width: 25px;

    text-align: center;
}


/* ==========================================
   DIVIDER
========================================== */

#spineHeroBanner .trauma-divider {
    width: 607px;
    max-width: 100%;

    height: 1px;

    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .55);

    margin: 0 0 28px;
}


/* ==========================================
   RATING
========================================== */

#spineHeroBanner .trauma-rating {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* RATING LABEL */

#spineHeroBanner .trauma-rating-label {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 15px;
    font-weight: 600;
}


/* STARS */

#spineHeroBanner .trauma-stars {
    display: flex;
    align-items: center;

    gap: 3px;

    color: #f5a623;

    font-size: 18px;
}


#spineHeroBanner .trauma-stars .fa-regular {
    color: #cfcfcf;
}


/* RATING TEXT */

#spineHeroBanner .trauma-rating-text {
    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 15px;
    font-weight: 500;
}


#spineHeroBanner .trauma-rating-text b {
    color: #fff;

    font-weight: 700;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #spineHeroBanner {
        min-height: auto;
    }


    /* INNER */

    #spineHeroBanner .trauma-hero-inner {
        min-height: auto;

        padding: 35px 20px 40px;

        background-position: center;
    }


    /* FEATURES */

    #spineHeroBanner .trauma-features {
        flex-direction: column;

        gap: 15px;

        max-width: 100%;

        margin-bottom: 30px;
    }


    #spineHeroBanner .trauma-feature {
        width: 100%;
    }

    /* ACTIONS */

    #spineHeroBanner .trauma-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 28px;
    }
}



/* ==========================================
   JOINT REPLACEMENT HERO BANNER
========================================== */

#ShoulderBanner {

    position: relative;

    background-color: #008688;

    overflow: hidden;

}


/* ==========================================
   BACKGROUND IMAGE WRAPPER
========================================== */

#ShoulderBanner .joint-bg-wrapper {

    position: absolute;

    top: 0;
    right: 0;

    width: 65%;
    height: 100%;

    overflow: hidden;

    z-index: 0;

}

#ShoulderBanner .joint-bg-wrapper img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

}


/* Gradient over image */

#ShoulderBanner .joint-bg-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(97deg,
            #C6F4FF 30%,
            #FFFFFF00 100%);

}


/* ==========================================
   INNER
========================================== */

#ShoulderBanner .joint-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    background-color: transparent;

    --background-overlay: '';

    background-image: linear-gradient(97deg, #008688 30%, #FFFFFF00 100%),
        url('../images/gallery21.webp');

    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    margin: 0 auto;
    padding: 70px 15px 55px;
    height: 85vh
}



/* ==========================================
   CONTENT
========================================== */

#ShoulderBanner .joint-hero-content {

    max-width: 620px;

}


/* ==========================================
   TITLE
========================================== */

#ShoulderBanner .joint-hero-title {

   font-family: "Roboto", Sans-serif;
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 62px;
    color: #FFFFFF;

}


/* ==========================================
   TEXT
========================================== */

#ShoulderBanner .joint-hero-text {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 18px;

}

#ShoulderBanner .joint-hero-text b {

    color: #fff;

    font-weight: 700;

}


/* ==========================================
   FEATURES
========================================== */

#ShoulderBanner .joint-features {

    display: flex;

    gap: 5px;

    margin-bottom: 25px;

}

#ShoulderBanner .joint-feature-box {

    width: 138px;

    height: 92px;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.20);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

#ShoulderBanner .joint-feature-box i {

    font-size: 34px;

    color: #e32828;

    margin-bottom: 8px;

}

#ShoulderBanner .joint-feature-box span {

    font-family: "Roboto", Sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #111;

}


/* ==========================================
   ACTIONS
========================================== */

#ShoulderBanner .joint-hero-actions {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-bottom: 28px;

}


/* Button */

#ShoulderBanner .joint-btn-enquire {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    height: 58px;

    padding: 0 30px;

    background: #da2028;

    color: #fff;

    font-family: "Roboto", Sans-serif;

    font-size: 17px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 5px;

    transition: background .25s ease;

}

#ShoulderBanner .joint-btn-enquire:hover {

    background: #8d210e;

    color: #fff;

}


/* Phone */

#ShoulderBanner .joint-phone-list {

    display: flex;

    flex-direction: column;

    gap: 7px;

}

#ShoulderBanner .joint-phone-list a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    text-decoration: none;

    font-family: "Roboto", Sans-serif;

    font-size: 18px;

    font-weight: 500;

}

#ShoulderBanner .joint-phone-list i {

    font-size: 21px;

    color: #fff;

}


/* ==========================================
   DIVIDER
========================================== */

#ShoulderBanner .joint-divider {

    border: 0;

    border-top: 1px solid rgba(0, 0, 0, .18);

    width: 562px;

    max-width: 100%;

    margin: 0 0 20px;

}


/* ==========================================
   RATING
========================================== */

#ShoulderBanner .joint-rating {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}

#ShoulderBanner .joint-rating-label {

    color: #fff;

    font-weight: 600;

    font-size: 15px;

}

#ShoulderBanner .joint-rating-stars {

    display: flex;

    gap: 3px;

    color: #f5a623;

    font-size: 18px;

}

#ShoulderBanner .joint-rating-stars i.fa-regular {

    color: #cfcfcf;

}

#ShoulderBanner .joint-rating-copy {

    color: #fff;

    font-size: 15px;

}

#ShoulderBanner .joint-rating-copy b {

    color: #fff;

    font-weight: 700;

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #ShoulderBanner {

        min-height: auto;

    }

    #ShoulderBanner .joint-bg-wrapper {

        width: 100%;

        height: 100%;

    }


    #ShoulderBanner .joint-hero-inner {

        min-height: auto;

        padding: 35px 20px;

    }

    #ShoulderBanner .joint-hero-title {

        font-size: 25px;

        line-height: 1.3;

    }

    #ShoulderBanner .joint-hero-text {

        font-size: 15px;

        line-height: 1.3;

    }

    #ShoulderBanner .joint-features {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

    }

    #ShoulderBanner .joint-feature-box {

        width: 100%;

        height: 85px;

    }

    #ShoulderBanner .joint-hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

    }

}


/* ==========================================
   SHOULDER ARTHROSCOPY
========================================== */

#shoulderNeed {
    width: 100%;
    background: #f8f8f8;

    padding: 40px 0 0px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#shoulderNeed .container {
    max-width: 1150px;
}


/* ==========================================
   LEFT CONTENT
========================================== */

#shoulderNeed .shoulder-content {
    padding-top: 0;
}


/* ==========================================
   HEADING
========================================== */

#shoulderNeed .shoulder-content h2 {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 32px;

    font-weight: 600;

    line-height: 1.4;

    margin: 0 0 8px;
}


/* ==========================================
   LIST
========================================== */

#shoulderNeed .shoulder-list {
    margin: 0 0 28px;
    padding: 0;

    list-style: none;

    column-count: 2;
    column-gap: 50px;
}


/* ==========================================
   LIST ITEM
========================================== */

#shoulderNeed .shoulder-list li {
    position: relative;

    color: #111;

    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;

    padding-left: 34px;

    margin-bottom: 17px;

    break-inside: avoid;
}


/* ==========================================
   CHECK ICON
========================================== */

#shoulderNeed .shoulder-list li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 0;

    font-family: "Font Awesome 6 Free";

    font-weight: 400;

    font-size: 20px;

    color: #e31e24;
}


/* ==========================================
   DESCRIPTION
========================================== */

#shoulderNeed .shoulder-description {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.5;

    margin: 0 0 35px;

    max-width: 760px;
}


#shoulderNeed .shoulder-description strong {
    font-weight: 700;
}


/* ==========================================
   BUTTON
========================================== */

#shoulderNeed .shoulder-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 203px;
    height: 43px;

    padding: 0 22px;

    background: #a92c15;

    color: #fff;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 3px;

    transition: all 0.25s ease;
}


#shoulderNeed .shoulder-btn:hover {
    background: #8f230f;
    color: #fff;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

#shoulderNeed .shoulder-image {
    width: 100%;

    height:100%;

    display: flex;

    align-items: flex-start;

    justify-content: center;
}


#shoulderNeed .shoulder-image img {
    width: auto;

    height: 100%;

    max-width: 100%;

    object-fit: contain;

    object-position: center top;

    display: block;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #shoulderNeed .shoulder-list {
        column-count: 1;

        column-gap: 0;

        margin-bottom: 25px;
    }
}

/* ==========================================
   KNEE ARTHROSCOPY INFO
========================================== */

#kneeArthroscopyInfo {
    width: 100%;

    background: #ffffff;

    padding: 42px 0 55px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#kneeArthroscopyInfo .container {
    max-width: 1150px;
}


/* ==========================================
   INTRO
========================================== */

#kneeArthroscopyInfo .knee-intro {
    margin-bottom: 68px;
}


/* ==========================================
   MAIN TITLE
========================================== */

#kneeArthroscopyInfo .knee-intro h2 {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 34px;

    font-weight: 600;

    line-height: 1.3;

    margin: 0 0 48px;
}


/* ==========================================
   SUB TITLE
========================================== */

#kneeArthroscopyInfo .knee-intro h3 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 22px;

    font-weight: 700;

    line-height: 1.4;

    margin: 0 0 25px;
}


/* ==========================================
   INTRO TEXT
========================================== */

#kneeArthroscopyInfo .knee-intro p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.5;

    margin: 0;
}


#kneeArthroscopyInfo .knee-intro p strong {
    font-weight: 700;
}


/* ==========================================
   DETAILS
========================================== */

#kneeArthroscopyInfo .knee-details {
    margin: 0;
}


/* ==========================================
   LEFT CONTENT
========================================== */

#kneeArthroscopyInfo .knee-details-content {
    padding-right: 20px;
}


/* ==========================================
   DETAILS TITLE
========================================== */

#kneeArthroscopyInfo .knee-details-content > h2 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 32px;

    font-weight: 600;

    line-height: 1.3;

    margin: 0 0 38px;
}


/* ==========================================
   FEATURE LIST
========================================== */

#kneeArthroscopyInfo .knee-feature-list {
    list-style: none;

    padding: 0;

    margin: 0;

    column-count: 2;

    column-gap: 45px;
}


/* ==========================================
   FEATURE ITEM
========================================== */

#kneeArthroscopyInfo .knee-feature-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    break-inside: avoid;

    margin-bottom: 27px;
}


/* ==========================================
   CHECK ICON
========================================== */

#kneeArthroscopyInfo .knee-check {
    width: 26px;

    height: 26px;

    flex: 0 0 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1.5px solid #e31e24;

    border-radius: 4px;

    margin-top: 1px;
}


#kneeArthroscopyInfo .knee-check i {
    color: #e31e24;

    font-size: 13px;

    line-height: 1;
}


/* ==========================================
   FEATURE CONTENT
========================================== */

#kneeArthroscopyInfo .knee-feature-content {
    flex: 1;
}


/* ==========================================
   FEATURE TITLE
========================================== */

#kneeArthroscopyInfo .knee-feature-content h4 {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.35;

    margin: 0 0 5px;
}


/* ==========================================
   FEATURE TEXT
========================================== */

#kneeArthroscopyInfo .knee-feature-content p {
    color: #111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.45;

    margin: 0;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

#kneeArthroscopyInfo .knee-image {
    width: 100%;

    height: 480px;

    overflow: hidden;

    border-radius: 15px;

    margin-top: 0;
}


#kneeArthroscopyInfo .knee-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #kneeArthroscopyInfo .knee-feature-list {
        column-count: 1;

        column-gap: 0;
    }


}

/* ==========================================
   PEDIATRIC ORTHOPEDICS
========================================== */

#pediatricOrthoInfo {
    width: 100%;
    background: #ffffff;

    padding: 35px 0 55px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#pediatricOrthoInfo .container {
    max-width: 1150px;
}


/* ==========================================
   INTRO
========================================== */

#pediatricOrthoInfo .pediatric-ortho-intro {
    margin-bottom: 55px;
}


/* ==========================================
   MAIN HEADING
========================================== */

#pediatricOrthoInfo .pediatric-ortho-intro h2 {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 34px;

    font-weight: 600;

    line-height: 1.3;

    margin: 0 0 45px;
}


/* ==========================================
   INTRO PARAGRAPH
========================================== */

#pediatricOrthoInfo .pediatric-ortho-intro p {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.5;

    max-width: 850px;

    margin: 0;
}


#pediatricOrthoInfo .pediatric-ortho-intro p strong {
    font-weight: 700;
}


/* ==========================================
   CONDITIONS TITLE
========================================== */

#pediatricOrthoInfo .pediatric-conditions > h3 {
    color: #b12816;

    font-family: "Roboto", sans-serif;

    font-size: 23px;

    font-weight: 400;

    line-height: 1.4;

    margin: 0 0 42px;
}


/* ==========================================
   CONDITION ROW
========================================== */

#pediatricOrthoInfo .pediatric-condition-row {
    row-gap: 28px;

    margin: 0;
}


/* ==========================================
   CONDITION ITEM
========================================== */

#pediatricOrthoInfo .pediatric-condition-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding-right: 20px;
}


/* ==========================================
   ICON
========================================== */

#pediatricOrthoInfo .pediatric-condition-icon {
    width: 32px;

    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;

    justify-content: center;
}


#pediatricOrthoInfo .pediatric-condition-icon img {
    width: 29px;

    height: 29px;

    display: block;

    object-fit: contain;
}


/* ==========================================
   CONDITION CONTENT
========================================== */

#pediatricOrthoInfo .pediatric-condition-content {
    flex: 1;
}


/* ==========================================
   CONDITION HEADING
========================================== */

#pediatricOrthoInfo .pediatric-condition-content h4 {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.35;

    margin: 0 0 5px;
}


/* ==========================================
   CONDITION TEXT
========================================== */

#pediatricOrthoInfo .pediatric-condition-content p {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.45;

    margin: 0;
}


/* ==========================================
   PEDIATRIC TREATMENT & SERVICES
========================================== */

#pediatricTreatmentServices {
    width: 100%;

    background: #ffffff;

    padding: 35px 0 55px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#pediatricTreatmentServices .container {
    max-width: 1150px;
}


/* ==========================================
   COMMON HEADING
========================================== */

#pediatricTreatmentServices h2 {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 32px;

    font-weight: 600;

    line-height: 1.35;

    text-align: center;

    margin: 0 0 38px;
}


/* ==========================================
   TREATMENT SECTION
========================================== */

#pediatricTreatmentServices .pts-treatment {
    margin-bottom: 55px;
}


/* ==========================================
   TREATMENT PARAGRAPH
========================================== */

#pediatricTreatmentServices .pts-treatment > p {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.55;

    margin: 0 0 25px;
}


/* ==========================================
   MAIN LIST
========================================== */

#pediatricTreatmentServices .pts-main-list {
    padding-left: 40px;

    margin: 0;
}


/* ==========================================
   MAIN LIST ITEMS
========================================== */

#pediatricTreatmentServices .pts-main-list li {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.55;

    padding-left: 4px;

    margin-bottom: 2px;
}


/* ==========================================
   TRANSITION
========================================== */

#pediatricTreatmentServices .pts-transition {
    margin-bottom: 40px;
}


#pediatricTreatmentServices .pts-transition p {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.55;

    margin: 0;
}


/* ==========================================
   FACILITIES
========================================== */

#pediatricTreatmentServices .pts-facilities {
    margin-bottom: 42px;
}


/* ==========================================
   FACILITY INTRO
========================================== */

#pediatricTreatmentServices .pts-facility-intro {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.5;

    margin: 0 0 16px;
}


/* ==========================================
   FACILITY LIST
========================================== */

#pediatricTreatmentServices .pts-facility-list {
    margin: 0;

    padding-left: 40px;
}


/* ==========================================
   FACILITY LIST ITEM
========================================== */

#pediatricTreatmentServices .pts-facility-list li {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.45;

    margin-bottom: 3px;

    padding-left: 4px;
}


/* ==========================================
   FINAL CONTENT
========================================== */

#pediatricTreatmentServices .pts-final-content {
    margin-top: 5px;
}


#pediatricTreatmentServices .pts-final-content p {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.5;

    margin: 0;
}


#pediatricTreatmentServices .pts-final-content strong {
    font-weight: 700;
}



/* ==========================================
   PEDIATRIC HERO
========================================== */

#pediatricHero {
    width: 100%;

    background: #E6D7C3;

    padding: 0;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#pediatricHero .container {
    max-width: 1150px;
}


/* ==========================================
   INNER HERO
========================================== */

#pediatricHero .pediatricHero-inner {

    position: relative;

    min-height: 460px;

    background-image:
        url("../images/Pediatric-Orthopedics-bg.webp");

    background-repeat: no-repeat;

    background-position: right center;

    background-size: contain;

    display: flex;

    align-items: center;

    isolation: isolate;
}


/* ==========================================
   GRADIENT OVERLAY
========================================== */

#pediatricHero .pediatricHero-inner::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            97deg,
            #E6D7C3 30%,
            #FFFFFF00 100%
        );

    z-index: -1;
}


/* ==========================================
   CONTENT
========================================== */

#pediatricHero .pediatricHero-content {

    width: 65%;

    padding: 25px 0 35px;

    position: relative;

    z-index: 2;
}


/* ==========================================
   HEADING
========================================== */

#pediatricHero .pediatricHero-content h1 {

    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.45;

    margin: 0 0 34px;

    text-transform: uppercase;
}


/* ==========================================
   SUB HEADING
========================================== */

#pediatricHero .pediatricHero-content h3 {

    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.45;

    margin: 0 0 32px;
}


/* ==========================================
   FEATURES
========================================== */

#pediatricHero .pediatricHero-features {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 70px;

    row-gap: 16px;

    max-width: 650px;
}


/* ==========================================
   FEATURE
========================================== */

#pediatricHero .pediatricHero-feature {

    display: flex;

    align-items: flex-start;

    gap: 10px;
}


/* ==========================================
   ARROW
========================================== */

#pediatricHero .pediatricHero-feature span {

    color: #0077a3;

    font-size: 25px;

    line-height: 1;

    flex-shrink: 0;

    margin-top: -1px;
}


/* ==========================================
   FEATURE TEXT
========================================== */

#pediatricHero .pediatricHero-feature p {

    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.35;

    margin: 0;
}


/* ==========================================
   BOTTOM AREA
========================================== */

#pediatricHero .pediatricHero-bottom {

    display: flex;

    align-items: center;

    gap: 66px;

    margin-top: 22px;

    padding-bottom: 8px;
}


/* ==========================================
   BUTTON
========================================== */

#pediatricHero .pediatricHero-btn {

    min-width: 180px;

    height: 58px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 25px;

    background: #a92c15;

    color: #ffffff;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 4px;

    transition: all 0.25s ease;
}


#pediatricHero .pediatricHero-btn:hover {

    background: #8f230f;

    color: #ffffff;
}


/* ==========================================
   PHONE AREA
========================================== */

#pediatricHero .pediatricHero-phone {

    display: flex;

    flex-direction: column;

    gap: 7px;
}


#pediatricHero .pediatricHero-phone a {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 17px;

    font-weight: 400;

    text-decoration: none;
}


/* ==========================================
   PHONE ICON
========================================== */

#pediatricHero .phone-icon {

    color: #e31e24;

    font-size: 23px;

    line-height: 1;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #pediatricHero .pediatricHero-content {

        width: 70%;
    }


    #pediatricHero .pediatricHero-content h1 {

        font-size: 26px;
    }


    #pediatricHero .pediatricHero-feature p {

        font-size: 18px;
    }


    #pediatricHero .pediatricHero-features {

        column-gap: 35px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #pediatricHero {

        padding: 0;
    }


    #pediatricHero .pediatricHero-content {

        width: 100%;

        padding: 25px 15px 0;
    }


    #pediatricHero .pediatricHero-content h1 {

        font-size: 25px;

        line-height: 1.35;

        margin-bottom: 25px;
    }


    #pediatricHero .pediatricHero-content h3 {

        font-size: 15px;

        margin-bottom: 25px;
    }


    #pediatricHero .pediatricHero-features {

        grid-template-columns: 1fr;

        gap: 12px;

        max-width: 100%;
    }


    #pediatricHero .pediatricHero-feature p {

        font-size: 17px;
    }


    #pediatricHero .pediatricHero-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-top: 25px;
    }


    #pediatricHero .pediatricHero-btn {

        height: 50px;
    }

}




/* ==========================================
   PEDIATRIC HERO
========================================== */

#deformityHero {
    width: 100%;

    background: #FFDDB2;

    padding: 40px 0 0;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#deformityHero .container {
    max-width: 1150px;
}


/* ==========================================
   INNER HERO
========================================== */

#deformityHero .pediatricHero-inner {

    position: relative;

    min-height: 460px;

    background-image:
        url("../images/deformity-correction-bg.webp");

    background-repeat: no-repeat;

    background-position: right center;

    background-size: contain;
        border-top-right-radius: 20px;
    display: flex;

    align-items: center;

    isolation: isolate;
}


/* ==========================================
   GRADIENT OVERLAY
========================================== */

#deformityHero .pediatricHero-inner::before {

    content: "";

    position: absolute;

    inset: 0;

    background:linear-gradient(97deg, #FFDDB2 30%, #FFFFFF00 100%);

    z-index: -1;
}


/* ==========================================
   CONTENT
========================================== */

#deformityHero .pediatricHero-content {

    width: 65%;

    padding: 25px 0 35px;

    position: relative;

    z-index: 2;
}


/* ==========================================
   HEADING
========================================== */

#deformityHero .pediatricHero-content h1 {

    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.45;

    margin: 0 0 34px;

    text-transform: uppercase;
}


/* ==========================================
   SUB HEADING
========================================== */

#deformityHero .pediatricHero-content h3 {

    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.45;

    margin: 0 0 32px;
}


/* ==========================================
   FEATURES
========================================== */

#deformityHero .pediatricHero-features {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 70px;

    row-gap: 16px;

    max-width: 650px;
}


/* ==========================================
   FEATURE
========================================== */

#deformityHero .pediatricHero-feature {

    display: flex;

    align-items: flex-start;

    gap: 10px;
}


/* ==========================================
   ARROW
========================================== */

#deformityHero .pediatricHero-feature span {

    color: #0077a3;

    font-size: 25px;

    line-height: 1;

    flex-shrink: 0;

    margin-top: -1px;
}


/* ==========================================
   FEATURE TEXT
========================================== */

#deformityHero .pediatricHero-feature p {

    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.35;

    margin: 0;
}


/* ==========================================
   BOTTOM AREA
========================================== */

#deformityHero .pediatricHero-bottom {

    display: flex;

    align-items: center;

    gap: 66px;

    margin-top: 22px;

    padding-bottom: 8px;
}


/* ==========================================
   BUTTON
========================================== */

#deformityHero .pediatricHero-btn {

    min-width: 180px;

    height: 58px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 25px;

    background: #a92c15;

    color: #ffffff;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 4px;

    transition: all 0.25s ease;
}


#deformityHero .pediatricHero-btn:hover {

    background: #8f230f;

    color: #ffffff;
}


/* ==========================================
   PHONE AREA
========================================== */

#deformityHero .pediatricHero-phone {

    display: flex;

    flex-direction: column;

    gap: 7px;
}


#deformityHero .pediatricHero-phone a {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 17px;

    font-weight: 400;

    text-decoration: none;
}


/* ==========================================
   PHONE ICON
========================================== */

#deformityHero .phone-icon {

    color: #e31e24;

    font-size: 23px;

    line-height: 1;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #deformityHero .pediatricHero-content {

        width: 70%;
    }


    #deformityHero .pediatricHero-content h1 {

        font-size: 26px;
    }


    #deformityHero .pediatricHero-feature p {

        font-size: 18px;
    }


    #deformityHero .pediatricHero-features {

        column-gap: 35px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    #deformityHero {

        padding: 0;
    }


    #deformityHero .pediatricHero-content {

        width: 100%;

        padding: 25px 15px 0;
    }


    #deformityHero .pediatricHero-content h1 {

        font-size: 25px;

        line-height: 1.35;

        margin-bottom: 25px;
    }


    #deformityHero .pediatricHero-content h3 {

        font-size: 15px;

        margin-bottom: 25px;
    }


    #deformityHero .pediatricHero-features {

        grid-template-columns: 1fr;

        gap: 12px;

        max-width: 100%;
    }


    #deformityHero .pediatricHero-feature p {

        font-size: 17px;
    }


    #deformityHero .pediatricHero-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-top: 25px;
    }


    #deformityHero .pediatricHero-btn {

        height: 50px;
    }

}



/* ==========================================
   DEFORMITY CORRECTION
========================================== */

#deformityCorrection {
    width: 100%;

    background: #ffffff;

    padding: 30px 0 55px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

#deformityCorrection .container {
    max-width: 1150px;
}


/* ==========================================
   INTRO
========================================== */

#deformityCorrection .dc-intro {
    text-align: center;

    margin-bottom: 45px;
}


/* ==========================================
   MAIN HEADING
========================================== */

#deformityCorrection .dc-intro h2 {
    color: #da2028;

    font-family: "Roboto", sans-serif;

    font-size: 36px;

    font-weight: 600;

    line-height: 1.3;

    margin: 0 0 42px;
}


/* ==========================================
   INTRO TEXT
========================================== */

#deformityCorrection .dc-intro p {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.55;

    max-width: 1100px;

    margin: 0 auto;
}


#deformityCorrection .dc-intro p strong {
    font-weight: 700;
}


/* ==========================================
   PROCESS TITLE
========================================== */

#deformityCorrection .dc-process-title {
    text-align: center;

    margin-bottom: 48px;
}


#deformityCorrection .dc-process-title h3 {
    color: #b12816;

    font-family: "Roboto", sans-serif;

    font-size: 23px;

    font-weight: 400;

    line-height: 1.4;

    margin: 0;
}


/* ==========================================
   PROCESS ROW
========================================== */

#deformityCorrection .dc-process-row {
    row-gap: 28px;

    margin: 0;
}


/* ==========================================
   PROCESS ITEM
========================================== */

#deformityCorrection .dc-process-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding-right: 15px;
}


/* ==========================================
   ICON
========================================== */

#deformityCorrection .dc-process-icon {
 width: 90px;

    height:90px;

    display: flex;

    align-items: flex-start;

    justify-content: center;
}


#deformityCorrection .dc-process-icon img {
    width: 100px;

    height:100px;

    display: block;

    object-fit: contain;
}


/* ==========================================
   CONTENT
========================================== */

#deformityCorrection .dc-process-content {
    flex: 1;
}


/* ==========================================
   ITEM HEADING
========================================== */

#deformityCorrection .dc-process-content h4 {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.35;

    margin: 0 0 5px;
}


/* ==========================================
   ITEM TEXT
========================================== */

#deformityCorrection .dc-process-content p {
    color: #111111;

    font-family: "Roboto", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.45;

    margin: 0;
}


#testi {
    padding: 50px 0;
    background: #fff;
}

#testi .testi-box {
    background: #fff;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#testi .testi-content {
    padding: 20px;
    flex: 1;
}

#testi .testi-content p {
    margin: 0;
    color: #111;
    font-size: 16px;
    line-height: 1.45;
    font-family: Arial, sans-serif;
}

#testi .testi-bottom {
    background: #d90000;
    min-height: 60px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#testi .testi-bottom h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 2px;
}

#testi .testi-stars {
    color: #ffff00;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
}

#testi .testi-quote {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 35px;
    transform: rotate(180deg);
    display: inline-block;
    position: relative;
    top: 5px;
}


/* =========================================
   ENQUIRY MODAL
========================================= */

#enquiryModal .modal-dialog {
    max-width: 1000px;
    width: 95%;
}

#enquiryModal .modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.20);
}


/* =========================================
   LEFT IMAGE
========================================= */

#enquiryModalImage {
    background: #eafafa;
}

#enquiryModalImage .enquiry-image {
    width: 100%;
    height: 100%;
    min-height: 620px;
    position: relative;
    overflow: hidden;
}

#enquiryModalImage img {
      width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}


/* =========================================
   FORM SIDE
========================================= */

#enquiryModal .enquiry-form-wrapper {
    position: relative;
    padding: 30px;
    height: 100%;
    background: #fff;
}

#enquiryModal .enquiry-form-wrapper h1 {
    color: #a8321d;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 22px;
}

#enquiryModal .enquiry-form-wrapper h3 {
    color: #222;
    font-size: 23px;
    font-weight: 400;
    margin: 0 0 44px;
}


/* =========================================
   CLOSE BUTTON
========================================= */

#enquiryModal .enquiry-close {
    position: absolute;
    top: 18px;
    right: 12px;
    z-index: 10;
    opacity: 1;
    width: 20px;
    height: 20px;
}

#enquiryModal .enquiry-close:focus {
    box-shadow: none;
}


/* =========================================
   INPUTS
========================================= */

#enquiryModal form {
    width: 100%;
}

#enquiryModal .form-control {
    height: 50px;
    border: 1px solid #d5d5d5;
    border-radius: 0;
    padding: 0 10px;
    font-size: 14px;
    color: #222;
    box-shadow: none;
}

#enquiryModal .form-control:focus {
    border-color: #a8321d;
    box-shadow: none;
}

#enquiryModal textarea.form-control {
    height: 150px;
    padding: 10px;
    resize: none;
}

#enquiryModal select.form-control {
     width: 168px;
    margin-top: 10px;
    margin-bottom: 11px;
    cursor: pointer;
}


/* =========================================
   INPUT SPACING
========================================= */

#enquiryModal form .col-md-6:nth-child(1),
#enquiryModal form .col-md-6:nth-child(2) {
       margin-bottom: 10px;
}

#enquiryModal form .col-md-6:nth-child(3),
#enquiryModal form .col-md-6:nth-child(4) {
    margin-bottom: 0;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

#enquiryModal .submit {
    margin-top: 20px;
    border: none;
    background: #a8321d;
    color: #fff;
    padding: 13px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s ease;
}

#enquiryModal .submit:hover {
    background: #8e2918;
}


/* =========================================
   MODAL BACKDROP
========================================= */

#enquiryModal.show {
    background: rgba(0, 0, 0, 0.45);
}



#thankyou {
    padding: 80px 0;
    display: flex;
    align-items: center;
    background: #f5fafa;
}

#thankyou .thankyou-box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.10);
}

#thankyou .thankyou-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #a8321d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

#thankyou h1 {
    color: #a8321d;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

#thankyou p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

#thankyou .thankyou-btn {
    display: inline-block;
    background: #a8321d;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

#thankyou .thankyou-btn:hover {
    background: #8e2918;
    color: #fff;
}

@media (max-width: 575px) {

    #thankyou .thankyou-box {
        padding: 40px 20px;
    }

    #thankyou h1 {
        font-size: 30px;
    }

    #thankyou p {
        font-size: 15px;
    }

}