:root {
    --primary: #3fa5e7;
    --primary-hover: #2276ac;
    
}

.section {
    padding: 60px 0;
}

/* ===== PAGE LAYOUT ===== */
.therapist-page {
    background: #f8fafc;
}

.btn,
.form-control {
    box-shadow: none !important;
}

.filter-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 90px;
}

.filter-box h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== THERAPIST CARD ===== */
.therapist-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    overflow:hidden;
}
.swiper-button-prev, .swiper-button-next{
    background: var(--abu-base);
    color: white  !important;
    width: 50px !important;
    height: 50px  !important;
    border-radius: 50%  !important;
    padding: 12px;
   top: -42px !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
        font-size: 20px !important;
}
.swiper-button-prev{
        left: auto !important;
    right: 75px !important;
}
.swiper-button-next{
    
}
.swiper-button-next{
    
}
.therapist-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-2px);
}

/* Image */
.services-list li{
    font-size:16px;
    margin-bottom:5px;
}
.therapist-img {
       width:100%;
    height: 260px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e5e7eb;
    object-position: center;
}
.therapist-card  .therapist-img{
    width: 260px;
}
.therapist-card-inner .therapist-img{
    width: 100%;
}
.therapist-card  .therapist-info{
    padding:20px;
    padding-left:0;
}
.therapist-card .therapist-actions{
        padding: 20px;
}
.profile-content{
    padding:20px;
}
.profile_language{
    font-size:13px;
    text-align:left;
    margin-bottom:0;
    color: #777;
}
.profile_cta{
    display: flex;
    gap: 10px;
    justify-content: space-between;
        align-items: end;
}
.profile_cta h5{
    font-size:24px;
}
/* Content */
.therapist-info {
    flex-grow: 1;
}

.therapist-info h5 {
    font-weight: 600;
    font-size:24px;
    margin-bottom: 4px;
}
.btn-primary{
    background-color:#44a8e8;
    border-color:#44a8e8;
}
.swiper_parent{
    position:relative;
}
.btn-primary:hover{
    background-color:#116ea9;
    border-color:#116ea9;
}
._badge{
        font-size: 12px;
    font-weight: 600;
    background-color: var(--primary) !important;
}
.therapist-info .specialties {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.therapist-info .about {
    font-size: 14px;
    color: #334155;
}

/* Right actions */
.therapist-actions {
    text-align: right;
    min-width: 200px;
}
.listing-btns{
    display:flex;
    gap:12px;
    align-items:start;
    flex-direction:column;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.rounded-4 {
    border-radius: 12px !important;
}

.session-text {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.btn-view {
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
}

.btn-view:hover {
    background: var(--primary);
    color: #fff;
}

.btn-book {
    background: var(--primary);
    color: #fff;
    font-weight: 500;
}

.btn-book:hover {
    background: var(--primary-hover);
    color: white
}
.therapist-page-header{
    /*display: flex;*/
    /*gap: 10px;*/
}
.filter-div{
    flex:1;
    width:100%;
}
.filter-div form{
    display:grid;
    grid-template-columns:1fr 2fr 2fr 0.7fr;
    gap:20px;
        align-items: start;
}
.filter-div form > div{
    flex:1;
}
.filter-div form > button{
    height:100%;
}
.form-select{
    font-size: 14px;
        padding: 10px 16px;
}

/* Pagination custom style */
.pagination {
    gap: 6px;
    margin-left:20px;
}

.page-link {
    color: #3fa5e7;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow: none !important;
}

.page-link:hover {
    background-color: #3fa5e7;
    color: #fff;
    border-color: #3fa5e7;
}

.page-link{
        padding: 10px 20px;
        font-size: 16px;
}
.page-item:last-child .page-link{
        border-top-right-radius: 8px;
        border-bottom-right-radius:8px;
}
.page-item:first-child .page-link{
    border-top-left-radius: 8px;
        border-bottom-left-radius:8px;
}
.page-item.active .page-link {
    background-color: #3fa5e7;
    border-color: #3fa5e7;
    color: #fff;
    box-shadow: none !important;
}

.page-item.disabled .page-link {
    color: #aaa;
    background-color: #f8f9fa;
    border-color: #e6e6e6;
    box-shadow: none !important;
}

.page-link:focus {
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .therapist-card {
        flex-direction: column;
        text-align: center;
    }

    .therapist-actions {
        text-align: center;
    }

    .therapist-img {
        margin: 0 auto;
    }
}

.filter-box label {
    font-size: 16px;
}

label {
    font-size: 16px;
}




/*New Css Added */

:root {
    --primary-color: #3fa5e7;
    --secondary-color: #0b3450;
   
    --light-bg: #f5fbff;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

/* HERO SECTION */
.hero-section {
    background: url('https://www.samvednacare.com/siteassets/images/home/hero.jpg') no-repeat right center;
    background-size: cover;
    min-height: 550px;
    padding: 80px 0;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255,255,255,0.7); */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
}

.hero-text {
    font-size: 16px;
    margin-top: 15px;
    color: #555;
}

.hero-buttons .btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .hero-section {
        background: none !important;
        padding: 50px 0;
        text-align: center;
    }

    .hero-mobile-img {
        max-width: 280px;
    }


    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}



/* ===== SECTION ===== */
.stats-section {
    background: #ffffff;
    padding: 40px 0;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #0b3450;
    transition: 0.3s;
    cursor: pointer;
}

.icon-box {
    width: 65px;
    height: 65px;
    /* background: rgba(214, 60, 60, 0.1); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.icon-box img {
    width: 35px;
    transition: 0.3s;
}

.stat-text h4 {
    margin: 0;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-text p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.stat-card:hover {
    background: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.stat-card:hover .icon-box {
    background: #fff;
}

.stat-card:hover h4,
.stat-card:hover p {
    color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .stat-card {
        padding: 18px;
        gap: 15px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box img {
        width: 28px;
    }

    .stat-text h4 {
        font-size: 18px;
    }

    .stat-text p {
        font-size: 13px;
    }
}



/* SECTION */
.journey-section {
    padding: 80px 0;
    background: #ffffff;
}

/* IMAGE */
.journey-img img {
    width: 100%;
    border-radius: 16px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

/* CONTENT */
.journey-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.journey-content p {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}

.journey-steps {
    margin-top: 15px;
}

.step {
    margin-bottom: 15px;
}

.step h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.step p {
    font-size: 14px;
    color: #000000;
    margin: 0;
}

/* BUTTON */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

@media (max-width: 991px) {
    .journey-section {
        padding: 50px 0;
        text-align: center;
    }

    .journey-content h2 {
        font-size: 24px;
    }

    .step {
        text-align: center;
    }

    .btn-primary {
        width: 100%;
    }
}


/* SECTION */
.care-section-clean {
    padding: 40px 0;
    background: #fff;
}

.care-heading {
    max-width: 720px;
    margin: 0 auto 60px;
}

.care-heading h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2.4px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.care-heading p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

.care-item {
    text-align: left;
    margin-bottom: 40px;
}

.care-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 18px;
}

.care-item h4 {
    letter-spacing: 0;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

.care-item p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.5;
}

.care-item a {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.care-item a:hover {
    color: var(--secondary-color);
}

.view-more-btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.view-more-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {

    .care-section-clean {
        padding: 60px 0;
    }

    .care-heading {
        margin-bottom: 40px;
    }

    .care-heading h2 {
        font-size: 35px;
    }

    .care-item {
        text-align: left;
    }

    .view-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}




/* ================= SECTION ================= */
.why-section {
    padding: 50px 0;
    background: #f5f5f5;
    padding-bottom: 50px;
}

.why-heading h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2.4px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.why-wrapper {
    position: relative;
    max-width: 950px;
    margin: auto;
}

.why-img {
    width: 100%;
}

.why-img img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    display: block;
}

.why-card {
    position: absolute;
    top: 60%;
    right: -51px;
    transform: translateY(-51%);
    width: 445px;
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.why-item i {
    font-size: 13px;
    color: var(--primary-color);
    background: rgba(63, 165, 231, 0.1);
    padding: 8px;
    border-radius: 50%;
    min-width: 32px;
    text-align: center;
}

.why-item span {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .why-section {
        padding: 60px 0;
    }

    .why-heading h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .why-wrapper {
        max-width: 100%;
    }

    .why-img img {
        max-width: 100%;
    }

    .why-card {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0px;
    }
}


/* SECTION */
.how-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.how-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.how-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.how-item .icon {
    min-width: 42px;
    height: 42px;
    background: rgba(63, 165, 231, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-item .icon i {
    color: var(--primary-color);
    font-size: 16px;
}

.how-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--secondary-color);
}

.how-item p {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.how-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .how-section {
        padding: 50px 0;
    }

    .how-content h2 {
        font-size: 26px;
        margin-bottom: 20px;
        text-align: center;
    }

    .how-img {
        margin-bottom: 25px;
    }

    .how-section .row {
        flex-direction: column-reverse;
    }

    .how-item {
        gap: 12px;
    }
}

/* SECTION */
.sp-section {
    padding: 70px 0;
    background: #ffffff;
}

.sp-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}

.sp-heading p {
    color: #000;
    margin-bottom: 35px;
    text-align:center;
    font-size:18px;
}

.sp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sp-card {
    padding: 25px;
    border-radius: 10px;
    color: #fff;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.sp-card img {
    width: 42px;
}

.sp-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}
/* COLORS (same as above section) */
.yellow {
    background-color: var(--primary-color);
}

.purple {
    background: #e9b44c;
}

.blue {
    background: var(--secondary-color);
}

.peach {
    background: #c98a7a;
}

.sp-card:hover {
    transform: translateY(-6px);
}

@media (max-width: 991px) {
    .sp-heading h2 {
        font-size: 24px;
    }

    .sp-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= CONSULT SECTION ================= */

.consult-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.consult-container {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.consult-image {
    flex: 1;
}

.consult-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consult-form-area {
    flex: 1;
    padding: 60px 50px;
    background: #ffffff;
}

.consult-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.consult-form-area h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.3;
    color: var(--secondary-color);
}

.consult-form input,
.consult-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    background: #ffffff;
    font-size: 15px;
}

.consult-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    background: #fff;
}

.consult-form textarea {
    height: 120px;
    resize: none;
}

.consult-form button {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.consult-form button:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {

    .consult-container {
        flex-direction: column;
    }

    .consult-image img {
        height: 350px;
    }

    .consult-form-area {
        padding: 40px 25px;
    }

    .consult-form-area h2 {
        font-size: 24px;
    }

}



/* ===============================
   BLOG SECTION
================================ */

.blog-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.blog-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-subtitle {
    font-size: 16px;
    color: #020202;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 500;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.4;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.calendar-icon {
    font-size: 16px;
}

.blog-btn-wrap {
    margin-top: 50px;
}

.blog-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: var(--primary-hover);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 16px;
    }
}


.blog-breadcrumb {
    background: var(--primary);
    padding: 18px 0;
}

.breadcrumb-wrapper {
    font-size: 15px;
    color: #ffffff;
}

.breadcrumb-wrapper a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-wrapper a:hover {
    opacity: 0.8;
}

.breadcrumb-wrapper span {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-wrapper .active {
    font-weight: 600;
    color: #ffffff;
}


.blog-detail-section {
    padding: 90px 0;
    background: #ffffff;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}


.blog-feature-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
}

.blog-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary);
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.blog-content h2 {
    margin-top: 45px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.blog-category-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border: 1px solid #f0f0f0;
}

.blog-category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.blog-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-card ul li {
    margin-bottom: 14px;
}

.blog-category-card ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f5f7fb;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-category-card ul li a:hover {
    background: var(--primary-hover);
    color: #ffffff;
    transform: translateX(5px);
}

.blog-form-card {
    background: var(--primary);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.blog-form-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-form-card form {
    width: 100%;
}

.blog-form-card form input,
.blog-form-card form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.blog-form-card form input::placeholder,
.blog-form-card form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-form-card form textarea {
    min-height: 120px;
    resize: none;
}

.blog-form-card form button {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-form-card form button:hover {
    background: var(--primary-hover);
    color: #fff;
}

.blog-form-card form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.blog-form-card form select {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.blog-form-card form select {
    color: #fff;
}

.blog-form-card form select option {
    color: #000;
    background: #fff;
}

a {
    text-decoration: none;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-feature-image img {
        border-radius: 15px;
    }

    .blog-category-card,
    .blog-form-card {
        padding: 25px;
    }
}


/*=========================
MENTAL ASSESSMENT
=========================*/

.mental-assessment-section{
    padding:80px 0;
    background:linear-gradient(180deg,#f5fbff,#ffffff);
}

.assessment-tag{
    display:inline-block;
    padding:8px 20px;
    background:#e8f4ff;
    color:#0d6efd;
    border-radius:50px;
    font-weight:600;
    letter-spacing:.5px;
    font-size:14px;
}

.assessment-title{
    font-size:42px;
    font-weight:700;
    color:#132238;
    margin-bottom:15px;
}

.assessment-subtitle{
    max-width:700px;
    margin:auto;
    color:#6c757d;
    font-size:18px;
    line-height:30px;
}

/* Card */

.assessment-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

/* Progress */

.progress-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
    font-weight:600;
    color:#1f2937;
}

.progress{
    height:10px;
    background:#edf2f7;
    border-radius:30px;
    overflow:hidden;
    margin-bottom:45px;
}

.progress-bar{
    background:linear-gradient(90deg,#0d6efd,#42b4ff);
    border-radius:30px;
    transition:.4s;
}

/* Questions */

.question-step{
    display:none;
}

.question-step.active{
    display:block;
}

.question-step h3{
    font-size:30px;
    margin-bottom:35px;
    color:#0f172a;
    text-align:center;
    font-weight:700;
}

/* Options */

.options{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.option-card{
    position:relative;
    border:2px solid #e8edf5;
    border-radius:18px;
    padding:22px;
    cursor:pointer;
    transition:.35s;
    background:#fff;
}

.option-card:hover{
    border-color:#0d6efd;
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(13,110,253,.15);
}

.option-card input{
    display:none;
}

.option-card span{
    display:block;
    font-size:17px;
    font-weight:600;
    color:#334155;
}

.option-card input:checked + span{
    color:#0d6efd;
}

.option-card:has(input:checked){
    border-color:#0d6efd;
    background:#f3f9ff;
    box-shadow:0 12px 30px rgba(13,110,253,.15);
}

/* Form */

.question-step form{
    margin-top:30px;
}

.form-control{
    border-radius:14px;
    padding:14px 18px;
    border:1px solid #d9dee8;
    min-height:54px;
    box-shadow:none!important;
}

.form-control:focus{
    border-color:#0d6efd;
}

.question-step small{
    color:#6c757d;
}

/* Footer */

.assessment-footer{
    margin-top:45px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.assessment-footer .btn{
    min-width:160px;
    height:52px;
    border-radius:50px;
    font-weight:600;
    font-size:16px;
}

.btn-primary{
    background:#0d6efd;
    border:none;
}

.btn-primary:hover{
    background:#0056d6;
}

.btn-success{
    background:#16a34a;
    border:none;
}

.btn-outline-primary{
    border:2px solid #0d6efd;
}

/* Responsive */

@media(max-width:991px){

.assessment-title{
    font-size:34px;
}

.assessment-card{
    padding:35px;
}

.question-step h3{
    font-size:26px;
}

}

@media(max-width:768px){

.assessment-card{
    padding:25px;
}

.options{
    grid-template-columns:1fr;
}

.assessment-title{
    font-size:30px;
}

.assessment-subtitle{
    font-size:16px;
    line-height:28px;
}

.question-step h3{
    font-size:22px;
}

.assessment-footer{
    flex-direction:column;
    gap:15px;
}

.assessment-footer .btn{
    width:100%;
}

}