@import '_content/Rehab.EndPoint.AdminPanel/Rehab.EndPoint.AdminPanel.1qiiw16kfn.bundle.scp.css';

/* _content/Rehab.EndPoint.Web/Components/Common/AccordionItem.razor.rz.scp.css */
.accordion-item[b-k73ko6f2dh] {
    /*border: 1px solid #ccc;*/
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}
.accordion-item:hover[b-k73ko6f2dh] {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-header[b-k73ko6f2dh] {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .accordion-header h4[b-k73ko6f2dh] {
        margin: 0;
        font-size: 1.1rem;
        color: #343a40;
    }
    .accordion-toggle[b-k73ko6f2dh] {
        font-weight: bold;
        font-size: 1.1rem;
    }

.accordion-body[b-k73ko6f2dh] {
    display: none;
    margin-top: 1rem;
}

    .accordion-body.active[b-k73ko6f2dh] {
        display: block;
    }
/* _content/Rehab.EndPoint.Web/Components/Common/Card.razor.rz.scp.css */
.card[b-idv1d27w2f] {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
}

    .card[b-idv1d27w2f]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .card:hover[b-idv1d27w2f] {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(74, 144, 226, 0.15);
        border-color: var(--primary-blue);
    }

        .card:hover[b-idv1d27w2f]::before {
            transform: scaleX(1);
        }

    .card.active[b-idv1d27w2f] {
        border-color: var(--primary-blue);
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(127, 184, 211, 0.05));
    }

        .card.active[b-idv1d27w2f]::before {
            transform: scaleX(1);
        }

.content[b-idv1d27w2f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.logo[b-idv1d27w2f] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.card:hover .logo[b-idv1d27w2f] {
    background: linear-gradient(135deg, var(--light-blue), rgba(127, 184, 211, 0.2));
    transform: scale(1.05);
}

.image[b-idv1d27w2f] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.placeholder[b-idv1d27w2f] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}

.info[b-idv1d27w2f] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title[b-idv1d27w2f] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.description[b-idv1d27w2f] {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive design */
@media (max-width: 768px) {
    .card[b-idv1d27w2f] {
        padding: 1rem;
    }

    .logo[b-idv1d27w2f] {
        width: 60px;
        height: 60px;
    }

    .title[b-idv1d27w2f] {
        font-size: 1rem;
    }

    .description[b-idv1d27w2f] {
        font-size: 0.85rem;
    }
}

/* Focus styles for accessibility */
.card:focus[b-idv1d27w2f] {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Loading state */
.card.loading[b-idv1d27w2f] {
    opacity: 0.7;
    pointer-events: none;
}

    .card.loading .logo[b-idv1d27w2f] {
        animation: pulse-b-idv1d27w2f 1.5s infinite;
    }

@keyframes pulse-b-idv1d27w2f {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}
/* _content/Rehab.EndPoint.Web/Components/Facility/FacilityGallery.razor.rz.scp.css */
.facility-gallery-grid[b-9enaaed8vy] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.facility-gallery-item[b-9enaaed8vy] {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .facility-gallery-item:hover[b-9enaaed8vy] {
        filter: blur(3px);
    }


    .facility-gallery-item img[b-9enaaed8vy] {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

    .facility-gallery-item .overlay[b-9enaaed8vy] {
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        border-radius: 8px;
    }

.gallery-btn[b-9enaaed8vy] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 150px;
    padding: 15px;
    border-radius: 15px;
}
/* _content/Rehab.EndPoint.Web/Components/Facility/FacilityItem.razor.rz.scp.css */
 
.facility-item[b-64zkbe3leo] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.facility-item:hover[b-64zkbe3leo] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.facility-skin[b-64zkbe3leo] {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.facility-skin img[b-64zkbe3leo] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-logo[b-64zkbe3leo] {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.facility-logo img[b-64zkbe3leo] {
    border-radius: 50%;
    width: 59px;
    height: 59px;
    object-fit: contain;
}

.facility-body[b-64zkbe3leo] {
    padding: 1.5rem;
}

.facility-location[b-64zkbe3leo] {
    color: #6c757d;
    font-size: 0.9rem;
}

.facility-location i[b-64zkbe3leo] {
    margin-right: 8px;
    color: #007bff;
}

.facility-tag[b-64zkbe3leo] {
    display: inline-block;
    padding: 4px 12px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.facility-tag:hover[b-64zkbe3leo] {
    background: #007bff;
    color: white;
    text-decoration: none;
}

[b-64zkbe3leo] .btn.btn-visit {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    [b-64zkbe3leo] .btn.btn-visit:hover {
        background: linear-gradient(135deg, #0056b3, #004085);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
        color: white;
    }
/* _content/Rehab.EndPoint.Web/Components/HomeSections/HeroSection.razor.rz.scp.css */
.hero-section[b-ua5mzd34n1] {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(116, 235, 213, 0.1), rgba(159, 172, 230, 0.1)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%2374ebd5" width="1200" height="800"/><circle cx="300" cy="200" r="150" fill="%239face6" opacity="0.3"/><circle cx="900" cy="600" r="200" fill="%2374ebd5" opacity="0.4"/><path d="M0,600 Q300,400 600,600 T1200,600 L1200,800 L0,800 Z" fill="%23ffffff" opacity="0.6"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-title[b-ua5mzd34n1] {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle[b-ua5mzd34n1] {
    font-size: 1.3rem;
    color: var(--text-muted);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}
/* _content/Rehab.EndPoint.Web/Components/HomeSections/InsuranceSection.razor.rz.scp.css */

.insurance-card:hover[b-wu42rfyo6w] {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.insurance-logo[b-wu42rfyo6w] {
    width: 120px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #4a90e2;
}
/* _content/Rehab.EndPoint.Web/Components/HomeSections/RecoveryCentersSection.razor.rz.scp.css */

.facility-skin[b-f3mkqu7sh0] {
    position: relative;
}

    .facility-skin img[b-f3mkqu7sh0] {
        width: 100%;
        height: 220px;
        object-fit: cover;
     }

.facility-logo[b-f3mkqu7sh0] {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
    background: rgba(0, 0, 0, 0.4); 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .facility-logo img[b-f3mkqu7sh0] {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }

.facility-location[b-f3mkqu7sh0] {
    color: #808080;
}
    .facility-location i[b-f3mkqu7sh0]{
        margin-top:5px;
    }
.facility-tag[b-f3mkqu7sh0] {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a90e2;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
}
.btn-visit[b-f3mkqu7sh0] {
    border-radius: 10px;
    color: #fff;
    background-color: #4a90e2;
    padding:5px 10px;
    width:40%;
}
.card-body[b-f3mkqu7sh0] {
    display: flex;
    flex-direction: column;
}
    .card-body .btn-visit[b-f3mkqu7sh0] {
        margin-top: auto;  
    }
/* _content/Rehab.EndPoint.Web/Components/HomeSections/ResourcesSection.razor.rz.scp.css */
.resource-card[b-b1fwoueaw8] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .resource-card:hover[b-b1fwoueaw8] {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

.resource-image[b-b1fwoueaw8] {
    height: 180px;
    background: linear-gradient(135deg, #74ebd5, #acb6e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.resource-content[b-b1fwoueaw8] {
    padding: 1.5rem;
}

    .resource-content h3[b-b1fwoueaw8] {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: #2c3e50;
    }

    .resource-content p[b-b1fwoueaw8] {
        color: #5a6c7d;
        font-size: 0.95rem;
        margin-bottom: 0;
    }
/* _content/Rehab.EndPoint.Web/Components/HomeSections/TreatmentTypeSection.razor.rz.scp.css */
.treatment-card[b-k2owlgdl17] {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    height: 100%;
    margin-bottom: 2rem;
}

    .treatment-card:hover[b-k2owlgdl17] {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

.treatment-icon[b-k2owlgdl17] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}



.depression[b-k2owlgdl17] {
    background: linear-gradient(135deg, #667eea, #c8b2df)
}

.adhd[b-k2owlgdl17] {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.anxiety[b-k2owlgdl17] {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.trauma[b-k2owlgdl17] {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.treatment-card h3[b-k2owlgdl17] {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.treatment-card p[b-k2owlgdl17] {
    color: #5a6c7d;
    line-height: 1.5;
    margin-bottom: 0;
}
/* _content/Rehab.EndPoint.Web/Components/Layout/Footer.razor.rz.scp.css */
.footer a[b-ymzvxs297z] {
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
}
.btn-blue[b-ymzvxs297z] {
    border: none;
    background-color: #007bff;
    color:white;
}
.footer-top[b-ymzvxs297z]{
    padding-top:100px;
    padding-bottom:100px;
}
.footer-bottom[b-ymzvxs297z] {
    background: linear-gradient(135deg, #74ebd5, #acb6e5);
}
.fixed-footer[b-ymzvxs297z] {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1000;
}
h5.footer-section-title[b-ymzvxs297z] {
    color: rgb(116, 235, 213) !important;
}
.footer ul[b-ymzvxs297z] {
    margin-top: 30px;
}
.footer ul li[b-ymzvxs297z] {
    margin-top: 10px;
}
/* _content/Rehab.EndPoint.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-custom[b-k20wfhdbh5] {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar-brand[b-k20wfhdbh5] {
    color: var(--bs-primary) !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link[b-k20wfhdbh5] {
    font-weight: normal;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

    .navbar-nav .nav-link:hover[b-k20wfhdbh5] {
        color: var(--bs-primary);
        transform: translateY(-1px);
    }

    .navbar-nav .nav-link[b-k20wfhdbh5]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg,var(--bs-primary), var(--bs-primary));
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover[b-k20wfhdbh5]::after {
        width: 100%;
    }
/* _content/Rehab.EndPoint.Web/Components/Pages/FacilityDetail.razor.rz.scp.css */
[b-f16l9x0frq] .row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
h2.section-title[b-f16l9x0frq] {
    text-align: center
}
[b-f16l9x0frq] .facility-tab .nav.nav-tabs {
    -webkit-justify-content: center;
    justify-content: center;
    border: none !important;
}

[b-f16l9x0frq] .facility-tab .tab-content {
    border: none !important;
}
[b-f16l9x0frq] .facility-tab .nav-tabs .nav-link {
    border: none !important;
    color: #6c757d !important;
    font-weight: 600;
    font-size: 24px;
    padding: 1rem 2rem;
    position:relative;
}
    [b-f16l9x0frq] .facility-tab .nav-tabs .nav-link.active {
        color: #0080ff !important;
        background: none !important;
    }

    [b-f16l9x0frq] .facility-tab .nav-tabs .nav-link::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%) scaleX(0); 
        width: 150px;
        height: 6px;
        background-color: #0080ff;
        border-radius: 3px;
        transition: transform 0.3s ease; 
    }

    [b-f16l9x0frq] .facility-tab .nav-tabs .nav-link.active::after {
        transform: translateX(-50%) scaleX(1);
    }
.cards-grid[b-f16l9x0frq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.insurance .cards-grid[b-f16l9x0frq] {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.cards-grid.loc[b-f16l9x0frq] {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.wwt h4.card-title[b-f16l9x0frq] {
    margin-top: 10px;
    text-align: center;
    font-size: 18px !important;
}
.card-container[b-f16l9x0frq] {
    display: flex;
    flex-direction: column;
    height: 100%;
}
[b-f16l9x0frq] .card-placeholder i {
    font-size: 64px;
    color: #758085;
}
[b-f16l9x0frq] a.card {
    
    text-decoration: none;
    border: none;
    border-radius: 10px;
    margin-right: 10px;
}
[b-f16l9x0frq] .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
[b-f16l9x0frq] h4.card-title{
    font-size : 1.1rem;
    font-weight:normal;
}
[b-f16l9x0frq] .wwt h4.card-title {
    margin-top: 10px;
    text-align: center;
    font-size: 18px !important;
}
[b-f16l9x0frq] .card-logo {
    width: 100%;  
    aspect-ratio :1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;  
    overflow: hidden; 
    background-color: #f9f9f9;  
}

[b-f16l9x0frq] .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;  
}
/* _content/Rehab.EndPoint.Web/Components/Pages/Home.razor.rz.scp.css */

/* _content/Rehab.EndPoint.Web/Components/Pages/PageTest.razor.rz.scp.css */
h1[b-5okuviburl] {
    color:red;
}
/* _content/Rehab.EndPoint.Web/Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.section-1 .container[b-p1wr9h2ct6] {
    margin: 0 auto;
    padding: 60px 20px 40px;
}




    .section-1 h2[b-p1wr9h2ct6] {
        text-align:left;
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 3px solid;
        border-image: linear-gradient(45deg, rgb(116, 235, 213), rgb(172, 182, 229)) 1;
    }

    .section-1 h3[b-p1wr9h2ct6] {
        font-size: 1.3rem;
        color: #34495e;
        margin: 20px 0 10px 0;
    }

    .section-1 p[b-p1wr9h2ct6] {
        margin-bottom: 15px;
        color: #555;
        font-size: 1rem;
    }

    .section-1 ul[b-p1wr9h2ct6] {
        margin-left: 25px;
        margin-bottom: 15px;
    }

    .section-1 li[b-p1wr9h2ct6] {
        margin-bottom: 8px;
        color: #555;
    }

.highlight-box[b-p1wr9h2ct6] {
    background: linear-gradient(45deg, rgba(116, 235, 213, 0.1), rgba(172, 182, 229, 0.1));
    border-left: 4px solid rgb(116, 235, 213);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.contact-info[b-p1wr9h2ct6] {
    background: linear-gradient(45deg, rgba(116, 235, 213, 0.2), rgba(172, 182, 229, 0.2));
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

    .contact-info h3[b-p1wr9h2ct6] {
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .contact-info p[b-p1wr9h2ct6] {
        margin-bottom: 5px;
    }

.last-updated[b-p1wr9h2ct6] {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    font-style: italic;
    color: #34495e;
}
