/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-sofffuixhl] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.site-header[b-sofffuixhl] {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner[b-sofffuixhl] {
    max-width: var(--content-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper[b-sofffuixhl] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-wrapper img[b-sofffuixhl] {
    height: 54px;
    width: auto;
    display: block;
}

/* Navigation */
.main-nav[b-sofffuixhl] {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-item[b-sofffuixhl] {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    padding: var(--space-sm) 0;
    position: relative;
    white-space: nowrap;
}

.nav-item:hover[b-sofffuixhl] {
    color: var(--color-primary);
}

.nav-item[b-sofffuixhl]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item:hover[b-sofffuixhl]::after {
    width: 100%;
}

/* Responsive Nav for Mobile (Basic adjustment) */
@media (max-width: 768px) {
    .main-nav[b-sofffuixhl] {
        gap: var(--space-md);
    }

    .nav-item[b-sofffuixhl] {
        font-size: 0.875rem;
    }
}

/* Main Content Area */
main[b-sofffuixhl] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-wrapper[b-sofffuixhl] {
    flex: 1;
    width: 100%;
    /* Remove restrictive max-width here if the child sections handle it themselves */
    /* or keep it consistent site-wide */
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0;
    /* Let pages handle their own vertical padding */
}

/* Footer Styles */
.site-footer[b-sofffuixhl] {
    background-color: #e0f7ff;
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-3xl);
    margin-top: auto;
}

.footer-content[b-sofffuixhl] {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl) var(--space-3xl);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-3xl);
}

.footer-column h4[b-sofffuixhl] {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-container[b-sofffuixhl] {
    width: 100%;
    height: 250px;
    background-color: #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact-info p[b-sofffuixhl] {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text);
}

.contact-info .icon[b-sofffuixhl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(59, 130, 246, 0.08);
    color: var(--color-primary);
    border-radius: 10px;
}

.footer-links[b-sofffuixhl] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-sofffuixhl] {
    margin-bottom: var(--space-sm);
}

.link-button[b-sofffuixhl] {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

.link-button:hover[b-sofffuixhl] {
    color: var(--color-primary);
}

.footer-bottom[b-sofffuixhl] {
    background-color: var(--color-background);
    padding: var(--space-lg) 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.875rem;
}

/* Badges & Extra elements */
.misc-icons[b-sofffuixhl],
.app-downloads[b-sofffuixhl],
.payment-methods[b-sofffuixhl],
.social-media[b-sofffuixhl] {
    margin-top: var(--space-xl);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.misc-icon-img[b-sofffuixhl] {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.social-icon[b-sofffuixhl] {
    color: var(--color-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f1f5f9;
    transition: all 0.3s ease;
}

.social-icon:hover[b-sofffuixhl] {
    color: var(--color-white);
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.store-link[b-sofffuixhl] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #1e293b;
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Modal Styling */
.modal-overlay[b-sofffuixhl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal-content[b-sofffuixhl] {
    background-color: var(--color-white);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-close[b-sofffuixhl] {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body[b-sofffuixhl] {
    padding: var(--space-3xl);
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .footer-content[b-sofffuixhl] {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}
/* /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: flex;
}

#components-reconnect-modal[b-ooug462ox1] {
    background-color: var(--color-white);
    width: 24rem;
    max-width: 90vw;
    margin: 25vh auto;
    padding: var(--space-2xl);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ooug462ox1 0.3s forwards;
    z-index: 2000;
}

#components-reconnect-modal[open][b-ooug462ox1] {
    animation: components-reconnect-modal-slideUp-b-ooug462ox1 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        components-reconnect-modal-fadeInOpacity-b-ooug462ox1 0.3s ease-out forwards;
}

#components-reconnect-modal[b-ooug462ox1]::backdrop {
    background-color: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: components-reconnect-modal-fadeInOpacity-b-ooug462ox1 0.3s ease-out;
}

@keyframes components-reconnect-modal-slideUp-b-ooug462ox1 {
    0% {
        transform: translateY(40px) scale(0.95);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@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: var(--space-lg);
    width: 100%;
}

#components-reconnect-modal p[b-ooug462ox1] {
    margin: 0;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.5;
}

#components-reconnect-modal span[b-ooug462ox1] {
    color: var(--color-primary);
    font-weight: 700;
}

#components-reconnect-modal button[b-ooug462ox1] {
    border: none;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
    font-family: 'Figtree', sans-serif;
    white-space: nowrap;
}

#components-reconnect-modal button:hover[b-ooug462ox1] {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

#components-reconnect-modal button.btn-outline[b-ooug462ox1] {
    background-color: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    box-shadow: none;
}

#components-reconnect-modal button.btn-outline:hover[b-ooug462ox1] {
    background-color: var(--color-background);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.button-group[b-ooug462ox1] {
    display: flex;
    gap: var(--space-md);
    width: 100%;
    justify-content: center;
}

#components-reconnect-modal button:active[b-ooug462ox1] {
    transform: translateY(0);
}

.components-rejoining-animation[b-ooug462ox1] {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.components-rejoining-animation div[b-ooug462ox1] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-primary);
    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;
    border-color: var(--color-secondary);
    border-width: 2px;
}

@keyframes components-rejoining-animation-b-ooug462ox1 {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
/* /Components/Pages/Education.razor.rz.scp.css */
.services-container[b-z25gqra4gt] {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.hero-section[b-z25gqra4gt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    min-height: 400px;
    background: var(--color-background);
    padding: var(--space-2xl);
    border-radius: 0 0 40px 40px;
}

.hero-content[b-z25gqra4gt] {
    flex: 1 1 55%;
    padding: var(--space-xl);
}

.hero-content h1[b-z25gqra4gt] {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    font-weight: 800;
    color: var(--color-text);
}

.hero-content p[b-z25gqra4gt] {
    font-size: 1.1rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.hero-image[b-z25gqra4gt] {
    flex: 0 0 45%;
    max-width: 520px;
    height: 400px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img[b-z25gqra4gt] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section[b-z25gqra4gt] {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--color-white);
}

.content-container[b-z25gqra4gt] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-background);
    padding: var(--space-3xl);
    border-radius: 32px;
    border: 1px dashed var(--color-primary);
}

.coming-soon-note[b-z25gqra4gt] {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.btn-primary[b-z25gqra4gt] {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover[b-z25gqra4gt] {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .hero-section[b-z25gqra4gt] {
        flex-direction: column;
        text-align: center;
        padding-top: var(--space-3xl);
    }

    .hero-image[b-z25gqra4gt] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1[b-z25gqra4gt] {
        font-size: 2.5rem;
    }
}
/* /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[b-20ud0h4764] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.experience-logo[b-20ud0h4764] {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content h1[b-20ud0h4764] {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 800;
    color: #222;
}

.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(450px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.full-width[b-20ud0h4764] {
    grid-column: 1 / -1;
}

.full-width .image-card[b-20ud0h4764] {
    min-height: 450px;
    height: auto;
}

.full-width .multi-image-container[b-20ud0h4764] {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

@media (max-width: 768px) {
    .full-width .image-card[b-20ud0h4764] {
        min-height: 300px;
    }
}


.multi-image-container[b-20ud0h4764] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    height: 100%;
}

.multi-image-container img[b-20ud0h4764] {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.info-card[b-20ud0h4764] {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.info-card:hover[b-20ud0h4764] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.card-icon[b-20ud0h4764] {
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--color-background);
    border-radius: 16px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.icon-primary[b-20ud0h4764] {
    color: var(--color-primary);
}

.icon-warning[b-20ud0h4764] {
    color: #F59E0B;
    /* Amber-500 for warning */
}

.info-card:hover .card-icon[b-20ud0h4764] {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1) rotate(-5deg);
}

.info-card h2[b-20ud0h4764] {
    color: var(--color-text);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: var(--space-sm);
}

.info-card h2[b-20ud0h4764]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.info-card:hover h2[b-20ud0h4764]::after {
    width: 100px;
}

.info-card p[b-20ud0h4764] {
    color: var(--color-muted);
    line-height: 1.8;
    font-size: 1rem;
    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-container[b-0k5dq5cdd2] {
    padding-bottom: var(--space-3xl);
}

/* Hero Section */
.hero-section[b-0k5dq5cdd2] {
    background: var(--color-background);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    margin-bottom: var(--space-2xl);
    border-radius: 0 0 40px 40px;
}

.hero-content h1[b-0k5dq5cdd2] {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.hero-content p[b-0k5dq5cdd2] {
    font-size: 1.2rem;
    color: var(--color-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid[b-0k5dq5cdd2] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
    padding: 0 var(--space-lg);
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.gallery-item[b-0k5dq5cdd2] {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    aspect-ratio: 1/1;
    border: 1px solid var(--color-border);
}

.gallery-item:hover[b-0k5dq5cdd2] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.gallery-item img[b-0k5dq5cdd2] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img[b-0k5dq5cdd2] {
    transform: scale(1.1);
}

.image-overlay[b-0k5dq5cdd2] {
    position: absolute;
    inset: 0;
    background: rgba(59, 130, 246, 0.4);
    /* primary with alpha */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(4px);
    color: white;
}

.gallery-item:hover .image-overlay[b-0k5dq5cdd2] {
    opacity: 1;
}

.image-overlay svg[b-0k5dq5cdd2] {
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .image-overlay svg[b-0k5dq5cdd2] {
    transform: scale(1);
}

/* Modal Styling */
.image-modal-overlay[b-0k5dq5cdd2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(12px);
    animation: fadeIn-b-0k5dq5cdd2 0.3s ease;
}

.image-modal-content[b-0k5dq5cdd2] {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image-wrapper[b-0k5dq5cdd2] {
    background: var(--color-white);
    padding: var(--space-sm);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    animation: zoomIn-b-0k5dq5cdd2 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-modal-content img[b-0k5dq5cdd2] {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.close-button[b-0k5dq5cdd2] {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-button:hover[b-0k5dq5cdd2] {
    background: var(--color-primary);
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn-b-0k5dq5cdd2 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn-b-0k5dq5cdd2 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid[b-0k5dq5cdd2] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 0 var(--space-md);
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero Section */
.hero-section[b-7fdafscj19] {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: var(--color-background);
    overflow: hidden;
    position: relative;
}

.hero-content[b-7fdafscj19] {
    flex: 1;
    padding: var(--space-3xl);
    text-align: left;
    max-width: 600px;
    z-index: 10;
}

.hero-content h1[b-7fdafscj19] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    color: var(--color-text);
}

.hero-content h1 span[b-7fdafscj19] {
    font-family: 'Fair Prosper', cursive;
    color: var(--color-primary);
    display: block;
    margin-top: var(--space-xs);
    font-size: 1.25em;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.hero-actions[b-7fdafscj19] {
    margin-top: var(--space-xl);
    display: flex;
    gap: var(--space-md);
}

.btn-book[b-7fdafscj19] {
    background-color: var(--color-cta);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-book:hover[b-7fdafscj19] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.hero-image-background[b-7fdafscj19] {
    flex: 1.2;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-bg-image[b-7fdafscj19] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
}

.hero-bg-image.active[b-7fdafscj19] {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-section[b-7fdafscj19] {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-content[b-7fdafscj19] {
        max-width: 100%;
        padding: var(--space-xl);
        text-align: center;
    }

    .hero-image-background[b-7fdafscj19] {
        min-height: 300px;
        clip-path: none;
    }

    .hero-bg-image[b-7fdafscj19] {
        background-size: contain;
        background-position: top center;
    }
}


/* Our Story Section */
.our-story-section[b-7fdafscj19] {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--color-white);
    text-align: center;
}

.our-story-section .section-title[b-7fdafscj19] {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
    font-weight: 800;
}

.story-container[b-7fdafscj19] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.story-text[b-7fdafscj19] {
    flex: 1;
    text-align: justify;
    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: var(--space-3xl) var(--space-lg);
    background-color: var(--color-background);
    text-align: center;
}

.why-physio-section .section-title[b-7fdafscj19] {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: var(--space-3xl);
    font-weight: 800;
}

.why-physio-section .section-title span[b-7fdafscj19] {
    color: var(--color-primary);
    font-family: 'Fair Prosper', cursive;
    font-size: 1.1em;
    margin-left: 10px;
}

.why-grid[b-7fdafscj19] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.why-card[b-7fdafscj19] {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--color-border);
}

.why-card:hover[b-7fdafscj19] {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.card-image[b-7fdafscj19] {
    height: 260px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-image img[b-7fdafscj19] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-card:hover .card-image img[b-7fdafscj19] {
    transform: scale(1.1);
}

.card-content[b-7fdafscj19] {
    padding: var(--space-xl);
    text-align: center;
    flex: 1;
}

.card-content h3[b-7fdafscj19] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.card-content p[b-7fdafscj19] {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Body Icons Section */
.body-icons-section[b-7fdafscj19] {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--color-white);
    text-align: center;
}

.body-icons-section .section-title[b-7fdafscj19] {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: var(--space-3xl);
    font-weight: 800;
}

.body-icons-section .section-title span[b-7fdafscj19] {
    color: var(--color-primary);
    font-family: 'Fair Prosper', cursive;
}

.body-icons-grid[b-7fdafscj19] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.body-icon-item[b-7fdafscj19] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--color-background);
    border: 1px solid var(--color-border);
}

.body-icon-item:hover[b-7fdafscj19] {
    background-color: var(--color-white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.body-icon[b-7fdafscj19] {
    width: 140px;
    height: 140px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.body-icon-item:hover .body-icon[b-7fdafscj19] {
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.body-icon img[b-7fdafscj19] {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.body-icon-item p[b-7fdafscj19] {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 700;
    margin: 0;
    transition: color 0.3s;
}

.body-icon-item:hover p[b-7fdafscj19] {
    color: var(--color-primary);
}

/* 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: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.hero-section[b-tc7dvlutth] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    min-height: 400px;
    background: var(--color-background);
    padding: var(--space-2xl);
    border-radius: 0 0 40px 40px;
}

.hero-content[b-tc7dvlutth] {
    flex: 1 1 55%;
    padding: var(--space-xl);
}

.hero-content h1[b-tc7dvlutth] {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    font-weight: 800;
    color: var(--color-text);
}

.hero-content p[b-tc7dvlutth] {
    font-size: 1.1rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.hero-image[b-tc7dvlutth] {
    flex: 0 0 45%;
    max-width: 520px;
    height: 400px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img[b-tc7dvlutth] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 6s linear;
    transform: scale(1.08);
}

.hero-image img.active[b-tc7dvlutth] {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-image-overlay[b-tc7dvlutth] {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    pointer-events: none;
    z-index: 2;
}

.service-overview[b-tc7dvlutth] {
    max-width: 900px;
    margin: var(--space-2xl) auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.service-overview h2[b-tc7dvlutth] {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.service-overview p[b-tc7dvlutth] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-muted);
    text-align: justify;
    margin-bottom: var(--space-md);
}

.services-grid[b-tc7dvlutth] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    padding: 0 var(--space-lg);
    max-width: var(--content-max-width);
    margin: 0 auto;
    width: 100%;
}

.service-card[b-tc7dvlutth] {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.service-card:hover[b-tc7dvlutth] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.image-wrapper[b-tc7dvlutth] {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.image-wrapper img[b-tc7dvlutth] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .image-wrapper img[b-tc7dvlutth] {
    transform: scale(1.1);
}

.card-content[b-tc7dvlutth] {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.card-content h3[b-tc7dvlutth] {
    color: var(--color-text);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.service-description[b-tc7dvlutth] {
    text-align: left;
    font-size: 1rem;
    color: var(--color-muted);
    width: 100%;
}

.service-description p[b-tc7dvlutth] {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.service-description ul[b-tc7dvlutth] {
    padding-left: var(--space-lg);
    margin: var(--space-sm) 0;
}

.service-description li[b-tc7dvlutth] {
    margin-bottom: var(--space-xs);
    position: relative;
}

.service-description li[b-tc7dvlutth]::marker {
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .hero-section[b-tc7dvlutth] {
        flex-direction: column;
        text-align: center;
        padding-top: var(--space-3xl);
    }

    .hero-image[b-tc7dvlutth] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1[b-tc7dvlutth] {
        font-size: 2.5rem;
    }

    .services-grid[b-tc7dvlutth] {
        grid-template-columns: 1fr;
    }

    .service-overview h2[b-tc7dvlutth] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Team.razor.rz.scp.css */
.services-container[b-40z8v5o0er] {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.services-grid[b-40z8v5o0er] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
    padding: 0 var(--space-lg);
    max-width: var(--content-max-width);
    margin: 0 auto;
    width: 100%;
}

.service-card[b-40z8v5o0er] {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.service-card:hover[b-40z8v5o0er] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.image-wrapper[b-40z8v5o0er] {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: var(--color-background);
}

.image-wrapper img[b-40z8v5o0er] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.service-card:hover .image-wrapper img[b-40z8v5o0er] {
    transform: scale(1.05);
}

.card-content[b-40z8v5o0er] {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.card-content h3[b-40z8v5o0er] {
    color: var(--color-text);
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
}

.service-description[b-40z8v5o0er] {
    text-align: left;
    font-size: 1rem;
    color: var(--color-muted);
    width: 100%;
}

.service-description p[b-40z8v5o0er] {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.service-description strong[b-40z8v5o0er] {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.service-description ul[b-40z8v5o0er] {
    padding-left: var(--space-lg);
    margin: var(--space-sm) 0;
    list-style-type: none;
}

.service-description li[b-40z8v5o0er] {
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: var(--space-md);
}

.service-description li[b-40z8v5o0er]::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .services-grid[b-40z8v5o0er] {
        grid-template-columns: 1fr;
        padding: 0 var(--space-md);
    }
}
/* /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 45%;
    max-width: 520px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img[b-qh24fo80om] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 6s linear;
    transform: scale(1.08);
    will-change: opacity, transform;
}

.hero-image img.active[b-qh24fo80om] {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-image-overlay[b-qh24fo80om] {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
    pointer-events: none;
    z-index: 2;
}

.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));
    }
}
