:root {
    --hero-blue: #c5d6df;
    --hero-dark: #1c1c1c;
    --hero-light: #f5f4f2;
    --hero-text: #4b4b4b;
}

html {
    overflow-x: hidden !important;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--hero-text);
    background-color: #fff;
}

#mainNavbar {
    background: rgb(221 251 244);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    #mainNavbar {
        background: #ffffff;
        backdrop-filter: none;
    }
}

.navbar-toggler {
    border: none;
    padding: 0.45rem;
    box-shadow: none !important;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.navbar-toggler:hover {
    background: #f1f5f9;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(2,87,117,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
    transition: background-image 0.2s ease;
}

.navbar-toggler[aria-expanded='true'] {
    background: #e0f2fe;
}

.navbar-toggler[aria-expanded='true'] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,102,204,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M7 7l16 16M23 7L7 23'/%3e%3c/svg%3e");
}

#mainNavbar .nav-link {
    font-weight: 500;
    color: #025775;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link:focus {
    color: #111;
}

.treatments-dropdown {
    position: static;
}

.treatments-dropdown .dropdown-menu {
    width: min(1100px, 94vw);
    border: none;
    padding: 0;
    margin-top: .8rem;
    left: 44% !important;
    transform: translateX(-50%) translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.treatments-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* About dropdown - positioned relative to About menu item */
.about-dropdown {
    position: relative;
}

.about-dropdown .dropdown-menu,
[aria-labelledby="aboutDropdown"].dropdown-menu {
    width: min(280px, 94vw);
    left: 0 !important;
    right: auto !important;
    transform: translateY(-10px);
    margin-left: 0;
    margin-top: 0.8rem;
    position: absolute !important;
    border: none;
    padding: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-dropdown .dropdown-menu.show,
[aria-labelledby="aboutDropdown"].dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Testimonials dropdown - positioned relative to Testimonials menu item */
.testimonials-dropdown {
    position: relative;
}

.testimonials-dropdown .dropdown-menu,
[aria-labelledby="testimonialsDropdown"].dropdown-menu {
    width: min(280px, 94vw);
    left: 0 !important;
    right: auto !important;
    transform: translateY(-10px);
    margin-left: 0;
    margin-top: 0.8rem;
    position: absolute !important;
    border: none;
    padding: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-dropdown .dropdown-menu.show,
[aria-labelledby="testimonialsDropdown"].dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Media dropdown - positioned relative to Media menu item */
.media-dropdown {
    position: relative;
}

.media-dropdown .dropdown-menu,
[aria-labelledby="mediaDropdown"].dropdown-menu {
    width: min(320px, 94vw);
    left: 0 !important;
    right: auto !important;
    transform: translateY(-10px);
    margin-left: 0;
    margin-top: 0.8rem;
    position: absolute !important;
    border: none;
    padding: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-dropdown .dropdown-menu.show,
[aria-labelledby="mediaDropdown"].dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.treatment-mega {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) 1fr;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 32px;
    gap: 32px;
    position: relative;
}

.treatment-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
}

.about-mega {
    grid-template-columns: 1fr;
    padding: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.about-mega .treatment-accordion {
    padding: 0;
    gap: 0;
}

.about-mega .treatment-group {
    margin-bottom: 0;
}

.about-group-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin-bottom: 4px;
}

.about-group-link:hover {
    transform: translateX(4px);
    text-decoration: none;
    color: inherit;
    background: rgba(0, 102, 204, 0.02);
}

.about-mega .p-set {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #475569 !important;
    background: transparent;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    position: relative;
}

.about-mega .p-set::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    transition: opacity 0.3s ease;
}

.about-group-link:last-child .p-set::after {
    display: none;
}

.about-mega .p-set span {
    color: #475569 !important;
    font-weight: 500;
    font-size: 14px;
}

.about-mega .p-set i {
    color: #94a3b8 !important;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.about-group-link:hover .p-set {

    color: #327c32 !important;


}

.about-group-link:hover .p-set::after {
    opacity: 0;
}

.about-group-link:hover .p-set span {
    color: #2d6b4e !important;
    padding-left: 5px;
}

.about-group-link:hover .p-set i {
    color: #317c44 !important;
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .about-mega .treatment-accordion {
        padding: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .about-mega .treatment-accordion {
        padding: 0.5rem;
    }

    .about-mega .p-set {
        padding: 0.75rem 1rem;
    }
}

.treatment-highlight {
    background: linear-gradient(135deg, #44a699 0%, #7bb3b0 100%);
    color: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 12px;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.treatment-highlight h5,
.treatment-highlight p,
.treatment-highlight li,
.treatment-highlight span {
    color: #ffffff;
}

.treatment-highlight h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.treatment-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.treatment-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.treatment-highlight li {
    position: relative;
    padding-left: 1.3rem;
    font-weight: 500;
    text-align: left;
}

.treatment-highlight li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
}

.treatment-highlight .btn {
    border: none;
    color: #04161c;

    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    background: linear-gradient(120deg, #6ff3d8, #4fb2c5);
    color: #08262f;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 20px 35px rgba(29, 92, 105, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pill span {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #fff;
}

.btn-pill i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #08262f;
    transition: transform 0.2s ease;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 45px rgba(29, 92, 105, 0.45);
}

.btn-pill:hover i {
    transform: translateX(4px);
}

.modern-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    background-size: 200% auto;
    color: #f7fffd;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 20px 45px rgba(5, 99, 122, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.3s ease;
}

.modern-cta-btn i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.modern-cta-btn:hover,
.modern-cta-btn:focus {
    transform: translateY(-3px);
    background-position: 100% center;
    box-shadow: 0 28px 60px rgba(5, 99, 122, 0.35);
    color: #ffffff;
}

.map-cta-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(0, 192, 163, 0.12), transparent 55%),
        linear-gradient(180deg, #f8fbff 0%, #ecf7ff 45%, #ffffff 100%);
}

.map-cta-section::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(13, 99, 255, 0.08);
    right: -80px;
    top: -120px;
    filter: blur(10px);
}

.map-cta-card {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2rem;
    box-shadow: 0 25px 60px rgba(15, 30, 45, 0.08);
    max-width: 760px;
    margin: 0 auto;
    z-index: 1;
}

.map-cta-card .section-heading {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.map-cta-card .section-subtext {
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 1.5rem;
    color: rgba(24, 44, 63, 0.75);
}

.treatment-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.treatment-highlight-badge i {
    font-size: 1rem;
}

.treatment-accordion {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
}

.treatment-group {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border: none;
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-group:hover {
    transform: translateX(2px);
}

.treatment-toggle {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 10px;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.treatment-toggle:focus {
    outline: none;
  
}

.treatment-toggle-text span {
    display: none;
}

.treatment-toggle-text h6 {
    margin: 0;
    font-size: 16px;
    text-align: left;
    color: #1e293b;
    font-weight: 600;
   
    letter-spacing: 0.5px;
}

.treatment-toggle i {
    color: #0066cc;
    transition: transform 0.25s ease;
    font-size: 14px;
}

.treatment-toggle.is-open i {
    transform: rotate(180deg);
}

.treatment-panel {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin-top: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background: transparent;
}

/* .treatment-panel.is-open {
    padding: 0 1.75rem 1.2rem;
} */

.treatment-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    background: transparent;
    border-radius: 0;
    color: #475569;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 0;
    padding-left: 8px;
}

.treatment-panel a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #4fa89e 0%, #007673 100%);
    border-radius: 2px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-panel a:last-child {
    border-bottom: none;
}

.treatment-panel a:hover {
    background: linear-gradient(90deg, rgba(224, 242, 254, 0.5) 0%, transparent 100%);
    color: #48a79b;
    border-color: rgba(186, 230, 253, 0.8);
    transform: translateX(8px);
    padding-left: 12px;

}

.treatment-panel a:hover::before {
    height: 60%;
}

.treatment-panel a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #94a3b8;
    font-size: 12px;
    transition: all 0.2s ease;
}

.treatment-panel a:hover::after {
    color: #0066cc;
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .treatment-mega {
        grid-template-columns: 1fr;
    }

    .treatment-highlight {
        border-radius: 0;
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
    }

    .treatment-accordion {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .treatment-highlight {
        padding: 2rem 1.5rem;
    }

    .treatment-accordion {
        padding: 1.25rem;
    }
}

.navbar-brand img {
    height: 48px;
    width: auto;
    display: block;
}

.btn-primary {
    background-color: #ffffff;
    border-color: #bbbbbb;
    border-radius: 999px;
    padding-inline: 28px;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    text-transform: uppercase;
    color: #ffffff;
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1.8rem;
}

.btn-appointment .cta-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-appointment:hover .cta-arrow {
    transform: translateX(4px);
    background: rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.hero-section {
    padding-top: 0px;
    background: var(--hero-light);
}

.hero-layout {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr) minmax(260px, 0.9fr);
    margin-top: 76px;
}

.hero-left {
    background: var(--hero-blue) center / cover no-repeat;
    background-image: url("https://s3.ap-south-1.amazonaws.com/cdn1.cr/dr-pramod-bhor-jointrobo/dr-pramod-bhor-join-robo-replacement-baner-img.png");
    padding: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(135 223 197 / 18%) 0%, rgb(64 150 159 / 18%) 85%);
    z-index: 0;
}

.hero-left::after {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 1;
}

.hero-left>* {
    position: relative;
    z-index: 2;
}

.hero-brand {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 6rem;
    background: linear-gradient(180deg, rgba(11, 49, 57, 0.7) 0%, rgba(18, 92, 109, 0.55) 80%);

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    max-width: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fdfefe;
}

.hero-left-content * {
    color: inherit;
    text-shadow: 0 4px 14px rgba(4, 10, 14, 0.55);
}

.hero-left-content>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
}

.hero-left-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: capitalize;
    color: #fff;
}

.hero-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 3rem;
}

.hero-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.hero-menu a:hover {
    opacity: 0.7;
}

.hero-science {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.hero-left-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-left-stats div {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 1.2rem;
    min-width: 140px;
}

.hero-left-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}

.hero-left-stats .stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.hero-vertical-label {
    position: absolute;
    top: 50%;
    right: -65px;
    transform: rotate(-90deg);
    transform-origin: right center;
    letter-spacing: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    z-index: 2;
}

.hero-center {
    background: #fff;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #3B88A7;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
}

.hero-kicker {
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #9a9a9a;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    background: linear-gradient(316deg, #fff3f3 0%, #ffffff 45%, #ffffff 75%, #f7f7f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    line-height: 80px;
}

.hero-title strong {
    display: block;
    color: inherit;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #7b7b7b;
    max-width: 420px;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-outline-dark {
    border-color: #ffffff;
    color: #ffffff;
    border-radius: 999px;
    padding-inline: 28px;
    font-weight: 600;
}

.btn-outline-dark:hover {
    background: #111;
    color: #fff;
}

.hero-feature-card {
    background: #111;
    color: #f1f1f1;
    padding: 2rem;
    border-radius: 24px;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-feature-card img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 160px;
}

.hero-feature-card h4 {
    font-size: 1.1rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.hero-feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-right {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-right-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(148 209 191 / 34%) 0%, rgb(64 150 159 / 35%) 85%);
    z-index: 1;
}

.hero-doctor-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 1.8rem 2.2rem;
    box-shadow: 0 40px 65px rgba(7, 13, 21, 0.25);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border: 1px solid rgba(235, 244, 248, 0.7);
    backdrop-filter: blur(12px);
}

.hero-doctor-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 24px;
    border: 1px dashed rgba(45, 142, 161, 0.35);
    pointer-events: none;
}

.hero-doctor-card h4 {
    margin: 0.3rem 0 0.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #123546;
    letter-spacing: 0.04rem;
}

.hero-doctor-card .doctor-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.22rem;
    color: #4c9ba9;
    margin: 0;
}

.hero-doctor-card .doctor-credentials {
    margin: 0;
    font-size: 0.95rem;
    color: #2e3d49;
}

.hero-doctor-card .doctor-credentials span {
    color: #27a28f;
    font-weight: 600;
}

.hero-info-card {
    position: absolute;
    bottom: 2.5rem;
    left: -60px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    padding: 1.75rem;
    border-radius: 22px;
    max-width: 260px;
    z-index: 2;
}

.hero-info-card h5 {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
    color: #777;
}

.hero-info-card p {
    margin: 0.7rem 0 0;
    font-size: 1rem;
    color: #1c1c1c;
    line-height: 1.5;
}

.hero-pagination {
    position: absolute;
    left: 32px;
    bottom: 32px;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.hero-pagination span {
    font-size: 1.6rem;
}

@media (max-width: 1199.98px) {
    .hero-layout {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }

    .hero-info-card {
        position: static;
        margin-top: 2rem;
        left: auto;
    }
}

@media (max-width: 991.98px) {
    #mainNavbar {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 0;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        max-height: 90vh;
        opacity: 1;
        overflow-y: auto;
    }

    /* Mobile menu backdrop */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .navbar-nav {
        width: 100%;
        padding: 12px;
        gap: 4px;
    }

    .nav-item {
        width: 100%;
        margin-bottom: 4px;
    }

    #mainNavbar .nav-link {
        padding: 14px 16px;
        border-radius: 10px;
        font-weight: 500;
        font-size: 15px;
        color: #1e293b;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f8fafc;
        border: 1px solid transparent;
        text-align: left;
    }

    #mainNavbar .nav-link:hover,
    #mainNavbar .nav-link:focus {
        background: #d3ece8;
        color: #42a09b;
        border-color: #44a7983b;
        transform: translateX(4px);
    }

    /* Ensure text stays on left */
    #mainNavbar .nav-link > *:not(.dropdown-toggle::before):not(.dropdown-toggle::after) {
        flex: 1;
        text-align: left;
    }

    .nav-link.dropdown-toggle::after {
        display: none !important;
    }

    .nav-link.dropdown-toggle {
        position: relative;
    }

    .nav-link.dropdown-toggle::before {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        color: #94a3b8;
        transition: transform 0.3s ease;
        margin-left: auto;
        flex-shrink: 0;
        order: 2;
    }

    .nav-link.dropdown-toggle[aria-expanded="true"]::before {
        transform: rotate(180deg);
        color: #0066cc;
    }

    /* Ensure regular nav links (non-dropdown) don't have flex issues */
    #mainNavbar .nav-item:not(.dropdown) .nav-link {
        justify-content: flex-start;
    }

    .treatments-dropdown,
    .about-dropdown,
    .testimonials-dropdown,
    .media-dropdown {
        width: 100%;
        position: static !important;
    }

    .treatments-dropdown .nav-link,
    .about-dropdown .nav-link,
    .testimonials-dropdown .nav-link,
    .media-dropdown .nav-link {
        width: 100%;
        text-align: left;
    }

    .treatments-dropdown .dropdown-menu,
    .about-dropdown .dropdown-menu,
    .testimonials-dropdown .dropdown-menu,
    .media-dropdown .dropdown-menu,
    [aria-labelledby="aboutDropdown"].dropdown-menu,
    [aria-labelledby="testimonialsDropdown"].dropdown-menu,
    [aria-labelledby="mediaDropdown"].dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 8px;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        border-radius: 12px;
        border: none;
        box-shadow: none;
        padding: 12px;
        background: #95d1c869;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s 
cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s 
ease;
    }

    .treatments-dropdown .dropdown-menu.show,
    .about-dropdown .dropdown-menu.show,
    .testimonials-dropdown .dropdown-menu.show,
    .media-dropdown .dropdown-menu.show {
        max-height: 80vh;
        overflow-y: auto;
        padding: 12px;
    }

    /* Mobile dropdown menu scrollbar */
    .treatments-dropdown .dropdown-menu::-webkit-scrollbar,
    .about-dropdown .dropdown-menu::-webkit-scrollbar,
    .testimonials-dropdown .dropdown-menu::-webkit-scrollbar,
    .media-dropdown .dropdown-menu::-webkit-scrollbar {
        width: 4px;
    }

    .treatments-dropdown .dropdown-menu::-webkit-scrollbar-track,
    .about-dropdown .dropdown-menu::-webkit-scrollbar-track,
    .testimonials-dropdown .dropdown-menu::-webkit-scrollbar-track,
    .media-dropdown .dropdown-menu::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 2px;
    }

    .treatments-dropdown .dropdown-menu::-webkit-scrollbar-thumb,
    .about-dropdown .dropdown-menu::-webkit-scrollbar-thumb,
    .testimonials-dropdown .dropdown-menu::-webkit-scrollbar-thumb,
    .media-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 2px;
    }

    /* Mobile treatment mega menu */
    .treatment-mega {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 16px;
        background: transparent;
    }

    .treatment-highlight {
        display: none !important;
    }

    .treatment-accordion {
        padding: 0;
        gap: 0;
    }

    .treatment-group {
        margin-bottom: 0;
    }

    .treatment-toggle {
        padding: 12px 0;
        margin-bottom: 0;
        border-bottom: 2px solid #e2e8f0;
        background: transparent;
        padding-bottom: 12px;
    }

    .treatment-toggle-text h6 {
        font-size: 14px;
    }

    .treatment-panel {
        padding: 0;
        margin-top: 0;
        gap: 0;
    }

    .treatment-panel a {
        padding: 12px 0;
        font-size: 13px;
        padding-bottom: 12px;
        margin-bottom: 0;
    }

    .treatment-accordion .p-set {
        padding: 12px 0;
        margin-bottom: 0;
        font-size: 13px;
        padding-bottom: 12px;
    }

    .about-mega .p-set {
        padding: 12px 0;
        margin-bottom: 0;
        padding-bottom: 12px;
    }

    /* Mobile CTA Button */
    .d-flex.align-items-center {
        padding: 12px;
        margin-top: 8px;
        border-top: 1px solid #e5e7eb;
    }

    .btn-appointment {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 12px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-right {
        order: -1;
        min-height: 420px;
    }

    .hero-left,
    .hero-center {
        padding: 3rem 2rem;
    }

    .hero-vertical-label {
        display: none;
    }

    .hero-feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.section-padding {
    padding: 5rem 0;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 1.2rem;
    color: #4cb5a3;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #599fad;
    margin-bottom: 1.5rem;
}

.about-modern {
    background: linear-gradient(135deg, #eff6fb 0%, #fdfefe 100%);
}

.about-showcase {
    position: relative;
}

.about-copy {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.about-copy p {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-list li {
    position: relative;
    padding-left: 1.4rem;
    color: #4b5b63;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #2c8c9c;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2.6rem;
    border-radius: 999px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    color: #fff !important;
    box-shadow: 0 18px 40px rgba(12, 65, 104, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(12, 65, 104, 0.45);
}

.about-cta:hover::after {
    opacity: 1;
}

.about-cta .cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.about-cta:hover .cta-arrow {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.4);
}

.about-visual {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.about-circle.one {
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, #cee3e5 0%, #d1efe89e 70%);
    right: -51%;
    top: 82px;
    transform: translate(20%, -30%);
}

.about-circle.two {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.35);
    left: 0;
    bottom: 10%;
    transform: translate(-40%, 20%);
}

.about-circle.three {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 16px solid rgba(255, 255, 255, 0.45);
    right: 25%;
    bottom: -10%;
}

.about-image-card {
    position: relative;
    background: #ddf1ee;
    border-radius: 28px;
    padding: 0.8rem;
    box-shadow: 0 30px 70px rgba(12, 28, 43, 0.35);
    z-index: 1;
}

.about-image-card img {
    border-radius: 22px;
    width: 100%;
    height: auto;
    display: block;
}

.about-floating-card {
    position: absolute;
    top: 1.5rem;
    right: -1.5rem;
    background: #fff;
    border-radius: 18px;
    padding: 1rem 1.4rem;
    box-shadow: 0 25px 50px rgba(17, 37, 51, 0.25);
    width: min(260px, 80%);
}

.about-floating-card small {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.7rem;
    color: #4a9db0;
}

.about-floating-card h5 {
    margin: 0.4rem 0;
    font-size: 1.05rem;
    color: #0c2a38;
}

.about-floating-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #4f5a63;
}

@media (max-width: 991.98px) {
    .about-visual {
        padding: 1rem 0 2rem;
    }

    .about-circle.one {
        width: 260px;
        height: 260px;
        right: 15%;
    }
}

@media (max-width: 767.98px) {
    .about-floating-card {
        position: static;
        margin-top: 1rem;
        width: 100%;
    }

    .about-visual {
        padding: 0;
    }
}

.about-modern p {
    color: #4a5a64;
    line-height: 1.7;
}

.about-cta {
    margin-top: 1.75rem;
    border-radius: 999px;
    padding-inline: 32px;
}

/* Doctor About Section */
.doctor-about {
    background: linear-gradient(357deg, #d1efe8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.doctor-about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 136, 167, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.doctor-showcase {
    position: relative;
    z-index: 1;
}

.doctor-visual {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.doctor-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.doctor-circle.one {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 136, 167, 0.12) 0%, rgba(69, 168, 152, 0.08) 70%);
    right: -15%;
    top: 10%;
    transform: translate(20%, -10%);
}

.doctor-circle.two {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 140, 156, 0.15) 0%, transparent 70%);
    left: -10%;
    bottom: 15%;
    transform: translate(-20%, 20%);
}

.doctor-image-card {
    position: relative;
    background: linear-gradient(135deg, #ddf1ee 0%, #e8f5f3 100%);
    border-radius: 32px;
    padding: 1.2rem;
    box-shadow: 0 40px 80px rgba(12, 28, 43, 0.25);
    z-index: 1;
    border: 1px solid rgba(59, 136, 167, 0.15);
}

.doctor-image-card img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.doctor-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: linear-gradient(135deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 100%);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 25px 50px rgba(12, 65, 104, 0.35);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    min-width: 200px;
}

.doctor-badge i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.doctor-badge strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
}

.doctor-badge span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.doctor-copy {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.doctor-copy p {
    margin-bottom: 0;
    color: #4a5a64;
    line-height: 1.8;
    font-size: 1rem;
}

.doctor-cta-text {
    font-weight: 500;
    color: #2c5f6d !important;
    font-size: 1.05rem !important;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 136, 167, 0.08) 0%, rgba(69, 168, 152, 0.06) 100%);
    border-radius: 16px;
    border-left: 4px solid #3b88a7;
    margin: 0.5rem 0 !important;
}

.doctor-expertise {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(59, 136, 167, 0.06);
    border-radius: 14px;
    border: 1px solid rgba(59, 136, 167, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.expertise-item:hover {
    transform: translateY(-2px);
    background: rgba(59, 136, 167, 0.1);
    border-color: rgba(59, 136, 167, 0.25);
}

.expertise-item i {
    font-size: 1.3rem;
    color: #3b88a7;
    width: 24px;
    text-align: center;
}

.expertise-item span {
    color: #2c5f6d;
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .doctor-visual {
        padding: 1rem 0 2rem;
        min-height: auto;
    }

    .doctor-circle.one {
        width: 300px;
        height: 300px;
        right: 10%;
    }

    .doctor-circle.two {
        width: 200px;
        height: 200px;
        left: 5%;
    }

    .doctor-badge {
        position: static;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    .doctor-expertise {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .doctor-visual {
        padding: 0;
    }

    .doctor-image-card {
        padding: 0.8rem;
    }

    .doctor-badge {
        position: static;
        margin: 1.5rem auto 0;
    }
}

.why-highlight {
    background: #d1efe8;
    color: #204137;
}

.why-intro h2 {
    color: #1f4c3f;
    margin-bottom: 1rem;
}

.why-intro p {
    color: #48655d;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.why-list li {
    position: relative;
    padding-left: 1.4rem;
    color: #38574f;
}

.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #2a7f8a;
}

.why-card-track {
    display: flex;
    align-items: stretch;
    /* gap: 1.5rem; */
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.circle-card {
    min-width: 230px;
    max-width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #f9fffc;
    border: 1px solid rgba(23, 80, 78, 0.15);
    /* box-shadow: 0 25px 55px rgba(18, 54, 46, 0.13); */
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.circle-card::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    border: 1px dashed rgba(30, 118, 112, 0.25);
    pointer-events: none;
}


.circle-card .why-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(44, 140, 156, 0.15);
    color: #1c8c81;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-card-copy h5 {
    margin-bottom: 0.3rem;
    color: #20463c;
}

.why-card-copy p {
    margin: 0;
    color: #4d6761;
    font-size: 0.92rem;
}

.why-intro_ {
    text-align: center;
    padding-bottom: 30px;
}

@media (max-width: 991.98px) {
    .why-card-track {
        flex-wrap: wrap;
        justify-content: center;
    }

    .circle-card {
        min-width: 220px;
        margin-bottom: 1rem;
    }
}

.key-stats {
    background: #fefefe;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(5, 24, 34, 0.08);
    box-shadow: 0 25px 55px rgba(4, 18, 28, 0.08);
}

.stat-card i,
.stat-icon i {
    font-size: 2rem;
    color: #329d8b;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #041322;
    display: block;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #329d8b;
}

.stat-content {
    flex: 1;
}

.stat-label {
    margin: 0.5rem 0 0;
    color: #4d6761;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8fbff 0%, #eef7f4 100%);
}

/* Doctor Section */
.doctor-section {
    background: #ffffff;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 136, 167, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.team-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafefe 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.04),
        0 8px 30px rgba(15, 23, 42, 0.06),
        0 16px 50px rgba(59, 136, 167, 0.03);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(90, 167, 153, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            rgba(59, 136, 167, 0.9) 0%,
            rgba(69, 168, 152, 0.9) 50%,
            rgba(90, 167, 153, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg,
            rgba(59, 136, 167, 0.1) 0%,
            rgba(69, 168, 152, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(8px);
}

.team-card:hover {
    transform: translateY(-16px) scale(1.015);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.1),
        0 24px 60px rgba(15, 23, 42, 0.08),
        0 40px 100px rgba(59, 136, 167, 0.12);
    border-color: rgba(90, 167, 153, 0.25);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover::after {
    opacity: 1;
}

.team-image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f4f2 0%, #d1efe8 50%, #f0f8f6 100%);
    position: relative;
    isolation: isolate;
}

.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 136, 167, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.team-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(59, 136, 167, 0) 0%,
            rgba(59, 136, 167, 0.05) 50%,
            rgba(59, 136, 167, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.team-card:hover .team-image::before,
.team-card:hover .team-image::after {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1) saturate(1) contrast(1);
    transform-origin: center center;
}

.team-card:hover .team-image img {
    transform: scale(1.12) translateY(-2px);
    filter: brightness(1.08) saturate(1.15) contrast(1.05);
}

.team-info {
    padding: 2.25rem 2rem;
    background: linear-gradient(180deg, #effffb 0%, #f8fffe 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 1px solid rgba(90, 167, 153, 0.08);
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(90, 167, 153, 0.3) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-info::before {
    opacity: 1;
}

.team-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(90, 167, 153, 0.15),
            transparent);
}

.team-info h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1f4a5a;
    margin: 0 0 1rem;
    line-height: 1.3;
    transition: all 0.4s ease;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #1f4a5a 0%, #3b8897 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-card:hover .team-info h3 {
    background: linear-gradient(135deg, #3b8897 0%, #45a8b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(2px);
}

.team-info p {
    margin: 0;
    color: #4d6761;
    font-size: 0.95rem;
    line-height: 1.75;
    flex: 1;
    transition: color 0.4s ease;
}

.team-card:hover .team-info p {
    color: #3d6b5f;
}

/* Separator Styles */
.has-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4cb5a3;
    font-weight: 600;
}

.why-choose-section .has-separator,
.team-section .has-separator {
    justify-content: center;
}

.has-separator .separator {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4cb5a3, transparent);
    max-width: 80px;
}

.has-separator .separator.left {
    background: linear-gradient(90deg, transparent, #4cb5a3);
}

.has-separator .separator.right {
    background: linear-gradient(90deg, #4cb5a3, transparent);
}

.has-separator .text {
    white-space: nowrap;
}

.section-subtext {
    color: #4d6761;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.75rem;
    }

    .team-image {
        height: 320px;
    }

    .team-info {
        padding: 1.75rem 1.5rem;
    }

    .team-info::before {
        left: 1.5rem;
        right: 1.5rem;
    }

    .team-info h3 {
        font-size: 1.3rem;
        margin: 0 0 0.875rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 575.98px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-image {
        height: 300px;
    }

    .team-card {
        border-radius: 24px;
    }

    .team-card:hover {
        transform: translateY(-10px) scale(1);
    }

    .team-card::after {
        border-radius: 24px;
    }

    .team-info {
        padding: 1.75rem 1.5rem;
    }

    .team-info::before {
        left: 1.5rem;
        right: 1.5rem;
    }

    .team-info h3 {
        font-size: 1.25rem;
        margin: 0 0 0.75rem;
    }

    .team-info p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .has-separator {
        flex-wrap: wrap;
        justify-content: center;
    }

    .has-separator .separator {
        max-width: 60px;
    }
}

.advanced-care {
    background: radial-gradient(circle at top left, rgba(31, 135, 157, 0.12), transparent 40%),
        radial-gradient(circle at bottom right, rgba(24, 169, 143, 0.15), transparent 45%),
        #f6f9fc;
    padding: 90px 0;
}

.advanced-care__copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #10263c;
    margin-bottom: 0.3rem;
}

.advanced-care__copy h3 {
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    color: #0f4c75;
    font-weight: 500;
    margin-bottom: 1rem;
}

.advanced-care .section-subtext {
    margin-bottom: 1.5rem;
    max-width: 520px;
    color: #4a5f65;
}

.advanced-care__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.0rem;
    align-items: center;
}

.advanced-care__visual {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    /* box-shadow: 0 40px 80px rgba(12, 33, 55, 0.2); */
}

.advanced-care__visual img {
    width: 100%;
    display: block;
}

.advanced-care__visual-meta {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    gap: 0.8rem;
}

.advanced-care__visual-meta div {
    background: rgba(5, 16, 24, 0.8);
    border-radius: 16px;
    padding: 0.8rem 1rem;
    color: #fff;
    min-width: 110px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.advanced-care__visual-meta span {
    font-size: 1.3rem;
    display: block;
    font-weight: 600;
}

.facilities-section {
    background: linear-gradient(135deg, #f8fbff 0%, #eef7f4 100%);
}

.facility-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.12);
}

.facility-media {
    position: relative;
    padding-top: 70%;
    margin: 0;
    overflow: hidden;
}

.facility-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-body {
    padding: 1.5rem;
    background: #d1efe8;
}

.facility-body h5 {
    margin: 0;
    font-size: 1.05rem;
    color: #0f172a;
    line-height: 1.5;
}

.contact-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(120deg, #051937 0%, #004d7a 55%, #00bf72 100%);
    color: #f8fbff;
}

.contact-hero-copy h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.contact-hero-copy p {
    color: rgba(248, 251, 255, 0.85);
    margin-bottom: 1.25rem;
}

.contact-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

.contact-hero-card h3 a {
    color: inherit;
    text-decoration: none;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-details {
    background: #f8fafc;
}

.contact-card {
    background: #f3fffc;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1.75rem;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #34d399);
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.contact-card h5 {
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.contact-card p,
.contact-card a {
    color: #44a798;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.contact-locations {
    background: #ffffff;
}

.location-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-media {
    margin: 0;
    position: relative;
    padding-top: 62%;
    overflow: hidden;
}

.location-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-body {
    padding: 1.75rem;
}

.location-body h5 {
    margin-bottom: 0.6rem;
    color: #0f172a;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: none;
}

.location-link i {
    font-size: 0.85rem;
}

@media (max-width: 767.98px) {
    .contact-hero-actions {
        flex-direction: column;
    }
}

.care-slider-wrapper {
    margin-top: 2rem;
    position: relative;
}

.care-slider {
    overflow: hidden;
}

.care-slide {
    border-radius: 24px;
    min-height: 320px;
    background: var(--slide-bg) center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: #fff;
    box-shadow: 0 30px 70px rgba(8, 24, 38, 0.4);
}

.care-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(3, 14, 23, 0) 45%, rgba(3, 14, 23, 0.95) 100%);
}

.care-slide-content {
    position: relative;
    padding: 1.4rem;
    z-index: 1;
}

.care-slide-content h5 {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
}

.care-slide-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.care-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.care-pagination {
    width: 160px;
    display: flex;
    justify-content: center;
}

.care-nav {
    width: 50px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #0f4c75;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 18px 35px rgba(10, 46, 73, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.care-nav:hover {
    background: #0a2e47;
    transform: translateY(-2px);
}

.swiper-pagination-bullet {
    background: rgba(15, 76, 117, 0.35);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0f4c75;
    width: 24px;
    border-radius: 999px;
}

@media (max-width: 991.98px) {
    .advanced-care__copy {
        text-align: center;
    }

    .advanced-care .section-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .care-slider-controls {
        gap: 0.6rem;
    }
}

.site-footer {

    color: #dbe7ec;
    padding: 0px;
    position: relative;
    overflow: hidden;
    background: #57C785;
    background: linear-gradient(359deg, rgb(229 252 244) 50%, rgb(198 245 234) 100%);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-top-card {


    padding: 2.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #419c9d8c;
    gap: 2rem;
    align-items: center;


}

.footer-brand {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
}

.footer-logo img {
    width: 280px;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.footer-brand p {
    margin: 0 0 1rem;
    color: rgb(26 26 26 / 90%);
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-stats div {
    background: rgba(23, 68, 87, 0.65);
    border-radius: 16px;
    padding: 0.85rem 1.3rem;
    border: 1px solid rgba(79, 178, 197, 0.25);
}

.footer-stats span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #6fe0f5;
}

.footer-stats small {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    color: rgba(219, 231, 236, 0.7);
}

.footer-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.6rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta i {
    font-size: 1rem;
}

.footer-cta.primary {
    color: #082128;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    box-shadow: 0 18px 35px rgba(46, 143, 166, 0.4);
}

.footer-cta.secondary {
    background: transparent;
    border-color: rgba(79, 178, 197, 0.4);
    color: #2c3032;
    border-radius: 30px;
}

.footer-cta:hover {
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h5 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1.1rem;
    color: #1b5868;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(219, 231, 236, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-links.contact-links li {

    border-radius: 18px;
    padding: 0.9rem 1rem;
}

.footer-links.contact-links strong {
    font-size: 0.95rem;
    color: #f8feff;
    display: block;
    line-height: 1.3;
}

.footer-links.contact-links small {
    display: block;
    color: rgb(56 66 65);
    font-size: 0.8rem;
    font-size: 17px;
    font-weight: 600;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(111, 224, 245, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f9f9f9;
    flex-shrink: 0;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
}

.footer-links a:hover {
    color: #6fe0f5;
}

.address-card {

    border-radius: 18px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgb(79 178 197 / 45%);
}

.address-card strong {
    color: #00914c;
    display: block;
    padding: 2px 0px 9px;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    border-bottom: 1px dashed #a2cfc8;
}

.address-card p {
    margin: 0 0 0.75rem;
    color: rgb(43 45 46 / 85%);
    line-height: 1.5;
}

.address-card a {
    color: #020404;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.address-card a .link-arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 0.35rem;
    transition: transform 0.2s ease;
}

.address-card a:hover {
    color: #26877b;
}

.address-card a:hover .link-arrow {
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    background: rgba(12, 50, 62, 0.8);
    padding: 0.85rem 1rem;
    border-radius: 16px;
}

.footer-contact-list i {
    color: #6fe0f5;
    font-size: 1rem;
}

.footer-contact-list span {
    display: block;
    font-weight: 600;
    color: #f4feff;
}

.footer-contact-list small {
    color: rgba(219, 231, 236, 0.7);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(111, 224, 245, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {

    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(111, 224, 245, 0.12);
    display: flex;
    flex-wrap: wrap;
    background: #18191a0a;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-pill-group {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-pill-group span {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(111, 224, 245, 0.15);
    border: 1px solid rgba(111, 224, 245, 0.25);
    font-size: 0.85rem;
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-top-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .footer-stats {
        flex-direction: column;
    }

    .footer-cta-stack {
        width: 100%;
    }

    .footer-cta {
        justify-content: center;
        width: 100%;
    }
}

.injuries-section {
    background: #0e2333;
    color: #f5f8fb;
}

.injuries-copy h2 {
    color: #f5f8fb;
    margin-bottom: 0.5rem;
}

.injuries-copy .section-subtext {
    color: rgba(245, 248, 251, 0.8);
}

.injury-label {
    display: block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    font-size: 0.75rem;
    color: #7ac1f0;
}

.injury-select {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1.1rem;
    background: rgba(11, 24, 33, 0.6);
    color: #f5f8fb;
    font-family: inherit;
    appearance: none;
}

.injury-select option {
    color: #0e2333;
}

.injury-map {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 480px;
    background: rgba(255, 255, 255, 0.05);
}

.injury-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.injury-marker {
    position: absolute;
    top: var(--pin-y);
    left: var(--pin-x);
    transform: translate(-50%, -50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.injury-pin {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #0e2333;
    background: #7ac1f0;
    box-shadow: 0 0 0 6px rgba(122, 193, 240, 0.35);
    cursor: pointer;
}

.injury-card {
    background: rgba(7, 13, 21, 0.92);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    width: 220px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.injury-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.6rem;
}

.injury-card h5 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.injury-card p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(245, 248, 251, 0.8);
}

.injury-marker:hover .injury-card,
.injury-marker:focus-within .injury-card,
.injury-card.highlight {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .injury-map {
        min-height: auto;
        padding: 1.5rem;
    }

    .injury-map img {
        display: none;
    }

    .injury-marker {
        position: static;
        transform: none;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .injury-pin {
        display: none;
    }

    .injury-card {
        opacity: 1;
        position: static;
        width: 100%;
    }
}

.latest-blog {
    background: #f7f9fc;
}

.blog-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 25px 55px rgba(12, 55, 85, 0.08);
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    position: relative;
    display: block;
}

.blog-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(5, 16, 24, 0) 0%, rgba(5, 16, 24, 0.55) 100%); */
}

.blog-tag {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f4c75;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.7rem;
    z-index: 1;
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #5c6d74;
}

.blog-card-body h5 {
    margin: 0;
    color: #10263c;
    font-size: 1.15rem;
}

.blog-card-body p {
    margin: 0;
    color: #4a5f65;
}

.blog-link {
    margin-top: auto;
    font-weight: 600;
    color: #0f4c75;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-link i {
    transition: transform 0.2s ease;
}

.blog-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 575.98px) {
    .blog-card-image img {
        height: 200px;
    }
}

/* Social Media Section */
.social-media-section {
    background: linear-gradient(135deg, #f8fbff 0%, #eef7f4 100%);
    position: relative;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 136, 167, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.social-media-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 167, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.instagram-reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.instagram-reel-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.06),
        0 8px 30px rgba(15, 23, 42, 0.04),
        0 16px 50px rgba(59, 136, 167, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(90, 167, 153, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.instagram-reel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(59, 136, 167, 0.8) 0%,
            rgba(69, 168, 152, 0.8) 50%,
            rgba(90, 167, 153, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.instagram-reel-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.1),
        0 24px 60px rgba(15, 23, 42, 0.08),
        0 40px 100px rgba(59, 136, 167, 0.1);
    border-color: rgba(90, 167, 153, 0.2);
}

.instagram-reel-card:hover::before {
    opacity: 1;
}

.instagram-reel-wrapper {
    width: 100%;
    min-height: 500px;
    position: relative;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.instagram-reel-wrapper iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    display: block;
    border-radius: 12px;
}

.instagram-reel-wrapper blockquote {
    width: 100% !important;
    min-height: 500px;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.instagram-reel-wrapper blockquote iframe {
    width: 100% !important;
    min-height: 500px !important;
}

/* Responsive Styles for Social Media */
@media (max-width: 991.98px) {
    .instagram-reels-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .instagram-reel-wrapper {
        min-height: 450px;
    }

    .instagram-reel-wrapper iframe {
        min-height: 450px;
    }

    .instagram-reel-wrapper blockquote {
        min-height: 450px;
    }
}

@media (max-width: 767.98px) {
    .instagram-reels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instagram-reel-wrapper {
        min-height: 400px;
    }

    .instagram-reel-wrapper iframe {
        min-height: 400px;
    }

    .instagram-reel-wrapper blockquote {
        min-height: 400px;
    }
}

@media (max-width: 575.98px) {
    .instagram-reel-card {
        border-radius: 20px;
    }

    .instagram-reel-wrapper {
        min-height: 350px;
    }

    .instagram-reel-wrapper iframe {
        min-height: 350px;
    }

    .instagram-reel-wrapper blockquote {
        min-height: 350px;
    }
}

/* Video Gallery Section */
.video-gallery-section {
    background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
    position: relative;
    overflow: hidden;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.video-gallery-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.06),
        0 8px 30px rgba(15, 23, 42, 0.04),
        0 16px 50px rgba(59, 136, 167, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(90, 167, 153, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.video-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(59, 136, 167, 0.8) 0%,
            rgba(69, 168, 152, 0.8) 50%,
            rgba(90, 167, 153, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.video-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.1),
        0 24px 60px rgba(15, 23, 42, 0.08),
        0 40px 100px rgba(59, 136, 167, 0.1);
    border-color: rgba(90, 167, 153, 0.2);
}

.video-gallery-card:hover::before {
    opacity: 1;
}

.video-gallery-wrapper {
    width: 100%;
    position: relative;
    background: #dff3ea;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-gallery-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 12px;
}

/* Responsive Styles for Video Gallery */
@media (max-width: 991.98px) {
    .video-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .video-gallery-card {
        border-radius: 20px;
    }
}

/* Modern News Gallery Section */
.news-gallery-section {
    background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
    position: relative;
    overflow: hidden;
}

.modern-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.08),
        0 8px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.12),
        0 24px 60px rgba(15, 23, 42, 0.1),
        0 40px 100px rgba(59, 136, 167, 0.15);
}

.gallery-item-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item-overlay i {
    font-size: 2.5rem;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 64%);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-lightbox-prev {
    left: 2rem;
}

.gallery-lightbox-next {
    right: 2rem;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* YouTube Shorts Section */
.youtube-shorts-section {
    background: #ddfbf4;
    position: relative;
}

.youtube-shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.youtube-short-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.06),
        0 8px 30px rgba(15, 23, 42, 0.04),
        0 16px 50px rgba(59, 136, 167, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(90, 167, 153, 0.08);
    position: relative;
}

.youtube-short-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(59, 136, 167, 0.8) 0%,
            rgba(69, 168, 152, 0.8) 50%,
            rgba(90, 167, 153, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.youtube-short-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.1),
        0 24px 60px rgba(15, 23, 42, 0.08),
        0 40px 100px rgba(59, 136, 167, 0.1);
    border-color: rgba(90, 167, 153, 0.2);
}

.youtube-short-card:hover::before {
    opacity: 1;
}

.youtube-short-wrapper {
    width: 100%;
    position: relative;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    aspect-ratio: 9 / 12;
}

.youtube-short-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 12px;
}

/* Responsive Styles for News Gallery and YouTube Shorts */
@media (max-width: 991.98px) {

    .modern-gallery-grid,
    .youtube-shorts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .gallery-lightbox-prev {
        left: 1rem;
    }

    .gallery-lightbox-next {
        right: 1rem;
    }

    .gallery-lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 767.98px) {

    .modern-gallery-grid,
    .youtube-shorts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-lightbox-content {
        max-width: 95vw;
        padding: 1rem;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .gallery-lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {

    .gallery-item,
    .youtube-short-card {
        border-radius: 16px;
    }

    .modern-gallery-grid {
        gap: 1rem;
    }

    .gallery-item-overlay i {
        font-size: 2rem;
    }

    .gallery-lightbox-prev {
        left: 0.5rem;
    }

    .gallery-lightbox-next {
        right: 0.5rem;
    }
}

/* Education Video Section */
.education-video-section {
    background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
    position: relative;
    overflow: hidden;
}

.education-video-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 136, 167, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.education-video-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 167, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.education-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.education-video-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafefe 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.06),
        0 8px 30px rgba(15, 23, 42, 0.04),
        0 16px 50px rgba(59, 136, 167, 0.03);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(90, 167, 153, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.education-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(59, 136, 167, 0.9) 0%,
            rgba(69, 168, 152, 0.9) 50%,
            rgba(90, 167, 153, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.education-video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.12),
        0 24px 60px rgba(15, 23, 42, 0.1),
        0 40px 100px rgba(59, 136, 167, 0.12);
    border-color: rgba(90, 167, 153, 0.25);
}

.education-video-card:hover::before {
    opacity: 1;
}

.education-video-card.instagram-card::before {
    background: linear-gradient(90deg,
            rgba(225, 48, 108, 0.9) 0%,
            rgba(253, 29, 29, 0.9) 50%,
            rgba(255, 159, 64, 0.9) 100%);
}

/* (Education reels use their natural embed height; no fixed min-height here) */

.video-card-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #f0f7f9 100%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(90, 167, 153, 0.1);
}

.video-card-header i {
    font-size: 1.5rem;
    color: #3b8897;
    transition: transform 0.3s ease;
}

.education-video-card.instagram-card .video-card-header i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.education-video-card:hover .video-card-header i {
    transform: scale(1.1);
}

.video-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4d6761;
}

.video-wrapper {
    width: 100%;
    position: relative;
    background: #fafafa;
    display: block;
    overflow: hidden;
}

.education-video-card .video-wrapper {
    padding: 0;
}

.video-wrapper iframe {
    width: 100%;
    height: auto;
    border: none;
    display: block;
}

.video-wrapper blockquote {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
}

.video-wrapper blockquote iframe {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #1f4a5a 0%, #3b8897 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.video-placeholder-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.video-placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-placeholder-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.video-card-footer {
    padding: 1.75rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(90, 167, 153, 0.08);
}

.video-card-footer h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f4a5a;
    margin: 0 0 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.education-video-card:hover .video-card-footer h4 {
    color: #3b8897;
}

.video-card-footer p {
    margin: 0;
    color: #4d6761;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Styles for Education Video Section */
@media (max-width: 991.98px) {
    .education-video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .video-placeholder {
        min-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .education-video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-placeholder {
        min-height: 320px;
    }
}

@media (max-width: 575.98px) {
    .education-video-card {
        border-radius: 24px;
    }

    .video-card-header {
        padding: 1rem 1.25rem;
    }

    .video-card-footer {
        padding: 1.5rem 1.25rem;
    }

    .video-card-footer h4 {
        font-size: 1.15rem;
    }

    .video-placeholder {
        min-height: 300px;
    }

    .video-placeholder-content i {
        font-size: 3rem;
    }

    .video-placeholder-content p {
        font-size: 1rem;
    }
}

.clinic-gallery {
    background: linear-gradient(135deg, #f9fbfc 0%, #eef6f4 100%);
    position: relative;
    overflow: hidden;
}

.clinic-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(94, 181, 198, 0.12), transparent 45%);
    pointer-events: none;
}

.clinic-gallery .container {
    position: relative;
    z-index: 1;
}

.simple-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.simple-gallery-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(8, 27, 44, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.simple-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 75px rgba(8, 27, 44, 0.15);
}

.simple-gallery-img {
    padding-top: 62%;
    position: relative;
    overflow: hidden;
}

.simple-gallery-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.simple-gallery-card:hover .simple-gallery-img img {
    transform: scale(1.05);
}

.simple-gallery-card figcaption {
    padding: 1.5rem;
}

.simple-gallery-card h6 {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: #1d5a73;
}

.simple-gallery-card p {
    margin: 0;
    color: #4f5b63;
    font-size: 0.95rem;
    line-height: 1.6;
}

.gallery-shell {
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1rem, 1.6vw, 1.8rem);
}

.gallery-card {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    background: #0c1f26;
    box-shadow: 0 25px 65px rgba(6, 24, 38, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 7, 12, 0.05) 0%, rgba(2, 7, 12, 0.65) 100%);
    opacity: 0.9;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.gallery-card__media {
    position: relative;
    isolation: isolate;
}

.gallery-card__media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card__overlay {
    position: absolute;
    inset: auto 1.5rem 1.5rem;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.gallery-card__overlay span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.2em;
}

.gallery-card__overlay p {
    margin: 0;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 85px rgba(6, 24, 38, 0.25);
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-hint {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.95rem;
    color: #4b5a60;
}

.gallery-hint code {
    font-size: 0.85rem;
    background: rgba(79, 176, 169, 0.15);
    border-radius: 6px;
    padding: 0.1rem 0.4rem;
    color: #2f6b66;
}

.lg-caption {
    text-align: left;
}

.lg-caption h4 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.lg-caption p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 575.98px) {
    .gallery-card__overlay {
        inset: auto 1rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .gallery-card,
    .gallery-card img {
        transition: none;
    }
}

.gallery-lightbox-content {
    max-width: 960px;
    width: 100%;
    text-align: center;
}

.gallery-lightbox-content img {
    width: 100%;
    border-radius: 24px;
    /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45); */
}

.gallery-lightbox-content p {
    margin-top: 1rem;
    color: #e8f4f8;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gallery-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.banner-txt {
    background: #edefee;
    color: #52a57b;
    padding: 0px 22px;
    border-radius: 50px;
}

.treatment-accordion .p-set {
    padding: 14px 0;
    display: flex;
    align-items: center;
    color: #1e293b !important;
    border-radius: 0;
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  
    padding-bottom: 14px;
}

.treatment-accordion .p-set::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #43a29a 0%, #429f9c 100%);
    border-radius: 2px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-accordion .p-set a {
    text-decoration: none;
    color: #222324 !important;
    /* margin: 0; */
    font-size: 17px;
    /* text-align: left; */
    font-weight: 600;
    flex: 1;
    border-bottom: 2px solid #e2e8f0;
}

.treatment-accordion .p-set:hover {
    
    transform: translateX(5px);
    padding-left: 5px;
 
}

.treatment-accordion .p-set:hover::before {
    height: 60%;
}

.treatment-accordion .p-set:hover a {
    color:#1f8177 !important;
    padding: 0px 5px;
}

.p-set {
    padding: 20px;

}

.p-set a {
    text-decoration: none;
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
}

.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    transform: translateX(-0%);
}

.footer-bottom p {
    color: #000;
}

.address-card i {
    color: #00914c;
}

@media (max-width: 767.98px) {

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
        min-height: 220px;
    }
}

/* Featured In Section */
.featured-in-section {

    position: relative;
    overflow: hidden;
    background: linear-gradient(357deg, #d1efe8 0%, #ffffff 100%);
}

.featured-in-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 136, 167, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-in-section .section-head {
    position: relative;
    z-index: 1;
}

.featured-in-section .has-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4cb5a3;
    font-weight: 600;
}

.featured-in-section .separator {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4cb5a3, transparent);
    max-width: 80px;
}

.featured-in-section .separator.left {
    background: linear-gradient(90deg, transparent, #4cb5a3);
}

.featured-in-section .separator.right {
    background: linear-gradient(90deg, #4cb5a3, transparent);
}

.featured-carousel-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.featured-glide {
    position: relative;
}

.featured-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(12, 28, 43, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 180px;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12, 28, 43, 0.15);
}

.featured-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.featured-item:hover .featured-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.featured-glide .glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 100%);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(12, 65, 104, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.featured-glide .glide__arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(12, 65, 104, 0.35);
}

.featured-glide .glide__arrow--left {
    left: -25px;
}

.featured-glide .glide__arrow--right {
    right: -25px;
}

@media (max-width: 991.98px) {
    .featured-glide .glide__arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .featured-glide .glide__arrow--left {
        left: -15px;
    }

    .featured-glide .glide__arrow--right {
        right: -15px;
    }

    .featured-item {
        height: 150px;
        padding: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #eff6fb 0%, #fdfefe 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(69, 168, 152, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(12, 28, 43, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(59, 136, 167, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(12, 28, 43, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5a64;
    margin: 0 0 2rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    line-height: 1;
    color: rgba(59, 136, 167, 0.15);
    font-family: Georgia, serif;
    position: absolute;
    left: 0;
    top: -0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 136, 167, 0.15);
}

.testimonial-author-info h5 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    color: #1f4a5a;
    font-weight: 600;
}

.testimonial-author-info span {
    font-size: 0.9rem;
    color: #4cb5a3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Splide.js Custom Styles */
.testimonials-section .splide__arrow {
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 100%);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(12, 65, 104, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-section .splide__arrow:hover {

    box-shadow: 0 12px 30px rgba(12, 65, 104, 0.35);
}

.testimonials-section .splide__arrow svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.testimonials-section .splide__pagination {
    bottom: -3rem;
}

.testimonials-section .splide__pagination__page {
    background: rgba(59, 136, 167, 0.3);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-section .splide__pagination__page.is-active {
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 100%);
    transform: scale(1.2);
}

/* Educational Videos Section */
.education-videos {
    background: linear-gradient(135deg, #ddfbf4 0%, #ddfbf4 35%, #ddfbf4 100%);
}

.education-videos .education-shell {
    display: grid;
    /* grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); */
    gap: 3rem;
    align-items: center;
}

.education-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.education-copy .section-heading {
    margin-bottom: 1rem;
}

.education-copy .section-subtext {
    max-width: 640px;
    margin: 0 auto;
}

.education-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 2rem;
    display: grid;
    gap: 0.9rem;
    max-width: 520px;
}

.education-highlights li {
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
    color: #162032;
    text-align: left;
}

.education-highlights li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1e51ff;
    position: absolute;
    left: 0;
    top: 0;
}

.education-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.education-metrics {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 1.5rem;
    text-align: center;
}

.education-metrics div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.education-metrics .metric-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a1f44;
}

.education-metrics .metric-label {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: #6b768b;
    text-transform: uppercase;
}

.education-reels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.education-reel-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 24px 60px -35px rgba(15, 40, 105, 0.55);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.education-reel-card .reel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #0f276d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.education-reel-card .reel-label i {
    color: #1e51ff;
}

.education-reel-card .reel-wrapper {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-reel-card .reel-wrapper blockquote {
    width: 100% !important;
    min-height: 500px;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.education-reel-card .reel-wrapper blockquote iframe {
    width: 100% !important;
    min-height: 500px !important;
}

/* Testimonial Reels Section */
.testimonial-reels-section {
    background: linear-gradient(135deg, #f9fbff 0%, #eef5ff 40%, #ffffff 100%);
}

.testimonials-reels-wrapper {
    position: relative;
}

.testimonial-reel-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.testimonial-reel-wrapper {
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-reel-wrapper blockquote {
    width: 100% !important;
    min-height: 420px;
    margin: 0 !important;
    padding: 0 !important;
}

.testimonial-reel-wrapper blockquote iframe {
    width: 100% !important;
    min-height: 420px !important;
}

@media (max-width: 991.98px) {
    .testimonial-reel-wrapper {
        min-height: 380px;
    }

    .testimonial-reel-wrapper blockquote {
        min-height: 380px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-reel-card {
        padding: 1rem;
    }

    .testimonial-reel-wrapper {
        min-height: 360px;
    }

    .testimonial-reel-wrapper blockquote {
        min-height: 360px;
    }
}

/* Testimonials Hub */
.testimonials-hub {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 60%);
}

.testimonials-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: start;
}

.testimonial-videos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-video-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 30px 70px -45px rgba(15, 40, 105, 0.55);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.video-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0f276d;
}

.video-label i {
    color: #1e51ff;
}

.video-duration {
    font-size: 0.85rem;
    color: #6b768b;
}

.testimonial-video-card .video-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-stories {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-story-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 65%, #eef4ff 100%);
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-rating {
    display: flex;
    gap: 0.25rem;
    color: #ffb703;
}

.story-text {
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.6;
    font-style: italic;
}

.story-author h5 {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.story-author span {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
}

@media (max-width: 1199px) {
    .education-videos .education-shell {
        grid-template-columns: 1fr;
    }

    .education-reels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .education-reel-card .reel-wrapper {
        min-height: 450px;
    }

    .education-reel-card .reel-wrapper blockquote {
        min-height: 450px;
    }

    .education-reel-card .reel-wrapper blockquote iframe {
        min-height: 450px !important;
    }

    .testimonials-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .education-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .education-reels {
        grid-template-columns: 1fr;
    }

    .education-reel-card .reel-wrapper {
        min-height: 400px;
    }

    .education-reel-card .reel-wrapper blockquote {
        min-height: 400px;
    }

    .education-reel-card .reel-wrapper blockquote iframe {
        min-height: 400px !important;
    }

    .testimonial-video-card,
    .testimonial-story-card {
        padding: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonials-section .splide__arrow {
        width: 40px;
        height: 40px;
    }

    .testimonials-section .splide__arrow svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Treatment pages */
.treatment-hero {
    background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 100%);
}

.treatment-hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 540px;
}

.treatment-stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.treatment-stat-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f172a;
}

.treatment-stat-label {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.35rem;
}

.treatment-card-link {
    text-decoration: none;
    color: inherit;
}

.treatment-card-simple {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.treatment-card-simple img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.treatment-card-simple h3 {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 1.1rem 1.2rem;
    margin: 0;
    color: #0f172a;
}

.treatment-card-link:hover .treatment-card-simple {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(56, 189, 148, 0.6);
}

.treatment-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    height: 100%;
}

.treatment-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.treatment-card ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.treatment-card li {
    margin-bottom: 0.35rem;
    color: #4b5563;
}

.treatment-paragraphs p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 1.25rem;
}

.treatment-care {
    background: #0f172a;
    color: #ffffff;
}

.treatment-care-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.treatment-care-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.treatment-care-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 0.2rem;
    background: #38bdf8;
    border-radius: 999px;
}

.treatment-cta {
    background: #f8fafc;
}

.treatment-cta-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
}

@media (max-width: 767.98px) {
    .treatment-cta-card {
        padding: 1.5rem;
    }
}

.treatment-page-hero {
    padding-top: 7rem;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.1), transparent 40%),
        linear-gradient(135deg, #f9fbff 0%, #ffffff 60%);
}

.treatment-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.treatment-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #94a3b8;
}

.treatment-breadcrumb .breadcrumb-item a {
    color: #0ea5e9;
    text-decoration: none;
}

.treatment-hero-highlights {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    color: #0f172a;
    font-weight: 500;
}

.treatment-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.treatment-hero-highlights li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0ea5e9;
    display: inline-block;
}

.treatment-contact-note {
    color: #475569;
    font-size: 0.95rem;
}

/* Appointment Section */
.appointment-section {
    background: linear-gradient(135deg, #f8fbff 0%, #eef7f4 100%);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(59, 136, 167, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.appointment-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(90, 167, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.appointment-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.appointment-copy {
    max-width: 520px;
}

.appointment-copy .section-subtext {
    max-width: 480px;
}

.appointment-visual {
    margin-top: 1.75rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
}

.appointment-visual img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.appointment-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.appointment-benefits li {
    position: relative;
    padding-left: 1.75rem;
    color: #1e293b;
    font-weight: 500;
}

.appointment-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b88a7, #45a898);
    box-shadow: 0 0 0 4px rgba(69, 168, 152, 0.2);
}

.appointment-form-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
    position: relative;
}

.appointment-form-card::before {
    content: '';
    position: absolute;
    inset: 0.85rem;
    border-radius: 22px;
    border: 1px dashed rgba(93, 167, 155, 0.4);
    pointer-events: none;
}

.appointment-form-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f9fafb;
}

.appointment-form-frame iframe {
    display: block;
}

/* Home Video Testimonials Section */
.video-testimonials-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.video-testimonials-shell {
    display: grid;
    grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.9fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.video-testimonials-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.video-testimonials-media .education-video-card {
    margin: 0;
}

.video-testimonials-reviews {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-testimonials-reviews .testimonial-card {
    height: auto;
}

@media (max-width: 991.98px) {
    .video-testimonials-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .video-testimonials-shell {
        gap: 2rem;
    }
}

@media (max-width: 991.98px) {
    .appointment-shell {
        grid-template-columns: 1fr;
    }

    .appointment-form-card {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .appointment-form-card {
        border-radius: 22px;
    }

    .appointment-form-card::before {
        inset: 0.65rem;
        border-radius: 18px;
    }
}

.treatment-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.treatment-section-header {
    margin-bottom: 1.5rem;
}

.treatment-paragraph {
    font-size: 1.05rem;
    color: #1e293b;
    line-height: 1.8;
}

.bg-soft {
    background: #f8fafc;
}

.icon-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.icon-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.6;
}

.icon-list li i {
    color: #0ea5e9;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.icon-list.stacked li {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.treatment-faq .accordion-item {
    border: none;
    border-radius: 18px;
    margin-bottom: 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.treatment-faq .accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: #fff;
    background: #E2FFF8;
    background: linear-gradient(175deg, rgba(226, 255, 248, 1) 0%, rgba(245, 245, 245, 1) 50%);
    border: 1px solid #dfdfdf;
}

.treatment-faq .accordion-button:not(.collapsed) {
    color: #3e5058;
    background: #e4fff9;
    box-shadow: none;
}

.treatment-faq .accordion-body {
    color: #475569;
    line-height: 1.7;
}

/* Knee replacement page */
.knee-breadcrumb {
    position: relative;
    padding: 4.5rem 0 2.5rem;
    background:
        linear-gradient(135deg, rgba(8, 15, 23, 0.75), rgba(8, 38, 52, 0.65)),
        url('https://jointrobo.com/wp-content/uploads/2025/02/Knee-Replacement.png') center/cover no-repeat;
    color: #f8fbff;
}

.knee-breadcrumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.32), transparent 60%);
    pointer-events: none;
}

.knee-breadcrumb-card {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    width: min(980px, 100%);
    margin: 0 auto;

}

.knee-breadcrumb-nav {
    margin-bottom: 1rem;
}

.knee-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.55);
}

.knee-breadcrumb-nav a {
    color: rgba(239, 250, 255, 0.85);
    text-decoration: none;
}

.knee-breadcrumb-nav a:hover {
    color: #38e1be;
}

.knee-breadcrumb-nav .active {
    color: #c8f8ff;
}

.knee-breadcrumb-copy h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.35rem;
}

.knee-breadcrumb-eyebrow {
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #9ae6ff;
    margin-bottom: 0.6rem;
}

.knee-breadcrumb-copy p {
    margin: 0;
    color: rgba(248, 251, 255, 0.85);
    max-width: 520px;
}

.knee-hero {
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;

    position: relative;
    overflow: hidden;
}

.knee-hero::after {
    content: '';
    position: absolute;
    inset: 14% auto auto 55%;
    width: 240px;
    height: 240px;
    background: rgba(14, 165, 233, 0.12);
    filter: blur(60px);
    z-index: 0;
}

.knee-hero .row {
    position: relative;
    z-index: 1;
}

.knee-hero-figure {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(9, 30, 48, 0.18);
    isolation: isolate;
    max-width: 800px;
    margin: 0 auto;
}

.knee-hero-figure img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

.knee-hero-figure::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 22px;
    z-index: 1;
    pointer-events: none;
}

.knee-hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.5rem 0 0;
}

.knee-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
    color: #0f172a;
}

.knee-hero-highlights li::before {
    content: '\279C';
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 14px;
    background: linear-gradient(120deg, #0ea5e9, #14b8a6);
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 1.75rem;
    font-size: 0.85rem;
}

.knee-overview {
    background: #fff;
}

.knee-card {
    height: 100%;
    padding: 1.75rem;
    border-radius: 22px;



}

.space {
    padding: 10px;
}

.knee-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

.knee-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.knee-list {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    color: #1f2937;
}

.knee-list li {
    line-height: 1.6;
    padding: 0.2rem 0;
}

.knee-list-numbered {
    list-style: decimal;
    padding-left: 1.6rem;
}

.knee-timeline {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    counter-reset: kneeStep;
}

.knee-timeline li {
    color: #1f2937;
    line-height: 1.6;
    padding: 1.25rem 1.25rem 1.25rem 4.25rem;
    border-radius: 20px;
    border: 1px solid rgba(8, 47, 73, 0.08);
    background: #f9f9f9;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    position: relative;
    counter-increment: kneeStep;
}

.knee-timeline li::before {
    content: counter(kneeStep);
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 35px rgba(10, 16, 29, 0.15);
}

.knee-cta {
    background: #f8fafc;
}

.knee-cta-card {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
}

.knee-cta-card h3 {
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.knee-cta-card p {
    margin: 0;
    color: #475569;
}

.knee-cta-actions {
    display: flex;
    gap: 1rem;
}

.knee-faq .accordion-item {
    border-radius: 18px;
}

.knee-breadcrumb-copy {
    padding-top: 20px;
}

.no-prop {
    text-decoration: none;
}

.section-padding {
    padding: 3rem;
}

.pramod-qualification-section {
    background: #f5fbf9;
}

.pramod-qualification-container {
    max-width: 1040px;
    margin: 0 auto;
}

.pramod-qualification-header {
    margin-bottom: 2.5rem;
}

.pramod-qualification-main-title {
    font-size: 2.5rem;
    margin-bottom: 0.35rem;
    color: #0f4c75;
}

.pramod-qualification-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.88rem;
    color: #0ea5a2;
    margin-bottom: 1rem;
}

.pramod-qualification-lead {
    max-width: 680px;
    margin: 0 auto;
    color: #475569;
}

.pramod-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pramod-accordion-item {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(14, 69, 75, 0.08);
    overflow: hidden;
}

.pramod-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.6rem;
    background: #fff;
    border: none;
    font-weight: 600;
    text-align: left;
    color: #0f1f3d;
    transition: background 0.2s ease;
}

.pramod-accordion-header:focus {
    outline: 2px solid rgba(15, 76, 117, 0.3);
    outline-offset: 3px;
}

.pramod-accordion-header i {
    transition: transform 0.2s ease;
    color: #0ea5a2;
}

.pramod-accordion-header:not(.collapsed) {
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    color: aliceblue;
  
    margin-bottom: 10px;
}

.pramod-accordion-header:not(.collapsed) i {
    transform: rotate(45deg);
}

.pramod-accordion-content {
    padding: 1rem 1.6rem 1.4rem;
}

.pramod-accordion-body p,
.pramod-accordion-body li {
    color: #475569;
}

.pramod-accordion-body ul,
.pramod-accordion-body ol {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.pramod-accordion-body li+li,
.pramod-accordion-body p+p {
    margin-top: 0.6rem;
}

.pramod-accordion-body p,
.pramod-accordion-body li {
    position: relative;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
}

.pramod-accordion-body p::after,
.pramod-accordion-body li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(14, 165, 162, 0.08) 20%,
            rgba(15, 76, 117, 0.25) 50%,
            rgba(14, 165, 162, 0.08) 80%,
            transparent 100%);
}

.pramod-accordion-body p:last-child,
.pramod-accordion-body li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.pramod-accordion-body p:last-child::after,
.pramod-accordion-body li:last-child::after {
    display: none;
}

.pramod-accordion-body strong {
    color: #0f4c75;
}

@media (max-width: 767.98px) {
    .pramod-qualification-main-title {
        font-size: 2rem;
    }

    .pramod-qualification-subtitle {
        letter-spacing: 0.12em;
    }

    .pramod-accordion-header {
        padding: 1.1rem 1.2rem;
    }

    .pramod-accordion-content {
        padding: 0 1.2rem 1.2rem;
    }
}

/* floating-cta */
.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1050;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.floating-btn:hover::before {
    width: 100%;
    height: 100%;
}

.floating-btn i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.2),
        0 6px 16px rgba(0, 0, 0, 0.15);
}

.floating-btn:hover i {
    transform: scale(1.1);
}

.floating-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.call-btn {
    background: linear-gradient(135deg, #3b8897 0%, #45a898 50%, #42a09c 100%);
}

.call-btn:hover {
    background: linear-gradient(135deg, #0073e6 0%, #0052cc 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #2FE576 0%, #1AB394 100%);
}

.appointment-btn {
    background: linear-gradient(135deg, #3b8897 0%, #45a898 50%, #42a09c 100%);
}

.appointment-btn:hover {
    background: linear-gradient(135deg, #4a9ba8 0%, #52b8a8 50%, #4fb0ac 100%);
}

.bg-soft_ {
    background: #f8fafc;
}

.bg-procedure {
    background: #ebfffa;
}

.benefits_bg {
    background: #f1f1f1;
}

.knee-list a {
    color: #1f2937;
    font-size: 1rem;
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .floating-cta {
        right: 16px;
        bottom: 16px;
        gap: 0.75rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 1.3rem;
    }
}
/* sidebar */
/* Treatments Bottom Sidebar Styles */
.treatments-bottom-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    pointer-events: none;
}

.sidebar-toggle-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #3b8897 0%, #45a898 50%, #42a09c 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1060;
    border: none;
    pointer-events: auto;
    user-select: none;
}

.sidebar-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
    background: linear-gradient(135deg, #197e72 0%, #0a6e47 100%);
}

.sidebar-toggle-btn i {
    font-size: 18px;
}

/* Icon-only state when scrolled */
.sidebar-toggle-btn.scrolled {
    padding: 14px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
}

.sidebar-toggle-btn.scrolled span {
    display: none;
}

.sidebar-toggle-btn.scrolled i {
    font-size: 20px;
    margin: 0;
}

.sidebar-content {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    max-height: 85vh;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1061;
    pointer-events: auto;
    touch-action: manipulation;
}

.sidebar-content.active {
    pointer-events: auto;
}

.sidebar-content.active {
    bottom: 0;
}

.sidebar-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-header h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.sidebar-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

.sidebar-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

.sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px 24px;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.sidebar-body::-webkit-scrollbar {
    width: 6px;
}

.sidebar-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.sidebar-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.sidebar-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.treatments-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.category-section {
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.all-treatments-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #419c98 0%, #45a899 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 8px;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.all-treatments-link:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    color: white;
}

.all-treatments-link i:first-child {
    font-size: 20px;
}

.all-treatments-link i:last-child {
    margin-left: auto;
    font-size: 14px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.category-header i {
    color: #0066cc;
    font-size: 20px;
}

.category-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0d9383;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: auto;
}

.treatment-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.treatment-link:hover {
    background: #419d97;
    color: #ffffff;
    border-color: #bae6fd;
    transform: translateX(4px);
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
}

.treatment-link span {
    flex: 1;
}

.treatment-link i {
    color: #94a3b8;
    font-size: 12px;
    transition: transform 0.2s;
}

.treatment-link:hover i {
 
    transform: translateX(4px);
    color: #fdfdfe;
}

.sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    position: sticky;
    bottom: 0;
    pointer-events: auto;
    z-index: 2;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 12px;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1060;
    pointer-events: none;
}

.sidebar-overlay.active {
    pointer-events: auto;
    z-index: 1060;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (min-width: 768px) {
    .sidebar-content {
        max-width: 600px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 24px 24px 0 0;
    }
    
    .sidebar-content.active {
        transform: translateX(-50%);
    }
    
    .sidebar-toggle-btn {
        right: calc(50% - 300px + 20px);
        bottom: 100px;
    }
}

@media (max-width: 767px) {
    .sidebar-toggle-btn {
        bottom: 100px;
        right: 16px;
        padding: 14px 18px;
        font-size: 13px;
        z-index: 9999;
    }
    
    .sidebar-toggle-btn span {
        display: inline;
    }
    
    .sidebar-toggle-btn.scrolled {
        padding: 14px;
        width: 50px;
        height: 50px;
    }
    
    .sidebar-header {
        padding: 16px 20px;
    }
    
    .sidebar-header h4 {
        font-size: 20px;
    }
    
    .sidebar-body {
        padding: 12px 20px 20px;
    }
    
    .category-header h5 {
        font-size: 14px;
    }
    
    .treatment-link {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Animation delays for staggered effect */
.category-section:nth-child(1) { animation-delay: 0.05s; }
.category-section:nth-child(2) { animation-delay: 0.1s; }
.category-section:nth-child(3) { animation-delay: 0.15s; }
.category-section:nth-child(4) { animation-delay: 0.2s; }
.category-section:nth-child(5) { animation-delay: 0.25s; }
.category-section:nth-child(6) { animation-delay: 0.3s; }
.category-section:nth-child(7) { animation-delay: 0.35s; }
/* sidebar end */
.sidebar-toggle-btn {
    right: calc(16% - 300px + 18px);
    bottom: 245px;
}
/*  */
.p-set.treatment_menu 
{
    margin: 0;
    font-size: 16px;
    text-align: left;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* floating-cta end */
@media (max-width: 767.98px) {

    .sidebar-toggle-btn {
        right: calc(72% - 300px + 37px);
        bottom: 280px;
    }
    .knee-hero {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .knee-card {
        padding: 0rem;
    }

    .knee-cta-card {
        text-align: center;
    }

    .knee-cta-actions {
        width: 100%;
        justify-content: center;
    }

    .circle-card {
        min-width: 230px;
        max-width: 260px;
        height: 260px;
        border-radius: 50%;
        background: #f9fffc;
        border: 1px solid rgba(23, 80, 78, 0.15);
        /* box-shadow: 0 25px 55px rgba(18, 54, 46, 0.13); */
        padding: 2rem 32px 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: auto;
        gap: 1rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        position: relative;
    }

    .hero-right {
        order: -1;
        min-height: 620px;
    }

    .hero-left {
        padding: 0px;
    }

    .hero-center {
        padding: 1rem;
    }

    .hero-center {
        background: #fff;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        background: #3B88A7;
        background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    }

    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.2rem);
        font-weight: 700;
        margin: 1.5rem 0 0.5rem;
        background: linear-gradient(316deg, #fff3f3 0%, #ffffff 45%, #ffffff 75%, #f7f7f7 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 60px;
    }

    .section-heading {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
        line-height: 40px;
        color: #599fad;
        margin-bottom: 1.5rem;
    }

    .section-padding {
        padding: 2rem;
    }

    .knee-breadcrumb-card {
        position: relative;
        z-index: 1;
        border-radius: 28px;
        padding: 2rem 1.1rem;
        width: min(980px, 100%);
        margin: 0 auto;

    }
    .knee-hero {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }   
    .knee-timeline li {
        color: #1f2937;
        line-height: 1.6;
        padding: 1.25rem 1.25rem 1.25rem 3.25rem;
        border-radius: 20px;
        border: 1px solid rgba(8, 47, 73, 0.08);
        background: #ffffff;
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
        position: relative;
        counter-increment: kneeStep;
    }
    .knee-timeline li::before {
        content: counter(kneeStep);
        position: absolute;
        left: 1.1rem;
        top: 35%;
        transform: translateY(-50%);
        width: 25px;
        height: 25px;
        border-radius: 14px;
        background: linear-gradient(135deg, #0ea5e9, #14b8a6);
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 14px 35px rgba(10, 16, 29, 0.15);
    }
    .about-mega .p-set span {
        color: #12615d !important;
        font-weight: 500;
        font-size: 14px;
    }
    .treatment-accordion .p-set a {
        text-decoration: none;
        color: #222324 !important;
        /* margin: 0; */
        font-size: 15px;
        /* text-align: left; */
        font-weight: 700;
        flex: 1;
        border-bottom: 2px solid #e2e8f0;
    }
    .treatment-toggle i {
        color: #43a19c;
        transition: transform 0.25s 
    ease;
        font-size: 14px;
    }
    .treatment-toggle-text h6 {
    margin: 0;
    font-size: 15px;
    text-align: left;
    color: #1e293b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.treatment-accordion .p-set a {
    text-decoration: none;
    color: #222324 !important;
    /* margin: 0; */
    font-size: 15px;
    /* text-align: left; */
    font-weight: 600;
    flex: 1;
    border-bottom: 2px solid #e2e8f0;
}
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 10px 17px;
    border-radius: 999px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(59, 136, 167, 1) 0%, rgba(69, 168, 152, 1) 50%, rgb(66 159 156) 93%);
    color: #fff !important;
    box-shadow: 0 18px 40px rgba(12, 65, 104, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s 
ease, box-shadow 0.2s 
ease;
}
.section-padding {
  padding: 1rem; 
}
.sidebar-toggle-btn {
    right: calc(72% - 300px + 37px);
    bottom: 284px;
}
.knee-card {
    padding: 1rem;
}
.footer-links.contact-links li {
    border-radius: 18px;
    padding: .4rem;
}
.knee-card iframe
{
max-height: 700px;
}
.knee-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0f172a;
    line-height: 38px;
    position: relative;
    z-index: 1;
}
}