/* /Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-sofffuixhl] {
    --primary-color: #0056b3;
    --primary-hover: #007bff;
    --text-color: #343a40;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
    --header-height: 120px;
}

.page[b-sofffuixhl] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

/* Header & Nav */
.site-header[b-sofffuixhl] {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner[b-sofffuixhl] {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper img[b-sofffuixhl] {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav[b-sofffuixhl] {
    display: flex;
    gap: 30px;
}

.nav-item[b-sofffuixhl] {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-item:hover[b-sofffuixhl] {
    color: var(--primary-color);
}

.nav-item[b-sofffuixhl]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item:hover[b-sofffuixhl]::after {
    width: 100%;
}

/* Main Content */
main[b-sofffuixhl] {
    flex: 1;
    background-color: #fff;
}

.content-wrapper[b-sofffuixhl] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

/* Footer */
.site-footer[b-sofffuixhl] {
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0;
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-content[b-sofffuixhl] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column h4[b-sofffuixhl] {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-container[b-sofffuixhl] {
    width: 100%;
    height: 250px;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border: 1px solid #444;
}

.contact-info p[b-sofffuixhl] {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-info .icon[b-sofffuixhl] {
    color: var(--primary-color);
    font-size: 1.1em;
}

.footer-links[b-sofffuixhl] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-sofffuixhl] {
    margin-bottom: 10px;
}

.link-button[b-sofffuixhl] {
    background: none;
    border: none;
    padding: 0;
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: color 0.2s;
}

.link-button:hover[b-sofffuixhl] {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom[b-sofffuixhl] {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

/* Badges & Placeholders */
.misc-icons[b-sofffuixhl], .app-downloads[b-sofffuixhl], .payment-methods[b-sofffuixhl], .social-media[b-sofffuixhl] {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center; /* Ensure vertical alignment */
}

.misc-icon-img[b-sofffuixhl] {
    height: 50px;
    width: auto;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.9); /* Light background for visibility if logos are dark/transparent */
    padding: 2px;
    border-radius: 4px;
}

.social-icon[b-sofffuixhl] {
    color: #ccc;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
}

.social-icon:hover[b-sofffuixhl] {
    color: var(--primary-color);
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.store-link[b-sofffuixhl] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.store-link:hover[b-sofffuixhl] {
    background-color: #222;
    border-color: #555;
    transform: translateY(-2px);
}

.placeholder-badge[b-sofffuixhl], .payment-badge[b-sofffuixhl] {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    display: inline-block;
}

.placeholder-badge[b-sofffuixhl] { background-color: #333; color: #ccc; border: 1px solid #444; }


/* Modal Styles */
.modal-overlay[b-sofffuixhl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-sofffuixhl 0.3s ease;
}

.modal-content[b-sofffuixhl] {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: slideUp-b-sofffuixhl 0.3s ease;
}

.modal-close[b-sofffuixhl] {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover[b-sofffuixhl] {
    color: #000;
}

.modal-body[b-sofffuixhl] {
    padding: 40px;
    overflow-y: auto;
    color: var(--text-color);
}

/* Modal Content Styling (for Terms/Privacy) */
.modal-body h1[b-sofffuixhl] {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.modal-body h2[b-sofffuixhl] {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.modal-body p[b-sofffuixhl] {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.modal-body ul[b-sofffuixhl] {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-body li[b-sofffuixhl] {
    margin-bottom: 8px;
    color: #555;
}

@keyframes fadeIn-b-sofffuixhl {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-sofffuixhl {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Blazor Error UI */
#blazor-error-ui[b-sofffuixhl] {
    background: var(--blazor-error-ui-background);
    color: white;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.6);
    display: none; /* Hide by default, shown by Blazor on error */
}

#blazor-error-ui .reload[b-sofffuixhl] {
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.3rem 0.6rem;
    border-radius: 0.25rem;
}

#blazor-error-ui .reload:hover[b-sofffuixhl] {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

#blazor-error-ui .dismiss[b-sofffuixhl] {
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: 10px;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ooug462ox1],
.components-reconnect-repeated-attempt-visible[b-ooug462ox1],
.components-reconnect-failed-visible[b-ooug462ox1],
.components-pause-visible[b-ooug462ox1],
.components-resume-failed-visible[b-ooug462ox1],
.components-rejoining-animation[b-ooug462ox1] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ooug462ox1],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ooug462ox1],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ooug462ox1],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ooug462ox1],
#components-reconnect-modal.components-reconnect-retrying[b-ooug462ox1],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ooug462ox1],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ooug462ox1],
#components-reconnect-modal.components-reconnect-failed[b-ooug462ox1],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ooug462ox1] {
    display: block;
}


#components-reconnect-modal[b-ooug462ox1] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ooug462ox1 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ooug462ox1 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ooug462ox1 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ooug462ox1]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ooug462ox1 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ooug462ox1 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ooug462ox1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ooug462ox1 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ooug462ox1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ooug462ox1] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ooug462ox1] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ooug462ox1] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ooug462ox1] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ooug462ox1] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ooug462ox1] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ooug462ox1 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ooug462ox1] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ooug462ox1 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Education.razor.rz.scp.css */
.services-container[b-z25gqra4gt] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
}

.hero-section[b-z25gqra4gt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 320px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(90deg, rgba(245,245,245,1) 0%, rgba(235,237,240,1) 100%);
}

.hero-content[b-z25gqra4gt] {
    flex: 1 1 55%;
    padding: 3rem 2rem;
}

.hero-content h1[b-z25gqra4gt] {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #222;
}

.hero-content p[b-z25gqra4gt] {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
}

.hero-image[b-z25gqra4gt] {
    flex: 0 0 40%;
    max-width: 520px;
    height: 100%;
    position: relative;
    border-radius: 0 0 20px 0;
    overflow: hidden;
}

.hero-image img[b-z25gqra4gt] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay[b-z25gqra4gt] {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    pointer-events: none;
}

.content-section[b-z25gqra4gt] {
    padding: 3rem 2rem;
    background-color: #fff;
}

.content-container[b-z25gqra4gt] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-note[b-z25gqra4gt] {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-primary[b-z25gqra4gt] {
    background-color: #1d4ed8;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
}

.btn-primary:hover[b-z25gqra4gt] {
    background-color: #1641b3;
}

@media (max-width: 768px) {
    .hero-section[b-z25gqra4gt] {
        flex-direction: column-reverse;
        gap: 1rem;
        padding: 1rem 1rem 0 1rem;
    }

    .hero-content[b-z25gqra4gt] {
        padding: 1rem 1rem 0 1rem;
        text-align: center;
    }

    .hero-image[b-z25gqra4gt] {
        width: 100%;
        max-width: none;
        height: 220px;
        border-radius: 0 0 20px 20px;
    }
}
/* /Components/Pages/Experience.razor.rz.scp.css */
.experience-container[b-20ud0h4764] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-section[b-20ud0h4764] {
    position: relative;
    height: 400px; /* Adjust as needed */
    background: url('/images/home/background.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    color: #333; /* Text color for visibility against background */
}

.hero-content h1[b-20ud0h4764] {
    font-size: 3em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.hero-content h1[b-20ud0h4764]:first-line {
    font-size: 0.7em;
    font-weight: normal;
}

.hero-content h1 span.physio-solutions[b-20ud0h4764] {
    font-family: 'Brush Script MT', cursive; /* Generic cursive font for "Physio Solutions" */
    font-size: 1.5em; /* Adjust size relative to "The Experience" */
    color: #007bff; /* Example color, adjust to match image blue */
    display: block;
    margin-top: -0.2em; /* Adjust vertical position */
}

.hero-content .btn-primary[b-20ud0h4764] {
    background-color: #007bff; /* Example button color */
    border-color: #007bff;
    padding: 0.8em 2em;
    font-size: 1.1em;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

/* Content Section */
.content-section[b-20ud0h4764] {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.experience-grid[b-20ud0h4764] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.info-card[b-20ud0h4764] {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.info-card:hover[b-20ud0h4764] {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon[b-20ud0h4764] {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1;
}

.info-card h2[b-20ud0h4764] {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.info-card h2[b-20ud0h4764]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    border-radius: 2px;
}

.info-card p[b-20ud0h4764] {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.image-card[b-20ud0h4764] {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    position: relative;
}

.image-card img[b-20ud0h4764] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.image-card:hover img[b-20ud0h4764] {
    transform: scale(1.08);
}

.currency[b-20ud0h4764] {
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .experience-grid[b-20ud0h4764] {
        grid-template-columns: 1fr;
    }
    
    .info-card[b-20ud0h4764] {
        padding: 30px;
    }
    
    .image-card[b-20ud0h4764] {
        min-height: 250px;
    }
}
/* /Components/Pages/Gallery.razor.rz.scp.css */
.gallery-grid[b-0k5dq5cdd2] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item[b-0k5dq5cdd2] {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.gallery-item:hover[b-0k5dq5cdd2] {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-item img[b-0k5dq5cdd2] {
    width: 100%;
    height: 150px;
    /* Fixed height for thumbnails */
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.image-modal-overlay[b-0k5dq5cdd2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Ensure it's above other content */
}

.image-modal-content[b-0k5dq5cdd2] {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-modal-content img[b-0k5dq5cdd2] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.close-button[b-0k5dq5cdd2] {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1;
    z-index: 1001;
    /* Ensure close button is above the modal content */
}

.close-button:hover[b-0k5dq5cdd2] {
    color: #bbb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid[b-0k5dq5cdd2] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
    }

    .gallery-item img[b-0k5dq5cdd2] {
        height: 120px;
    }

    .close-button[b-0k5dq5cdd2] {
        font-size: 30px;
        top: 5px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid[b-0k5dq5cdd2] {
        grid-template-columns: 1fr;
        /* Single column on very small screens */
    }

    .gallery-item img[b-0k5dq5cdd2] {
        height: 200px;
        /* Larger images for single column layout */
    }
}

/* Simple Coming Soon Styles */
.coming-soon-simple[b-0k5dq5cdd2] {
    text-align: center;
    padding: 60px 20px;
    margin: 40px auto;
    max-width: 800px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px dashed #dee2e6;
}

.coming-soon-simple h3[b-0k5dq5cdd2] {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.coming-soon-simple p[b-0k5dq5cdd2] {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-page[b-7fdafscj19] {
    /* General styling for the home page if needed */
}

/* Hero Section */
.hero-section[b-7fdafscj19] {
    display: flex;
    align-items: center;
    min-height: 500px; /* Adjust as needed */
    background-color: #f8f8f8; /* Light background for the section */
    overflow: hidden; /* To handle image stretching if necessary */
}

.hero-content[b-7fdafscj19] {
    flex: 1;
    padding: 50px;
    text-align: center;
    color: #333;
}

.hero-content h1[b-7fdafscj19] {
    font-size: 3.5em;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-content h1 span[b-7fdafscj19] {
    font-family: 'Brush Script MT', cursive; /* Example script font, adjust as needed */
    color: #4a90e2; /* Blue color from the logo */
    font-size: 1.2em;
    display: block;
    margin-top: 5px;
}

.book-now-button[b-7fdafscj19] {
    background-color: #ffffff;
    border: 2px solid #4a90e2;
    color: #4a90e2;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.book-now-button:hover[b-7fdafscj19] {
    background-color: #4a90e2;
    color: #ffffff;
}

.hero-image-background[b-7fdafscj19] {
    flex: 1;
    min-height: 500px; /* Should match hero-section min-height */
    background-image: url('/images/home/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Our Story Section */
.our-story-section[b-7fdafscj19] {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.our-story-section .section-title[b-7fdafscj19] {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

.story-container[b-7fdafscj19] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text[b-7fdafscj19] {
    flex: 1;
    text-align: left;
    padding-right: 20px;
    max-width: 600px;
}

.story-text p[b-7fdafscj19] {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.story-text p em[b-7fdafscj19] {
    /* For italic text shown in the image */
    font-style: italic;
}

.show-more-link[b-7fdafscj19] {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.show-more-link:hover[b-7fdafscj19] {
    text-decoration: underline;
}

.story-image[b-7fdafscj19] {
    width: 450px; /* Adjust image width as per design */
    height: 300px; /* Adjust image height as per design */
    border-radius: 8px; /* Slightly rounded corners */
    overflow: hidden; /* Ensure image fits within bounds */
}

.story-image img[b-7fdafscj19] {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container */
    border-radius: 8px;
}

/* Why Physio Solutions Section */
.why-physio-section[b-7fdafscj19] {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.why-physio-section .section-title[b-7fdafscj19] {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.why-physio-section .section-title span[b-7fdafscj19] {
    color: #0056b3;
    /* Keeping the color emphasis but using standard font for modern look, 
       or revert to script if user insists on "similar patterns" strictly. 
       The previous css had script font. I will keep the color. */
}

.why-grid[b-7fdafscj19] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card[b-7fdafscj19] {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.why-card:hover[b-7fdafscj19] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-image[b-7fdafscj19] {
    height: 240px; /* Significantly bigger images */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-image img[b-7fdafscj19] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-card:hover .card-image img[b-7fdafscj19] {
    transform: scale(1.05);
}

.card-content[b-7fdafscj19] {
    padding: 30px;
    text-align: center; /* Centered text looks good for cards */
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content h3[b-7fdafscj19] {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-content p[b-7fdafscj19] {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Body Icons Section */
.body-icons-section[b-7fdafscj19] {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.body-icons-section .section-title[b-7fdafscj19] {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.body-icons-section .section-title span[b-7fdafscj19] {
    color: #0056b3;
}

.body-icons-grid[b-7fdafscj19] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.body-icon-item[b-7fdafscj19] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.body-icon-item:hover[b-7fdafscj19] {
    background-color: #f8f9fa;
    transform: translateY(-5px);
}

.body-icon[b-7fdafscj19] {
    width: 150px; /* Bigger size */
    height: 150px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
}

.body-icon-item:hover .body-icon[b-7fdafscj19] {
    border-color: #0056b3;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.body-icon img[b-7fdafscj19] {
    width: 90px; /* Bigger image */
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.body-icon-item:hover .body-icon img[b-7fdafscj19] {
    transform: scale(1.1);
}

.body-icon-item p[b-7fdafscj19] {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s;
}

.body-icon-item:hover p[b-7fdafscj19] {
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section[b-7fdafscj19], .story-container[b-7fdafscj19] {
        flex-direction: column;
    }

    .hero-content[b-7fdafscj19], .story-text[b-7fdafscj19] {
        padding: 30px;
        text-align: center;
    }

    .story-text[b-7fdafscj19] {
        padding-right: 0;
    }

    .story-image-placeholder[b-7fdafscj19] {
        width: 100%;
        height: 250px;
        margin-top: 30px;
    }

    .why-grid[b-7fdafscj19], .body-icons-grid[b-7fdafscj19] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1[b-7fdafscj19] {
        font-size: 2.5em;
    }

    .book-now-button[b-7fdafscj19] {
        padding: 12px 25px;
        font-size: 1em;
    }

    .our-story-section .section-title[b-7fdafscj19],
    .why-physio-section .section-title[b-7fdafscj19] {
        font-size: 2em;
    }

    .why-grid[b-7fdafscj19], .body-icons-grid[b-7fdafscj19] {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}
/* /Components/Pages/Services.razor.rz.scp.css */
.services-container[b-tc7dvlutth] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
}

.hero-section[b-tc7dvlutth] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 320px;
    border-radius: 0 0 20px 20px;
}

.hero-content[b-tc7dvlutth] {
    flex: 1 1 55%;
    padding: 3rem 2rem;
}

.hero-content h1[b-tc7dvlutth] {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #222;
}

.hero-content p[b-tc7dvlutth] {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
}

.hero-image[b-tc7dvlutth] {
    flex: 0 0 40%;
    max-width: 520px;
    height: 100%;
    position: relative;
    border-radius: 0 0 20px 0;
    overflow: hidden;
}

.hero-image img[b-tc7dvlutth] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay[b-tc7dvlutth] {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.15));
    pointer-events: none;
}

.services-grid[b-tc7dvlutth] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.service-card[b-tc7dvlutth] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover[b-tc7dvlutth] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.image-wrapper[b-tc7dvlutth] {
    height: 200px;
    overflow: hidden;
}

.image-wrapper img[b-tc7dvlutth] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .image-wrapper img[b-tc7dvlutth] {
    transform: scale(1.1);
}

.card-content[b-tc7dvlutth] {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.card-content h3[b-tc7dvlutth] {
    color: #333;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-description[b-tc7dvlutth] {
    text-align: left;
    font-size: 0.95rem;
    color: #555;
    width: 100%;
}

.service-description p[b-tc7dvlutth] {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.service-description ul[b-tc7dvlutth] {
    padding-left: 1.2rem;
    margin: 0.5rem 0 0 0;
    text-align: left;
}

.service-description li[b-tc7dvlutth] {
    margin-bottom: 0.25rem;
}

.content-section[b-tc7dvlutth] {
    padding: 3rem 2rem;
    background-color: #fff;
}

.content-container[b-tc7dvlutth] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-container h2[b-tc7dvlutth] {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-container p[b-tc7dvlutth] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .hero-section[b-tc7dvlutth] {
        flex-direction: column-reverse;
        gap: 1rem;
        padding: 1rem 1rem 0 1rem;
    }

    .hero-content[b-tc7dvlutth] {
        padding: 1rem 1rem 0 1rem;
        text-align: center;
    }

    .hero-image[b-tc7dvlutth] {
        width: 100%;
        max-width: none;
        height: 220px;
        border-radius: 0 0 20px 20px;
    }

    .hero-content h1[b-tc7dvlutth] {
        font-size: 2rem;
    }

    .services-grid[b-tc7dvlutth] {
        padding: 0 1rem;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
/* /Components/Pages/Team.razor.rz.scp.css */
.services-container[b-40z8v5o0er] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
}

.hero-section[b-40z8v5o0er] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 320px;
    border-radius: 0 0 20px 20px;
}

.hero-content[b-40z8v5o0er] {
    flex: 1 1 55%;
    padding: 3rem 2rem;
}

.hero-content h1[b-40z8v5o0er] {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #222;
}

.hero-content p[b-40z8v5o0er] {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
}

.hero-image[b-40z8v5o0er] {
    flex: 0 0 40%;
    max-width: 520px;
    height: 100%;
    position: relative;
    border-radius: 0 0 20px 0;
    overflow: hidden;
}

.hero-image img[b-40z8v5o0er] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay[b-40z8v5o0er] {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.05));
    pointer-events: none;
}

.services-grid[b-40z8v5o0er] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.service-card[b-40z8v5o0er] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.image-wrapper[b-40z8v5o0er] {
    height: 200px;
    overflow: hidden;
}

.image-wrapper img[b-40z8v5o0er] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .image-wrapper img[b-40z8v5o0er] {
    transform: scale(1.05);
}

.card-content[b-40z8v5o0er] {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.card-content h3[b-40z8v5o0er] {
    color: #333;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-description[b-40z8v5o0er] {
    text-align: left;
    font-size: 0.95rem;
    color: #555;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section[b-40z8v5o0er] {
        flex-direction: column-reverse;
        gap: 1rem;
        padding: 1rem 1rem 0 1rem;
    }

    .hero-content[b-40z8v5o0er] {
        padding: 1rem 1rem 0 1rem;
        text-align: center;
    }

    .hero-image[b-40z8v5o0er] {
        width: 100%;
        max-width: none;
        height: 220px;
        border-radius: 0 0 20px 20px;
    }

    .services-grid[b-40z8v5o0er] {
        padding: 0 1rem;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
/* /Components/Pages/Teams.razor.rz.scp.css */
.services-container[b-qh24fo80om] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
}

.hero-section[b-qh24fo80om] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 320px;
    border-radius: 0 0 20px 20px;
}

.hero-content[b-qh24fo80om] {
    flex: 1 1 55%;
    padding: 3rem 2rem;
}

.hero-content h1[b-qh24fo80om] {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #222;
}

.hero-content p[b-qh24fo80om] {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
}

.hero-image[b-qh24fo80om] {
    flex: 0 0 40%;
    max-width: 520px;
    height: 100%;
    position: relative;
    border-radius: 0 0 20px 0;
    overflow: hidden;
}

.hero-image img[b-qh24fo80om] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay[b-qh24fo80om] {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.05));
    pointer-events: none;
}

.services-grid[b-qh24fo80om] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.service-card[b-qh24fo80om] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.image-wrapper[b-qh24fo80om] {
    height: 200px;
    overflow: hidden;
}

.image-wrapper img[b-qh24fo80om] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .image-wrapper img[b-qh24fo80om] {
    transform: scale(1.05);
}

.card-content[b-qh24fo80om] {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.card-content h3[b-qh24fo80om] {
    color: #333;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-description[b-qh24fo80om] {
    text-align: left;
    font-size: 0.95rem;
    color: #555;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section[b-qh24fo80om] {
        flex-direction: column-reverse;
        gap: 1rem;
        padding: 1rem 1rem 0 1rem;
    }

    .hero-content[b-qh24fo80om] {
        padding: 1rem 1rem 0 1rem;
        text-align: center;
    }

    .hero-image[b-qh24fo80om] {
        width: 100%;
        max-width: none;
        height: 220px;
        border-radius: 0 0 20px 20px;
    }

    .services-grid[b-qh24fo80om] {
        padding: 0 1rem;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
