/* _content/EPRInsights/Components/Layout/ChooseUsCard.razor.rz.scp.css */
.choose-us-card[b-scw23eb39i] {
    position: relative;
    width: 563px;
    border-radius: 25px;
    height: 150px;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    color: #EEE9E5;
}

.choose-us-title[b-scw23eb39i] {
    display: flex;
    justify-content: start;
    margin: 1rem;
    font-size: 24px;
}

.choose-us-description[b-scw23eb39i] {
    display: flex;
    justify-content: start;
    margin: 1.5rem;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

@media only screen and (max-width: 768px) {
    .choose-us-card[b-scw23eb39i] {
        width: 90%;
        height: auto; /* let height grow with content */
        padding: 1.5rem 1rem;
        margin: 0 auto;
        border-radius: 15px;
    }

    .choose-us-title[b-scw23eb39i] {
        font-size: 20px;
        margin: 0 0 0.5rem 0;
        justify-content: center;
        text-align: center;
    }

    .choose-us-description[b-scw23eb39i] {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        justify-content: center;
        text-align: center;
    }
}
/* _content/EPRInsights/Components/Layout/MainLayout.razor.rz.scp.css */

#blazor-error-ui[b-qopklki5c8] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-qopklki5c8] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.custom-navbar[b-qopklki5c8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #EEE9E5;
    padding: 1rem 4rem;
    height: 80px;
}
    
.navbar-left[b-qopklki5c8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-center[b-qopklki5c8] {
    display: flex;
    gap: 2rem;
}
    
.nav-link[b-qopklki5c8] {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #3E4F47;
    transition: color 0.2s;
}
    
.nav-link.active[b-qopklki5c8] {
    border-bottom: 2px solid #3E4F47;
        text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #3E4F47;
    transition: color 0.2s;
}
    
.nav-link:hover[b-qopklki5c8] {
    color: #6A7B72;
}
    
.navbar-right[b-qopklki5c8] {
    display: flex;
    align-items: center;
    padding-right: 7rem;
}
    
.contact-button[b-qopklki5c8] {
    background-color: #5E6F67;    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}
    
.contact-button:hover[b-qopklki5c8] {
    background-color: #76877F;
}
    
.logo-img[b-qopklki5c8] {
    height: 200px;
    width: auto; 
}
@media only screen and (max-width: 768px) {
    /* 0) Remove any residual burger icon */
    .custom-navbar[b-qopklki5c8]::after {
        content: none;
    }

    /* 1) Hide the Contact button */
    .custom-navbar .navbar-right[b-qopklki5c8] {
        display: none;
    }

    /* 2) Keep the header a single row */
    .custom-navbar[b-qopklki5c8] {
        display:flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0.75rem 1rem;
        height: auto;
    }

        /* 3) Shrink the logo */
        .custom-navbar .navbar-left .logo-img[b-qopklki5c8] {
            height: 6rem;
        }

        /* 4) Ensure your center links stay in a row */
        .custom-navbar .navbar-center[b-qopklki5c8] {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            /* reset any absolute/positioning from old rules */
            position: static;
            top: auto;
            left: auto;
            background: transparent;
            box-shadow: none;
            padding: 0;
            margin: 0;
        }

            /* 5) Make links touch-friendly */
            .custom-navbar .navbar-center .nav-link[b-qopklki5c8] {
                padding: 0.5rem 0.75rem;
                white-space: nowrap;
                background: none;
                border: none;
            }
}

/* _content/EPRInsights/Components/Layout/ServiceCard.razor.rz.scp.css */
.service-card[b-goy9f6y75x] {
    position: relative;
    width: 411px;               /* tweak or override with your own wrapper */
    border-radius: 25px;
    height: 187px;
    padding: 2rem 1rem 1rem;    /* extra top padding for the icon */
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    color: #EEE9E5;
    border: 3px solid #99A58F; /* Adjust color and width as needed */
}

.icon-circle[b-goy9f6y75x] {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title[b-goy9f6y75x] {
    margin-bottom: 0.5rem;
    font-size: 24px;
}

.service-description[b-goy9f6y75x] {
    display: flex;
    justify-content: start;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .service-card[b-goy9f6y75x] {
        width: 100%; /* reduce fixed width */
        height: auto; /* let content define height */
        padding: 3rem 1rem 1.5rem;
    }

    .icon-circle[b-goy9f6y75x] {
        width: 56px;
        height: 56px;
        top: -28px; /* adjust so it remains visually centered */
    }

    .service-title[b-goy9f6y75x] {
        font-size: 20px; /* slightly smaller title */
    }

    .service-description[b-goy9f6y75x] {
        font-size: 13px;
        justify-content: center; /* centered text on mobile */
    }
}

/* _content/EPRInsights/Components/Pages/AboutUs.razor.rz.scp.css */
.container[b-lbl55jumo9] {
    color: #FFFFF3;
}
/* _content/EPRInsights/Components/Pages/ContactUs.razor.rz.scp.css */
.contact-us-wrapper[b-vzkj5hcxh4] {
    min-height: 38rem;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #65726C 0%, #3E4F47 100%);
    padding: 2rem;
    border-radius: 25px;
}
.text-area[b-vzkj5hcxh4] {
    display: contents;
}

.contact-form[b-vzkj5hcxh4] {
    margin-bottom: 2rem;
}
.contact-card[b-vzkj5hcxh4] {
    background-color: #ffffff;
    color: #333;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    padding: 3rem 3.5rem;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info h1[b-vzkj5hcxh4] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info p[b-vzkj5hcxh4] {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-form[b-vzkj5hcxh4] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid[b-vzkj5hcxh4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-input[b-vzkj5hcxh4] {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-input:focus[b-vzkj5hcxh4] {
    border-color: #5E6F67;
    outline: none;
}

.full-width[b-vzkj5hcxh4] {
    grid-column: span 2;
    resize: vertical;
}

.submit-button[b-vzkj5hcxh4] {
    background-color: #5E6F67;
    color: #fff;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover[b-vzkj5hcxh4] {
    background-color: #76877F;
}


@media only screen and (max-width: 768px) {
    .contact-us-wrapper[b-vzkj5hcxh4] {
        height: auto;
        min-height: unset;
        padding: 2rem 1rem;
        border-radius: 15px;
        margin-bottom:2rem;
    }

    .contact-card[b-vzkj5hcxh4] {
        padding: 2rem 1.2rem;
        border-radius: 15px;
        gap: 2rem;
    }

    .contact-info h1[b-vzkj5hcxh4] {
        font-size: 2rem;
        text-align: center;
    }

    .contact-info p[b-vzkj5hcxh4] {
        font-size: 0.95rem;
        text-align: center;
    }

    .form-grid[b-vzkj5hcxh4] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-input[b-vzkj5hcxh4],
    textarea[b-vzkj5hcxh4],
    input[b-vzkj5hcxh4] {
        font-size: 1rem;
    }

    .submit-button[b-vzkj5hcxh4] {
        width: 100%;
        align-self: center;
        text-align: center;
        font-size: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .text-area textarea[b-vzkj5hcxh4] {
        width: 100%;
    }

    .contact-form[b-vzkj5hcxh4] {
        gap: 1.2rem;
    }
}

/* _content/EPRInsights/Components/Pages/Home.razor.rz.scp.css */
#homeContainer[b-qv0r7yo2wh] {
    background-image: url('/images/homeIMG.png'), linear-gradient(rgba(81, 81, 81, 1), rgba(81, 81, 81, 1));
    width: auto;
    height: 95vh;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    background-blend-mode: overlay;
    margin-bottom: 3rem;
}

.homeHeader[b-qv0r7yo2wh] {
    width: 600px;
    height: 86px;
    color: #EEE9E5;
    font-weight: 700;
    font-size: 72px;
    line-height: 120%;
    text-align: center;
    padding-left: 1em;
    padding-top: 42vh;
    padding-bottom: 1rem;
}

.homeText[b-qv0r7yo2wh] {
    width: 600px;
    font-family: Body/Font Family;
    font-size: 15px;
    letter-spacing: 0%;
    line-height: 140%;
    color: #EEE9E5;
    padding-left: 1rem;
    padding-top: 2rem
}

.textLineWrapper[b-qv0r7yo2wh] {
    display: flex;
    align-items: flex-start;
    padding-left: 8rem;
    padding-top: 3rem;
    gap: 1rem;
}

.textAndButtons[b-qv0r7yo2wh] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.homeButtons[b-qv0r7yo2wh] {
    display: flex;
    gap: 1rem;
    padding-left: 1rem;
}

button[b-qv0r7yo2wh] {
    background-color: #5E6F67;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover[b-qv0r7yo2wh] {
    background-color: #76877F;
}


#line[b-qv0r7yo2wh] {
    width: 3px;
    height: 190px;
    background-color: #99A58F;
    border: none;
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    /* Container: full viewport with auto height */
    #homeContainer[b-qv0r7yo2wh] {
        height: 70vh;
        min-height: 28rem;
        border-radius: 15px;
        padding: 1.5rem 1rem 2rem;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        gap:2rem;
        justify-content:center;
    }

    /* Header: smaller, fluid width, less top padding */
    .homeHeader[b-qv0r7yo2wh] {
        width: 90%;
        font-size: 2.5rem; /* ~40px */
        line-height: 1.2;
        padding-top: 2.5rem; /* reduce from 27rem */
        padding-left: 0.5rem;
        text-align: center;
        margin: 0 auto;
    }

    /* Wrapper: stack vertically */
    .textLineWrapper[b-qv0r7yo2wh] {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0 0;
        gap: 1rem;
        padding-left: 0;
    }

    /* Thin divider: shorter and centered */
    #line[b-qv0r7yo2wh] {
        display: none;
    }

    /* Text + buttons: center and fluid width */
    .textAndButtons[b-qv0r7yo2wh] {
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .homeText[b-qv0r7yo2wh] {
        width: 100%;
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0;
        text-align: center;
    }

    /* Buttons: wrap or stack, full-width optional */
    .homeButtons[b-qv0r7yo2wh] {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 0;
    }

        .homeButtons button[b-qv0r7yo2wh] {
            flex: 1 1 auto;
            min-width: 120px;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
        }

}
/* _content/EPRInsights/Components/Pages/OurServices.razor.rz.scp.css */
#ourServicesContainer[b-yoslupcg9t] {
    width: 100%;
    min-height: 350px;
    height: 40vh;
    background-image: url('/images/ourServicesIMG.jpg'), linear-gradient(rgba(81, 81, 81, 1), rgba(81, 81, 81, 1));
    background-size: cover;
    border-radius: 25px;
    background-position: center;
    box-shadow: 0px 4px 4px 0px #00000040;
    background-blend-mode: overlay;
}
#mainContainer[b-yoslupcg9t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
}

.ourServicesHeader h1[b-yoslupcg9t] {
    width: 550px;
    height: 86px;
    left: 109px;
    padding-left: 6rem;
    font-size: 72px;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    color: #EEE9E5;
    padding-top: 6rem;
}

.ourServicesText[b-yoslupcg9t]{
    width: 747px;
    top: 205px;
    left: 109px;
    font-family: Body/Font Family;
    font-weight:400;
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 140%;
    color: #EEE9E5;
    padding-top: 6rem;
    padding-left: 6rem;
}

.serviceGrid[b-yoslupcg9t]{

    display: grid; 
    width:100%;
    grid-template-columns: repeat(3, 1fr); 
    gap: 3rem;
    padding: 2rem;
    text-align: center;
    justify-items:center;

}

@media only screen and (max-width: 768px) {
    /* Container: vertical stack, centered */
    #mainContainer[b-yoslupcg9t] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    /* Hero section: shorter, fluid width */
    #ourServicesContainer[b-yoslupcg9t] {
        width: 100%;
        height: 70vh;
        min-height: 28rem;
        border-radius: 15px;
        box-shadow: 0px 4px 4px 0px #00000040;
        background-size: cover;
        background-position: center;
        background-blend-mode: overlay;
        display: flex;
        flex-direction: column;
        background-position: center;
        gap: 2rem;
        justify-content: center;
    }

    /* Header text: fluid width, smaller font */
    .ourServicesHeader h1[b-yoslupcg9t] {
        width: 90%;
        max-width: 400px;
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 2rem 0 1rem;
        margin: 0 auto;
    }

    /* Body text: fluid, centered */
    .ourServicesText[b-yoslupcg9t] {
        width: 90%;
        max-width: 500px;
        font-size: 1rem;
        line-height: 1.4;
        padding: 0;
        margin: 0 auto 2rem;
        text-align: center;
    }

    /* Service grid: single column */
    .serviceGrid[b-yoslupcg9t] {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        padding: 0;
        margin-bottom:2rem;
    }

        /* Optional: make cards stretch full width */
        .serviceGrid > div[b-yoslupcg9t] {
            width: 100%;
        }
}
/* _content/EPRInsights/Components/Pages/PrivacyPolicy.razor.rz.scp.css */
container[b-35bdfm8p9p] {
    max-width: 720px;
    margin:auto;
    padding-top:3rem;
    padding: 2rem 1rem;
    font-family: system-ui, sans-serif;
    color: #1a1a1a;
    background-color: #fff;
}

.container[b-35bdfm8p9p] {
    color: #FFFFF3
}

.heading-main[b-35bdfm8p9p] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.heading-section[b-35bdfm8p9p] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.heading-subsection[b-35bdfm8p9p] {
    font-size: 1.4rem;
    font-weight:500;
}

.paragraph[b-35bdfm8p9p] {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.list[b-35bdfm8p9p] {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.list-item[b-35bdfm8p9p] {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.link[b-35bdfm8p9p] {
    color: #2563eb;
    text-decoration: underline;
}

    .link:hover[b-35bdfm8p9p] {
        color: #1d4ed8;
    }

.inline-code[b-35bdfm8p9p] {
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.95em;
    font-family: Consolas, monospace;
}
/* _content/EPRInsights/Components/Pages/WhyChooseUs.razor.rz.scp.css */
#why-choose-us-container[b-c9ndzsj4zu] {
    min-height:45rem;
    height:90vh;
    background-image: url('/images/WhyChooseUs.png'), linear-gradient(rgba(81, 81, 81, 1), rgba(81, 81, 81, 1));
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 4rem 2rem;
    border-radius: 25px;
    color: #EEE9E5;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.wcuHeader[b-c9ndzsj4zu] {
    text-align: right;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    margin-right: 4rem;
}

.cardGrid[b-c9ndzsj4zu] {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0 4rem;
}

.cardColumn[b-c9ndzsj4zu] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#cardColumn2[b-c9ndzsj4zu] {
    margin-top: 5rem;
}

@media only screen and (max-width: 768px) {
    #why-choose-us-container[b-c9ndzsj4zu] {
        height: auto;
        min-height: unset;
        padding: 3rem 1.5rem;
        border-radius: 15px;
        background-position: center;
        background-size: cover;
        background-blend-mode: overlay;
        margin-bottom:2rem;
    }

    .wcuHeader[b-c9ndzsj4zu] {
        text-align: center;
        font-size: 2.2rem;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .cardGrid[b-c9ndzsj4zu] {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
        align-items: center;
    }

    .cardColumn[b-c9ndzsj4zu] {
        gap: 1.5rem;
        width: 100%;
    }

    #cardColumn2[b-c9ndzsj4zu] {
        margin-top: 0;
    }

    .choose-us-card[b-c9ndzsj4zu] {
        width: 100%;
        max-width: 500px;
        height: auto;
        padding: 1.5rem 1rem;
        border-radius: 15px;
        margin: 0 auto;
    }

    .choose-us-title[b-c9ndzsj4zu] {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .choose-us-description[b-c9ndzsj4zu] {
        font-size: 1rem;
        text-align: center;
    }
}
