/* /Components/Layout/Footer.razor.rz.scp.css */
/* Footer styling to match navbar */
.footer[b-jruz89s0xu] {
    background: linear-gradient(135deg, #667eea 0%, #002064 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem 0 1rem 0;
    margin-top: auto;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer headings */
.footer-heading[b-jruz89s0xu] {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer links list */
.footer-links[b-jruz89s0xu] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-jruz89s0xu] {
    margin-bottom: 0.5rem;
}

.footer-links a[b-jruz89s0xu] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover[b-jruz89s0xu] {
    color: white;
    padding-left: 0.5rem;
}

/* Footer text */
.footer-text[b-jruz89s0xu] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-text strong[b-jruz89s0xu] {
    color: white;
}

/* Social links */
.social-links[b-jruz89s0xu] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a[b-jruz89s0xu] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover[b-jruz89s0xu] {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Copyright section */
.footer-copyright[b-jruz89s0xu] {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright small[b-jruz89s0xu] {
    font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer[b-jruz89s0xu] {
        padding: 1.5rem 0 1rem 0;
    }

    .footer-heading[b-jruz89s0xu] {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-links a[b-jruz89s0xu],
    .footer-text[b-jruz89s0xu] {
        font-size: 0.8rem;
    }

    .social-links a[b-jruz89s0xu] {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .footer[b-jruz89s0xu] {
        text-align: center;
    }

    .social-links[b-jruz89s0xu] {
        justify-content: center;
    }

    .footer-links a:hover[b-jruz89s0xu] {
        padding-left: 0;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-wvk5y14q9b] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main[b-wvk5y14q9b] {
    flex: 1;
    margin-top: 0;
    width: 100%;
}

.content[b-wvk5y14q9b] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

#blazor-error-ui[b-wvk5y14q9b] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-wvk5y14q9b] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Horizontal navigation bar styling */
.navbar[b-d3pqrj7ehc] {
    background: linear-gradient(135deg, #667eea 0%, #002064 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.navbar-brand[b-d3pqrj7ehc] {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover[b-d3pqrj7ehc] {
    opacity: 0.8;
}

/* Nav items */
.navbar-nav[b-d3pqrj7ehc] {
    align-items: center;
}

.nav-item[b-d3pqrj7ehc] {
    margin: 0 0.25rem;
}

/* Nav links */
.nav-link[b-d3pqrj7ehc] {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover[b-d3pqrj7ehc] {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
}

/* Active nav link */
.nav-item[b-d3pqrj7ehc]  a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
}

/* Dropdown menu styling */
.dropdown-menu[b-d3pqrj7ehc] {
    background-color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    min-width: 220px;
}

.dropdown-item[b-d3pqrj7ehc] {
    color: #333 !important;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    width: 100%;
    cursor: pointer;
}

.dropdown-item:hover[b-d3pqrj7ehc] {
    background-color: #f8f9fa;
    color: #667eea !important;
    padding-left: 2rem;
}

.dropdown-item:active[b-d3pqrj7ehc] {
    background-color: #667eea;
    color: white !important;
}

/* Dropdown toggle */
.dropdown-toggle[b-d3pqrj7ehc] {
    cursor: pointer;
}

.dropdown-toggle[b-d3pqrj7ehc]::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle[b-d3pqrj7ehc]::after {
    transform: rotate(180deg);
}

/* Mobile navbar toggler */
.navbar-toggler[b-d3pqrj7ehc] {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon[b-d3pqrj7ehc] {
    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.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus[b-d3pqrj7ehc] {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .navbar-collapse[b-d3pqrj7ehc] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    .dropdown-menu[b-d3pqrj7ehc] {
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
    }

    .nav-item[b-d3pqrj7ehc] {
        margin: 0.25rem 0;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jx27xa42z4],
.components-reconnect-repeated-attempt-visible[b-jx27xa42z4],
.components-reconnect-failed-visible[b-jx27xa42z4],
.components-pause-visible[b-jx27xa42z4],
.components-resume-failed-visible[b-jx27xa42z4],
.components-rejoining-animation[b-jx27xa42z4] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jx27xa42z4],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jx27xa42z4],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jx27xa42z4],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jx27xa42z4],
#components-reconnect-modal.components-reconnect-retrying[b-jx27xa42z4],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jx27xa42z4],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jx27xa42z4],
#components-reconnect-modal.components-reconnect-failed[b-jx27xa42z4],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jx27xa42z4] {
    display: block;
}


#components-reconnect-modal[b-jx27xa42z4] {
    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-jx27xa42z4 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jx27xa42z4 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jx27xa42z4 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jx27xa42z4]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jx27xa42z4 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jx27xa42z4 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jx27xa42z4 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jx27xa42z4 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jx27xa42z4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jx27xa42z4] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jx27xa42z4] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jx27xa42z4] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jx27xa42z4] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jx27xa42z4] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jx27xa42z4] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jx27xa42z4 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jx27xa42z4] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jx27xa42z4 {
    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/Contact.razor.rz.scp.css */
.contact-page[b-3z5ms6i095] {
    padding: 2rem 0;
}

.contact-page h1[b-3z5ms6i095] {
    margin-bottom: 2rem;
    color: #333;
}

.contact-content[b-3z5ms6i095] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-intro[b-3z5ms6i095] {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro p[b-3z5ms6i095] {
    font-size: 1.2rem;
    color: #666;
}

.contact-grid[b-3z5ms6i095] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-form-section h2[b-3z5ms6i095],
.contact-info-section h2[b-3z5ms6i095] {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.contact-form[b-3z5ms6i095] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group[b-3z5ms6i095] {
    display: flex;
    flex-direction: column;
}

.form-group label[b-3z5ms6i095] {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control[b-3z5ms6i095] {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus[b-3z5ms6i095] {
    outline: none;
    border-color: #0066cc;
}

.btn-submit[b-3z5ms6i095] {
    background: #0066cc;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover[b-3z5ms6i095] {
    background: #0052a3;
}

.contact-info-section[b-3z5ms6i095] {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-item[b-3z5ms6i095] {
    margin-bottom: 2rem;
}

.info-item:last-child[b-3z5ms6i095] {
    margin-bottom: 0;
}

.info-item h3[b-3z5ms6i095] {
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p[b-3z5ms6i095] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/Events/BreakfastMeeting.razor.rz.scp.css */
/* Hero Section */
.hero-container[b-w804cf8mug] {
    position: relative;
    background-image: url('/images/BreakfastMeeting-Header2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 40%;
}

    .hero-container[b-w804cf8mug]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-w804cf8mug] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-w804cf8mug] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-w804cf8mug] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-w804cf8mug] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-w804cf8mug] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-w804cf8mug] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-w804cf8mug] {
        font-size: 3vh;
    }
}

/*main section*/

/*header section*/

/*why attend section*/
.section-bg-blue[b-w804cf8mug] {
    background-color: #36a9e0;
}

.attend-text[b-w804cf8mug], .schedule-text[b-w804cf8mug] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-w804cf8mug] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 240px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-w804cf8mug] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-w804cf8mug] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-w804cf8mug] {
    padding-right: 10px;
    width: 50px;
}




/* CSS Btn without glow */
.button-35[b-w804cf8mug] {
    background: #003366;
    border-radius: 999px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    opacity: 1;
    border: 3px solid #FFD700;
    outline: 0 solid transparent;
    padding: 8px 18px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    word-break: break-word;
}

    .button-35:hover[b-w804cf8mug] {
        color: #ffffff;
        transform: scale(1.01) rotate(0deg);
    }

/* Carousel Image Styling */
.carousel img[b-w804cf8mug] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-w804cf8mug] {
    color: white;
}

.schedule-text[b-w804cf8mug] {
    color: #333;
}

.section-bg-white[b-w804cf8mug] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-w804cf8mug] {
    height: auto;
}

.text-muted[b-w804cf8mug] {
    color: rgba(0, 0, 0, 0.6);
}

/*donate scetion*/
.donate-left[b-w804cf8mug] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-w804cf8mug] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-w804cf8mug] {
    padding: 10px;
}

.right-sec[b-w804cf8mug] {
    padding: 10px;
}

.donate-btn[b-w804cf8mug] {
    margin-right: 30px;
}

.donation-box[b-w804cf8mug] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-w804cf8mug],
    .donation-box p[b-w804cf8mug],
    .donation-box strong[b-w804cf8mug] {
        color: white;
    }

.qr-box[b-w804cf8mug] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-w804cf8mug] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-w804cf8mug] {
    color: #cccccc !important;
}
/* /Components/Pages/Events/CarBoot.razor.rz.scp.css */
/* Hero Section */
.hero-container[b-3knhru0ftt] {
    position: relative;
    background-image: url('/images/carbootsale.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 67%;
}

    .hero-container[b-3knhru0ftt]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-3knhru0ftt] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-3knhru0ftt] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-3knhru0ftt] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-3knhru0ftt] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-3knhru0ftt] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-3knhru0ftt] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-3knhru0ftt] {
        font-size: 3vh;
    }
}

/*main section*/

/*header section*/

/*why attend section*/
.section-bg-blue[b-3knhru0ftt] {
    background-color: #36a9e0;
}

.attend-text[b-3knhru0ftt], .schedule-text[b-3knhru0ftt] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-3knhru0ftt] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 240px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-3knhru0ftt] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-3knhru0ftt] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-3knhru0ftt] {
    padding-right: 10px;
    width: 50px;
}

/* Carousel Image Styling */
.carousel img[b-3knhru0ftt] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-3knhru0ftt] {
    color: white;
}

.schedule-text[b-3knhru0ftt] {
    color: #333;
}

.section-bg-white[b-3knhru0ftt] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-3knhru0ftt] {
    height: auto;
}

.text-muted[b-3knhru0ftt] {
    color: rgba(0, 0, 0, 0.6);
}

/*donate scetion*/
.donate-left[b-3knhru0ftt] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-3knhru0ftt] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-3knhru0ftt] {
    padding: 10px;
}

.right-sec[b-3knhru0ftt] {
    padding: 10px;
}

.donate-btn[b-3knhru0ftt] {
    margin-right: 30px;
}

.donation-box[b-3knhru0ftt] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-3knhru0ftt],
    .donation-box p[b-3knhru0ftt],
    .donation-box strong[b-3knhru0ftt] {
        color: white;
    }

.qr-box[b-3knhru0ftt] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-3knhru0ftt] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-3knhru0ftt] {
    color: #cccccc !important;
}
/* /Components/Pages/Events/ChildrensWeek.razor.rz.scp.css */
/* Hero Section */
@media screen and (max-width: 768px) {
    .hero-image[b-n4v56n7e3j] {
        padding-top: 20px;
    }
}

.hero-container[b-n4v56n7e3j] {
    position: relative;
    background-image: url('/images/kidintheatre.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 65%;
}

    .hero-container[b-n4v56n7e3j]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-n4v56n7e3j] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-n4v56n7e3j] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-n4v56n7e3j] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-n4v56n7e3j] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-n4v56n7e3j] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-n4v56n7e3j] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-n4v56n7e3j] {
        font-size: 3vh;
    }
}

/*main section*/

/*why attend section*/
.section-bg-blue[b-n4v56n7e3j] {
    background-color: #36a9e0;
}

.attend-text[b-n4v56n7e3j], .schedule-text[b-n4v56n7e3j] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-n4v56n7e3j] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 240px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-n4v56n7e3j] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-n4v56n7e3j] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-n4v56n7e3j] {
    padding-right: 10px;
    width: 50px;
}

/* Carousel Image Styling */
.carousel img[b-n4v56n7e3j] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-n4v56n7e3j] {
    color: white;
}

.schedule-text[b-n4v56n7e3j] {
    color: #333;
}

.section-bg-white[b-n4v56n7e3j] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-n4v56n7e3j] {
    height: auto;
}

.text-muted[b-n4v56n7e3j] {
    color: rgba(0, 0, 0, 0.6);
}

/*donate scetion*/
.donate-left[b-n4v56n7e3j] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-n4v56n7e3j] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-n4v56n7e3j] {
    padding: 10px;
}

.right-sec[b-n4v56n7e3j] {
    padding: 10px;
}

.donate-btn[b-n4v56n7e3j] {
    margin-right: 30px;
}

.uniform-images img[b-n4v56n7e3j] {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.donation-box[b-n4v56n7e3j] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-n4v56n7e3j],
    .donation-box p[b-n4v56n7e3j],
    .donation-box strong[b-n4v56n7e3j] {
        color: white;
    }

.qr-box[b-n4v56n7e3j] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-n4v56n7e3j] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-n4v56n7e3j] {
    color: #cccccc !important;
}
/* /Components/Pages/Events/EndOfYearDinner.razor.rz.scp.css */
/* Hero Section */
@media screen and (max-width: 768px) {
    .hero-image[b-08f6a9soru] {
        padding-top: 20px;
    }
}

.hero-container[b-08f6a9soru] {
    position: relative;
    background-image: url('/images/celebration-img.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 40%;
}

    .hero-container[b-08f6a9soru]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-08f6a9soru] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-08f6a9soru] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-08f6a9soru] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-08f6a9soru] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-08f6a9soru] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-08f6a9soru] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-08f6a9soru] {
        font-size: 3vh;
    }
}

/*main section*/

/*why attend section*/
.section-bg-blue[b-08f6a9soru] {
    background-color: #36a9e0;
}

.attend-text[b-08f6a9soru], .schedule-text[b-08f6a9soru] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-08f6a9soru] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 240px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-08f6a9soru] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-08f6a9soru] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-08f6a9soru] {
    padding-right: 10px;
    width: 50px;
}

/* Carousel Image Styling */
.carousel img[b-08f6a9soru] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-08f6a9soru] {
    color: white;
}

.schedule-text[b-08f6a9soru] {
    color: #333;
}

.section-bg-white[b-08f6a9soru] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-08f6a9soru] {
    height: auto;
}

.text-muted[b-08f6a9soru] {
    color: rgba(0, 0, 0, 0.6);
}

/*donate scetion*/
.donate-left[b-08f6a9soru] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-08f6a9soru] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-08f6a9soru] {
    padding: 10px;
}

.right-sec[b-08f6a9soru] {
    padding: 10px;
}

.donate-btn[b-08f6a9soru] {
    margin-right: 30px;
}

.donation-box[b-08f6a9soru] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-08f6a9soru],
    .donation-box p[b-08f6a9soru],
    .donation-box strong[b-08f6a9soru] {
        color: white;
    }

.qr-box[b-08f6a9soru] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-08f6a9soru] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-08f6a9soru] {
    color: #cccccc !important;
}
/* /Components/Pages/Events/IceSkatingAndBowling.razor.rz.scp.css */
/* Hero Section */

@media screen and (max-width: 768px) {
    .hero-image[b-qujahv7mmi] {
        padding-top: 20px;
    }
}

.hero-container[b-qujahv7mmi] {
    position: relative;
    background-image: url('/images/iceskating-compressed.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 67%;
}

    .hero-container[b-qujahv7mmi]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-qujahv7mmi] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-qujahv7mmi] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-qujahv7mmi] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-qujahv7mmi] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-qujahv7mmi] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-qujahv7mmi] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-qujahv7mmi] {
        font-size: 3vh;
    }
}

/*main section*/

/*why attend section*/
.section-bg-blue[b-qujahv7mmi] {
    background-color: #36a9e0;
}

.attend-text[b-qujahv7mmi], .schedule-text[b-qujahv7mmi] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-qujahv7mmi] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 200px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-qujahv7mmi] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-qujahv7mmi] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-qujahv7mmi] {
    padding-right: 10px;
    width: 50px;
}

/* Carousel Image Styling */
.carousel img[b-qujahv7mmi] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-qujahv7mmi] {
    color: white;
}

.schedule-text[b-qujahv7mmi] {
    color: #333;
}

.section-bg-white[b-qujahv7mmi] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-qujahv7mmi] {
    height: auto;
}

.text-muted[b-qujahv7mmi] {
    color: rgba(0, 0, 0, 0.6);
}

/*donate scetion*/
.donate-left[b-qujahv7mmi] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-qujahv7mmi] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-qujahv7mmi] {
    padding: 10px;
}

.right-sec[b-qujahv7mmi] {
    padding: 10px;
}

.donate-btn[b-qujahv7mmi] {
    margin-right: 30px;
}

.donation-box[b-qujahv7mmi] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-qujahv7mmi],
    .donation-box p[b-qujahv7mmi],
    .donation-box strong[b-qujahv7mmi] {
        color: white;
    }

.qr-box[b-qujahv7mmi] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-qujahv7mmi] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-qujahv7mmi] {
    color: #cccccc !important;
}
/* /Components/Pages/Events/KaraokeNight.razor.rz.scp.css */
/* Hero Section */
.hero-container[b-smsxxl2dlw] {
    position: relative;
    background-image: url('/images/virtual.karaoke.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 40%;
}

    .hero-container[b-smsxxl2dlw]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-smsxxl2dlw] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-smsxxl2dlw] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-smsxxl2dlw] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-smsxxl2dlw] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-smsxxl2dlw] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-smsxxl2dlw] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-smsxxl2dlw] {
        font-size: 3vh;
    }
}

/*main section*/

/*header section*/

/*why attend section*/
.section-bg-blue[b-smsxxl2dlw] {
    background-color: #36a9e0;
}

.attend-text[b-smsxxl2dlw], .schedule-text[b-smsxxl2dlw] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-smsxxl2dlw] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 240px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-smsxxl2dlw] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-smsxxl2dlw] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-smsxxl2dlw] {
    padding-right: 10px;
    width: 50px;
}

/* Carousel Image Styling */
.carousel img[b-smsxxl2dlw] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-smsxxl2dlw] {
    color: white;
}

.schedule-text[b-smsxxl2dlw] {
    color: #333;
}

.section-bg-white[b-smsxxl2dlw] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-smsxxl2dlw] {
    height: auto;
}

.text-muted[b-smsxxl2dlw] {
    color: rgba(0, 0, 0, 0.6);
}

.step-number[b-smsxxl2dlw] {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    background: #36a9e0;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    user-select: none;
}

.step-subheading[b-smsxxl2dlw] {
    color: #48494a;
    font-weight: 600;
    font-size: 1.5rem;
}
/*donate scetion*/
.donate-left[b-smsxxl2dlw] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-smsxxl2dlw] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-smsxxl2dlw] {
    padding: 10px;
}

.right-sec[b-smsxxl2dlw] {
    padding: 10px;
}

.donate-btn[b-smsxxl2dlw] {
    margin-right: 30px;
}

.donation-box[b-smsxxl2dlw] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-smsxxl2dlw],
    .donation-box p[b-smsxxl2dlw],
    .donation-box strong[b-smsxxl2dlw] {
        color: white;
    }

.qr-box[b-smsxxl2dlw] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-smsxxl2dlw] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-smsxxl2dlw] {
    color: #cccccc !important;
}
/* /Components/Pages/Events/PartyInThePark.razor.rz.scp.css */
/* Hero Section */

@media screen and (max-width: 768px) {
    .hero-image[b-hp0wu7wesq] {
        padding-top: 20px;
    }
}

.hero-container[b-hp0wu7wesq] {
    position: relative;
    background-image: url('/images/kids-playing-outdoors-compressed.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 40%;
}

    .hero-container[b-hp0wu7wesq]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-hp0wu7wesq] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-hp0wu7wesq] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-hp0wu7wesq] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-hp0wu7wesq] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-hp0wu7wesq] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-hp0wu7wesq] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-hp0wu7wesq] {
        font-size: 3vh;
    }
}

/*main section*/

/*why attend section*/
.section-bg-blue[b-hp0wu7wesq] {
    background-color: #36a9e0;
}

.attend-text[b-hp0wu7wesq], .schedule-text[b-hp0wu7wesq] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-hp0wu7wesq] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 288px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-hp0wu7wesq] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-hp0wu7wesq] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-hp0wu7wesq] {
    padding-right: 10px;
    width: 50px;
}

/* Carousel Image Styling */
.carousel img[b-hp0wu7wesq] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-hp0wu7wesq] {
    color: white;
}

.schedule-text[b-hp0wu7wesq] {
    color: #333;
}

.section-bg-white[b-hp0wu7wesq] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-hp0wu7wesq] {
    height: auto;
}

.text-muted[b-hp0wu7wesq] {
    color: rgba(0, 0, 0, 0.6);
}

/*donate scetion*/
.donate-left[b-hp0wu7wesq] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-hp0wu7wesq] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-hp0wu7wesq] {
    padding: 10px;
}

.right-sec[b-hp0wu7wesq] {
    padding: 10px;
}

.donate-btn[b-hp0wu7wesq] {
    margin-right: 30px;
}

.donation-box[b-hp0wu7wesq] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-hp0wu7wesq],
    .donation-box p[b-hp0wu7wesq],
    .donation-box strong[b-hp0wu7wesq] {
        color: white;
    }

.qr-box[b-hp0wu7wesq] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-hp0wu7wesq] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-hp0wu7wesq] {
    color: #cccccc !important;
}
/* /Components/Pages/Events/SponsoredWalk.razor.rz.scp.css */
/* Hero Section */

@media screen and (max-width: 768px) {
    .hero-image[b-knwvpe4wwn] {
        padding-top: 20px;
    }
}

.hero-container[b-knwvpe4wwn] {
    position: relative;
    background-image: url('/images/SponseredWalk-header-.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 25%;
}

    .hero-container[b-knwvpe4wwn]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-knwvpe4wwn] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-knwvpe4wwn] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-knwvpe4wwn] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-knwvpe4wwn] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-knwvpe4wwn] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-knwvpe4wwn] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-knwvpe4wwn] {
        font-size: 3vh;
    }
}

/*main section*/

/*why attend section*/
.section-bg-blue[b-knwvpe4wwn] {
    background-color: #36a9e0;
}

.attend-text[b-knwvpe4wwn], .schedule-text[b-knwvpe4wwn] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-knwvpe4wwn] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 170px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-knwvpe4wwn] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-knwvpe4wwn] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-knwvpe4wwn] {
    padding-right: 10px;
    width: 50px;
}

/* Carousel Image Styling */
.carousel img[b-knwvpe4wwn] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-knwvpe4wwn] {
    color: white;
}

.schedule-text[b-knwvpe4wwn] {
    color: #333;
}

.section-bg-white[b-knwvpe4wwn] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-knwvpe4wwn] {
    height: auto;
}

.text-muted[b-knwvpe4wwn] {
    color: rgba(0, 0, 0, 0.6);
}

/*donate scetion*/
.donate-left[b-knwvpe4wwn] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-knwvpe4wwn] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-knwvpe4wwn] {
    padding: 10px;
}

.right-sec[b-knwvpe4wwn] {
    padding: 10px;
}

.donate-btn[b-knwvpe4wwn] {
    margin-right: 30px;
}

.donation-box[b-knwvpe4wwn] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-knwvpe4wwn],
    .donation-box p[b-knwvpe4wwn],
    .donation-box strong[b-knwvpe4wwn] {
        color: white;
    }

.qr-box[b-knwvpe4wwn] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-knwvpe4wwn] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-knwvpe4wwn] {
    color: #cccccc !important;
}
/* /Components/Pages/Events/TasteTheDifference.razor.rz.scp.css */
/* Hero Section */
@media screen and (max-width: 768px) {
    .hero-image[b-f32k9dazo6] {
        padding-top: 20px;
    }
}

.hero-container[b-f32k9dazo6] {
    position: relative;
    background-image: url('/images/foodpic.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    height: 45vh;
    background-position: 0% 40%;
}

    .hero-container[b-f32k9dazo6]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .hero-container p[b-f32k9dazo6] {
        font-size: 3.3vh;
        font-weight: normal;
        font-family: 'Lora', serif;
        padding-bottom: 5%;
    }

    .hero-container .row[b-f32k9dazo6] {
        position: relative;
        z-index: 2;
        padding-top: 4%;
    }

.hero-title[b-f32k9dazo6] {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background-color: #003366;
    padding: 20px 30px;
}

    .hero-title h1[b-f32k9dazo6] {
        font-size: 4vh;
        font-weight: bold;
        color: white;
        margin: 0;
    }

@media (max-width: 768px) {
    .hero-container[b-f32k9dazo6] {
        height: auto;
        padding: 80px 0;
    }

        .hero-container .row[b-f32k9dazo6] {
            flex-direction: column-reverse;
        }

    .hero-title h1[b-f32k9dazo6] {
        font-size: 3vh;
    }
}

/*main section*/

/*why attend section*/
.section-bg-blue[b-f32k9dazo6] {
    background-color: #36a9e0;
}

.attend-text[b-f32k9dazo6], .schedule-text[b-f32k9dazo6] {
    color: white;
}

/*what makes it special section*/
.specialdiv[b-f32k9dazo6] {
    border-color: #36a9e0;
    background-color: white;
    min-height: 240px;
}

/*.special-heading {
    font-size: 2rem;*/ /* Responsive font size */
/*font-weight: 400;
    background-image: linear-gradient(to left, #553c9a, #b393d3);
    -webkit-background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*background-clip: text;*/ /* Necessary for gradient text in WebKit browsers */
/*color: transparent;*/ /* Makes the text gradient visible */
/*}*/

.community-icon[b-f32k9dazo6] {
    padding-right: 10px;
    width: 55px;
}

.diverse-icon[b-f32k9dazo6] {
    padding-right: 10px;
    width: 50px;
}

.networking-icon[b-f32k9dazo6] {
    padding-right: 10px;
    width: 50px;
}

/* Carousel Image Styling */
.carousel img[b-f32k9dazo6] {
    max-height: 400px;
    object-fit: cover;
}

.attend-text[b-f32k9dazo6] {
    color: white;
}

.schedule-text[b-f32k9dazo6] {
    color: #333;
}

.section-bg-white[b-f32k9dazo6] {
    background-color: #fff;
    padding: 60px 0;
}

.season-image[b-f32k9dazo6] {
    height: auto;
}

.text-muted[b-f32k9dazo6] {
    color: rgba(0, 0, 0, 0.6);
}

/*donate scetion*/
.donate-left[b-f32k9dazo6] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    padding: 10px;
    color: #fff; /* You can change the color to fit your design */
    text-align: left;
    margin: 20px 0;
    line-height: 50px;
}

.donate-right[b-f32k9dazo6] {
    font-size: 3vh;
    margin-top: 10px;
    text-align: left;
    padding: 20px;
}

.left-sec[b-f32k9dazo6] {
    padding: 10px;
}

.right-sec[b-f32k9dazo6] {
    padding: 10px;
}

.donate-btn[b-f32k9dazo6] {
    margin-right: 30px;
}

.donation-box[b-f32k9dazo6] {
    background-color: #082465;
    color: white;
    border: none;
}

    .donation-box h3[b-f32k9dazo6],
    .donation-box p[b-f32k9dazo6],
    .donation-box strong[b-f32k9dazo6] {
        color: white;
    }

.qr-box[b-f32k9dazo6] {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .qr-box img[b-f32k9dazo6] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.donation-box .text-muted[b-f32k9dazo6] {
    color: #cccccc !important;
}
/* /Components/Pages/FundRaising.razor.rz.scp.css */
.fundraising-page[b-jyanub7qz2] {
    padding: 2rem 0;
}

.fundraising-page h1[b-jyanub7qz2] {
    margin-bottom: 2rem;
    color: #333;
}

.fundraising-content[b-jyanub7qz2] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro[b-jyanub7qz2] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.intro h2[b-jyanub7qz2] {
    color: white;
    margin-bottom: 1rem;
}

.intro p[b-jyanub7qz2] {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.ways-section[b-jyanub7qz2] {
    margin-bottom: 3rem;
}

.ways-section h2[b-jyanub7qz2] {
    color: #0066cc;
    margin-bottom: 2rem;
    text-align: center;
}

.ways-grid[b-jyanub7qz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.way-card[b-jyanub7qz2] {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.way-card:hover[b-jyanub7qz2] {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.way-card h3[b-jyanub7qz2] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.way-card p[b-jyanub7qz2] {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-donate[b-jyanub7qz2] {
    background: #0066cc;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-donate:hover[b-jyanub7qz2] {
    background: #0052a3;
}

.impact-section[b-jyanub7qz2] {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 8px;
}

.impact-section h2[b-jyanub7qz2] {
    color: #856404;
    margin-bottom: 2rem;
    text-align: center;
}

.impact-stats[b-jyanub7qz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.impact-item[b-jyanub7qz2] {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.impact-amount[b-jyanub7qz2] {
    font-size: 2rem;
    font-weight: bold;
    color: #856404;
    margin-bottom: 0.5rem;
}

.impact-item p[b-jyanub7qz2] {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}
/* /Components/Pages/MatildasFoundation.razor.rz.scp.css */
.matildas-page[b-5rudtta5ct] {
    padding: 2rem 0;
}

.matildas-page h1[b-5rudtta5ct] {
    margin-bottom: 2rem;
    color: #333;
}

.foundation-content[b-5rudtta5ct] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-section[b-5rudtta5ct] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.intro-section h2[b-5rudtta5ct] {
    color: white;
    margin-bottom: 1rem;
}

.intro-section p[b-5rudtta5ct] {
    margin: 0;
    line-height: 1.6;
}

.mission-section[b-5rudtta5ct] {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.mission-section h3[b-5rudtta5ct] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.mission-section p[b-5rudtta5ct] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.impact-section[b-5rudtta5ct] {
    margin-bottom: 2rem;
}

.impact-section h3[b-5rudtta5ct] {
    color: #0066cc;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid[b-5rudtta5ct] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat[b-5rudtta5ct] {
    background: #f8f9fa;
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat:hover[b-5rudtta5ct] {
    transform: scale(1.05);
}

.stat-number[b-5rudtta5ct] {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-label[b-5rudtta5ct] {
    color: #666;
    font-size: 0.9rem;
}

.needs-section[b-5rudtta5ct] {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.needs-section h3[b-5rudtta5ct] {
    color: #856404;
    margin-bottom: 1rem;
}

.needs-section ul[b-5rudtta5ct] {
    margin: 0;
    padding-left: 1.5rem;
}

.needs-section li[b-5rudtta5ct] {
    color: #856404;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
/* /Components/Pages/Mission.razor.rz.scp.css */
.mission-page[b-7lkn7997e6] {
    padding: 2rem 0;
}

.mission-page h1[b-7lkn7997e6] {
    margin-bottom: 2rem;
    color: #333;
}

.mission-content[b-7lkn7997e6] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mission-statement[b-7lkn7997e6] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.mission-statement h2[b-7lkn7997e6] {
    color: white;
    margin-bottom: 1rem;
}

.mission-section[b-7lkn7997e6] {
    margin-bottom: 2rem;
}

.mission-section h3[b-7lkn7997e6] {
    color: #0066cc;
    margin-bottom: 1.5rem;
    text-align: center;
}

.values-grid[b-7lkn7997e6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.value-item[b-7lkn7997e6] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover[b-7lkn7997e6] {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.value-item h4[b-7lkn7997e6] {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.value-item p[b-7lkn7997e6] {
    color: #666;
    margin: 0;
}
/* /Components/Pages/OnipaHiaMmoaOrphanage.razor.rz.scp.css */
.nipa-page[b-xf58jy6481] {
    padding: 2rem 0;
}

.nipa-page h1[b-xf58jy6481] {
    margin-bottom: 2rem;
    color: #333;
}

.orphanage-content[b-xf58jy6481] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-section[b-xf58jy6481] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.intro-section h2[b-xf58jy6481] {
    color: white;
    margin-bottom: 1rem;
}

.intro-section p[b-xf58jy6481] {
    margin: 0;
    line-height: 1.6;
}

.about-section[b-xf58jy6481] {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.about-section h3[b-xf58jy6481] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.about-section p[b-xf58jy6481] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.programs-section[b-xf58jy6481] {
    margin-bottom: 2rem;
}

.programs-section h3[b-xf58jy6481] {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.programs-grid[b-xf58jy6481] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.program[b-xf58jy6481] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #0066cc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program:hover[b-xf58jy6481] {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.program h4[b-xf58jy6481] {
    color: #0066cc;
    margin-bottom: 0.75rem;
}

.program p[b-xf58jy6481] {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.support-section[b-xf58jy6481] {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
}

.support-section h3[b-xf58jy6481] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.support-section p[b-xf58jy6481] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/OurCampaign.razor.rz.scp.css */
.our-campaign-page[b-j5kqgtkd5r] {
    padding: 2rem 0;
}

.our-campaign-page h1[b-j5kqgtkd5r] {
    margin-bottom: 2rem;
    color: #333;
}

.campaign-content[b-j5kqgtkd5r] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.campaign-section[b-j5kqgtkd5r] {
    margin-bottom: 2rem;
}

.campaign-section h2[b-j5kqgtkd5r] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.campaign-section p[b-j5kqgtkd5r] {
    line-height: 1.6;
    color: #666;
}
/* /Components/Pages/OurEvents.razor.rz.scp.css */
.events-page[b-rlzx3wqh9g] {
    padding: 2rem 0;
}

.events-page h1[b-rlzx3wqh9g] {
    margin-bottom: 2rem;
    color: #333;
}

.events-content[b-rlzx3wqh9g] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro[b-rlzx3wqh9g] {
    text-align: center;
    margin-bottom: 3rem;
}

.intro p[b-rlzx3wqh9g] {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.upcoming-events[b-rlzx3wqh9g] {
    margin-bottom: 3rem;
}

.upcoming-events h2[b-rlzx3wqh9g] {
    color: #0066cc;
    margin-bottom: 2rem;
}

.events-list[b-rlzx3wqh9g] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card[b-rlzx3wqh9g] {
    display: flex;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover[b-rlzx3wqh9g] {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-date[b-rlzx3wqh9g] {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-date .month[b-rlzx3wqh9g] {
    font-size: 0.9rem;
    font-weight: bold;
}

.event-date .day[b-rlzx3wqh9g] {
    font-size: 2rem;
    font-weight: bold;
}

.event-details[b-rlzx3wqh9g] {
    flex: 1;
}

.event-details h3[b-rlzx3wqh9g] {
    color: #333;
    margin-bottom: 0.5rem;
}

.event-location[b-rlzx3wqh9g] {
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.event-description[b-rlzx3wqh9g] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.past-events[b-rlzx3wqh9g] {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
}

.past-events h2[b-rlzx3wqh9g] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.past-events p[b-rlzx3wqh9g] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/OurJourney.razor.rz.scp.css */
.journey-page[b-3rmexcx8bz] {
    padding: 2rem 0;
}

.journey-page h1[b-3rmexcx8bz] {
    margin-bottom: 2rem;
    color: #333;
}

.journey-content[b-3rmexcx8bz] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro[b-3rmexcx8bz] {
    margin-bottom: 3rem;
    text-align: center;
}

.intro .lead[b-3rmexcx8bz] {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
}

.timeline[b-3rmexcx8bz] {
    position: relative;
    padding-left: 2rem;
}

.timeline[b-3rmexcx8bz]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0066cc;
}

.timeline-item[b-3rmexcx8bz] {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker[b-3rmexcx8bz] {
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #0066cc;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #0066cc;
}

.timeline-content[b-3rmexcx8bz] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-content h3[b-3rmexcx8bz] {
    color: #0066cc;
    margin-bottom: 0.75rem;
}

.timeline-content p[b-3rmexcx8bz] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/OutreachProgramme.razor.rz.scp.css */
.outreach-page[b-4yb8c1zmu3] {
    padding: 2rem 0;
}

.outreach-page h1[b-4yb8c1zmu3] {
    margin-bottom: 2rem;
    color: #333;
}

.outreach-content[b-4yb8c1zmu3] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-section[b-4yb8c1zmu3] {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.intro-section p[b-4yb8c1zmu3] {
    margin: 0;
    line-height: 1.6;
    color: #495057;
}

.programme-section[b-4yb8c1zmu3] {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 4px solid #0066cc;
    background: #f8f9fa;
}

.programme-section h2[b-4yb8c1zmu3] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.programme-section p[b-4yb8c1zmu3] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/PlanAndObjective.razor.rz.scp.css */
.plan-page[b-k2hkawpkn0] {
    padding: 2rem 0;
}

.plan-page h1[b-k2hkawpkn0] {
    margin-bottom: 2rem;
    color: #333;
}

.plan-content[b-k2hkawpkn0] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.overview[b-k2hkawpkn0] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.overview h2[b-k2hkawpkn0] {
    color: white;
    margin-bottom: 1rem;
}

.overview p[b-k2hkawpkn0] {
    margin: 0;
    line-height: 1.6;
}

.objectives-section[b-k2hkawpkn0] {
    margin-bottom: 2rem;
}

.objectives-section h2[b-k2hkawpkn0] {
    color: #0066cc;
    margin-bottom: 2rem;
}

.objectives-list[b-k2hkawpkn0] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.objective-item[b-k2hkawpkn0] {
    display: flex;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-item:hover[b-k2hkawpkn0] {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.objective-number[b-k2hkawpkn0] {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.objective-details[b-k2hkawpkn0] {
    flex: 1;
}

.objective-details h3[b-k2hkawpkn0] {
    color: #333;
    margin-bottom: 0.5rem;
}

.objective-details p[b-k2hkawpkn0] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-section[b-k2hkawpkn0] {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-section h2[b-k2hkawpkn0] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.timeline-section p[b-k2hkawpkn0] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.privacy-page[b-259is7flg5] {
    padding: 2rem 0;
}

.privacy-page h1[b-259is7flg5] {
    margin-bottom: 2rem;
    color: #333;
}

.privacy-content[b-259is7flg5] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-section[b-259is7flg5] {
    margin-bottom: 2.5rem;
}

.privacy-section:last-child[b-259is7flg5] {
    margin-bottom: 0;
}

.privacy-section h2[b-259is7flg5] {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-section p[b-259is7flg5] {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul[b-259is7flg5] {
    margin-top: 1rem;
    padding-left: 2rem;
}

.privacy-section li[b-259is7flg5] {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
/* /Components/Pages/Safeguarding.razor.rz.scp.css */
.safeguarding-page[b-ry4qbfkjca] {
    padding: 2rem 0;
}

.safeguarding-page h1[b-ry4qbfkjca] {
    margin-bottom: 2rem;
    color: #333;
}

.safeguarding-content[b-ry4qbfkjca] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-box[b-ry4qbfkjca] {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.alert-box h2[b-ry4qbfkjca] {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.alert-box p[b-ry4qbfkjca] {
    color: #856404;
    margin: 0;
}

.policy-section[b-ry4qbfkjca] {
    margin-bottom: 2rem;
}

.policy-section h3[b-ry4qbfkjca] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.policy-section p[b-ry4qbfkjca] {
    color: #666;
    line-height: 1.6;
}

.policy-section ul[b-ry4qbfkjca] {
    margin-top: 1rem;
    padding-left: 2rem;
}

.policy-section li[b-ry4qbfkjca] {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
/* /Components/Pages/StMonicasChildrensHome.razor.rz.scp.css */
.monicas-page[b-vsudtyf1cz] {
    padding: 2rem 0;
}

.monicas-page h1[b-vsudtyf1cz] {
    margin-bottom: 2rem;
    color: #333;
}

.home-content[b-vsudtyf1cz] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-section[b-vsudtyf1cz] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.intro-section h2[b-vsudtyf1cz] {
    color: white;
    margin-bottom: 1rem;
}

.intro-section p[b-vsudtyf1cz] {
    margin: 0;
    line-height: 1.6;
}

.details-section[b-vsudtyf1cz] {
    margin-bottom: 2rem;
}

.details-section h3[b-vsudtyf1cz] {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.features-grid[b-vsudtyf1cz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature[b-vsudtyf1cz] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover[b-vsudtyf1cz] {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature h4[b-vsudtyf1cz] {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.feature p[b-vsudtyf1cz] {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.support-section[b-vsudtyf1cz] {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
}

.support-section h3[b-vsudtyf1cz] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.support-section p[b-vsudtyf1cz] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/Trustee.razor.rz.scp.css */
/* Main Content Section */
.trustee-page[b-dhf0rzksh2] {
    padding: 3rem 0 2rem 0;
}

.trustee-page .container[b-dhf0rzksh2] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .trustee-page .container[b-dhf0rzksh2] {
        padding: 0 2rem;
    }
}

.trustee-content[b-dhf0rzksh2] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.director-section[b-dhf0rzksh2] {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.director-section h2[b-dhf0rzksh2] {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.trustee-card[b-dhf0rzksh2] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 8px;
    color: white;
}

.trustee-info h3[b-dhf0rzksh2] {
    color: white;
    margin-bottom: 0.5rem;
}

.trustee-info .title[b-dhf0rzksh2] {
    font-weight: bold;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.trustee-info .bio[b-dhf0rzksh2] {
    line-height: 1.6;
    margin: 0;
}

.team-section[b-dhf0rzksh2] {
    margin-top: 2rem;
}

.team-section h2[b-dhf0rzksh2] {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.team-grid[b-dhf0rzksh2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.team-member[b-dhf0rzksh2] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover[b-dhf0rzksh2] {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-member h4[b-dhf0rzksh2] {
    color: #333;
    margin-bottom: 0.5rem;
}

.team-member .role[b-dhf0rzksh2] {
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.team-member .description[b-dhf0rzksh2] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Pages/Vision.razor.rz.scp.css */
.vision-page[b-ewytve6q5d] {
    padding: 2rem 0;
}

.vision-page h1[b-ewytve6q5d] {
    margin-bottom: 2rem;
    color: #333;
}

.vision-content[b-ewytve6q5d] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vision-statement[b-ewytve6q5d] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.vision-statement h2[b-ewytve6q5d] {
    color: white;
    margin-bottom: 1rem;
}

.vision-section[b-ewytve6q5d] {
    margin-bottom: 2rem;
}

.vision-section h3[b-ewytve6q5d] {
    color: #0066cc;
    margin-bottom: 1rem;
}

.vision-section ul[b-ewytve6q5d] {
    list-style-type: none;
    padding-left: 0;
}

.vision-section li[b-ewytve6q5d] {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.vision-section li[b-ewytve6q5d]::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}
/* /Components/Pages/VisionForGrowth.razor.rz.scp.css */
.vision-growth-page[b-bimghjsb6t] {
    padding: 2rem 0;
}

.vision-growth-page h1[b-bimghjsb6t] {
    margin-bottom: 2rem;
    color: #333;
}

.growth-content[b-bimghjsb6t] {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro[b-bimghjsb6t] {
    text-align: center;
    margin-bottom: 3rem;
}

.intro .lead[b-bimghjsb6t] {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
}

.goals-section[b-bimghjsb6t] {
    margin-bottom: 3rem;
}

.goals-section h2[b-bimghjsb6t] {
    color: #0066cc;
    margin-bottom: 2rem;
    text-align: center;
}

.goals-grid[b-bimghjsb6t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.goal-card[b-bimghjsb6t] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.goal-card:hover[b-bimghjsb6t] {
    transform: scale(1.05);
}

.goal-card h3[b-bimghjsb6t] {
    color: white;
    margin-bottom: 1rem;
}

.goal-card p[b-bimghjsb6t] {
    margin: 0;
    line-height: 1.6;
}

.strategy-section[b-bimghjsb6t] {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.strategy-section h2[b-bimghjsb6t] {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.strategy-section p[b-bimghjsb6t] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Shared/HeroSection.razor.rz.scp.css */
/* Hero Section - Full Width */
.hero-section[b-e417pzt9um] {
    position: relative;
    width: 100vw;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom:30px;

}

.hero-overlay[b-e417pzt9um] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-overlay .container[b-e417pzt9um] {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content[b-e417pzt9um] {
    color: white;
    max-width: 900px;
}

.hero-section h1[b-e417pzt9um] {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp-b-e417pzt9um 0.8s ease-out;
}

.hero-subtitle[b-e417pzt9um] {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp-b-e417pzt9um 1s ease-out;
}

@keyframes fadeInUp-b-e417pzt9um {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (min-width: 768px) {
    .hero-overlay .container[b-e417pzt9um] {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section[b-e417pzt9um] {
        height: 300px;
        background-attachment: scroll;
    }

    .hero-section h1[b-e417pzt9um] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-e417pzt9um] {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section[b-e417pzt9um] {
        height: 250px;
    }

    .hero-section h1[b-e417pzt9um] {
        font-size: 2rem;
    }

    .hero-subtitle[b-e417pzt9um] {
        font-size: 1rem;
    }
}
