@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: 0.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 rgb(199 194 201 / 15%);
        border: 2px solid transparent;
        border-image: linear-gradient(135deg, #74ebd5, #acb6e5) 1;
        border-radius: 12px;  */
    }

        .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);
        }
.card-description[b-idv1d27w2f]{
    font-size:12px;
}
.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;
    }
.custom-modal-width[b-idv1d27w2f] {
    max-width: 50%;
    width: 50%;
}

.custom-modal-backdrop .modal-backdrop[b-idv1d27w2f] {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.modal-content[b-idv1d27w2f] {
    border-radius: 12px;
    overflow: hidden;
}

.modal-body[b-idv1d27w2f] {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}
@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-location[b-64zkbe3leo] {
    color: #6c757d;
    font-size: 0.9rem;
}

.facility-location i[b-64zkbe3leo] {
    margin-right: 8px;
    color: #007bff;
}
.card-body[b-64zkbe3leo]{
        padding: 10px;
}
 
.facility-tag[b-64zkbe3leo] {
    display: inline-block;
    padding: 4px 12px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.7rem;
    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-primary-custom {
    padding:10px;
}
[b-64zkbe3leo] .btn.btn-visit {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 10px;
    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;
    }

.card-title[b-64zkbe3leo] {
    font-size: 1rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
    min-height: calc(1.4em * 2);
}
.small-card[b-64zkbe3leo]  .btn.btn-visit {
    padding: 5px;
    font-weight: 500;
}
/* _content/Rehab.EndPoint.Web/Components/Facility/StatesMap.razor.rz.scp.css */
path[b-i56dch36q2] {
    fill: #88a4bc;
    pointer-events: all;
}
  .state-link[b-i56dch36q2] {
        color: #0d6efd;
        text-decoration: none;
    }
.state[b-i56dch36q2] ,.state-shape[b-i56dch36q2] {
    fill: #88a4bc;
}
.borders[b-i56dch36q2] {
    stroke: #FFFFFF;
    stroke-width: 1
}
.dccircle[b-i56dch36q2] {
    display: yes
}
.separator1[b-i56dch36q2] {
    stroke: #B0B0B0;
    stroke-width: 2
}

path:hover[b-i56dch36q2], .state-shape.hovered[b-i56dch36q2] {
    fill: #0056b3;
    cursor: pointer;
}
.state-label[b-i56dch36q2] {
    font-family: sans-serif;
    font-size: 20px;
    fill: #fff;
    font-weight: bold;
    text-anchor: middle;
    pointer-events: none;
}

   

#state-list[b-i56dch36q2] {
 
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 5px;
    grid-row-gap: 10px;
    list-style-type: none;
    padding: 0;
}
    #state-list li[b-i56dch36q2] {
        width: 80%;
        background-color: #88a4bc;
        padding: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        text-align: center;
    }
    #state-list a[b-i56dch36q2] {
        text-decoration: none;
        font-size: 12px;
        color: #fff;
    }
    #state-list li.hovered[b-i56dch36q2] {
        background: #0056b3;
        font-weight: bold;
    }
/* _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-image: url('/images/HeroBackgroundCover.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-title[b-ua5mzd34n1] {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(270deg, #063d8d, #5e388b, #7b1573);
    -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;
}
.search-row-wrapper[b-ua5mzd34n1] {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.search-row[b-ua5mzd34n1] {
    background-color: rgba(128, 0, 128, 0.6); 
    backdrop-filter: blur(4px);  
}

    .search-row .form-control[b-ua5mzd34n1] {
        border-radius: 0.5rem;
        padding: 0.75rem;
    }

    .search-row .btn[b-ua5mzd34n1] {
        padding: 0.75rem;
        font-weight: 600;
    }
.form-control:focus[b-ua5mzd34n1] {
    box-shadow :none !important;
}
/* _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/MainLayout.razor.rz.scp.css */

.custom-modal[b-ujrzgr3c7c] {
    width: 80vw;
    height: 80vh;
    max-width: none;

}

    .custom-modal .modal-content[b-ujrzgr3c7c] {
        height: 100%;
        border-radius: 10px;

    }

.bg-gradient-rehab[b-ujrzgr3c7c] {
    background: #ffe3ff;
    background: linear-gradient(90deg,rgba(255, 227, 255, 1) 1%, rgba(176, 225, 247, 1) 50%, rgba(139, 226, 240, 1) 100%);
}

.autocomplete-container[b-ujrzgr3c7c] {
    padding: 0;
    position: relative;
}

.center-name[b-ujrzgr3c7c] {
    width: 30%
}

.center-city[b-ujrzgr3c7c] {
    width: 20%;
}

.center-state[b-ujrzgr3c7c] {
    width: 20%;
}

.center-condition[b-ujrzgr3c7c] {
    width: 25%;
}

.search-btn[b-ujrzgr3c7c] {
    width: 5%;
    background-color: #0061ca;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-right: 35px;
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

input[type="text"][b-ujrzgr3c7c] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

    input[type="text"]:focus-visible[b-ujrzgr3c7c] {
        outline: none;
    }

.autocomplete-list[b-ujrzgr3c7c] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: none;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
 
}



    .autocomplete-item:hover[b-ujrzgr3c7c] {
        background-color: #f0f0f0;
    }
.facilities-list[b-ujrzgr3c7c] {
    padding-top:20px;
    height: calc(100vh - 300px);
    overflow-y: auto;
}
.facility-filter[b-ujrzgr3c7c] {
    padding-top: 20px;
    height: calc(100vh - 300px);
    overflow-y:scroll;
}
.faciliti-filter-scroll[b-ujrzgr3c7c] {
    background-color: #eee;
    padding: 0px 10px;
    border-radius: 5px;
}
@media screen and (max-width: 980px) {
    .autocomplete-container[b-ujrzgr3c7c]{
        width:100%;
        padding-left:15px;
        border-bottom :solid 1px #eee;
    }
    .search-btn[b-ujrzgr3c7c] {
        width: 100%;
        background-color: #0061ca;
        padding-right: 35px;
        right: 0;
        height: 100%;
        display: flex;
        position: absolute;
        height: auto;
        bottom: 0px;
        top: 80%;
        border-radius: 0px 0px 30px 30px;
        display: flex;
        justify-content: center;
    }
    .center-condition[b-ujrzgr3c7c]{
        margin-bottom:50px;
    }
    .modal-body[b-ujrzgr3c7c] {
        overflow-y: scroll;
    }
    .facilities-list-container[b-ujrzgr3c7c] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .custom-modal[b-ujrzgr3c7c] {
        width: 98%;
    }
    .facilities-list[b-ujrzgr3c7c]{
        width:100%;
    }
    .facility-filter[b-ujrzgr3c7c]{
        width:100%;

    }
    .facility-card[b-ujrzgr3c7c] {
        width: 50%;
    }
}
/* _content/Rehab.EndPoint.Web/Components/Layout/MegaMenu.razor.rz.scp.css */
input.focus-none:focus-visible[b-0hy5yycfy0]{
    border: none;
    outline: none;
}
.search-icon[b-0hy5yycfy0] {
    font-size: 32px;
}
  
h5.megamenu-items-title[b-0hy5yycfy0] {
    color: #494872;
    margin:0px;
    font-size: 14px;
}
ul.mega-list[b-0hy5yycfy0] {
    list-style: none;
    border-left: solid 1px #eee;
    padding: 0px;
    padding-left: 15px;
    margin-left: 10px;
    font-size: 13px;
}
ul.mega-list a[b-0hy5yycfy0] {
    text-decoration:none;
}

    ul.mega-list a.more[b-0hy5yycfy0] {
        color: #a55efc;
    }

    ul.mega-list.mega-pop-facilities[b-0hy5yycfy0] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 5px;
    }
.rating-stars[b-0hy5yycfy0] {
    color:#ffd800;
}
hr.hr-split[b-0hy5yycfy0] {
    margin: 10px auto;
    width: 50%;
}
ul.mega-footer[b-0hy5yycfy0] {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0px;
    margin: 0px;
    gap: 15px;
}
ul.mega-footer li[b-0hy5yycfy0]{
    border-right: solid 1px #eee;
    padding-right: 15px;
}
    ul.mega-footer a[b-0hy5yycfy0] {
        text-decoration: none;
        color: #494872;
        font-size: 13px;
    }
/* _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;
    position: relative;
    --nav-height: 72px;
    min-height: var(--nav-height);
}

.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;
    display: flex;
    align-items: center;
    height: var(--nav-height);
}

    .navbar-nav .nav-link:hover[b-k20wfhdbh5],
    .nav-item-mega:hover > .nav-link[b-k20wfhdbh5],
    .nav-item-mega:focus-within > .nav-link[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,
    .nav-item-mega:hover > .nav-link[b-k20wfhdbh5]::after,
    .nav-item-mega:focus-within > .nav-link[b-k20wfhdbh5]::after {
        width: 100%;
    }

 .nav-item-mega[b-k20wfhdbh5] {
    position: static;
}

.nav-item-mega[b-k20wfhdbh5]  .mega-menu {
    display: none !important;
    margin-top:-1px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 100%;
    z-index: 1050;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item-mega:hover[b-k20wfhdbh5]  .mega-menu {
    display: block !important;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
a.nav-link[b-k20wfhdbh5]{
    cursor:pointer;
}
.mega-title[b-k20wfhdbh5] {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.mega-links[b-k20wfhdbh5] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li + li[b-k20wfhdbh5] {
    margin-top: 0.5rem;
}

.mega-links a[b-k20wfhdbh5] {
    color: inherit;
    text-decoration: none;
}

.mega-links a:hover[b-k20wfhdbh5] {
    color: var(--bs-primary);
}
 
@media (max-width: 991.98px) {
    .nav-item-mega[b-k20wfhdbh5] {
        position: relative;
    }
    .nav-item-mega[b-k20wfhdbh5]  .mega-menu {
        position: static;
        display: none !important;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border: 0;
        padding-left: 1rem;
    }
    .nav-item-mega:hover[b-k20wfhdbh5]  .mega-menu {
        display: block !important;
    }
}
/* _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-fit, minmax(200px, 200px));
    justify-content: center;
}
    .insurance .card-content[b-f16l9x0frq]{
        padding:5px;
    }
    .cards-grid.loc[b-f16l9x0frq] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
[b-f16l9x0frq] .insurance .card-content .btn-link {
    color: #4a90e2;
    font-size: 12px !important;
}
.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;  
}
.section-title[b-f16l9x0frq] {
    position: sticky;
    top: 50px;
    background: white;
    padding: 10px 0;
    z-index: 10;
    transition: all 0.3s ease;
}
.section-title.active[b-f16l9x0frq] {
    color: #007bff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* _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;
}
