/* =====================
   Banner Section
===================== */
.mj-jmt-hos-banner {
    width: 100%;
    height: 460px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.mj-jmt-hos-banner-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}

/* Dynamic font sizing for banner heading */
.mj-jmt-hos-banner-heading {
    display: inline-block;
    background: rgba(0, 152, 105, 0.9);
    color: #fff;
    font-size: clamp(20px, 4vw, 36px);
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 12px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 90%;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

/* Quick Navigation Wrapper */
.mj-jmt-hos-quicknav-wrapper {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 20;
    width: 100%;
    max-width: 1000px;
    backdrop-filter: blur(10px);
}

/* Quick Navigation Flex */
.mj-jmt-hos-quicknav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #009869 #f0f0f0;
    gap: 15px;
    padding: 5px 0;
}

.mj-jmt-hos-quicknav::-webkit-scrollbar {
    height: 6px;
}

.mj-jmt-hos-quicknav::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.mj-jmt-hos-quicknav::-webkit-scrollbar-thumb {
    background: #009869;
    border-radius: 10px;
}

.mj-jmt-hos-quicknav::-webkit-scrollbar-thumb:hover {
    background: #0e4295;
}

/* Quick Nav Item */
.mj-jmt-hos-quicknav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 10px;
    text-decoration: none;
    color: #0e4295;
    font-weight: 600;
    font-size: 13px;
    flex: 0 0 auto;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: center;
}

.mj-jmt-hos-quicknav-item:hover {
    transform: translateY(-3px);
    color: #009869;
    background: rgba(0, 152, 105, 0.1);
}

.mj-jmt-hos-quicknav-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.mj-jmt-hos-quicknav-item:hover img {
    transform: scale(1.1);
}

/* =====================
   Department Overview & Location
===================== */
.mj-jmt-hos-olo-section {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    align-items: stretch;
    box-sizing: border-box;
}

.mj-jmt-hos-olo-dept {
    flex: 1 1 65%;
    min-width: 300px;
    background: linear-gradient(135deg, #009869, #0e4295);
    color: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
}

.mj-jmt-hos-olo-dept-title {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-weight: 700;
}

.mj-jmt-hos-olo-dept-desc {
    font-size: clamp(15px, 1.8vw, 16px);
    line-height: 1.8;
}

/* Location Block */
.mj-jmt-hos-olo-location {
    flex: 1 1 30%;
    min-width: 280px;
    max-height: 450px;
    background: #ffffff;
    color: #0e4295;
    border-radius: 16px;
    padding: 30px 25px 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #009869 #f0f0f0;
}

.mj-jmt-hos-olo-location::-webkit-scrollbar {
    width: 6px;
}

.mj-jmt-hos-olo-location::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.mj-jmt-hos-olo-location::-webkit-scrollbar-thumb {
    background: #009869;
    border-radius: 10px;
}

.mj-jmt-hos-olo-loc-title {
    font-size: clamp(20px, 2.5vw, 24px);
    margin-bottom: 15px;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.mj-jmt-hos-loc-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ccc, transparent);
    margin: 15px 0;
}

.mj-jmt-hos-olo-loc-block,
.mj-jmt-hos-olo-loc-timings,
.mj-jmt-hos-olo-loc-contact {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.7;
    margin-bottom: 10px;
    color: #333;
}

.mj-jmt-hos-olo-loc-block:empty,
.mj-jmt-hos-olo-loc-timings:empty,
.mj-jmt-hos-olo-loc-contact:empty {
    display: none;
}

.mj-jmt-hos-olo-loc-block:empty + .mj-jmt-hos-loc-separator,
.mj-jmt-hos-olo-loc-timings:empty + .mj-jmt-hos-loc-separator,
.mj-jmt-hos-olo-loc-contact:empty + .mj-jmt-hos-loc-separator {
    display: none;
}

.mj-jmt-hos-loc-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mj-jmt-hos-olo-location:hover .mj-jmt-hos-loc-icon {
    opacity: 1;
}

.mj-jmt-hos-loc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =====================
   Treatments & Facilities
===================== */
.mj-jmt-hos-tf-section {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.mj-jmt-hos-tf-treatments,
.mj-jmt-hos-tf-facilities {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 30px 25px 80px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    color: #0e4295;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mj-jmt-hos-tf-treatments:hover,
.mj-jmt-hos-tf-facilities:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.mj-jmt-hos-tf-treatments {
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
}

.mj-jmt-hos-tf-facilities {
    background: linear-gradient(135deg, #fbf4c6, #fff9e6);
}

.mj-jmt-hos-tf-title {
    font-size: clamp(20px, 2.8vw, 26px);
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mj-jmt-hos-tf-list {
    list-style-type: none;
    padding-left: 0;
}

.mj-jmt-hos-tf-list li {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.mj-jmt-hos-tf-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009869;
    font-weight: bold;
    font-size: 18px;
}

.mj-jmt-hos-tf-treatments::after,
.mj-jmt-hos-tf-facilities::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: clamp(50px, 8vw, 80px);
    height: clamp(50px, 8vw, 80px);
    background-image: url('http://websneekai.com/websites/jmt/wp-content/uploads/2025/09/medical-report.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.mj-jmt-hos-tf-treatments:hover::after,
.mj-jmt-hos-tf-facilities:hover::after {
    opacity: 0.5;
}

/* =====================
   Meet Our Doctors
===================== */
.mj-jmt-hos-doctors-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.mj-jmt-hos-doctors-section:empty {
    display: none;
}

.mj-jmt-hos-doctors-header {
    text-align: center;
    margin-bottom: 45px;
}

.mj-jmt-hos-doctors-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.mj-jmt-hos-doctors-desc {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.mj-jmt-hos-doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.mj-jmt-hos-doctor-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.mj-jmt-hos-doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.mj-jmt-hos-doctor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 4px solid #009869;
}

.mj-jmt-hos-doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mj-jmt-hos-doctor-info {
    text-align: center;
    width: 100%;
}

.mj-jmt-hos-doctor-name {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    margin-bottom: 8px;
    color: #0e4295;
}

.mj-jmt-hos-doctor-position {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #009869;
    margin-bottom: 10px;
    font-weight: 600;
}

.mj-jmt-hos-doctor-specialities {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.mj-jmt-hos-doctor-availability {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mj-jmt-hos-doctor-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.mj-jmt-hos-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(13px, 1.5vw, 15px);
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1 1 auto;
    text-align: center;
    min-width: 120px;
}

.mj-jmt-hos-btn-primary {
    background: linear-gradient(90deg, #009869, #0e4295);
    color: #fff;
    border: none;
}

.mj-jmt-hos-btn-primary:hover {
    background: linear-gradient(90deg, #0e4295, #009869);
    transform: scale(1.05);
}

.mj-jmt-hos-btn-secondary {
    border: 2px solid #0e4295;
    color: #0e4295;
    background: transparent;
}

.mj-jmt-hos-btn-secondary:hover {
    background: #0e4295;
    color: #fff;
    transform: scale(1.05);
}

/* =====================
   Why We Are Pioneers
===================== */
.mj-jmt-hos-pioneers-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mj-jmt-hos-pioneers-section:empty {
    display: none;
}

.mj-jmt-hos-pioneers-header {
    text-align: center;
    margin-bottom: 50px;
}

.mj-jmt-hos-pioneers-title {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 800;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.mj-jmt-hos-pioneers-desc {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #444;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.mj-jmt-hos-pioneers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mj-jmt-hos-pioneer-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.mj-jmt-hos-pioneer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.mj-jmt-hos-pioneer-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #009869, #0e4295);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    overflow: hidden;
}

.mj-jmt-hos-pioneer-icon img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mj-jmt-hos-pioneer-title {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: #0e4295;
    margin-bottom: 15px;
}

.mj-jmt-hos-pioneer-desc {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #555;
    line-height: 1.7;
}

/* =====================
   Gallery Section
===================== */
.mj-jmt-hos-gallery-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.mj-jmt-hos-gallery-section:empty {
    display: none;
}

.mj-jmt-hos-gallery-header {
    text-align: center;
    margin-bottom: 45px;
}

.mj-jmt-hos-gallery-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.mj-jmt-hos-gallery-desc {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.mj-jmt-hos-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.mj-jmt-hos-gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    aspect-ratio: 4/3;
}

.mj-jmt-hos-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mj-jmt-hos-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.mj-jmt-hos-gallery-item:hover img {
    transform: scale(1.08);
}

/* =====================
   FAQ & Appointment
===================== */
.mj-jmt-hos-faq-appt-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mj-jmt-hos-faq-appt-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.mj-jmt-hos-appt-contact {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    position: relative;
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    padding: 30px 25px 80px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.mj-jmt-hos-appt-contact:hover {
    transform: translateY(-5px);
}

.mj-jmt-hos-appt-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: clamp(60px, 10vw, 100px);
    height: clamp(60px, 10vw, 100px);
    opacity: 0.4;
}

.mj-jmt-hos-appt-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mj-jmt-hos-appt-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #0e4295;
    margin-bottom: 15px;
}

.mj-jmt-hos-appt-desc {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.mj-jmt-hos-contact-block {
    margin-bottom: 20px;
}

.mj-jmt-hos-contact-block:empty {
    display: none;
}

.mj-jmt-hos-contact-block h4 {
    font-size: clamp(16px, 2vw, 20px);
    color: #009869;
    margin-bottom: 12px;
    font-weight: 700;
}

.mj-jmt-hos-contact-block p {
    margin: 8px 0;
}

.mj-jmt-hos-contact-block p a {
    display: inline-block;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #0e4295;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.mj-jmt-hos-contact-block p a:hover {
    color: #009869;
    background: rgba(255,255,255,1);
    transform: translateX(5px);
}

.mj-jmt-hos-faq {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    box-sizing: border-box;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.mj-jmt-hos-faq:hover {
    transform: translateY(-5px);
}

.mj-jmt-hos-faq-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #0e4295;
    margin-bottom: 15px;
}

.mj-jmt-hos-faq-desc {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.mj-jmt-hos-faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.mj-jmt-hos-faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.mj-jmt-hos-faq-question {
    width: 100%;
    text-align: left;
    background: #009869;
    color: #fff;
    padding: 15px 20px;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    padding-right: 45px;
}

.mj-jmt-hos-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.mj-jmt-hos-faq-item.active .mj-jmt-hos-faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.mj-jmt-hos-faq-question:hover {
    background: #0e4295;
}

.mj-jmt-hos-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
    padding: 0 20px;
}

.mj-jmt-hos-faq-answer p {
    padding: 15px 0;
    margin: 0;
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.7;
    color: #333;
}

.mj-jmt-hos-faq-item.active .mj-jmt-hos-faq-answer {
    max-height: 500px;
}

/* =====================
   Conditions & Services
===================== */
.mj-jmt-hos-cwts-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mj-jmt-hos-cwts-section:empty {
    display: none !important;
}

.mj-jmt-hos-cwts-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mj-jmt-hos-cwts-left,
.mj-jmt-hos-cwts-right {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mj-jmt-hos-cwts-left:hover,
.mj-jmt-hos-cwts-right:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.mj-jmt-hos-cwts-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #0e4295;
    margin-bottom: 20px;
}

.mj-jmt-hos-cwts-desc {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.mj-jmt-hos-cwts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mj-jmt-hos-cwts-list li {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #0e4295;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.mj-jmt-hos-cwts-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009869;
    font-weight: bold;
    font-size: 20px;
}

/* Hide if empty */
.mj-jmt-hos-cwts-left:empty,
.mj-jmt-hos-cwts-right:empty {
    display: none;
}

/* =====================
   RESPONSIVE - TABLET
===================== */
@media (max-width: 1024px) {
    .mj-jmt-hos-banner {
        height: 350px;
    }

    .mj-jmt-hos-olo-section {
        flex-direction: column;
        gap: 25px;
    }

    .mj-jmt-hos-olo-dept,
    .mj-jmt-hos-olo-location {
        flex: 1 1 100%;
        max-height: none;
    }

    .mj-jmt-hos-tf-section {
        flex-direction: column;
    }

    .mj-jmt-hos-tf-treatments,
    .mj-jmt-hos-tf-facilities {
        flex: 1 1 100%;
    }

    .mj-jmt-hos-doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }

    .mj-jmt-hos-pioneers-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .mj-jmt-hos-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .mj-jmt-hos-faq-appt-wrapper {
        flex-direction: column;
    }

    .mj-jmt-hos-appt-contact,
    .mj-jmt-hos-faq {
        flex: 1 1 100%;
    }

    .mj-jmt-hos-cwts-wrapper {
        flex-direction: column;
    }

    .mj-jmt-hos-cwts-left,
    .mj-jmt-hos-cwts-right {
        flex: 1 1 100%;
    }
}

/* =====================
   RESPONSIVE - MOBILE
===================== */
@media (max-width: 768px) {
    .mj-jmt-hos-banner {
        height: 200px;
        padding: 15px;
    }

    .mj-jmt-hos-banner-overlay {
        gap: 15px;
    }

    .mj-jmt-hos-banner-heading {
        padding: 12px 20px;
        border-radius: 10px;
        max-width: 95%;
    }

    .mj-jmt-hos-quicknav-wrapper {
        padding: 12px 15px;
        border-radius: 10px;
    }

    .mj-jmt-hos-quicknav {
        gap: 10px;
        padding-bottom: 10px;
    }

    .mj-jmt-hos-quicknav-item {
        min-width: 70px;
        padding: 8px;
        font-size: 12px;
    }

    .mj-jmt-hos-quicknav-item img {
        width: 32px;
        height: 32px;
    }

    /* Sections */
    .mj-jmt-hos-olo-section,
    .mj-jmt-hos-tf-section,
    .mj-jmt-hos-doctors-section,
    .mj-jmt-hos-pioneers-section,
    .mj-jmt-hos-gallery-section,
    .mj-jmt-hos-faq-appt-section,
    .mj-jmt-hos-cwts-section {
        margin: 40px auto;
        padding: 15px;
    }

    .mj-jmt-hos-olo-dept,
    .mj-jmt-hos-olo-location,
    .mj-jmt-hos-tf-treatments,
    .mj-jmt-hos-tf-facilities,
    .mj-jmt-hos-appt-contact,
    .mj-jmt-hos-faq,
    .mj-jmt-hos-cwts-left,
    .mj-jmt-hos-cwts-right {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .mj-jmt-hos-olo-location {
        padding-bottom: 65px;
    }

    .mj-jmt-hos-tf-treatments,
    .mj-jmt-hos-tf-facilities {
        padding-bottom: 70px;
    }

    .mj-jmt-hos-appt-contact {
        padding-bottom: 75px;
    }

    .mj-jmt-hos-loc-icon,
    .mj-jmt-hos-appt-icon {
        bottom: 12px;
        right: 12px;
    }

    .mj-jmt-hos-tf-treatments::after,
    .mj-jmt-hos-tf-facilities::after {
        bottom: 12px;
        right: 12px;
    }

    .mj-jmt-hos-doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .mj-jmt-hos-doctor-card {
        padding: 25px 20px;
    }

    .mj-jmt-hos-doctor-image {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .mj-jmt-hos-doctor-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .mj-jmt-hos-btn {
        width: 100%;
        min-width: auto;
    }

    .mj-jmt-hos-pioneers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mj-jmt-hos-pioneer-card {
        padding: 30px 25px;
    }

    .mj-jmt-hos-pioneer-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .mj-jmt-hos-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .mj-jmt-hos-faq-appt-wrapper {
        gap: 20px;
    }

    .mj-jmt-hos-faq {
        padding: 25px 20px;
    }

    .mj-jmt-hos-faq-question {
        padding: 12px 40px 12px 15px;
    }

    .mj-jmt-hos-faq-question::after {
        right: 15px;
    }

    .mj-jmt-hos-cwts-wrapper {
        gap: 20px;
    }
}

/* =====================
   EXTRA SMALL MOBILE
===================== */
@media (max-width: 480px) {
    .mj-jmt-hos-banner {
        height: 180px;
    }

    .mj-jmt-hos-quicknav-item {
        min-width: 60px;
        font-size: 11px;
    }

    .mj-jmt-hos-quicknav-item img {
        width: 28px;
        height: 28px;
    }

    .mj-jmt-hos-doctors-grid {
        grid-template-columns: 1fr;
    }

    .mj-jmt-hos-gallery-grid {
        grid-template-columns: 1fr;
    }

    .mj-jmt-hos-tf-list li,
    .mj-jmt-hos-cwts-list li {
        padding-left: 22px;
        font-size: 14px;
    }
}

/* =====================
   ACCESSIBILITY & TOUCH
===================== */
@media (hover: none) and (pointer: coarse) {
    /* Touch-friendly spacing */
    .mj-jmt-hos-quicknav-item,
    .mj-jmt-hos-btn,
    .mj-jmt-hos-faq-question,
    .mj-jmt-hos-contact-block p a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mj-jmt-hos-quicknav-item {
        padding: 12px;
    }
}

/* =====================
   PRINT STYLES
===================== */
@media print {
    .mj-jmt-hos-quicknav-wrapper,
    .mj-jmt-hos-doctor-buttons,
    .mj-jmt-hos-faq-question::after {
        display: none;
    }

    .mj-jmt-hos-banner {
        height: auto;
        padding: 20px;
        page-break-after: avoid;
    }

    .mj-jmt-hos-faq-answer {
        max-height: none !important;
    }

    * {
        box-shadow: none !important;
    }
}


/* =====================
   Highlights Section
===================== */
.mj-jmt-hos-highlights-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.mj-jmt-hos-highlights-section:empty {
    display: none;
}

.mj-jmt-hos-highlights-header {
    text-align: center;
    margin-bottom: 35px;
}

.mj-jmt-hos-highlights-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Highlights Container */
.mj-jmt-hos-highlights-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual Highlight Box */
.mj-jmt-hos-highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fbf4c6, #fff9e6);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #009869;
    position: relative;
    overflow: hidden;
}

.mj-jmt-hos-highlight-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Icon Container */
.mj-jmt-hos-highlight-icon {
    flex: 0 0 auto;
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #009869, #0e4295);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mj-jmt-hos-highlight-icon img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
}

/* Content Text */
.mj-jmt-hos-highlight-content {
    flex: 1 1 auto;
    color: #333;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.6;
    font-weight: 500;
    padding-right: 15px;
}

/* Button */
.mj-jmt-hos-highlight-btn {
    flex: 0 0 auto;
    padding: 12px 25px;
    background: linear-gradient(90deg, #009869, #0e4295);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(13px, 1.5vw, 15px);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,152,105,0.3);
}

.mj-jmt-hos-highlight-btn:hover {
    background: linear-gradient(90deg, #0e4295, #009869);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,152,105,0.4);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .mj-jmt-hos-highlight-box {
        padding: 18px 20px;
        gap: 15px;
    }
    
    .mj-jmt-hos-highlight-icon {
        width: clamp(45px, 10vw, 60px);
        height: clamp(45px, 10vw, 60px);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .mj-jmt-hos-highlights-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .mj-jmt-hos-highlight-box {
        padding: 15px;
        gap: 12px;
        border-left-width: 4px;
    }
    
    .mj-jmt-hos-highlight-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .mj-jmt-hos-highlight-content {
        font-size: 14px;
        padding-right: 10px;
    }
    
    .mj-jmt-hos-highlight-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Responsive - Small Mobile (Stack vertically if needed) */
@media (max-width: 480px) {
    .mj-jmt-hos-highlight-box {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .mj-jmt-hos-highlight-icon {
        width: 40px;
        height: 40px;
    }
    
    .mj-jmt-hos-highlight-content {
        flex: 1 1 calc(100% - 60px);
        padding-right: 0;
    }
    
    .mj-jmt-hos-highlight-btn {
        flex: 1 1 100%;
        text-align: center;
        width: 100%;
    }
}

/* Accessibility - Touch Targets */
@media (hover: none) and (pointer: coarse) {
    .mj-jmt-hos-highlight-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .mj-jmt-hos-highlight-box {
        box-shadow: none;
        border: 2px solid #009869;
        page-break-inside: avoid;
    }
    
    .mj-jmt-hos-highlight-btn {
        display: none;
    }
}


/* =====================
   Overview Lists Section
===================== */
.mj-jmt-hos-overview-lists-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.mj-jmt-hos-overview-lists-section:empty {
    display: none;
}

.mj-jmt-hos-overview-header {
    text-align: center;
    margin-bottom: 45px;
}

.mj-jmt-hos-overview-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.mj-jmt-hos-overview-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #009869, #0e4295);
    border-radius: 2px;
}

.mj-jmt-hos-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fcff);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.mj-jmt-hos-overview-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,152,105,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mj-jmt-hos-overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.mj-jmt-hos-overview-list li {
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 45px;
    position: relative;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mj-jmt-hos-overview-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #009869, #0e4295);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,152,105,0.25);
}

.mj-jmt-hos-overview-list li::after {
    content: '✓';
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    z-index: 1;
}

.mj-jmt-hos-overview-list li:hover {
    padding-left: 50px;
    color: #0e4295;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .mj-jmt-hos-overview-grid {
        padding: 30px;
        gap: 15px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .mj-jmt-hos-overview-lists-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .mj-jmt-hos-overview-grid {
        grid-template-columns: 1fr;
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .mj-jmt-hos-overview-list li {
        padding-left: 40px;
        margin-bottom: 15px;
    }
    
    .mj-jmt-hos-overview-list li::before {
        width: 28px;
        height: 28px;
    }
    
    .mj-jmt-hos-overview-list li::after {
        left: 8px;
        font-size: 14px;
    }
}

/* =====================
   Treatments & Facilities Description
===================== */
.mj-jmt-hos-tf-desc-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.mj-jmt-hos-tf-desc-section:empty {
    display: none;
}

.mj-jmt-hos-tf-desc-container {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    padding: 45px 50px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border-left: 6px solid #009869;
}

.mj-jmt-hos-tf-desc-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14,66,149,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mj-jmt-hos-tf-desc-container::after {
    content: '⚕';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: clamp(60px, 10vw, 100px);
    color: rgba(0,152,105,0.08);
    pointer-events: none;
}

.mj-jmt-hos-tf-desc-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.mj-jmt-hos-tf-desc-text {
    font-size: clamp(15px, 1.7vw, 17px);
    line-height: 1.9;
    color: #333;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .mj-jmt-hos-tf-desc-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .mj-jmt-hos-tf-desc-container {
        padding: 30px 25px;
        border-radius: 16px;
        border-left-width: 4px;
    }
}

/* =====================
   Part-time Consultants
===================== */
.mj-jmt-hos-parttime-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.mj-jmt-hos-parttime-section:empty {
    display: none;
}

.mj-jmt-hos-parttime-header {
    text-align: center;
    margin-bottom: 45px;
}

.mj-jmt-hos-parttime-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    background: linear-gradient(90deg, #009869, #0e4295);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.mj-jmt-hos-parttime-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mj-jmt-hos-parttime-row {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #ffffff, #f8fcff);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid transparent;
}

.mj-jmt-hos-parttime-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #009869, #0e4295);
    transition: width 0.3s ease;
}

.mj-jmt-hos-parttime-row:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.mj-jmt-hos-parttime-row:hover::before {
    width: 8px;
}

.mj-jmt-hos-parttime-icon {
    flex: 0 0 auto;
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #009869, #0e4295);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,152,105,0.3);
    border: 4px solid #fff;
}

.mj-jmt-hos-parttime-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mj-jmt-hos-parttime-info {
    flex: 1 1 auto;
}

.mj-jmt-hos-parttime-name {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: #0e4295;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mj-jmt-hos-parttime-designation {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #009869;
    font-weight: 600;
    line-height: 1.4;
}

.mj-jmt-hos-parttime-badge {
    flex: 0 0 auto;
    background: linear-gradient(135deg, #009869, #0e4295);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,152,105,0.3);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .mj-jmt-hos-parttime-row {
        padding: 20px 25px;
        gap: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .mj-jmt-hos-parttime-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .mj-jmt-hos-parttime-container {
        gap: 15px;
    }
    
    .mj-jmt-hos-parttime-row {
        padding: 18px 20px;
        gap: 15px;
        border-radius: 12px;
    }
    
    .mj-jmt-hos-parttime-icon {
        width: 55px;
        height: 55px;
        border-width: 3px;
    }
    
    .mj-jmt-hos-parttime-badge {
        display: none;
    }
}

/* Small Mobile - Stack if needed */
@media (max-width: 480px) {
    .mj-jmt-hos-parttime-row {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .mj-jmt-hos-parttime-icon {
        flex: 0 0 100%;
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .mj-jmt-hos-parttime-info {
        flex: 1 1 100%;
    }
}

/* Print Styles */
@media print {
    .mj-jmt-hos-overview-grid,
    .mj-jmt-hos-tf-desc-container,
    .mj-jmt-hos-parttime-row {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .mj-jmt-hos-parttime-badge {
        display: none;
    }
}

/* =====================
   TWEAK: Treatments & Facilities - Dynamic Icon Sizing
===================== */
.mj-jmt-hos-tf-treatments:only-child::after,
.mj-jmt-hos-tf-facilities:only-child::after {
    width: clamp(120px, 15vw, 180px);
    height: clamp(120px, 15vw, 180px);
    opacity: 0.15;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
}

.mj-jmt-hos-tf-treatments:only-child,
.mj-jmt-hos-tf-facilities:only-child {
    position: relative;
}

.mj-jmt-hos-tf-treatments:only-child::before,
.mj-jmt-hos-tf-facilities:only-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 70%, rgba(0,152,105,0.05), transparent 70%);
    pointer-events: none;
    border-radius: 16px;
}
