/* /Components/DrMGComponents/BeforeAfter.razor.rz.scp.css */
/* BeforeAfter.razor.css
   Updated version with caption container removed
   Main components:
   1. Outer container (.before-after-container)
   2. Image container (.image-container)
*/

/* ===============================
   Main Container Styles
   =============================== */
.before-after-container[b-0mwlqi7ubx] {
    background-color: #f0f8ff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .before-after-container:hover[b-0mwlqi7ubx] {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

/* ===============================
   Image Section Styles
   =============================== */
.image-container[b-0mwlqi7ubx] {
    position: relative;
    width: 100%;
    padding-bottom: 50%; /* Creates 2:1 aspect ratio */
    flex-grow: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.before-after-image[b-0mwlqi7ubx] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

    .before-after-image:hover[b-0mwlqi7ubx] {
        transform: scale(1.05);
    }

/* ===============================
   Responsive Design
   =============================== */

/* XXL screens (≥1400px) */
@media (min-width: 1400px) {
    .before-after-container[b-0mwlqi7ubx] {
        padding: 1.25rem;
    }
}

/* XL screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .before-after-container[b-0mwlqi7ubx] {
        padding: 1.125rem;
    }
}

/* LG screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .before-after-container[b-0mwlqi7ubx] {
        padding: 1rem;
    }
}

/* MD screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .before-after-container[b-0mwlqi7ubx] {
        padding: 0.875rem;
    }
}

/* SM screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .before-after-container[b-0mwlqi7ubx] {
        padding: 0.75rem;
    }
}

/* XS screens (<576px) */
@media (max-width: 575.98px) {
    .before-after-container[b-0mwlqi7ubx] {
        padding: 0.625rem;
    }
}
/* /Components/DrMGComponents/BottomBar.razor.rz.scp.css */
/* BottomBar.razor.css */
/* Height variables for different breakpoints */
:root[b-netqs8b743] {
    --bottom-bar-height-xs: 45px; /* < 576px */
    --bottom-bar-height-sm: 45px; /* ≥ 576px */
    --bottom-bar-height-md: 50px; /* ≥ 768px */
    --bottom-bar-height-lg: 50px; /* ≥ 992px */
    --bottom-bar-height-xl: 55px; /* ≥ 1200px */
    --bottom-bar-height-xxl: 55px; /* ≥ 1400px */
}

.bottom-bar[b-netqs8b743] {
    background: #252467;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-bar-height-xs); /* Default height for smallest screens */
    z-index: 1000;
}

.social-links[b-netqs8b743] {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.social-item[b-netqs8b743] {
    color: white;
    font-size: 1.2rem;
}

    .social-item:hover[b-netqs8b743] {
        color: white;
        opacity: 0.8;
    }

/* Bootstrap 5 Media Queries */
/* SM - Small devices (≥576px) */
@media (min-width: 576px) {
    .bottom-bar[b-netqs8b743] {
        height: var(--bottom-bar-height-sm);
    }
}

/* MD - Medium devices (≥768px) */
@media (min-width: 768px) {
    .bottom-bar[b-netqs8b743] {
        height: var(--bottom-bar-height-md);
    }
}

/* LG - Large devices (≥992px) */
@media (min-width: 992px) {
    .bottom-bar[b-netqs8b743] {
        height: var(--bottom-bar-height-lg);
    }
}

/* XL - Extra large devices (≥1200px) */
@media (min-width: 1200px) {
    .bottom-bar[b-netqs8b743] {
        height: var(--bottom-bar-height-xl);
    }
}

/* XXL - Extra extra large devices (≥1400px) */
@media (min-width: 1400px) {
    .bottom-bar[b-netqs8b743] {
        height: var(--bottom-bar-height-xxl);
    }
}
/* /Components/DrMGComponents/BreadCrumbs.razor.rz.scp.css */
.breadcrumb[b-o01drj5up5] {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.breadcrumb-item[b-o01drj5up5] {
    color: #6c757d;
}

    .breadcrumb-item + .breadcrumb-item[b-o01drj5up5]::before {
        color: #6c757d;
    }

    .breadcrumb-item a[b-o01drj5up5] {
        color: #006400;
        text-decoration: none;
    }

        .breadcrumb-item a:hover[b-o01drj5up5] {
            color: #004d00;
            text-decoration: underline;
        }

    .breadcrumb-item.active[b-o01drj5up5] {
        color: #495057;
    }

@media (max-width: 575.98px) {
    .breadcrumb[b-o01drj5up5] {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}


/* /Components/DrMGComponents/DoctorImage.razor.rz.scp.css */
.doctor-image-wrapper[b-y2h15w0lmu] {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

picture[b-y2h15w0lmu] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.doctor-img[b-y2h15w0lmu] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.doctor-image-wrapper:hover .doctor-img[b-y2h15w0lmu] {
    transform: scale(1.05);
}

/* Mobile-specific optimizations */
@media (max-width: 575px) {
    .doctor-img[b-y2h15w0lmu] {
        transform: none;
    }

    .doctor-image-wrapper:hover .doctor-img[b-y2h15w0lmu] {
        transform: none;
    }
}
/* /Components/DrMGComponents/GalleryBeforeAfter.razor.rz.scp.css */
.gallery-item[b-yeeuczz8au] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

    .gallery-item:hover[b-yeeuczz8au] {
        transform: translateY(-5px);
    }

.image-wrapper[b-yeeuczz8au] {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 2 / 1; /* Modern CSS for 2:1 aspect ratio */
    background-color: #f8f8f8; /* Subtle background for loading state */
}

/* Image styling */
.gallery-image[b-yeeuczz8au] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image without cropping */
    object-position: center; /* Center the image */
    transition: opacity 0.3s ease, filter 0.3s ease;
    opacity: 0.3; /* Start slightly visible so users can see something */
    filter: blur(5px);
}

    .gallery-image.loaded[b-yeeuczz8au] {
        opacity: 1;
        filter: blur(0);
    }

    .gallery-image.error[b-yeeuczz8au] {
        opacity: 0.7;
        object-fit: contain;
        background-color: #f8f8f8;
    }

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .gallery-item[b-yeeuczz8au] {
        margin-bottom: 0.75rem;
    }
}
/* /Components/DrMGComponents/PageHeading.razor.rz.scp.css */
.page-heading h1[b-6m16tryb2f] {
    font-size: var(--h1-size-mobile);
    line-height: var(--heading-line-height);
    font-weight: 600;
}

.page-heading h3[b-6m16tryb2f] {
    font-size: var(--h3-size-mobile);
    line-height: var(--heading-line-height);
    font-weight: 400;
}


@media (min-width: 1400px) {
    .page-heading h1[b-6m16tryb2f] {
        font-size: var(--h1-size-desktop);
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .page-heading h1[b-6m16tryb2f] {
        font-size: 2.288rem;
    }
}



.page-description h1[b-6m16tryb2f] {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.page-description h3[b-6m16tryb2f] {
    font-size: 1.5rem;
    font-weight: 400;
}

@media (max-width: 1399.98px) {
    .page-description h1[b-6m16tryb2f] {
        font-size: 2.25rem;
    }
}

@media (max-width: 1199.98px) {
    .page-description h1[b-6m16tryb2f] {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .page-description h1[b-6m16tryb2f] {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .page-description h1[b-6m16tryb2f] {
        font-size: 1.5rem;
    }

    .page-description h3[b-6m16tryb2f] {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .page-description h1[b-6m16tryb2f] {
        font-size: 1.35rem;
    }

    .page-description h3[b-6m16tryb2f] {
        font-size: 1.15rem;
    }
}
/* /Components/DrMGComponents/SquareImage.razor.rz.scp.css */
/* SquareImage.razor.css 
   Controls the layout and appearance of the square image component
   with responsive text captions. Main components are:
   1. Outer container (.square-image-container)
   2. Image wrapper (.square-image-wrapper)
   3. Caption area (.image-caption)
*/

/* ===============================
   Main Container Styles
   =============================== */
.square-image-container[b-1jgzeys7dk] {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    min-height: calc(100% + 160px); /* Base height: image + caption height + padding */
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .square-image-container:hover[b-1jgzeys7dk] {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

/* Inner Layout Container */
.image-and-caption[b-1jgzeys7dk] {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

/* ===============================
   Image Section Styles
   =============================== */
.square-image-wrapper[b-1jgzeys7dk] {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Creates 1:1 aspect ratio */
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f0f0f0;
}

/* Picture Element Container */
picture[b-1jgzeys7dk] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Image Styling */
.square-image[b-1jgzeys7dk] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

    .square-image:hover[b-1jgzeys7dk] {
        transform: scale(1.05);
    }

/* Performance Optimization */
.above-fold[b-1jgzeys7dk] {
    content-visibility: auto;
}

/* ===============================
   Caption Section Styles
   =============================== */
.image-caption[b-1jgzeys7dk] {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 4px;
    height: 100px; /* Base caption height */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Title Styles */
.title-wrapper[b-1jgzeys7dk] {
    margin-bottom: 0.3rem;
}

strong[b-1jgzeys7dk] {
    display: block;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

/* Subtitle Styles */
p[b-1jgzeys7dk] {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 3em; /* Limits text to 2 lines */
}

/* ===============================
   Responsive Design
   =============================== */

/* XXL screens (≥1400px) */
@media (min-width: 1400px) {
    .square-image-container[b-1jgzeys7dk] {
        min-height: calc(100% + 180px);
        padding: 1.75rem;
    }

    .image-caption[b-1jgzeys7dk] {
        height: 120px;
        padding: 1.25rem;
    }

    strong[b-1jgzeys7dk] {
        font-size: 1.25rem;
    }

    p[b-1jgzeys7dk] {
        font-size: 1rem;
    }
}

/* XL screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .square-image-container[b-1jgzeys7dk] {
        min-height: calc(100% + 170px);
        padding: 1.5rem;
    }

    .image-caption[b-1jgzeys7dk] {
        height: 110px;
        padding: 1.125rem;
    }

    strong[b-1jgzeys7dk] {
        font-size: 1.15rem;
    }
}

/* LG screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .square-image-container[b-1jgzeys7dk] {
        min-height: calc(100% + 160px);
        padding: 1.25rem;
    }

    .image-caption[b-1jgzeys7dk] {
        height: 100px;
        padding: 1rem;
    }

    strong[b-1jgzeys7dk] {
        font-size: 1.1rem;
    }
}

/* MD screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .square-image-container[b-1jgzeys7dk] {
        min-height: calc(100% + 160px);
        padding: 1.25rem;
    }

    .square-image-wrapper[b-1jgzeys7dk] {
        margin-bottom: 1.25rem;
    }

    .image-caption[b-1jgzeys7dk] {
        height: 100px;
        padding: 1rem;
    }

    strong[b-1jgzeys7dk] {
        font-size: 1.05rem;
    }

    p[b-1jgzeys7dk] {
        font-size: 0.9rem;
    }
}

/* SM screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .square-image-container[b-1jgzeys7dk] {
        min-height: calc(100% + 150px);
        padding: 1rem;
    }

    .square-image-wrapper[b-1jgzeys7dk] {
        margin-bottom: 1rem;
    }

    .image-caption[b-1jgzeys7dk] {
        height: 100px;
        padding: 0.875rem;
    }

    strong[b-1jgzeys7dk] {
        font-size: 1rem;
    }

    p[b-1jgzeys7dk] {
        font-size: 0.9rem;
    }
}

/* XS screens (<576px) */
@media (max-width: 575.98px) {
    .square-image-container[b-1jgzeys7dk] {
        min-height: calc(100% + 150px);
        padding: 0.875rem;
    }

    .square-image-wrapper[b-1jgzeys7dk] {
        margin-bottom: 1rem;
    }

    .image-caption[b-1jgzeys7dk] {
        height: 100px;
        padding: 0.875rem;
    }

    strong[b-1jgzeys7dk] {
        font-size: 1rem;
    }

    p[b-1jgzeys7dk] {
        font-size: 0.875rem;
    }
}
/* /Components/DrMGComponents/SubtopicDescription.razor.rz.scp.css */
.subtopic-description h2[b-se31pg1ovz] {
    font-size: var(--h2-size-mobile);
    line-height: var(--heading-line-height);
    font-weight: 600;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

.subtopic-description h3[b-se31pg1ovz] {
    font-size: var(--h3-size-mobile);
    line-height: var(--heading-line-height);
    font-weight: 400;
    margin-bottom: 1rem;
    white-space: pre-line;
}

.subtopic-description .body-text[b-se31pg1ovz] {
    font-size: var(--body-size-mobile);
    line-height: var(--body-line-height);
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1400px) {
    .subtopic-description h2[b-se31pg1ovz] {
        font-size: var(--h2-size-desktop);
    }

    .subtopic-description h3[b-se31pg1ovz] {
        font-size: var(--h3-size-desktop);
    }

    .subtopic-description .body-text[b-se31pg1ovz] {
        font-size: var(--body-size-desktop);
    }
}







[b-se31pg1ovz] .body-text h3 {
    font-size: 1rem; /* for mobile */
    margin-bottom: 0.75rem;
    color: #444;
    font-weight: 600;
}

@media (min-width: 576px) {
    [b-se31pg1ovz] .body-text h3 {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    [b-se31pg1ovz] .body-text h3 {
        font-size: 1.25rem;
    }
}



/* Default styles for XXL screens */
.subtopic-description h2[b-se31pg1ovz] {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    white-space: pre-line;
}

.subtopic-description h3[b-se31pg1ovz] {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    white-space: pre-line;
}

.subtopic-description .body-text[b-se31pg1ovz] {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

    .subtopic-description .body-text p[b-se31pg1ovz] {
        margin-bottom: 1.5rem;
        color: #333;
    }

        .subtopic-description .body-text p:last-child[b-se31pg1ovz] {
            margin-bottom: 0;
        }

    .subtopic-description .body-text ul[b-se31pg1ovz] {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
        list-style: none;
    }

        .subtopic-description .body-text ul:last-child[b-se31pg1ovz] {
            margin-bottom: 0;
        }

    .subtopic-description .body-text li[b-se31pg1ovz] {
        margin-bottom: 0.75rem;
        color: #333;
        line-height: 1.6;
        position: relative;
        padding-left: 1.2rem;
    }

        .subtopic-description .body-text li:last-child[b-se31pg1ovz] {
            margin-bottom: 0;
        }

        .subtopic-description .body-text li[b-se31pg1ovz]::before {
            content: "•";
            color: #0056b3;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.2rem;
            line-height: 1.6;
        }

    /* Strong text selectors - unified styling */
    .subtopic-description .body-text strong[b-se31pg1ovz],
    .subtopic-description .body-text p strong[b-se31pg1ovz],
    .subtopic-description .body-text ul li strong[b-se31pg1ovz],
    .subtopic-description .body-text h3 strong[b-se31pg1ovz],
    .subtopic-description .body-text h3[b-se31pg1ovz] {
        color: #0056b3;
        font-weight: 600;
    }

    /* Inner heading styles */
    .subtopic-description .body-text h3[b-se31pg1ovz] {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

        .subtopic-description .body-text h3:first-child[b-se31pg1ovz] {
            margin-top: 0;
        }

@media (max-width: 1399.98px) {
    .subtopic-description h2[b-se31pg1ovz] {
        font-size: 1.75rem;
    }

    .subtopic-description .body-text[b-se31pg1ovz] {
        font-size: 1.05rem;
        line-height: 1.5;
        padding: 1.75rem;
    }
}

@media (max-width: 1199.98px) {
    .subtopic-description h2[b-se31pg1ovz] {
        font-size: 1.5rem;
    }

    .subtopic-description .body-text[b-se31pg1ovz] {
        font-size: 1rem;
        line-height: 1.5;
        padding: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .subtopic-description h2[b-se31pg1ovz] {
        font-size: 1.35rem;
    }

    .subtopic-description h3[b-se31pg1ovz],
    .subtopic-description .body-text h3[b-se31pg1ovz] {
        font-size: 1.25rem;
    }

    .subtopic-description .body-text[b-se31pg1ovz] {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 1.25rem;
    }

        .subtopic-description .body-text p[b-se31pg1ovz] {
            margin-bottom: 1.25rem;
        }

        .subtopic-description .body-text ul[b-se31pg1ovz] {
            margin-bottom: 1.25rem;
            padding-left: 1.25rem;
        }

        .subtopic-description .body-text li[b-se31pg1ovz] {
            margin-bottom: 0.625rem;
        }

            .subtopic-description .body-text li[b-se31pg1ovz]::before {
                line-height: 1.4;
            }
}

@media (max-width: 767.98px) {
    .subtopic-description h2[b-se31pg1ovz] {
        font-size: 1.25rem;
    }

    .subtopic-description h3[b-se31pg1ovz],
    .subtopic-description .body-text h3[b-se31pg1ovz] {
        font-size: 1.15rem;
    }

    .subtopic-description .body-text[b-se31pg1ovz] {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 1rem;
    }

        .subtopic-description .body-text p[b-se31pg1ovz] {
            margin-bottom: 1rem;
        }

        .subtopic-description .body-text ul[b-se31pg1ovz] {
            margin-bottom: 1rem;
            padding-left: 1rem;
        }

        .subtopic-description .body-text li[b-se31pg1ovz] {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
        }

            .subtopic-description .body-text li[b-se31pg1ovz]::before {
                font-size: 1.1rem;
                line-height: 1.4;
            }
}

@media (max-width: 575.98px) {
    .subtopic-description h2[b-se31pg1ovz] {
        font-size: 1.15rem;
    }

    .subtopic-description h3[b-se31pg1ovz],
    .subtopic-description .body-text h3[b-se31pg1ovz] {
        font-size: 1rem;
    }

    .subtopic-description .body-text[b-se31pg1ovz] {
        font-size: 0.875rem;
        line-height: 1.3;
        padding: 0.875rem;
    }

        .subtopic-description .body-text p[b-se31pg1ovz] {
            margin-bottom: 0.875rem;
        }

        .subtopic-description .body-text ul[b-se31pg1ovz] {
            margin-bottom: 0.875rem;
            padding-left: 0.875rem;
        }

        .subtopic-description .body-text li[b-se31pg1ovz] {
            margin-bottom: 0.4375rem;
            padding-left: 0.875rem;
        }

            .subtopic-description .body-text li[b-se31pg1ovz]::before {
                font-size: 1rem;
                line-height: 1.3;
            }
}
/* /Components/DrMGComponents/TopNav.razor.rz.scp.css */
.navbar[b-g4edesyk6y] {
    /*background: linear-gradient(90deg, #252467 0%, #F48CA1 100%);*/
    background: #252467;
}

.navbar-toggler[b-g4edesyk6y] {
    border-color: rgba(255, 255, 255, 1);
}

/*.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%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}*/

.navbar-toggler-icon[b-g4edesyk6y] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; /* Changed opacity to 1 */
}

/* Dropdown styling */
.dropdown-menu[b-g4edesyk6y] {
    margin-top: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
}

.dropdown-item[b-g4edesyk6y] {
    padding: 0.5rem 1rem;
    color: #000080;
    white-space: normal;
    word-wrap: break-word;
}

    .dropdown-item:hover[b-g4edesyk6y] {
        background-color: #000080;
        color: white;
    }

    /* Active state for dropdown items */
    .dropdown-item.active[b-g4edesyk6y] {
        background-color: #000080;
        color: white;
    }

/* Spacing between main nav items */
.nav-item[b-g4edesyk6y] {
    margin: 0 0.5rem;
}
/* /Components/DrMGComponents/YouTube.razor.rz.scp.css */
/* YouTube Video Embed Container */
.youtube-video-embed[b-a9k24zoo70] {
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Responsive Video Container */
.video-responsive[b-a9k24zoo70] {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-responsive iframe[b-a9k24zoo70] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .youtube-video-embed[b-a9k24zoo70] {
        padding: 0.5rem 0;
    }

    .video-responsive[b-a9k24zoo70] {
        border-radius: 8px;
    }

    .video-responsive iframe[b-a9k24zoo70] {
        border-radius: 8px;
    }
}
/* /Components/DrMGComponents/YoutubeVideoPlayer.razor.rz.scp.css */
/* Video Card Container */
.youtube-video-card[b-t1lcbvsk3o] {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInScale-b-t1lcbvsk3o 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

@keyframes fadeInScale-b-t1lcbvsk3o {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.youtube-video-card:hover[b-t1lcbvsk3o] {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 20px 40px rgba(37, 36, 103, 0.12),
        0 8px 16px rgba(37, 36, 103, 0.08),
        0 0 0 1px rgba(37, 36, 103, 0.04);
}

/* Video Container */
.video-container[b-t1lcbvsk3o] {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-wrapper[b-t1lcbvsk3o] {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a1a2e 0%, #252467 50%, #1a1a2e 100%);
    overflow: hidden;
}

/* Video Overlay - Subtle gradient for depth */
.video-overlay[b-t1lcbvsk3o] {
    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.02) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.youtube-video-card:hover .video-overlay[b-t1lcbvsk3o] {
    opacity: 1;
}

/* YouTube Iframe */
.youtube-iframe[b-t1lcbvsk3o] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.youtube-video-card:hover .youtube-iframe[b-t1lcbvsk3o] {
    transform: scale(1.02);
}

/* Lazy Loading State */
.lazy-video[b-t1lcbvsk3o] {
    background: linear-gradient(
        135deg,
        #e0e5ec 0%,
        #f5f7fa 25%,
        #e0e5ec 50%,
        #f5f7fa 75%,
        #e0e5ec 100%
    );
    background-size: 200% 100%;
    animation: shimmer-b-t1lcbvsk3o 2s infinite linear;
}

@keyframes shimmer-b-t1lcbvsk3o {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Video Content Section - Fixed Height */
.video-content[b-t1lcbvsk3o] {
    padding: 0.75rem 1.5rem 1.25rem 1.5rem; /* Reduced top padding for tighter gap */
    background: white;
    position: relative;
    transition: background-color 0.3s ease;
    height: 150px; /* Fixed height for desktop */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.youtube-video-card:hover .video-content[b-t1lcbvsk3o] {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

/* Video Title - Elegant Serif Font */
.video-title[b-t1lcbvsk3o] {
    font-family: 'Crimson Pro', 'Georgia', serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.45;
    color: #1a1a2e;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    max-height: 3.6em; /* 2 lines at 1.45 line-height + 1.25rem font */
}

.youtube-video-card:hover .video-title[b-t1lcbvsk3o] {
    color: #252467;
}

/* Video Description - Clean Sans-Serif */
.video-description[b-t1lcbvsk3o] {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.65;
    color: #5a6a7d;
    margin: 0;
    letter-spacing: -0.005em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    max-height: 3.3em; /* 2 lines at 1.65 line-height */
}

/* Decorative Accent - Subtle top border with gradient */
.youtube-video-card[b-t1lcbvsk3o]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #252467 0%, #6366f1 50%, #252467 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.youtube-video-card:hover[b-t1lcbvsk3o]::before {
    opacity: 1;
}

/* Responsive Typography and Fixed Heights per Media Size */

/* Large screens (992px - 1199px) */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .video-content[b-t1lcbvsk3o] {
        height: 150px; /* Fixed height for large screens */
        padding: 0.75rem 1.25rem 1.25rem 1.25rem; /* Reduced top padding */
    }
}

/* Medium screens (768px - 991px) */
@media (max-width: 991.98px) and (min-width: 768px) {
    .video-content[b-t1lcbvsk3o] {
        height: 120px; /* Fixed height for medium screens */
        padding: 0.75rem 1.25rem 1.25rem 1.25rem; /* Reduced top padding */
    }

    .video-title[b-t1lcbvsk3o] {
        font-size: 1.15rem;
        max-height: 3.3em;
    }

    .video-description[b-t1lcbvsk3o] {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
}

/* Small screens (576px - 767px) */
@media (max-width: 767.98px) and (min-width: 576px) {
    .youtube-video-card[b-t1lcbvsk3o] {
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .video-content[b-t1lcbvsk3o] {
        height: 110px; /* Fixed height for small screens */
        padding: 0.625rem 1rem 1rem 1rem; /* Reduced top padding */
    }

    .video-title[b-t1lcbvsk3o] {
        font-size: 1.1rem;
        margin-bottom: 0.65rem;
        max-height: 3.2em;
    }

    .video-description[b-t1lcbvsk3o] {
        font-size: 0.875rem;
        line-height: 1.6;
        -webkit-line-clamp: 2;
        max-height: 2.8em;
    }

    /* Reduce hover effects on mobile */
    .youtube-video-card:hover[b-t1lcbvsk3o] {
        transform: translateY(-4px) scale(1.005);
    }
}

/* Extra small screens (below 576px) */
@media (max-width: 575.98px) {
    .youtube-video-card[b-t1lcbvsk3o] {
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .video-container[b-t1lcbvsk3o] {
        border-radius: 10px 10px 0 0;
    }

    .video-content[b-t1lcbvsk3o] {
        height: 110px; /* Fixed height for extra small screens */
        padding: 0.625rem 0.875rem 1rem 0.875rem; /* Reduced top padding */
    }

    .video-title[b-t1lcbvsk3o] {
        font-size: 1.05rem;
        max-height: 3em;
        -webkit-line-clamp: 2;
    }

    .video-description[b-t1lcbvsk3o] {
        font-size: 0.85rem;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        max-height: 2.55em;
    }

    /* Reduce hover effects on mobile */
    .youtube-video-card:hover[b-t1lcbvsk3o] {
        transform: translateY(-2px) scale(1.002);
    }
}

/* Accessibility - Focus States */
.youtube-iframe:focus[b-t1lcbvsk3o] {
    outline: 3px solid #6366f1;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .youtube-video-card[b-t1lcbvsk3o] {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .video-wrapper[b-t1lcbvsk3o]::after {
        content: 'Video: ' attr(title);
        display: block;
        padding: 1rem;
        background: #f5f5f5;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.875rem;
    }
}
/* /Components/Layout/BaseLayout/ConditionsLayout.razor.rz.scp.css */
/* Base Layout Styles */
.page-wrapper[b-78p0yhkh5x] {
    background-color: ivory;
    min-height: 100vh;
}

.container[b-78p0yhkh5x] {
    background-color: lightgoldenrodyellow;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 1rem;
    margin: 0 auto;
}

/* Common Section Heading Styles */
[b-78p0yhkh5x] h2.text-center {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Video Container Styles */
.video-wrapper[b-78p0yhkh5x] {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* Condition Images Grid Styles */
.condition-images-grid[b-78p0yhkh5x] {
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
}

.condition-image-item[b-78p0yhkh5x] {
    width: 360px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Gallery Content Styles */
.gallery-content[b-78p0yhkh5x] {
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
}

.gallery-section-header[b-78p0yhkh5x] {
    width: 100%;
    margin: 2rem 0 1rem;
    text-align: center;
}

    .gallery-section-header h3[b-78p0yhkh5x] {
        color: #333;
        font-size: 1.5rem;
        font-weight: 500;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e0e0e0;
        margin: 0;
        display: inline-block;
        min-width: 300px;
    }

.gallery-item[b-78p0yhkh5x] {
    width: 600px;
    margin-bottom: 2rem;
}

    .gallery-item :deep(.before-after-container)[b-78p0yhkh5x] {
        height: 100%;
        margin-bottom: 0;
    }

/* Responsive Styles */
@media (min-width: 1400px) {
    .container[b-78p0yhkh5x] {
        max-width: 1320px;
    }

    .gallery-item[b-78p0yhkh5x] {
        width: 600px;
    }

    [b-78p0yhkh5x] h2.text-center {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container[b-78p0yhkh5x] {
        max-width: 1140px;
    }

    .condition-image-item[b-78p0yhkh5x] {
        width: 340px;
    }

    .gallery-item[b-78p0yhkh5x] {
        width: 540px;
    }

    [b-78p0yhkh5x] h2.text-center {
        font-size: 1.875rem;
    }

    .gallery-section-header h3[b-78p0yhkh5x] {
        font-size: 1.4rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .container[b-78p0yhkh5x] {
        max-width: 960px;
    }

    .condition-image-item[b-78p0yhkh5x] {
        width: 320px;
    }

    .gallery-item[b-78p0yhkh5x] {
        width: 480px;
    }

    [b-78p0yhkh5x] h2.text-center {
        font-size: 1.75rem;
    }

    .gallery-section-header h3[b-78p0yhkh5x] {
        font-size: 1.35rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .container[b-78p0yhkh5x] {
        max-width: 720px;
    }

    .condition-image-item[b-78p0yhkh5x] {
        width: 300px;
    }

    .gallery-item[b-78p0yhkh5x] {
        width: 100%;
        max-width: 600px;
    }

    [b-78p0yhkh5x] h2.text-center {
        font-size: 1.5rem;
    }

    .gallery-content[b-78p0yhkh5x] {
        gap: 1.5rem;
    }

    .gallery-section-header h3[b-78p0yhkh5x] {
        font-size: 1.25rem;
        min-width: 250px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .container[b-78p0yhkh5x] {
        max-width: 540px;
        padding: 1.5rem 1rem;
    }

    .condition-image-item[b-78p0yhkh5x] {
        width: 100%;
        max-width: 360px;
    }

    .gallery-item[b-78p0yhkh5x] {
        width: 100%;
        max-width: 500px;
    }

    [b-78p0yhkh5x] h2.text-center {
        font-size: 1.375rem;
    }

    .gallery-content[b-78p0yhkh5x] {
        gap: 1.25rem;
    }

    .gallery-section-header h3[b-78p0yhkh5x] {
        font-size: 1.15rem;
        min-width: 220px;
    }
}

@media (max-width: 575.98px) {
    .container[b-78p0yhkh5x] {
        padding: 1rem;
    }

    .condition-image-item[b-78p0yhkh5x] {
        width: 100%;
        max-width: 360px;
    }

    .gallery-item[b-78p0yhkh5x] {
        width: 100%;
        max-width: 500px;
    }

    [b-78p0yhkh5x] h2.text-center {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .gallery-content[b-78p0yhkh5x] {
        gap: 1rem;
    }

    .gallery-section-header h3[b-78p0yhkh5x] {
        font-size: 1.1rem;
        min-width: 200px;
    }
}
/* /Components/Layout/BaseLayout/NonSurgicalLayout.razor.rz.scp.css */
[b-r6xzj6beq9] h2.text-center {
    font-size: var(--h2-size-mobile);
    line-height: var(--heading-line-height);
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

/* FAQ Section Styles */
[b-r6xzj6beq9] .accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

[b-r6xzj6beq9] .accordion-button {
    font-size: var(--body-size-mobile);
    line-height: var(--faq-line-height);
    padding: 1rem 1.25rem;
    color: #333;
}

[b-r6xzj6beq9] .accordion-body {
    font-size: 0.875rem;
    line-height: var(--body-line-height);
    padding: 1.25rem;
}

@media (min-width: 1400px) {
    [b-r6xzj6beq9] h2.text-center {
        font-size: var(--h2-size-desktop);
    }

    [b-r6xzj6beq9] .accordion-button {
        font-size: var(--body-size-desktop);
    }

    [b-r6xzj6beq9] .accordion-body {
        font-size: 1rem;
    }
}






/* Base Layout Styles */
.page-wrapper[b-r6xzj6beq9] {
    background-color: ivory;
    min-height: 100vh;
}

.container[b-r6xzj6beq9] {
    background-color: lightgoldenrodyellow;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 1rem;
    margin: 0 auto;
}

/* Common Section Heading Styles */
[b-r6xzj6beq9] h2.text-center {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Video Section Styles */
position: relative;
width: 100%;
padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
margin-bottom: 2rem;[b-r6xzj6beq9]
}

.video-container iframe[b-r6xzj6beq9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Before/After Gallery Styles */
.gallery-grid[b-r6xzj6beq9] {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

/* FAQ Section Styles */
[b-r6xzj6beq9] .accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

[b-r6xzj6beq9] .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    color: #333;
    background-color: #fff;
    border: none;
    position: relative;
    width: 100%;
    text-align: left;
}

    [b-r6xzj6beq9] .accordion-button:not(.collapsed) {
        color: #000080;
        background-color: #e7f1ff;
        box-shadow: none;
    }

    [b-r6xzj6beq9] .accordion-button:focus {
        border-color: #80bdff;
        box-shadow: 0 0 0 0.2rem rgba(0,0,0,.125);
        z-index: 3;
    }

[b-r6xzj6beq9] .accordion-body {
    padding: 1.25rem;
    background-color: #fff;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media (min-width: 1400px) {
    .container[b-r6xzj6beq9] {
        max-width: 1320px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container[b-r6xzj6beq9] {
        max-width: 1140px;
    }

    [b-r6xzj6beq9] h2.text-center {
        font-size: 1.875rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .container[b-r6xzj6beq9] {
        max-width: 960px;
    }

    [b-r6xzj6beq9] h2.text-center {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .container[b-r6xzj6beq9] {
        max-width: 720px;
    }

    [b-r6xzj6beq9] h2.text-center {
        font-size: 1.5rem;
    }

    [b-r6xzj6beq9] .accordion-button {
        font-size: 1rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .container[b-r6xzj6beq9] {
        max-width: 540px;
        padding: 1.5rem 1rem;
    }

    [b-r6xzj6beq9] h2.text-center {
        font-size: 1.375rem;
    }

    [b-r6xzj6beq9] .accordion-button {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }

    [b-r6xzj6beq9] .accordion-body {
        padding: 1rem;
    }

    .video-container[b-r6xzj6beq9] {
        margin-bottom: 1.5rem;
    }

    .gallery-grid[b-r6xzj6beq9] {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .container[b-r6xzj6beq9] {
        padding: 1rem;
    }

    [b-r6xzj6beq9] h2.text-center {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    [b-r6xzj6beq9] .accordion-button {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    [b-r6xzj6beq9] .accordion-body {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .video-container[b-r6xzj6beq9] {
        margin-bottom: 1rem;
    }

    .gallery-grid[b-r6xzj6beq9] {
        gap: 1rem;
        margin: 1rem 0;
    }
}
/* Before/After Gallery Styles */
.before-after-gallery[b-r6xzj6beq9] {
    margin: 0;
}

    .before-after-gallery > .col[b-r6xzj6beq9] {
        display: flex;
        margin-bottom: 2rem;
    }

        .before-after-gallery > .col:last-child[b-r6xzj6beq9] {
            margin-bottom: 0;
        }

@media (min-width: 992px) {
    .before-after-gallery > .col[b-r6xzj6beq9] {
        margin-bottom: 0;
    }
}

[b-r6xzj6beq9] .before-after-container {
    flex: 1;
    margin-bottom: 0;
}
/* /Components/Layout/BaseLayout/SurgicalLayout.razor.rz.scp.css */
[b-n8zbqghjir] h2.text-center {
    font-size: var(--h2-size-mobile);
    line-height: var(--heading-line-height);
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

[b-n8zbqghjir] .accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
}

[b-n8zbqghjir] .accordion-button {
    font-size: var(--body-size-mobile);
    line-height: var(--faq-line-height);
    padding: 1rem 1.25rem;
    color: #333;
}

[b-n8zbqghjir] .accordion-body {
    font-size: 0.875rem;
    line-height: var(--body-line-height);
    padding: 1.25rem;
}

.page-wrapper[b-n8zbqghjir] {
    background-color: ivory;
    min-height: 100vh;
}

.container[b-n8zbqghjir] {
    background-color: lightgoldenrodyellow;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 1rem;
    margin: 0 auto;
}

[b-n8zbqghjir] h2.text-center {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

.video-container[b-n8zbqghjir] {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 2rem;
}

    .video-container iframe[b-n8zbqghjir] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 8px;
    }

.gallery-content[b-n8zbqghjir] {
    gap: 2rem;
    margin: 0 -1rem 4rem;
}

.gallery-item[b-n8zbqghjir] {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.gallery-section-header[b-n8zbqghjir] {
    margin: 3rem 0 2rem;
}

    .gallery-section-header h3[b-n8zbqghjir] {
        font-size: 1.25rem;
        color: #333;
        padding-bottom: 1rem;
        border-bottom: 2px solid #e0e0e0;
    }

@media (max-width: 575.98px) {
    .container[b-n8zbqghjir] {
        padding: 1rem;
    }

    [b-n8zbqghjir] h2.text-center {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    [b-n8zbqghjir] .accordion-button {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    [b-n8zbqghjir] .accordion-body {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .video-container[b-n8zbqghjir] {
        margin-bottom: 1rem;
    }

    .gallery-item[b-n8zbqghjir] {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .gallery-section-header[b-n8zbqghjir] {
        margin: 2rem 0 1.5rem;
    }

        .gallery-section-header h3[b-n8zbqghjir] {
            font-size: 1.1rem;
        }

    .gallery-content[b-n8zbqghjir] {
        margin-bottom: 3rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .container[b-n8zbqghjir] {
        max-width: 540px;
        padding: 1.5rem 1rem;
    }

    [b-n8zbqghjir] h2.text-center {
        font-size: 1.375rem;
    }

    [b-n8zbqghjir] .accordion-button {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }

    [b-n8zbqghjir] .accordion-body {
        padding: 1rem;
    }

    .video-container[b-n8zbqghjir] {
        margin-bottom: 1.5rem;
    }

    .gallery-item[b-n8zbqghjir] {
        max-width: 540px;
        margin-bottom: 1.75rem;
    }

    .gallery-section-header[b-n8zbqghjir] {
        margin: 2.5rem 0 1.75rem;
    }

        .gallery-section-header h3[b-n8zbqghjir] {
            font-size: 1.15rem;
        }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .container[b-n8zbqghjir] {
        max-width: 720px;
    }

    [b-n8zbqghjir] h2.text-center {
        font-size: 1.5rem;
    }

    [b-n8zbqghjir] .accordion-button {
        font-size: 1rem;
    }

    .gallery-item[b-n8zbqghjir] {
        max-width: 720px;
    }

    .gallery-section-header h3[b-n8zbqghjir] {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .container[b-n8zbqghjir] {
        max-width: 960px;
    }

    [b-n8zbqghjir] h2.text-center {
        font-size: 1.75rem;
    }

    .gallery-item[b-n8zbqghjir] {
        max-width: 480px;
    }

    .gallery-section-header h3[b-n8zbqghjir] {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container[b-n8zbqghjir] {
        max-width: 1140px;
    }

    [b-n8zbqghjir] h2.text-center {
        font-size: 1.875rem;
    }

    .gallery-item[b-n8zbqghjir] {
        max-width: 540px;
    }

    .gallery-section-header h3[b-n8zbqghjir] {
        font-size: 1.45rem;
    }
}

@media (min-width: 1400px) {
    .container[b-n8zbqghjir] {
        max-width: 1320px;
    }

    [b-n8zbqghjir] h2.text-center {
        font-size: var(--h2-size-desktop);
    }

    [b-n8zbqghjir] .accordion-button {
        font-size: var(--body-size-desktop);
    }

    [b-n8zbqghjir] .accordion-body {
        font-size: 1rem;
    }

    .gallery-item[b-n8zbqghjir] {
        max-width: 600px;
    }

    .gallery-section-header h3[b-n8zbqghjir] {
        font-size: 1.5rem;
    }

    .gallery-content[b-n8zbqghjir] {
        gap: 2.5rem;
    }
}

.before-after-gallery[b-n8zbqghjir] {
    margin: 0;
}

    .before-after-gallery > .col[b-n8zbqghjir] {
        display: flex;
        margin-bottom: 2rem;
    }

        .before-after-gallery > .col:last-child[b-n8zbqghjir] {
            margin-bottom: 0;
        }

@media (min-width: 992px) {
    .before-after-gallery > .col[b-n8zbqghjir] {
        margin-bottom: 0;
    }
}

[b-n8zbqghjir] .before-after-container {
    flex: 1;
    margin-bottom: 0;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-o041aj3ets] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: ivory
}

main[b-o041aj3ets] {
    flex: 1;
}

.content[b-o041aj3ets] {
    padding-top: 0.5rem;
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .content[b-o041aj3ets] {
        padding-top: 0.5rem;
    }

    .page[b-o041aj3ets] {
        padding-bottom: var(--bottom-bar-height);
    }
}

/* Extra large devices (large desktops, 1200px to 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .content[b-o041aj3ets] {
        padding-top: 0.5rem;
    }

    .page[b-o041aj3ets] {
        padding-bottom: var(--bottom-bar-height);
    }
}

/* Large devices (desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .content[b-o041aj3ets] {
        padding-top: 0.4rem;
    }

    .page[b-o041aj3ets] {
        padding-bottom: var(--bottom-bar-height);
    }
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .content[b-o041aj3ets] {
        padding-top: 0.4rem;
    }

    .page[b-o041aj3ets] {
        padding-bottom: var(--bottom-bar-height);
    }
}

/* Small devices (landscape phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .content[b-o041aj3ets] {
        padding-top: 0.4rem;
    }

    .page[b-o041aj3ets] {
        padding-bottom: var(--bottom-bar-height);
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .content[b-o041aj3ets] {
        padding-top: 0.3rem;
    }

    .page[b-o041aj3ets] {
        padding-bottom: var(--bottom-bar-height);
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ==========================================================================
   Root Variables & Base Styles
   ========================================================================== */
:root[b-7yklu8ysl1] {
    scroll-behavior: smooth;
}

/* Section Spacing Variables */
.section-spacing[b-7yklu8ysl1] {
    --section-gap-xxl: 5rem;
    --section-gap-xl: 4.5rem;
    --section-gap-lg: 4rem;
    --section-gap-md: 3.5rem;
    --section-gap-sm: 3rem;
    --section-gap-xs: 2.5rem;
    --heading-gap: 2rem;
    --subheading-gap: 1.5rem;
    --content-gap: 1rem;
}

/* ==========================================================================
   Layout & Container Styles
   ========================================================================== */
.page-wrapper[b-7yklu8ysl1] {
    background-color: ivory;
    min-height: 100vh;
}

.container[b-7yklu8ysl1] {
    background-color: lightgoldenrodyellow;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 1rem;
}

/* Scroll Anchor Points */
#clinical-services[b-7yklu8ysl1],
#surgical[b-7yklu8ysl1],
#non-surgical[b-7yklu8ysl1] {
    scroll-margin-top: 5rem;
}

/* ==========================================================================
   Professional Affiliations Grid Section
   ========================================================================== */
.affiliations-grid[b-7yklu8ysl1] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
    margin: 0 auto;
}

.affiliation-card[b-7yklu8ysl1] {
    width: 100px;
    height: 100px;
    display: block;
    transition: transform 0.3s ease;
    background-color: lightgoldenrodyellow;
    padding: 0.5rem;
    border-radius: 8px;
}

    .affiliation-card:hover[b-7yklu8ysl1] {
        transform: translateY(-5px);
    }

    .affiliation-card img[b-7yklu8ysl1] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* ==========================================================================
   Treatment Grids Section
   ========================================================================== */
.treatments-grid[b-7yklu8ysl1] {
    padding: 1rem;
}

/* Treatment Button Base Styles */
[b-7yklu8ysl1] .surgical-btn,
[b-7yklu8ysl1] .non-surgical-btn {
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 8px rgba(174, 174, 192, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
    color: #333;
}

    /* Non-Surgical Button Styles */
    [b-7yklu8ysl1] .non-surgical-btn,
    [b-7yklu8ysl1] .non-surgical-btn:hover,
    [b-7yklu8ysl1] .non-surgical-btn:focus,
    [b-7yklu8ysl1] .non-surgical-btn:active {
        background-color: #f0fff0 !important;
        border-color: #d0e6d0 !important;
    }

    /* Surgical Button Styles */
    [b-7yklu8ysl1] .surgical-btn,
    [b-7yklu8ysl1] .surgical-btn:hover,
    [b-7yklu8ysl1] .surgical-btn:focus,
    [b-7yklu8ysl1] .surgical-btn:active {
        background-color: #f0f8ff !important;
        border-color: #d0e0f0 !important;
    }

        /* Button Hover and Active States */
        [b-7yklu8ysl1] .surgical-btn:hover,
        [b-7yklu8ysl1] .non-surgical-btn:hover {
            transform: translateY(-2px);
            box-shadow: 6px 6px 12px rgba(174, 174, 192, 0.5);
        }

        [b-7yklu8ysl1] .surgical-btn:active,
        [b-7yklu8ysl1] .non-surgical-btn:active {
            transform: translateY(0);
            box-shadow: 2px 2px 4px rgba(174, 174, 192, 0.4);
        }

/* ==========================================================================
   Responsive Styles - Following Bootstrap 5 Breakpoints
   ========================================================================== */

/* XXL screens (≥1400px) */
@media (min-width: 1400px) {
    .affiliations-grid[b-7yklu8ysl1] {
        max-width: 1320px;
        gap: 1.5rem;
    }
}

/* XL screens (≥1200px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .affiliations-grid[b-7yklu8ysl1] {
        max-width: 1140px;
        gap: 1.25rem;
    }
}

/* LG screens (≥992px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .affiliations-grid[b-7yklu8ysl1] {
        max-width: 960px;
        gap: 1.25rem;
    }
}

/* MD screens (≥768px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .affiliations-grid[b-7yklu8ysl1] {
        max-width: 720px;
        gap: 1.25rem;
    }
}

/* SM screens (≥576px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .affiliations-grid[b-7yklu8ysl1] {
        max-width: 540px;
        gap: 1rem;
    }

    [b-7yklu8ysl1] .surgical-btn,
    [b-7yklu8ysl1] .non-surgical-btn {
        font-size: 0.95rem;
    }
}

/* XS screens (<576px) */
@media (max-width: 575.98px) {
    .affiliations-grid[b-7yklu8ysl1] {
        max-width: 100%;
        gap: 1rem;
    }

    .container[b-7yklu8ysl1] {
        padding: 1rem 0.5rem;
    }

    [b-7yklu8ysl1] .surgical-btn,
    [b-7yklu8ysl1] .non-surgical-btn {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }
}
/* /Components/Pages/PhotoGallery/PhotoGallery.razor.rz.scp.css */
/* Base Layout Styles */
.page-wrapper[b-vga0hhur41] {
    background-color: ivory;
    min-height: 100vh;
}

.container[b-vga0hhur41] {
    background-color: lightgoldenrodyellow;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 1rem;
}

/* Heading Styles */
.page-heading[b-vga0hhur41] {
    color: #252467;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-note[b-vga0hhur41] {
    color: #252467;
    font-size: 1rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Group Heading Style */
.category-group-heading[b-vga0hhur41] {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 4px solid #0d6efd;
    color: #252467;
    font-weight: 600;
}

/* Breadcrumb Styles */
.breadcrumb[b-vga0hhur41] {
    background-color: transparent;
    margin: 0;
    padding: 0.5rem 0;
}

.breadcrumb-item a[b-vga0hhur41] {
    color: #252467;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb-item a:hover[b-vga0hhur41] {
        color: #1a1947;
    }

.breadcrumb-item.active[b-vga0hhur41] {
    color: #1a1947;
}

/* Category Buttons Container */
.category-buttons-container[b-vga0hhur41] {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 6px;
    padding-left: 2px;
    padding-top: 4px; /* Added padding at the top */
    scrollbar-width: thin;
}

    .category-buttons-container[b-vga0hhur41]::-webkit-scrollbar {
        width: 5px;
    }

    .category-buttons-container[b-vga0hhur41]::-webkit-scrollbar-thumb {
        background-color: #252467;
        border-radius: 10px;
    }

.category-buttons[b-vga0hhur41] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* Category Button */
.category-btn[b-vga0hhur41] {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    background-color: #252467;
    color: white;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0 2px;
}

    .category-btn:hover[b-vga0hhur41] {
        background-color: #3a39a3;
        color: white;
        transform: translateY(-2px);
    }

    .category-btn:active[b-vga0hhur41] {
        transform: translateY(1px);
        background-color: #1a1947;
    }

    .category-btn.active[b-vga0hhur41] {
        background-color: #d4af37;
        color: #252467;
        font-weight: 600;
        box-shadow: 0 0 0 3px #252467;
        position: relative;
        z-index: 1;
    }

/* Improved Load More Button - Matches Category Button Style */
.btn-outline-primary[b-vga0hhur41] {
    background-color: #252467;
    color: white;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1.5rem;
}

    .btn-outline-primary:hover[b-vga0hhur41] {
        background-color: #3a39a3;
        color: white;
        transform: translateY(-2px);
        border: none;
    }

    .btn-outline-primary:active[b-vga0hhur41],
    .btn-outline-primary:focus[b-vga0hhur41] {
        background-color: #1a1947;
        color: white;
        box-shadow: 0 0 0 2px #252467;
        border: none;
    }

/* Gallery Grid Styles - Optimized for performance */
.row-cols-3 > .col[b-vga0hhur41] {
    margin-bottom: 1.5rem;
}

/* Loading Spinner */
.loading-spinner-container[b-vga0hhur41] {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.loading-spinner[b-vga0hhur41] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #0d6efd;
    animation: spinner-b-vga0hhur41 0.8s linear infinite;
}

@keyframes spinner-b-vga0hhur41 {
    to {
        transform: rotate(360deg);
    }
}

/* Alert Styles */
.alert-info[b-vga0hhur41] {
    background-color: #e1f5fe;
    border-color: #b3e5fc;
    color: #0288d1;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .category-btn[b-vga0hhur41] {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .btn-outline-primary[b-vga0hhur41] {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .category-buttons-container[b-vga0hhur41] {
        position: static;
        max-height: none;
        overflow-y: visible;
        padding-top: 0; /* Remove top padding in mobile view */
    }

    .category-buttons[b-vga0hhur41] {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .category-btn[b-vga0hhur41] {
        width: auto;
        min-width: 200px;
    }

    .btn-outline-primary[b-vga0hhur41] {
        min-width: 180px;
    }
}

@media (max-width: 767.98px) {
    .container[b-vga0hhur41] {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .category-btn[b-vga0hhur41] {
        min-width: 180px;
    }

    .btn-outline-primary[b-vga0hhur41] {
        min-width: 160px;
        font-size: 0.8rem;
    }

    .page-heading[b-vga0hhur41] {
        font-size: 1.6rem;
    }
}
/* /Components/Pages/Social/InstagramStories.razor.rz.scp.css */
.instagram-feed[b-v2ir3ai6sl] {
    width: 100%;
    padding: 2rem 1rem;
}

/* Card styles */
.instagram-card[b-v2ir3ai6sl] {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .instagram-card:hover[b-v2ir3ai6sl] {
        transform: translateY(-4px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

/* Image container and image styles */
.instagram-image-container[b-v2ir3ai6sl] {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #f8f9fa;
    overflow: hidden;
}

.instagram-image[b-v2ir3ai6sl] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

    .instagram-image:hover[b-v2ir3ai6sl] {
        transform: scale(1.05);
    }

/* Video indicator */
.video-indicator[b-v2ir3ai6sl] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

    .video-indicator i[b-v2ir3ai6sl] {
        opacity: 0.8;
    }

/* Content area styles */
.instagram-content[b-v2ir3ai6sl] {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.instagram-header[b-v2ir3ai6sl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.instagram-date[b-v2ir3ai6sl] {
    font-size: 0.875rem;
    color: #6c757d;
}

.instagram-caption[b-v2ir3ai6sl] {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #212529;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button styles */
.btn-instagram[b-v2ir3ai6sl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0095f6;
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

    .btn-instagram:hover[b-v2ir3ai6sl] {
        background-color: #0081d6;
        color: white;
    }

/* Loading spinner styles */
.spinner-border[b-v2ir3ai6sl] {
    width: 3rem;
    height: 3rem;
}

/* Alert styles */
.alert[b-v2ir3ai6sl] {
    border-radius: 0.5rem;
    padding: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
    .instagram-feed[b-v2ir3ai6sl] {
        padding: 1rem 0.5rem;
    }

    .instagram-content[b-v2ir3ai6sl] {
        padding: 1rem;
    }

    .instagram-caption[b-v2ir3ai6sl] {
        font-size: 0.875rem;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .instagram-feed[b-v2ir3ai6sl] {
        padding: 1.5rem;
    }
}

/* Accessibility */
.visually-hidden[b-v2ir3ai6sl] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.btn-instagram:focus[b-v2ir3ai6sl] {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 149, 246, 0.25);
}
/* /Components/Pages/YoutubeGallery/YoutubeGallery.razor.rz.scp.css */
/* Base Layout Styles */
.page-wrapper[b-7s0ecawrpm] {
    background-color: ivory;
    min-height: 100vh;
}

.container[b-7s0ecawrpm] {
    background-color: lightgoldenrodyellow;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 1rem;
}

/* Heading Styles */
.page-heading[b-7s0ecawrpm] {
    color: #252467;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-note[b-7s0ecawrpm] {
    color: #252467;
    font-size: 1rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Group Heading Style */
.category-group-heading[b-7s0ecawrpm] {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 4px solid #0d6efd;
    color: #252467;
    font-weight: 600;
}

/* Breadcrumb Styles */
.breadcrumb[b-7s0ecawrpm] {
    background-color: transparent;
    margin: 0;
    padding: 0.5rem 0;
}

.breadcrumb-item a[b-7s0ecawrpm] {
    color: #252467;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb-item a:hover[b-7s0ecawrpm] {
        color: #1a1947;
    }

.breadcrumb-item.active[b-7s0ecawrpm] {
    color: #1a1947;
}

/* Category Buttons Container */
.category-buttons-container[b-7s0ecawrpm] {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 6px;
    padding-left: 2px;
    padding-top: 4px;
    scrollbar-width: thin;
}

    .category-buttons-container[b-7s0ecawrpm]::-webkit-scrollbar {
        width: 5px;
    }

    .category-buttons-container[b-7s0ecawrpm]::-webkit-scrollbar-thumb {
        background-color: #252467;
        border-radius: 10px;
    }

.category-buttons[b-7s0ecawrpm] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* Category Button */
.category-btn[b-7s0ecawrpm] {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    background-color: #252467;
    color: white;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0 2px;
}

    .category-btn:hover[b-7s0ecawrpm] {
        background-color: #3a39a3;
        color: white;
        transform: translateY(-2px);
    }

    .category-btn:active[b-7s0ecawrpm] {
        transform: translateY(1px);
        background-color: #1a1947;
    }

    .category-btn.active[b-7s0ecawrpm] {
        background-color: #d4af37;
        color: #252467;
        font-weight: 600;
        box-shadow: 0 0 0 3px #252467;
        position: relative;
        z-index: 1;
    }

/* Improved Load More Button - Matches Category Button Style */
.btn-outline-primary[b-7s0ecawrpm] {
    background-color: #252467;
    color: white;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1.5rem;
}

    .btn-outline-primary:hover[b-7s0ecawrpm] {
        background-color: #3a39a3;
        color: white;
        transform: translateY(-2px);
        border: none;
    }

    .btn-outline-primary:active[b-7s0ecawrpm],
    .btn-outline-primary:focus[b-7s0ecawrpm] {
        background-color: #1a1947;
        color: white;
        box-shadow: 0 0 0 2px #252467;
        border: none;
    }

/* Video Grid Styles - 2 columns on large screens */
.row-cols-lg-2 > .col[b-7s0ecawrpm] {
    margin-bottom: 1.5rem;
}

/* Loading Spinner */
.loading-spinner-container[b-7s0ecawrpm] {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.loading-spinner[b-7s0ecawrpm] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #0d6efd;
    animation: spinner-b-7s0ecawrpm 0.8s linear infinite;
}

@keyframes spinner-b-7s0ecawrpm {
    to {
        transform: rotate(360deg);
    }
}

/* Alert Styles */
.alert-info[b-7s0ecawrpm] {
    background-color: #e1f5fe;
    border-color: #b3e5fc;
    color: #0288d1;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Category Select Dropdown (Mobile) */
.category-select[b-7s0ecawrpm] {
    background-color: #252467;
    color: white;
    border: 2px solid #252467;
    padding: 0.75rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .category-select:focus[b-7s0ecawrpm] {
        background-color: #1a1947;
        border-color: #d4af37;
        color: white;
        outline: none;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    }

    .category-select option[b-7s0ecawrpm] {
        background-color: white;
        color: #252467;
        padding: 0.5rem;
    }

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .category-btn[b-7s0ecawrpm] {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .btn-outline-primary[b-7s0ecawrpm] {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .category-buttons-container[b-7s0ecawrpm] {
        position: static;
        max-height: none;
        overflow-y: visible;
        padding-top: 0;
    }

    .category-buttons[b-7s0ecawrpm] {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .category-btn[b-7s0ecawrpm] {
        width: auto;
        min-width: 200px;
    }

    .btn-outline-primary[b-7s0ecawrpm] {
        min-width: 180px;
    }
}

@media (max-width: 767.98px) {
    .container[b-7s0ecawrpm] {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .category-btn[b-7s0ecawrpm] {
        min-width: 180px;
    }

    .btn-outline-primary[b-7s0ecawrpm] {
        min-width: 160px;
        font-size: 0.8rem;
    }

    .page-heading[b-7s0ecawrpm] {
        font-size: 1.6rem;
    }

    .category-select[b-7s0ecawrpm] {
        font-size: 0.85rem;
        padding: 0.65rem 0.8rem;
    }
}
