/* Common Work Start */
:root {
    --transition: all 0.3s 0s linear;
}

.mobile-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.mobile-filters .button {
    width: calc(50% - 7.5px);
    border: none;
    background-color: #eee;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.link-btn {
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid var(--greencolor) !important;
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0px;
    border-radius: 0px;
}
.web-accordion .accordion-item {
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--bordercolor);
    overflow: hidden;
}
.web-accordion .accordion-item:last-child {
    margin-bottom: 0px !important;
}
.web-accordion .accordion-button {
    background-color: #eee;
    color: var(--blackcolor);
    font-weight: 600;
    box-shadow: none;
    padding: 15px 20px;
}
.web-accordion .accordion-body {
    padding: 20px;
}
.custom-radio input {
    display: none;
}
.custom-radio label {
    color: var(--graycolor);
    font-size: 15px;
    cursor: pointer;
    padding-left: 30px;
    position: relative;
}
.custom-radio label:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: #f9fafc;
    border: 1.5px solid #eaeaec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafc;
    font-size: 12px;
}
.custom-radio input:checked ~ label:before {
    background-color: var(--greencolor);
    border-color: var(--greencolor);
    color: var(--whitecolor);
}

.small-section-padding {
    padding: 40px 0px;
}
.small-section-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize;
}
.small-section-heading.with-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.small-section-heading.with-p {
    margin-bottom: 8px;
}
.small-section-heading.with-p + p {
    margin-bottom: 25px;
    color: var(--graycolor);
}

.btn-sm {
    font-size: 12px;
    padding: 10px 15px;
    height: auto;
}

.common-left-offcanvas {
    width: 320px !important;
}
.common-left-offcanvas .offcanvas-title {
    font-size: 16px;
    font-weight: 700;
}
.offcanvas-header .btn-close {
    box-shadow: none;
    outline: 0;
}
.common-modal .modal-title {
    font-size: 16px;
    font-weight: 600;
}
.common-modal .modal-body {
    min-height: 70vh;
}

.web-overflow {
    overflow: auto;
}
.web-overflow::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.web-overflow::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0px;
}
.web-overflow::-webkit-scrollbar-thumb {
    background-color: var(--greencolor);
    border-radius: 0px;
}

.gender-radio label {
    border: 1.5px solid #eaeaec;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafc;
}
.gender-radio input:checked ~ label {
    border-color: var(--greencolor);
    background-color: #19838a20;
}
.gender-radio.Male input:checked ~ label {
    background-color: #00a8ff20;
    border-color: #00a8ff;
}
.gender-radio.Female input:checked ~ label {
    background-color: #fc8bb720;
    border-color: #fc8bb7;
}

.select2-container .select2-selection--single {
    border-radius: 10px !important;
    font-size: 14px;
    background-color: #f9fafc !important;
    border: 1.5px solid #eaeaec !important;
    color: black;
    padding: 12px 40px 12px 15px;
    height: auto !important;
    font-weight: 400;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 1.5 !important;
    padding: 0px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 46px !important;
    width: 46px !important;
    top: 0 !important;
    right: 0 !important;
}
/* Common Work End */

/* Page Banner Work Start */
.page-banner img {
    background: linear-gradient(
        90deg,
        rgba(255, 218, 186, 1) 0%,
        rgba(186, 224, 255, 1) 100%
    );
    height: auto;
    border-radius: 0px 0px 40px 40px;
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: left;
}
/* Page Banner Work End */

/* Second Opinion Work Start */
.secondopinion-about .section-heading2 {
    margin-bottom: 20px;
}
.secondopinion-about p {
    margin-bottom: 20px;
}
.secondopinion-about p strong {
    font-weight: 600;
}
.secondopinion-about ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}
.secondopinion-about ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 20px;
}
.secondopinion-about ul li strong {
    font-weight: 600;
}
.secondopinion-about ul li i {
    font-size: 30px;
    width: 24px;
    text-align: center;
    color: var(--greencolor);
}
.secondopinion-about .center-img {
    height: 100%;
    position: relative;
}
.secondopinion-about .center-img .big-img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}
.secondopinion-about .center-img .small-img {
    width: 100px;
    height: 140px;
    object-fit: contain;
    position: absolute;
    bottom: -20px;
    left: -40px;
    animation: imgeffect 3s infinite linear !important;
}
@keyframes imgeffect {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(10px, 10px);
    }
    50% {
        transform: translate(-10px, -10px);
    }
    50% {
        transform: translate(10px, 10px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.secondopinion-howitworks .box {
    border-radius: 20px;
    background-color: var(--whitecolor);
    padding: 30px 50px 45px;
    height: 100%;
}
.secondopinion-howitworks .box .num {
    font-weight: 900;
    line-height: 1;
    font-size: 78px;
    display: block;
    margin-bottom: 25px;
    color: var(--blackcolor);
    opacity: 0.1;
}
.secondopinion-howitworks .box .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.secondopinion-howitworks .box .title i {
    font-size: 26px;
    color: var(--greencolor);
}
.secondopinion-howitworks .box ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.secondopinion-howitworks .box ul li:not(:last-child) {
    margin-bottom: 10px;
}
.secondopinion-howitworks .box ul li {
    display: flex;
    gap: 10px;
}
.secondopinion-howitworks .box ul li::before {
    content: "•";
    color: var(--greencolor);
    font-size: 18px;
    margin-top: -3px;
}
.secondopinion-form .web-form-box {
    position: relative;
}
.secondopinion-form .web-form-box .sethescope {
    width: auto;
    height: 200px;
    object-fit: contain;
    position: absolute;
    left: -80px;
    top: -30px;
}
.secondopinion-form .doctor {
    width: 100%;
    height: 430px;
    border-radius: 20px;
    object-fit: contain;
}
/* Second Opinion Work End */

/* IMSecond Opinion Work Start */
.secondopinion-howitworks.imso .box {
    padding: 30px 30px 40px;
}
.secondopinion-form.imso .web-accordion .accordion-item {
    border-radius: 0px;
    border: none;
    box-shadow: none;
    margin-bottom: 10px;
}
.secondopinion-form.imso .web-accordion .accordion-button {
    border-radius: 10px;
}
.secondopinion-form.imso .web-accordion .accordion-body {
    padding: 20px 0px 15px;
}
.secondopinion-form.imso .radios {
    display: flex;
    align-items: center;
    gap: 15px;
}
.secondopinion-form.imso .table th {
    color: var(--graycolor);
    font-weight: 400;
}
.secondopinion-form.imso .table .btn {
    width: 48px;
    height: 48px;
    padding: 0px;
    border-radius: 10px;
}
.secondopinion-form.imso .table .btn:hover {
    color: var(--whitecolor);
}
/* IMSecond Opinion Work End */

/* Online Consultation Work Start */
.owl-nav button {
    background-color: var(--whitecolor) !important;
    border: 1px solid var(--bordercolor) !important;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 26px !important;
    transition: var(--transition);
}
.owl-nav button.owl-prev {
    left: -20px;
}
.owl-nav button.owl-next {
    right: -20px;
}
.owl-nav button:hover {
    border-color: var(--greencolor) !important;
}
.online-consult-banner img {
    border-radius: 15px;
    background: linear-gradient(
        90deg,
        rgba(255, 218, 186, 1) 0%,
        rgba(186, 224, 255, 1) 100%
    );
    height: auto;
    border: 1px solid #eee;
    display: block;
    object-fit: cover;
}
.specialties-slider .owl-stage-outer {
    padding-bottom: 10px;
}
.speciality-box {
    background-color: var(--backgroundcolor);
    border: 1px solid var(--bordercolor);
    display: block;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}
.speciality-box:hover {
    border-color: var(--greencolor);
}
.speciality-box .box-body {
    padding: 14px 15px 15px;
}
.speciality-box img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    background-color: #eee;
    font-size: 0px;
}
.speciality-box .title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.speciality-box p {
    margin: 0px;
    font-size: 12px;
    color: var(--graycolor);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.online-consult-filters .box {
    padding: 30px;
    border-radius: 15px;
}
.online-consult-filters .form-control {
    background-color: var(--whitecolor);
}
.online-consult-filters .btn {
    padding: 13px 20px;
}
.consult-doctor-box {
    padding: 20px;
    display: flex;
    gap: 20px;
    background-color: var(--whitecolor);
    border: 1px solid var(--bordercolor);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}
.consult-doctor-box:hover {
    border-color: var(--greencolor);
}
.consult-doctor-box .dr-img {
    position: relative;
    border-radius: 10px;
    width: 110px;
    text-align: center;
}
.consult-doctor-box .dr-img .main-img {
    width: 100% !important;
    height: 100px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--greencolor);
    padding: 3px;
}
.consult-doctor-box .dr-img .ver-img {
    height: 30px;
    object-fit: contain;
    margin-top: -15px;
}
.consult-doctor-box .box-body {
    width: calc(100% - 130px);
}
.consult-doctor-box .box-body .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.consult-doctor-box .box-body .dr-info {
    font-size: 14px;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.consult-doctor-box .box-body .dr-exp {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 15px;
    margin-bottom: 5px;
    color: var(--graycolor);
}
.consult-doctor-box .box-body .dr-exp i {
    color: var(--blackcolor);
    margin-right: 3px;
}
.consult-doctor-box .box-body .dr-highlights {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 12px;
    margin-top: 12px;
}
.consult-doctor-box .box-body .dr-highlights p {
    margin: 0px;
}
.consult-doctor-box .box-body .dr-highlights b {
    font-size: 14px;
    font-weight: 700;
}
.consult-doctor-box .box-body .dr-highlights .btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.consult-doctor-box .box-body .dr-highlights .btn {
    margin-left: auto;
}
/* Online Consultation Work End */

/* Mission & Vision Work Start */
.mission-vision .box {
    padding: 30px;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 20px;
}
.mission-vision .box.color1 {
    background-color: #19838a29;
}
.mission-vision .box.color2 {
    background-color: #14528529;
}
.mission-vision .box .icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whitecolor);
}
.mission-vision .box.color1 .icon {
    background-color: #19838a;
}
.mission-vision .box.color2 .icon {
    background-color: #145285;
}
.mission-vision .box .content {
    width: calc(100% - 115px);
}
.mission-vision .box .title {
    font-size: 22px;
    font-weight: 700;
}
.mission-vision .box p {
    margin: 0px;
    font-size: 14px;
}
/* Mission & Vision Work End */

/* About Us Work Start */
.about-partners .box {
    border: 1px solid #ddd;
    background: linear-gradient(90deg, #fff 0%, #eee 100%);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-partners .box .content {
    width: calc(100% - 45px);
}
.about-partners .box .title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0px;
}
.about-partners .box p {
    margin: 0px;
    font-size: 14px;
}
.about-partners .box i {
    font-size: 30px;
}
/* About Us Work End */

/* Contact Us Work Start */
.contactus .section-heading2 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 25px;
}
.contactus .section-heading2 span {
    background: linear-gradient(to right, #04cc8b 0%, #1867d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contactus p {
    font-weight: 500;
    margin-bottom: 30px;
}
.contactus .contact-list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
    list-style: none;
    font-weight: 500;
}
.contactus .contact-list a {
    color: var(--blackcolor);
    display: flex;
    align-items: center;
    gap: 15px;
}
.contactus .contact-list a i {
    color: var(--greencolor);
    font-size: 24px;
    width: 24px;
    text-align: center;
}
.contactus .contact-list a span {
    width: calc(100% - 39px);
}
.contactus .social-icons {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
.contactus .social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--greencolor);
    font-size: 16px;
    color: var(--whitecolor);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contactus .social-icons a.facebook {
    background-color: #1877f2;
}
.contactus .social-icons a.insta {
    background-image: linear-gradient(
        45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d
    );
}
.contactus .social-icons a.twitter {
    background-color: #000;
}
.contactus .social-icons a.linkedin {
    background-color: #0077b5;
}
.contactus-map .title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}
.contactus-map iframe {
    height: 200px;
    border-radius: 15px;
}
/* Contact Us Work End */

/* Diabetes Work Start */
.diabetes-about .section-heading2 {
    text-transform: uppercase;
    margin-bottom: 20px;
}
.diabetes-about p {
    font-size: 16px;
    margin-bottom: 30px;
}
.diabetes-about p strong {
    font-weight: 500;
}
.diabetes-about ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
}
.diabetes-about ul li {
    width: calc(50% - 10px);
    position: relative;
    padding-left: 30px;
}
.diabetes-about ul li:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: var(--greencolor);
    font-size: 18px;
}
.diabetes-about .center-img {
    height: 100%;
    position: relative;
}
.diabetes-about .center-img .big-img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}
.diabetes-about .center-img .small-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    position: absolute;
    bottom: -30px;
    left: -15px;
    animation: imgeffect 3s infinite linear !important;
}
@keyframes imgeffect {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(10px, 10px);
    }
    50% {
        transform: translate(-10px, -10px);
    }
    50% {
        transform: translate(10px, 10px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.diabetes-about .why-choose {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    gap: 30px;
}
.diabetes-about .why-choose .box {
    display: flex;
    gap: 15px;
}
.diabetes-about .why-choose .box .circle {
    width: 80px;
    height: 80px;
    background-color: #eee;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diabetes-about .why-choose .box .circle img {
    font-size: 0px;
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.diabetes-about .why-choose .box .details {
    padding: 0px;
    margin: 0px;
    width: calc(100% - 95px);
}
.diabetes-about .why-choose .box .details .title {
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 700;
}
.diabetes-about .why-choose .box .details p {
    margin-bottom: 0px;
    font-size: 18px;
    color: var(--gray);
}

.diabetes-plans .section-heading2 {
    text-transform: uppercase;
    margin-bottom: 30px;
}
.diabetes-plans .box {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    border: 1px solid #06875c;
    background-image: linear-gradient(to bottom, #d5f4f0, #fff, #fff);
    padding: 20px 20px 90px;
    border-radius: 20px;
    margin-top: 20px;
    height: calc(100% - 20px);
    position: relative;
}
.diabetes-plans .box .title {
    color: #06875c;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 15px;
}
.diabetes-plans .box .price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.diabetes-plans .box hr {
    margin-bottom: 10px;
}
.diabetes-plans .box ul {
    list-style: none;
    margin: 15px 0px 0px;
    padding: 0;
}
.diabetes-plans .box ul li {
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}
.diabetes-plans .box ul li:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: var(--greencolor);
    font-size: 14px;
}
.diabetes-plans .box .btn {
    border-radius: 50px;
    margin-top: 15px;
    background-image: linear-gradient(to bottom right, #308c6f, #114866);
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    padding: 15px 20px;
}
.diabetes-plans .box .btn:focus {
    color: var(--whitecolor);
}
.diabetes-plans .box.blue {
    border-color: #2e7fb8;
    background-image: linear-gradient(to bottom, #d5dff4, #fff, #fff);
}
.diabetes-plans .box.blue .title {
    color: #2e7fb8;
}
.diabetes-plans .box.blue .btn {
    background-image: linear-gradient(to bottom right, #2e7fb8, #114866);
}

.diabetes-faq .section-heading2 {
    text-transform: uppercase;
}
.diabetes-faq .faq-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #19838a33;
    height: 100%;
    border-radius: 20px;
    box-shadow:
        rgba(0, 0, 0, 0.2) 0px 3px 3px -2px,
        rgba(0, 0, 0, 0.14) 0px 3px 4px 0px,
        rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
}

.diabetes-plan-form .section-heading2 {
    text-transform: uppercase;
    margin-bottom: 30px;
}
.diabetes-plan-form .price {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}
.diabetes-plan-form .btn {
    border-radius: 50px;
    padding: 15px 20px;
    margin-top: 15px;
    background-image: linear-gradient(to bottom right, #308c6f, #114866);
}
@media (max-width: 1200px) {
    .diabetes-about .section-heading2 {
        margin-bottom: 15px;
    }
    .diabetes-about p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .diabetes-about ul {
        gap: 5px;
        font-size: 14px;
    }
    .diabetes-about ul li {
        padding-left: 25px;
        width: calc(50% - 2.5px);
    }
    .diabetes-about ul li:before {
        font-size: 14px;
    }
    .diabetes-about .center-img .small-img {
        width: 100px;
        height: 100px;
    }
    .diabetes-about .why-choose .box .circle {
        width: 60px;
        height: 60px;
    }
    .diabetes-about .why-choose .box .circle img {
        width: 30px;
        height: 30px;
    }
    .diabetes-about .why-choose .box .details {
        width: calc(100% - 75px);
    }
    .diabetes-about .why-choose .box .details .title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .diabetes-about .why-choose .box .details p {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .diabetes-banner img {
        border-radius: 0px 0px 20px 20px;
    }
    .diabetes-about .section-heading2,
    .diabetes-plans .section-heading2,
    .diabetes-faq .section-heading2,
    .franchise-form .section-heading2 {
        margin-bottom: 10px;
    }
    .diabetes-about .center-img .big-img {
        height: 400px;
        margin: 30px 0px 0px;
    }
    .diabetes-about .center-img .small-img {
        left: 0px;
        bottom: -5px;
        width: 80px;
        height: 80px;
    }
    .diabetes-plans .box .title {
        font-size: 20px;
        line-height: 24px;
    }
    .diabetes-plans .box .price {
        font-size: 18px;
    }
    .diabetes-faq .faq-accordian {
        max-height: auto !important;
        padding-right: 0px !important;
        margin-top: 20px;
    }
}
/* Diabetes Work End */

/* Pharmacy Work Start */
.pharmacy-banner {
    position: relative;
    overflow: hidden;
    background-position: center top;
    background-size: cover;
}
.pharmacy-banner .content {
    width: 100%;
    text-align: center;
    padding: 30px 15px;
}
.pharmacy-banner .content .section-heading2 {
    color: var(--whitecolor);
    margin-bottom: 20px;
}
.pharmacy-banner .content .upload-filed {
    background-color: var(--whitecolor);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px;
    border-radius: 8px;
    color: #878787;
    font-size: 16px;
    white-space: nowrap;
}
.pharmacy-banner .upload-filed button {
    display: inline-flex;
    gap: 10px;
}
.pharmacy-h-with-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left !important;
}
.pharmacy-h-with-btn span {
    width: 56%;
}
.pharmacy-h-with-btn .link-btn {
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid var(--greencolor) !important;
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0px;
}
.pharmacy-h-with-btn .link-btn:hover {
    color: var(--btn2color);
}
.pharmacy-categories a {
    text-align: center;
    display: block;
}
.pharmacy-categories a img {
    width: 130px !important;
    height: 130px;
    object-fit: contain;
    background-color: #44c09b5c;
    margin: 0px auto 10px;
    border-radius: 10px;
    font-size: 0px;
}
.pharmacy-categories .owl-item:nth-child(even) a img {
    background-color: #2987ca5c;
}
.pharmacy-categories a p {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    margin: 0px;
    text-transform: capitalize;
}

.pharmacy-brands a {
    text-align: center;
    display: block;
}
.pharmacy-brands a .circle {
    width: 130px;
    height: 130px;
    transition: all 0.3s 0s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/pharmacy/logo-circle.webp");
    background-size: 100% 100%;
    margin: 0 auto;
}
.pharmacy-brands a .circle img {
    object-fit: contain;
    width: 80%;
    height: 50px;
    font-size: 0px;
}
.pharmacy-brands a p {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    margin: 0px;
    text-transform: capitalize;
}

.pharmacy-product-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.pharmacy-product-box .alert {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    font-size: 10px;
    padding: 5px 8px;
}
.pharmacy-product-box .product-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 15px auto;
    display: block;
    transition: all 0.3s 0s linear;
}
.pharmacy-product-box:hover .product-img {
    transform: scale(1.05, 1.05);
}
.pharmacy-product-box .vendor-logo {
    width: 60px !important;
    height: 40px;
    object-fit: contain;
    padding: 3px;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 5px;
}
.pharmacy-product-box .box-content {
    background-color: #ededed;
    padding: 15px;
}
.pharmacy-product-box .title {
    font-size: 14px;
    font-weight: 700;
    margin: 0px 0px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.pharmacy-product-box .title a {
    color: var(--blackcolor);
}
.pharmacy-product-box p {
    font-size: 14px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.pharmacy-product-box .price {
    font-size: 14px;
    font-weight: bold;
    margin: 0px 0px 10px;
}
.pharmacy-product-box .price small {
    font-size: 12px;
    margin-right: 7px;
}
@media (max-width: 767px) {
    .pharmacy-categories a img {
        width: 110px !important;
        height: 110px;
    }
    .pharmacy-product-box .product-img {
        width: 100px;
        height: 100px;
        margin: 35px auto 15px;
    }
    .pharmacy-product-box .vendor-logo {
        width: 50px;
        height: 35px;
        padding: 3px;
        top: 5px;
        right: 5px;
    }
    .pharmacy-product-box .title {
        font-size: 14px;
        margin: 0 0 5px;
    }
}
/* Pharmacy Work End */

/* Lab Landing Page Work Start */
.featured-checkups .box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.featured-checkups .box.active {
    border-color: var(--greencolor);
    background-color: #19838a20;
}
.featured-checkups .box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    font-size: 0px;
}
.featured-checkups .box p {
    margin: 0px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}
.lab-package {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition);
}
.lab-package:hover {
    border-color: var(--greencolor);
}
.lab-package .package-name {
    display: flex;
    align-items: center;
    gap: 15px;
}
.lab-package .package-name .package-img {
    width: 100px;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #eee;
    font-size: 0px;
}
.lab-package .package-name .content {
    width: calc(100% - 115px);
}
.lab-package .package-name .content .thyrocare-logo {
    width: auto;
    height: 25px;
    object-fit: contain;
    margin-bottom: 5px;
}
.lab-package .package-name .content .title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.lab-package .package-name .content p {
    margin-bottom: 0px;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondarycolor);
    opacity: 0.8;
    display: flex;
    gap: 5px;
}
.lab-package .package-name .content p a {
    text-decoration: underline;
}
.lab-package .package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--bordercolor);
}
.lab-package .package-footer .price {
    margin: 0px;
    font-weight: 800;
    font-size: 16px;
    color: var(--blackcolor);
}
.lab-page-slider img {
    border-radius: 20px;
    width: 100%;
}
.popular-lab-tests .box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s 0s linear;
}
.popular-lab-tests .box:hover {
    border-color: var(--greencolor);
}
.popular-lab-tests .box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    font-size: 0px;
}
.popular-lab-tests .box p {
    margin: 0px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}

.lab-health-scans .box {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 15px;
}
.lab-health-scans .box .d-flex {
    align-items: center;
    gap: 15px;
}
.lab-health-scans .box img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #eee;
    font-size: 0px;
}
.lab-health-scans .box .content {
    width: calc(100% - 115px);
}
.lab-health-scans .box .content .title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.lab-health-scans .box .content p {
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondarycolor);
    opacity: 0.8;
}
.lab-cities .box {
    color: var(--blackcolor);
    padding: 12px 15px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s 0s linear;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
    text-transform: capitalize;
    height: 100%;
    line-break: anywhere;
}
.lab-cities .box:hover {
    border-color: var(--greencolor);
    background: #f5f9ff;
    transform: translateY(-2px);
}

.lab-featured-diagnostics .box {
    border: 1px solid #ddd;
    padding: 10px 20px 20px;
    border-radius: 15px;
    text-align: center;
    display: block;
    color: var(--blackcolor);
    transition: var(--transition);
}
.lab-featured-diagnostics .box:hover {
    border-color: var(--greencolor);
}
.lab-featured-diagnostics .box img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
}
.lab-featured-diagnostics .box .des {
    background: linear-gradient(100deg, #fbfbfb 0%, #eee 50%, #fbfbfb 100%);
    padding: 5px 15px;
    margin: 10px -20px 20px;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    min-height: 31px;
}
.lab-featured-diagnostics .box .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
}
.lab-featured-diagnostics .box .content span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.lab-featured-diagnostics .box .content i {
    font-size: 12px;
    color: #ff9529;
    margin-top: -2px;
}
.lab-prescription .box {
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-radius: 15px;
    color: var(--blackcolor);
}
.lab-prescription .box.color1 {
    background-color: #cdfcff;
}
.lab-prescription .box.color2 {
    background-color: #d3e6ff;
}
.lab-prescription .box .content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lab-prescription .box .content img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    font-size: 0px;
}
.lab-prescription .box .content p {
    margin: 0px;
    font-weight: 700;
    font-size: 18px;
}
.lab-prescription .box i {
    font-size: 18px;
}
/* Lab Landing Page Work End */

/* Diagnostic Centres In City Work Start */
.diagnostic-centres-in-city .box {
    padding: 20px 30px;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
}
.diagnostic-centres-in-city .box img {
    width: 200px;
    height: 60px;
    object-fit: contain;
}
.diagnostic-centres-in-city .box .content {
    width: calc(100% - 350px);
    font-size: 14px;
}
.diagnostic-centres-in-city .box .content .title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}
.diagnostic-centres-in-city .box .content p {
    margin-bottom: 3px;
}
.diagnostic-centres-in-city .box ul {
    margin: 10px 0px 0px;
}
.diagnostic-centres-in-city .box ul a {
    color: var(--blackcolor);
}
.diagnostic-centres-in-city .box ul a:hover {
    color: var(--greencolor);
}
/* Diagnostic Centres In City Work End */

/* captcha_group work start */
.captcha_group .btn {
    padding: 0px;
    width: 50px;
    border-radius: 0px 10px 10px 0px;
    font-size: 16px;
    background-color: #e3eaf7;
    border: 1.5px solid #eaeaec;
    color: var(--blackcolor) !important;
}
.captcha_group img {
    padding: 5px 10px;
    background-color: #f9fafc;
    border: 1.5px solid #eaeaec;
    height: 48.1px;
}
/* captcha_group work end */

/* Upload Prescription Work Start */
.upload-prescription .web-form-box {
    height: calc(100% - 50px);
}
.upload-prescription .prescription-img {
    width: 100%;
}
.upload-prescription ul {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    line-height: 18px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.upload-prescription ul li {
    display: flex;
    gap: 10px;
}
.upload-prescription ul li i {
    color: var(--greencolor);
}
/* Upload Prescription Work End */

/* Addresses Modal Work Start */
.address-modal .btn-close {
    box-shadow: none;
}
.address-modal .modal-title {
    font-size: 16px;
    font-weight: 700;
}
.address-modal .modal-footer {
    justify-content: center;
}
.address-modal .web-overflow {
    overflow: auto;
    max-height: 70vh;
}
.address-modal .web-overflow::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.address-modal .web-overflow::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0px;
}
.address-modal .web-overflow::-webkit-scrollbar-thumb {
    background-color: var(--greencolor);
    border-radius: 0px;
}
.address-radio:first-child {
    background-color: #eee;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.address-radio label {
    margin: 0;
    position: relative;
    display: block;
    padding: 0px 0px 0px 30px;
    cursor: pointer;
}
.address-radio label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid #a3a3a3;
    background-color: #eee;
    border-radius: 5px;
}
.address-radio label::after {
    content: "";
    position: absolute;
    background: url("../images/check.webp") center no-repeat;
    background-size: 10px;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
    filter: invert(1);
}
.address-radio input:checked ~ label::before {
    background-color: var(--greencolor);
    border-color: var(--greencolor);
}
.address-radio input:checked ~ label::after {
    opacity: 1;
}
.address-radio {
    border: 1px solid #a3a3a3;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 15px;
    overflow: hidden;
}
.address-radio.active {
    background-color: #19838a29;
    border-color: var(--greencolor);
}
.address-radio.active .default {
    background-color: var(--greencolor);
    color: white;
}
.address-radio .default {
    background-color: #bbbbbb;
    margin: -10px -20px 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
}
.address-radio label {
    padding-left: 35px;
    line-break: anywhere;
    font-size: 14px;
}
.address-radio label a {
    font-weight: 500;
}
.address-radio .btn {
    display: inline-block;
    border: 1px solid #ddd;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-right: 0px;
    transition: all 0.3s 0s linear;
    margin-top: 10px;
    background-color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 15px;
}
.address-radio .btn:hover {
    background-color: var(--btn2color);
    border-color: var(--btn2color);
    color: var(--whitecolor);
}
.address-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.address-box .default {
    background-color: #eee;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
}
.address-box .default .link-btn {
    font-size: 12px;
}
.address-box .box-body {
    padding: 15px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.address-box .box-body .content {
    width: calc(100% - 145px);
}
.address-box .box-body p {
    margin: 0px;
    font-size: 14px;
}
/* Addresses Modal Work End */

/* My Account Work Start */
.my-account .dashboard-h {
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.my-account-box {
    background: var(--whitecolor);
    border-radius: 15px;
    padding: 15px 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}
.my-account-box .box-body {
    /* padding: 15px 20px; */
    font-size: 14px;
    line-height: 20px;
}
.my-account-box .box-body p {
    margin-bottom: 3px;
}
.my-account-box .box-body p b {
    font-weight: 700;
}
.my-account-box .box-body .alert {
    padding: 0px 5px;
    font-weight: 500;
    font-size: 12px;
    margin: 3px 0px 0px;
    display: inline-block;
}
.my-account-box .box-body .web-btn {
    min-width: 120px;
}
.my-account-box .box-body .alert-success {
    background-color: #44c09b1f;
}
.my-account-box .box-body .alert-danger {
    background-color: #ffeaec;
}
/* My Account Work End */

/* health plans page work start */

.about-health-plans {
    padding: 60px 0;
    background-color: white;
    position: relative;
}

.about-health-plans .container {
    position: relative;
    z-index: 1;
}

.about-health-plans h5.top-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--greencolor);
    display: inline-block;
}

.about-health-plans h2.main-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.about-health-plans p {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 26px;
}

.about-health-plans .web-btn {
    margin-right: 20px;
}

.about-health-plans .btn {
    padding: 8px 20px;
}

.about-health-plans .btn {
    padding: 8px 20px;
}

.about-health-plans .about-health-plan-user-img {
    width: 100px;
    margin-right: 20px;
}

.about-health-plans .about-health-plan-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #eee;
}

.why-choose-health-plan {
    padding: 60px 0;
    background-color: white;
}

.why-choose-health-plan img {
    width: 100%;
}

.why-choose-health-plan h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-choose-health-plan p {
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 0;
}

.health-plans .health-plan-page-new-box {
    padding: 20px !important;
    border-radius: 10px !important;
    border: 1px solid #eee;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 15%);
    min-height: 850px;
    height: auto !important;
    margin: 15px !important;
}

.health-plans .health-plan-page-new-box .box-head {
    border: none;
}

.health-plans .health-plan-page-new-box .box-head img {
    border-radius: 10px !important;
    margin-bottom: 15px;
}

.health-plans .health-plan-page-new-box h3 {
    font-size: 26px;
}

.health-plans .health-plan-page-new-box ul {
    padding: 20px 20px 12px 30px !important;
    list-style: none;
}

.health-plans .health-plan-page-new-box ul li {
    position: relative;
}

.health-plans .health-plan-page-new-box ul li::after {
    content: "\f00c";
    display: block;
    position: absolute;
    left: -25px;
    top: 0;
    /* transform: translate(0, -50%); */
    font-family: "fontawesome";
    color: var(--greencolor);
}

.health-plans .health-plan-page-new-box .web-btn {
    border-radius: 10px;
    position: absolute;
    bottom: 20px;
    width: 90%;
    left: 50%;
    transform: translate(-50%, 0);
}

.health-plan-modal .modal-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .about-health-plans {
        padding: 30px 0;
    }

    .about-health-plans .about-health-plan-img {
        border-radius: 0;
        margin-bottom: 20px;
    }

    .about-health-plans .top-title {
        margin-bottom: 20px !important;
        font-size: 18px !important;
    }

    .about-health-plans .main-title {
        font-size: 23px !important;
        margin-bottom: 20px !important;
    }

    .about-health-plans p {
        font-size: 15px;
        line-height: 20px;
    }

    .why-choose-health-plan {
        padding: 30px 0;
    }

    .why-choose-health-plan h2 {
        font-size: 26px;
        font-weight: 600;
    }

    .why-choose-health-plan p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .health-plan-howitworks h2 {
        text-align: center;
    }

    .health-plan-howitworks h2 + p {
        text-align: center;
    }

    .health-plan-mobile-heading {
        justify-content: center;
    }

    .health-plan-mobile-heading h2 {
        text-align: center;
    }

    .mobile-text-center {
        text-align: center;
    }
}

@keyframes moveDot {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50px, 30px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
}

.web-banner-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.web-banner-bg-animation .dot {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #19838a70;
    opacity: 0.7;
    filter: blur(8px);
    animation: moveDot 20s infinite ease-in-out alternate;
}

.web-banner-bg-animation .dot-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.web-banner-bg-animation .dot-2 {
    bottom: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background-color: #19828a35;
    animation-delay: 5s;
}
.web-banner-bg-animation .dot-3 {
    top: 30%;
    left: 90%;
    animation-delay: 10s;
}
.web-banner-bg-animation .dot-4 {
    bottom: 5%;
    left: 25%;
    width: 20px;
    height: 20px;
    animation-delay: 15s;
}

.health-plans {
    padding: 0 0 60px;
}

.health-plans .plans-box {
    padding: 20px;
    border-radius: 20px;
    background-color: var(--whitecolor);
    box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    min-height: 900px;
    position: relative;
    margin: 0 15px 15px;
}

.health-plans .plans-box img {
    width: 100%;
    border-radius: 10px;
}

.health-plans .plans-box .plans-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.health-plans .plans-box .plans-price {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--greencolor);
}

.health-plans .plans-box .plans-list {
    list-style: none;
    padding-left: 25px;
}

.health-plans .plans-box .plans-list li {
    margin-bottom: 10px;
    position: relative;
}

.health-plans .plans-box .plans-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: -25px;
    top: 0;
    font-size: 18px;
    color: var(--greencolor);
    font-weight: 900;
}

.health-plans .plans-box .web-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 90%;
}

.plans-benefits {
    padding-bottom: 60px;
}

.plans-benefits .benefit-box {
    padding: 20px;
    border-radius: 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.plans-benefits .benefit-box h5 {
    font-size: 18px;
}

.plans-benefits .benefit-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 0;
    margin-top: 15px;
}

/* health plans page work end */

/* online-consult-health-concern Work Start */
.health-concern-box {
    background-color: var(--backgroundcolor);
    border: 1px solid var(--bordercolor);
    display: block;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    padding: 20px 15px;
    text-align: center;
}
.health-concern-box:hover {
    border-color: var(--greencolor);
}
.health-concern-box img {
    width: 50px !important;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 20px;
}
.health-concern-box .des {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.health-concern-box .price {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 700;
    color: var(--greencolor);
}
/* online-consult-health-concern Work End */

/* online-consult-videos Work Start */
.doctor-video-box {
    display: block;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.doctor-video-box .img-box {
    margin-bottom: 15px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 220px;
}
.doctor-video-box .vg-play-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.45);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    z-index: 3;
    transition:
        background 0.2s ease,
        transform 0.18s ease;
}
.doctor-video-box:hover .vg-play-circle {
    background: rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -50%) scale(1.06);
}
.doctor-video-box .img-box .thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ededed;
}
.doctor-video-box p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
/* online-consult-videos Work End */

/* consult-how-it-works Work Start */
.consult-how-it-works .how-it-works-box {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.consult-how-it-works .how-it-works-box:hover {
    border-color: var(--greencolor);
    transform: translateY(-10px);
}
.consult-how-it-works .how-it-works-box .number {
    width: 30px;
    height: 30px;
    background-color: var(--greencolor);
    color: var(--whitecolor);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    font-weight: 600;
}
.consult-how-it-works .how-it-works-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px dashed var(--greencolor);
    background-color: white;
    color: white;
    position: relative;
    padding: 20px;
    z-index: 2;
    margin: 0 auto 15px;
}
.consult-how-it-works .how-it-works-box .icon:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background-color: var(--greencolor);
}
.consult-how-it-works .how-it-works-box .icon img {
    width: 75px;
    height: 83px;
    object-fit: contain;
    z-index: 2;
    border-radius: 0px 0px 50% 50%;
    margin-top: -10px;
}
.consult-how-it-works .how-it-works-box .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.consult-how-it-works .how-it-works-box p {
    font-size: 14px;
    line-height: 18px;
    padding: 0px 20px;
    margin: 0px;
}
/* consult-how-it-works Work End */

.consultation-wrapper .live-doctor-consultation {
    padding: 40px 0px;
}

/* Franchise Page Work Start */
.franchise-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e4e1d7;
    background-size: cover;
    padding: 80px 0px;
    color: white;
}
.franchise-banner img {
    height: 40px;
    margin-bottom: 25px;
    object-fit: contain;
}
.franchise-banner .section-heading2 {
    margin-bottom: 20px;
    color: white;
    font-size: 48px;
    line-height: 54px;
}
.franchise-banner .section-heading2 span {
    color: #ffbf00;
}
.franchise-banner p {
    color: var(--whitecolor);
}

.franchise-banner .contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}
.franchise-banner .contact-info .title {
    color: white;
}
.franchise-banner .contact-info a {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s 0s linear;
}
.franchise-banner .contact-info a i {
    font-size: 16px;
    width: 40px;
    height: 40px;
    background-color: var(--greencolor);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.franchise-banner .contact-info a .title {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 700;
    transition: all 0.3s 0s linear;
}
.franchise-banner .contact-info a p {
    margin: 0px;
}
.franchise-strip {
    background-color: #eee;
    overflow: hidden;
}
.franchise-strip .box {
    position: relative;
    margin-bottom: 10px;
}
.franchise-strip .box:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 15px;
    left: 30px;
}
.franchise-strip .box.no-border:after {
    display: none;
}
.franchise-strip .box .number {
    width: 70px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--whitecolor);
    background-color: var(--greencolor);
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.franchise-strip .box img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background-color: #eee;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}
.franchise-strip .box .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.franchise-strip .box p {
    margin: 0px;
}
.franchise-form .box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 0.5rem 1rem;
}
.franchise-form .box .franchise-sub-h {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}
.franchise-form .box .form-group {
    margin-bottom: 0px;
}
.franchise-form .web-form-box {
    border: 1px solid #ddd;
}

.franchise-price .box {
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.franchise-price .box .box-header {
    background-color: var(--greencolor);
    padding: 20px;
    text-align: center;
}
.franchise-price .box .box-body {
    padding: 20px;
}
.franchise-price .box .title {
    margin-bottom: 0px;
    font-size: 18px;
    color: white;
    font-weight: 600;
}
.franchise-price .box .price {
    font-weight: bold;
    margin-bottom: 0px;
    color: white;
    font-size: 40px;
}
.franchise-price .box ul {
    margin: 0px 0px 25px;
    padding: 0px;
    list-style: none;
    font-weight: 500;
}
.franchise-price .box ul li:not(:first-child) {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}
.franchise-price .box ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 14px;
    color: var(--greencolor);
    margin-right: 10px;
}
.franchise-price .box .btn {
    border-radius: 50px;
}
.franchise-form {
    overflow: hidden;
}
.franchise-price {
    overflow: hidden;
}
.faqs-new-design {
    overflow: hidden;
    background-color: rgb(247, 249, 252);
}

.faqs-new-design .faq-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #19838a33;
    height: 100%;
    border-radius: 20px;
    box-shadow:
        rgba(0, 0, 0, 0.2) 0px 3px 3px -2px,
        rgba(0, 0, 0, 0.14) 0px 3px 4px 0px,
        rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
}

.faqs-new-design .faq-accordian {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}
.web-accordion .card-header button.collapsed:before {
    content: "\f067";
    font-family: "Font Awesome\5 Pro";
    font-weight: 900;
    float: right !important;
}
.franchise-faq .card {
    box-shadow:
        0px 2px 1px -1px rgba(0, 0, 0, 0.2),
        0px 1px 1px 0px rgba(0, 0, 0, 0.14),
        0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.franchise-faq .card .card-header {
    padding: 0px;
    background: white;
}

.franchise-banner-qes {
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
}
.franchise-banner-qes .sub-heading {
    color: var(--whitecolor);
    font-weight: 700;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 20px;
}
.franchise-banner-qes .process-img {
    width: 100%;
    height: 280px;
    display: block;
    background-color: white;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
}
.franchise-banner-qes .ul-listing {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--whitecolor);
}
.franchise-banner-qes .ul-listing li {
    position: relative;
    display: flex;
    gap: 10px;
}
.franchise-banner-qes .ul-listing li i {
    font-size: 12px;
    color: white;
    width: 24px;
    height: 24px;
    background-color: var(--greencolor);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.franchise-banner-qes .ul-listing li span {
    width: calc(100% - 34px);
}
.franchise-form .form-control {
    border-radius: 10px;
    background-color: #f9fafc;
    border: 1.5px solid #eaeaec;
    color: black;
    padding: 12px 15px;
    height: auto;
    font-weight: 400;
}
.franchise-form .form-control::placeholder {
    color: #8e8e8e;
}

.franchise-form .form-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100%;
    border-radius: 10px;
    box-shadow:
        rgba(0, 0, 0, 0.2) 0px 3px 3px -2px,
        rgba(0, 0, 0, 0.14) 0px 3px 4px 0px,
        rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
}
.franchise-benefits .franchise-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background-color: #fff;
    padding: 30px 30px 40px;
    height: 100%;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.5s linear;
}
.franchise-benefits .franchise-box:hover {
    border: 2px solid var(--greencolor);
    transform: scale(1.02);
}
.franchise-benefits .franchise-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 30px;
    filter: invert(34%) sepia(72%) saturate(1321%) hue-rotate(152deg)
        brightness(89%) contrast(80%);
}
.franchise-benefits .franchise-box .title {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}
.franchise-benefits .franchise-box p {
    text-align: center;
    margin: 0px;
}
@media (max-width: 1200px) {
    .franchise-banner {
        padding: 30px 0px;
    }
    .franchise-banner .section-heading {
        font-size: 40px;
    }
    .franchise-banner img {
        height: 30px;
    }
    .franchise-banner .contact-info {
        margin-top: 15px;
    }
}
@media (max-width: 992px) {
    .franchise-banner img {
        margin-bottom: 15px;
    }
    .franchise-banner .section-heading {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .franchise-strip {
        padding-bottom: 10px;
    }
    .franchise-strip .box {
        margin-bottom: 20px;
    }
    .franchise-price .box {
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .franchise-banner {
        padding: 15px 0px;
    }
    .franchise-banner img {
        margin-bottom: 10px;
        height: 20px;
    }
    .franchise-banner .section-heading {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .franchise-banner .section-heading + p {
        display: none;
    }
    .franchise-banner .contact-info {
        gap: 10px;
        align-items: start;
        margin-top: 10px;
    }
    .franchise-banner .contact-info a i {
        display: none;
    }
    .franchise-banner .contact-info a .title {
        font-size: 10px;
    }
    .franchise-banner .contact-info a p {
        font-size: 8px;
    }
    .franchise-strip .box .number {
        font-size: 14px;
    }
    .franchise-strip .box {
        margin-bottom: 20px;
    }
    .franchise-strip .box img {
        height: 150px;
    }
    .franchise-strip .box .title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .franchise-strip .box p {
        font-size: 12px;
        line-height: 16px;
    }
    .franchise-strip .box:after {
        display: none;
    }
    .franchise-benefits .franchise-box {
        padding: 15px;
    }
    .franchise-benefits .franchise-box img {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    .franchise-benefits .franchise-box .title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .franchise-benefits .franchise-box p {
        font-size: 12px;
        line-height: 16px;
    }
    .franchise-banner-qes .process-img {
        height: 200px;
        margin-bottom: 15px !important;
        border-radius: 10px;
    }
    .franchise-banner-qes .sub-heading {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .franchise-banner-qes .ul-listing li {
        font-size: 12px;
        line-height: 16px;
    }
    .franchise-form .section-heading {
        margin-bottom: 20px;
    }
    .franchise-form .form-img {
        height: 200px;
        margin-bottom: 15px;
    }
    .franchise-form .box h3 {
        font-size: 16px;
    }
    .franchise-form .sticky-div {
        padding-bottom: 30px;
    }
    .franchise-banner-qes .process-img {
        margin-bottom: 20px;
    }
    .franchise-price .box {
        border-radius: 10px;
    }
    .faqs-new-design {
        padding-bottom: 5px;
    }
}
/* Franchise Page Work End */

/* radiology-service-box Work Start */
.radiology-service-box {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 15px;
    justify-content: space-between;
}
.radiology-service-box .icon {
    width: 50px;
    height: 50px;
    background-color: #19838a15;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.radiology-service-box .content {
    width: calc(100% - 150px);
}
.radiology-service-box .content .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.radiology-service-box .content p {
    font-weight: 600;
    margin-bottom: 2px;
}
.radiology-service-box .content .known {
    color: var(--graycolor);
    font-style: italic;
}
.radiology-service-box .content .time {
    color: var(--greencolor);
    margin-bottom: 0px;
}
.radiology-service-box .btn {
    align-self: center;
}
/* radiology-service-box Work End */

/* Radiology Clinic Work Start */
.radiology-clinic .select-date {
    margin: 0px 0px 30px;
    padding: 0px;
    display: block;
    text-align: center;
}
.radiology-clinic .select-date li {
    list-style: none;
    margin: 0px 5px;
    display: inline-block;
}
.radiology-clinic .select-date li .custom-radio input {
    display: none;
}
.radiology-clinic .select-date li .custom-radio label {
    text-align: center;
    border: 1px solid #ddd;
    width: 70px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 700;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 22px;
    line-height: 22px;
    padding-left: 0px;
    color: var(--blackcolor);
}
.radiology-clinic .select-date li .custom-radio label:before {
    display: none;
}
.radiology-clinic .select-date li .custom-radio label span {
    font-size: 12px;
    color: grey;
    font-weight: 500;
}
.radiology-clinic .select-date li .custom-radio input:checked ~ label {
    border-color: var(--greencolor);
    color: var(--greencolor);
    background-color: #018a9514;
}
.radiology-clinic .select-date li .custom-radio input:checked ~ label span {
    color: var(--greencolor);
}

.radiology-clinic .slot-box {
    height: 100%;
}
.radiology-clinic .slot-box label {
    border: 1px solid #ddd;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.radiology-clinic .slot-box label .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.radiology-clinic .slot-box label .price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
}
.radiology-clinic .slot-box label .check-heading {
    margin-bottom: 10px;
    padding-left: 45px;
    position: relative;
}
.radiology-clinic .slot-box label .check-heading:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #eee;
    left: 0;
    top: 2px;
    border-radius: 10px;
}
.radiology-clinic .slot-box label .check-heading:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0px;
    width: 30px;
    height: 30px;
    background-image: url("../images/check.webp");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
    opacity: 0;
}
.radiology-clinic .slot-box label .check-heading small {
    line-height: 12px;
}
.radiology-clinic .slot-box label .sub-h {
    font-weight: 600;
}
.radiology-clinic .slot-box input:checked ~ label {
    border-color: var(--greencolor);
}
.radiology-clinic .slot-box input:checked ~ label .check-heading:before {
    background-color: var(--greencolor);
}
.radiology-clinic .slot-box input:checked ~ label .check-heading:after {
    opacity: 1;
}
.radiology-clinic .slot-box label p {
    margin-bottom: 0px;
}
.radiology-clinic .slot-box label hr {
    margin: 10px 0px;
}
.radiology-clinic .slot-box label .select-date {
    text-align: left;
    margin-bottom: 0px;
}
.radiology-clinic .slot-box label .select-date li {
    margin-top: 10px;
    margin-right: 5px;
    margin-left: 0px;
}
.radiology-clinic .slot-box label .select-date .custom-radio label {
    height: auto;
    width: auto;
    padding: 3px 10px;
    border-radius: 5px;
    margin-bottom: 0px;
}
.radiology-clinic .slot-box label .select-date .custom-radio label span {
    color: var(--blackcolor);
}
/* Radiology Clinic Work End */

/* Radiology Checkout Work Start */
.radiology-checkout .selected-clinic {
    padding: 20px;
    border-radius: 15px;
    background-color: #19838a15;
    border: 1px solid var(--greencolor);
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}
.radiology-checkout .selected-clinic .content {
    width: calc(100% - 200px);
}
.radiology-checkout .selected-clinic .content .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.radiology-checkout .selected-clinic .content p {
    margin-bottom: 0px;
    font-size: 12px;
}
.radiology-checkout .selected-clinic .date {
    background-color: var(--whitecolor);
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    margin: 0px;
}
.radiology-checkout .radiology-price-table {
    margin-bottom: 20px;
}
.radiology-checkout .radiology-price-table tbody {
    border-top: none;
    border-bottom: 2px dashed #dcdcdc;
}
.radiology-checkout .radiology-price-table tr {
    border: none;
}
.radiology-checkout .radiology-price-table tr td {
    border: none;
    padding: 10px 0px;
    color: #797979;
}
.radiology-checkout .radiology-price-table tr td:last-child {
    text-align: right;
    font-weight: bold;
}
.radiology-checkout .radiology-price-table tfoot {
    font-size: 16px;
}
.radiology-checkout .radiology-price-table tfoot tr td {
    color: var(--blackcolor);
    font-weight: bold;
}
.radiology-checkout .radiology-price-table tfoot tr td:last-child {
    color: var(--greencolor);
}
.radiology-checkout .prescription-box {
    margin-top: 20px;
    border: 1px solid var(--greencolor);
    background-color: #018a9514;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.radiology-checkout .prescription-box .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.radiology-checkout .prescription-box p {
    font-size: 14px;
}
.radiology-checkout .prescription-box .customfileupload {
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 15px;
}
.radiology-checkout .prescription-box .customfileupload .btn {
    cursor: pointer;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.radiology-checkout .prescription-box .customfileupload i {
    font-size: 16px;
}
.radiology-checkout .prescription-box .customfileupload span {
    color: #aaa;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    width: calc(100% - 200px);
}
.radiology-checkout .alert {
    font-weight: bold;
    font-size: 12px;
    border-radius: 10px 10px 0px 0px;
    width: 95%;
    margin: 0 auto;
    padding: 10px 15px;
}
/* Radiology Checkout Work End */

/* Thank you Work Start */
.thankyou-page {
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thankyou-page .icon {
    font-size: 50px;
    margin-bottom: 20px;
    background: linear-gradient(130deg, #14c790, #1f62d3);
    background-clip: text;
    color: transparent;
}
.thankyou-page .title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}
.thankyou-page p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--graycolor);
}
.thankyou-page .btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
/* Thank you Work End */

/* Simple Checkbox Work Start */
.simple-checkbox {
    display: inline-flex;
}
.simple-checkbox input {
    display: none;
}
.simple-checkbox label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 13px;
}
.simple-checkbox label:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #f9fafc;
    border: 1.5px solid #eaeaec;
    left: 0;
    top: 0;
    border-radius: 5px;
}
.simple-checkbox input:checked ~ label:before {
    background-color: var(--greencolor);
    border-color: var(--greencolor);
}
.simple-checkbox label:after {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    left: 0;
    top: 0;
    color: #f9fafc;
}
.simple-checkbox input:checked ~ label:after {
    color: var(--whitecolor);
}
/* Simple Checkbox Work End */

/* Doctor Listing Box Work Start */
.doctor-listing-box {
    padding: 15px;
    gap: 15px;
}
.doctor-listing-box .dr-img {
    width: 80px;
}
.doctor-listing-box .dr-img .main-img {
    width: 100% !important;
    height: 70px;
}
.doctor-listing-box .box-body {
    width: calc(100% - 95px);
}

.doctor-listing-box .rating {
    font-size: 12px;
    font-weight: 600;
    color: #ff9529;
    background: #ff952910;
    border-radius: 10px;
    padding: 4px 8px;
    display: inline-block;
    margin-top: 8px;
}

.doctor-listing-box .rating .star {
    color: #ff9529;
    margin-right: 2px;
}

.doctor-listing-box .box-body .dr-exp li:first-child {
    min-width: 113px;
}
.doctor-listing-box .box-body .dr-exp li:last-child {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.doctor-filters-offcanvas .speciality-filters {
    height: auto;
    overflow: hidden;
}
/* Doctor Listing Box Work End */

/* Header Work Start */
.mobile-sideheader-btn {
    padding: 0px;
    border: none;
    background-color: transparent;
    font-size: 20px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-sideheader-btn:last-child {
    font-size: 24px;
}
.header-sidebar .offcanvas-body {
    overflow-x: hidden;
}
.header-sidebar .logo img {
    height: 35px;
}
.header-sidebar .offcanvas-header {
    border-bottom: 1px solid #ddd;
}
.header-sidebar li {
    position: relative;
    line-height: 20px;
    display: inline-block;
    width: 100%;
}
.header-sidebar .nav-item .nav-link {
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #343434;
    padding: 12px 20px;
    margin: 5px 0;
    transition: all 0.3s 0s linear;
    border-radius: 10px;
    text-transform: uppercase;
}
.header-sidebar .nav-item.active .nav-link,
.header-sidebar .nav-item .nav-link:hover,
.header-sidebar .nav-item .nav-link:active,
.header-sidebar .nav-item .nav-link:focus,
.header-sidebar .nav-item .show:hover,
.header-sidebar .nav-item .show:active,
.header-sidebar .nav-item .show:focus {
    color: #fff;
    background-color: var(--greencolor);
}
.header-sidebar .dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #343434;
    padding: 12px 20px;
    margin: 5px 0;
    transition: all 0.3s 0s linear;
    border-radius: 10px;
    text-transform: uppercase;
}
.header-sidebar .dropdown .dropdown-toggle:hover,
.header-sidebar .dropdown .dropdown-toggle:active,
.header-sidebar .dropdown .dropdown-toggle:focus {
    color: #fff;
    background-color: var(--greencolor);
}
.header-sidebar .dropdown .dropdown-menu {
    position: relative !important;
    width: 100%;
    padding: 8px 0 14px;
    border-radius: 10px;
    border: none;
    background-color: #eee;
    box-shadow: none;
    transform: none !important;
}
.header-sidebar .dropdown .dropdown-menu li a,
.header-sidebar .dropdown .dropdown-menu li a:hover {
    margin: 0;
    padding: 8px 20px;
    background-color: transparent;
    color: #343434;
}
.header-sidebar .dropdown .dropdown-menu li.active a {
    color: var(--greencolor);
}
.header-sidebar .bottom-header-menu {
    flex-direction: column;
    gap: 0px;
}
.mobile-sidebar-number {
    padding: 0;
    margin: 0;
}
.mobile-sidebar-number li {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 20px;
    overflow-wrap: break-word;
}
.mobile-sidebar-number li .img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: var(--greencolor);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-sidebar-number li .img img {
    object-fit: contain;
    height: 20px;
    width: 15px;
}
.mobile-sidebar-number li p {
    width: calc(100% - 45px);
    margin: 0;
    line-height: 13px;
    font-size: 13px;
    color: #343434;
    font-weight: 500;
}
.mobile-sidebar-number li p a {
    color: #343434 !important;
    padding: 0 !important;
    font-size: 13px !important;
}
.header-sidebar .sidebar-footer {
    border-top: 1px solid #ddd;
    text-align: center;
    margin: 20px -16px -16px;
    width: calc(100% + 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-sidebar .sidebar-footer a {
    padding: 10px;
}
.header-sidebar .sidebar-footer img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}
/* Header Work End */

/* New Doctor Details Work Start */
.new-doctor-details .consult-doctor-box {
    margin-bottom: 20px;
    padding: 20px;
}
.new-doctor-details .consult-doctor-box .dr-img {
    width: 120px;
}
.new-doctor-details .consult-doctor-box .dr-img .main-img {
    height: 110px;
}
.new-doctor-details .consult-doctor-box .box-body {
    width: calc(100% - 135px);
}
.new-doctor-details .consult-doctor-box .box-body .title {
    font-size: 20px;
    margin-bottom: 8px;
}
.new-doctor-details .consult-doctor-box .box-body .dr-info {
    margin-bottom: 8px;
    -webkit-line-clamp: unset;
}
.new-doctor-details .consult-doctor-box .box-body .dr-exp {
    margin-bottom: 8px;
}
.doctor-detail-tabs {
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    margin-bottom: 1px;
}
.doctor-detail-tabs .nav-link {
    background-color: #eee;
    border-radius: 10px 10px 0px 0px;
    border: none;
    color: var(--blackcolor) !important;
    padding: 10px 25px;
    font-weight: 600;
    min-width: 141px;
    text-align: center;
}
.doctor-detail-tabs .nav-link.active {
    color: var(--whitecolor) !important;
    background-color: var(--greencolor);
}
.new-doctor-details .detail-box {
    background-color: var(--whitecolor);
    border: 1px solid var(--bordercolor);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
    padding: 30px;
    border-radius: 15px;
}
.detail-box .accordion-item {
    border-radius: 0px !important;
    border: none !important;
}
.detail-box .accordion-button {
    background-color: transparent;
    padding: 0px;
    box-shadow: none;
}
.detail-box .accordion-button:after {
    display: none;
}
.new-doctor-details .consultation-list li {
    padding: 10px 0px;
    border-color: #ddd;
    margin-bottom: 0px !important;
}
.new-doctor-details .detail-box .title {
    font-size: 16px;
    font-weight: 600;
}
.new-doctor-details .detail-box p {
    margin-bottom: 0px;
}
/* New Doctor Details Work End */

/* Single Doctor Detail Page Start */
.doctor-detail .doctor-detail-card {
    background: #fff;
    border: 1px solid var(--bordercolor);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}
.doctor-detail .doctor-detail-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    background: #e8f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.doctor-detail .doctor-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.doctor-detail .doctor-detail-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--blackcolor);
    margin-bottom: 10px;
}
.doctor-detail .doctor-detail-contact {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}
.doctor-detail .doctor-detail-contact i,
.doctor-detail .doctor-detail-address i {
    color: var(--greencolor);
    margin-right: 6px;
    width: 16px;
}
.doctor-detail .doctor-detail-address {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}
.doctor-detail .speciality-badge {
    display: inline-block;
    padding: 5px 16px;
    background: #eaf6f8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--greencolor);
    border: 1px solid #d0eef2;
}
.doctor-detail .share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.doctor-detail .share-buttons span {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}
.doctor-detail .share-buttons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.doctor-detail .share-buttons a:nth-child(2) {
    background: #1877f2;
}
.doctor-detail .share-buttons a:nth-child(3) {
    background: #1da1f2;
}
.doctor-detail .share-buttons a:nth-child(4) {
    background: #25d366;
}
.doctor-detail .share-buttons a:nth-child(5) {
    background: #6c757d;
}
.doctor-detail .share-buttons a:hover {
    opacity: 0.85;
}

.doctor-detail .detail-box {
    background: #fff;
    border: 1px solid var(--bordercolor);
    border-radius: 15px;
    padding: 25px;
}
.doctor-detail .detail-box .title {
    font-size: 18px;
    font-weight: 600;
    color: var(--blackcolor);
    margin-bottom: 15px;
}
.doctor-detail .detail-faqs h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--blackcolor);
}
.doctor-detail .detail-faqs p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.similar-doctors-list {
    display: flex;
    flex-direction: column;
}
.similar-doctor-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    transition: all 0.2s ease;
}
.similar-doctor-item:last-child {
    border-bottom: none;
}
.similar-doctor-item:hover {
    background: #f8f9fa;
    padding-left: 5px;
}
.similar-doctor-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--blackcolor);
    margin-bottom: 3px;
}
.similar-doctor-item p {
    font-size: 12px;
    color: #888;
    margin-bottom: 0;
}
/* Single Doctor Detail Page End */

/* Doctor Booking Confirmation Work Start */
.doctor-booking-confirmation {
    padding: 60px 0px;
    background-color: white;
}
.doctor-booking-confirmation .box {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}
.doctor-booking-confirmation .box .box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.doctor-booking-confirmation .box .img-box {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-color: #eee;
    background-position: center top;
    background-size: cover;
}
.doctor-booking-confirmation .box .name .doctor-name {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    display: flex;
    margin-bottom: 5px;
    margin-top: 0px;
    color: var(--blackcolor);
}
.doctor-booking-confirmation .box .name p {
    margin-bottom: 3px;
    font-size: 16px;
}
.doctor-booking-confirmation .box .name p b {
    color: var(--blackcolor);
    font-weight: bold;
}
.doctor-booking-confirmation .box .prescription {
    margin-left: auto;
    text-align: right;
}
.doctor-booking-confirmation .box .prescription p {
    margin-bottom: 0px;
    color: #676767;
}
.doctor-booking-confirmation .box .prescription .link-btn {
    font-size: 13px;
    padding-bottom: 3px;
}
.doctor-booking-confirmation .box .box-body {
    background-color: #018a951a;
    padding: 5px 20px 20px;
}
.doctor-booking-confirmation .box .info-item {
    margin-top: 15px;
}
.doctor-booking-confirmation .box .info-item p {
    margin-bottom: 0px;
    color: #676767;
}
.doctor-booking-confirmation .box .info-item b {
    color: var(--blackcolor);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.doctor-booking-confirmation .box .info-item i {
    font-size: 14px;
}
.doctor-booking-confirmation .box .info-item .info-line {
    color: #c3c3c3;
    font-weight: 400;
    margin: 0px 3px;
}
.doctor-booking-confirmation .box .box-footer {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.doctor-booking-confirmation .box .box-footer .prescription {
    margin-left: 0px;
    text-align: left;
}
/* Doctor Booking Confirmation Work End */

/* lab-listing-section Work Start */
.lab-listing-section .lab-package:hover {
    transform: translateY(-5px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.03);
}
.lab-tests-modal .list-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.lab-tests-modal .list-group li {
    background-color: #19838a20;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 50px;
    list-style: none;
}
/* lab-listing-section Work End */

/* product list filter work start */

.sm-filter-inner .filter-btns-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.sm-filter-inner .filter-btns-wrapper a,
.sm-filter-inner .filter-btns-wrapper button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: none;
    outline: none;
}

.sm-filter-inner .filter-btns-wrapper .reset-filter-btn {
    background-color: #d1000015;
    border: 1px solid #d10000;
    color: #d10000;
}

.sm-filter-inner .filter-btns-wrapper .close-btn {
    background-color: #44444415;
    border: 1px solid #ccc;
    color: #444;
}

.product-filter-offcanvas {
    width: 75% !important;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

.product-filter-offcanvas .offcanvas-body {
    padding: 0;
}

/* product list filter work end */

/* pharma prescription upload page work start */

.pharmacy-prescription-section .prescription-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pharmacy-prescription-section .prescription-header {
    background-color: var(--greencolor);
    color: white;
    padding: 20px 25px;
    border-radius: 20px 20px 0 0;
    margin: -30px -30px 20px -30px;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pharmacy-prescription-section .prescription-header i {
    font-size: 1.5rem;
}

.pharmacy-prescription-section .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.pharmacy-prescription-section .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pharmacy-prescription-section .form-control:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.pharmacy-prescription-section .form-control::placeholder {
    color: #999;
}

.pharmacy-prescription-section .file-upload-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.pharmacy-prescription-section .file-input-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f7ff 100%);
    border: 2px dashed #4ecdc4;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 140px;
}

.pharmacy-prescription-section .file-input-label:hover {
    background: linear-gradient(135deg, #e0f7ff 0%, #d0f0ff 100%);
    border-color: #44a08d;
}

.pharmacy-prescription-section .file-input-label i {
    font-size: 2rem;
    color: #4ecdc4;
}

.pharmacy-prescription-section .file-input-label .file-text {
    text-align: center;
}

.pharmacy-prescription-section .file-input-label .file-text .main-text {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
}

.pharmacy-prescription-section .file-input-label .file-text .sub-text {
    color: #999;
    font-size: 0.85rem;
}

.pharmacy-prescription-section input[type="file"] {
    display: none;
}

.pharmacy-prescription-section .guide-box {
    background: linear-gradient(135deg, #19838a 0%, #10676d 100%);
    color: white !important;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pharmacy-prescription-section .guide-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--whitecolor);
}

.pharmacy-prescription-section .guide-box h3 i {
    font-size: 1.5rem;
}

.pharmacy-prescription-section .guide-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pharmacy-prescription-section .guide-box li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pharmacy-prescription-section .guide-box li:last-child {
    margin-bottom: 0;
}

.pharmacy-prescription-section .guide-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
}

.pharmacy-prescription-section .prescription-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pharmacy-prescription-section .consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.pharmacy-prescription-section .consent-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    accent-color: #4ecdc4;
}

.pharmacy-prescription-section .consent-checkbox label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

.pharmacy-prescription-section .consent-checkbox a {
    color: var(--greencolor);
    text-decoration: none;
    font-weight: 600;
}

.pharmacy-prescription-section .consent-checkbox a:hover {
    text-decoration: underline;
}

.pharmacy-prescription-section .btn-submit {
    background-color: var(--greencolor);
    color: white;
    border: none;
    padding: 14px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pharmacy-prescription-section .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
    color: white;
}

.pharmacy-prescription-section .btn-submit:active {
    transform: translateY(0);
}

.pharmacy-prescription-section .section-info-box {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-left: 5px solid #ff9800;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.pharmacy-prescription-section .section-info-box p {
    margin: 0;
    color: #e67e22;
    font-weight: 500;
    font-size: 0.95rem;
}

/* pharma prescription upload page work end */

/* doctor prescription dashboard page work start */

.doctor-prescription-section {
    background-color: #f8f9fa;
}

.doctor-prescription-section .doctor-prescription-wrapper {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.doctor-prescription-section .prescription-tabs-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

.doctor-prescription-section .prescription-tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doctor-prescription-section .prescription-tab-btn:hover {
    color: var(--greencolor);
}

.doctor-prescription-section .prescription-tab-btn.active {
    color: var(--greencolor);
    border-bottom-color: var(--greencolor);
}

.doctor-prescription-section .prescription-tab-btn i {
    font-size: 1.1rem;
}

.doctor-prescription-section .prescription-tabs-content {
    margin-top: 30px;
}

.doctor-prescription-section .prescription-tab-pane {
    display: none;
}

.doctor-prescription-section .prescription-tab-pane.active {
    display: block;
}

.doctor-prescription-section .prescription-form-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.doctor-prescription-section .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.doctor-prescription-section .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.doctor-prescription-section .form-control:focus {
    border-color: var(--greencolor);
    box-shadow: 0 0 0 3px rgba(25, 131, 138, 0.1);
}

.doctor-prescription-section .medicine-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.doctor-prescription-section .medicine-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--greencolor);
}

.doctor-prescription-section .medicine-item {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.doctor-prescription-section .medicine-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.doctor-prescription-section .btn-remove-medicine {
    position: absolute;
    top: 5px;
    right: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #d10000;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.doctor-prescription-section .btn-remove-medicine:hover {
    transform: scale(1.1);
}

.doctor-prescription-section .btn-add-medicine {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--greencolor);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.doctor-prescription-section .btn-add-medicine:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 131, 138, 0.3);
}

.doctor-prescription-section .prescription-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.doctor-prescription-section .btn-send-sm {
    background-color: #9e9e9e;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.doctor-prescription-section .btn-send-sm:hover {
    background-color: #757575;
    transform: translateY(-2px);
}

.doctor-prescription-section .btn-send-thyrocare {
    background-color: var(--greencolor);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.doctor-prescription-section .btn-send-thyrocare:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 131, 138, 0.3);
}

.doctor-prescription-section .previous-prescriptions-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    max-height: 600px;
    overflow-y: auto;
}

.doctor-prescription-section .prescriptions-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--greencolor);
}

.doctor-prescription-section .prescriptions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doctor-prescription-section .prescription-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.doctor-prescription-section .prescription-item:hover {
    background: #f0f0f0;
    border-color: var(--greencolor);
}

.doctor-prescription-section .prescription-header-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.doctor-prescription-section .patient-name {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

.doctor-prescription-section .prescription-date {
    font-size: 0.85rem;
    color: #999;
}

.doctor-prescription-section .prescription-actions-item {
    display: flex;
    gap: 8px;
}

.doctor-prescription-section .btn-view-prescription,
.doctor-prescription-section .btn-download-prescription {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 6px;
    background-color: var(--greencolor);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.doctor-prescription-section .btn-view-prescription:hover,
.doctor-prescription-section .btn-download-prescription:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(25, 131, 138, 0.3);
}

.doctor-prescription-section .btn-load-more {
    width: 100%;
    background-color: var(--greencolor);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.doctor-prescription-section .btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 131, 138, 0.3);
}

/* Oxito Cases Table */
.doctor-prescription-section .oxito-cases-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.doctor-prescription-section .table-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr 1fr;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #19838a 0%, #10676d 100%);
    color: white;
    font-weight: 700;
}

.doctor-prescription-section .table-header-cell {
    font-size: 0.95rem;
}

.doctor-prescription-section .table-body {
    border-top: 1px solid #e0e0e0;
}

.doctor-prescription-section .table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr 1fr;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    transition: all 0.3s ease;
}

.doctor-prescription-section .table-row:hover {
    background-color: #f9f9f9;
}

.doctor-prescription-section .table-row:last-child {
    border-bottom: none;
}

.doctor-prescription-section .table-cell {
    font-size: 0.95rem;
    color: #333;
}

.doctor-prescription-section .btn-video-link,
.doctor-prescription-section .btn-prescription-link {
    color: var(--greencolor);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.doctor-prescription-section .btn-video-link:hover,
.doctor-prescription-section .btn-prescription-link:hover {
    text-decoration: underline;
}

.doctor-prescription-section .btn-table-action {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.doctor-prescription-section .btn-table-action:hover {
    color: var(--greencolor);
}

/* Scrollbar Styling */
.doctor-prescription-section .previous-prescriptions-box::-webkit-scrollbar {
    width: 8px;
}

.doctor-prescription-section
    .previous-prescriptions-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.doctor-prescription-section
    .previous-prescriptions-box::-webkit-scrollbar-thumb {
    background: var(--greencolor);
    border-radius: 10px;
}

.doctor-prescription-section
    .previous-prescriptions-box::-webkit-scrollbar-thumb:hover {
    background: #10676d;
}

/* doctor prescription dashboard page work end */

/* Lab Details Work Start */
.lab-detail-section .lab-meta-line {
    display: flex;
    gap: 20px;
}
.lab-detail-section .lab-meta-line .lab-rating {
    border-left: 1px solid #ddd;
    padding-left: 20px;
}
.lab-detail-section .lab-description h1,
.lab-detail-section .lab-description h2,
.lab-detail-section .lab-description h3,
.lab-detail-section .lab-description h4,
.lab-detail-section .lab-description h5 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
}
.lab-detail-section .lab-description ul {
    list-style: disc;
    padding-left: 15px;
    margin-bottom: 15px;
}
.lab-detail-section .lab-description ul p {
    margin-bottom: 5px;
}
.lab-detail-section .sub-title {
    font-weight: 700;
    font-size: 18px;
}
/* Lab Details Work End */

/* Lab Checkout Work Start */
.booking-member-section .totals .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed #b8b8b8;
    padding: 10px 0px;
}
.booking-member-section .totals .item:last-child {
    font-weight: 700;
}
.booking-member-section .totals .item:last-child strong {
    font-weight: 700 !important;
}
/* Lab Checkout Work End */

/* Chat Page Work Start */
.chat_screen #header {
    padding: 10px 15px;
}
.message_send {
    background-color: #eee;
}
.message_send,
.message_recived {
    padding: 12px;
}
.message_send p {
    line-height: 12px;
    margin-bottom: 15px;
}
.message_send span,
.message_send small,
.message_recived span,
.message_recived small,
.message_recived label {
    color: black !important;
}
.message_recived {
    background: #19838a20;
}
#doctor_first_message {
    background: #19838a20;
    border: none;
}
#send_message_bar {
    background: #eee !important;
}
#send_message_bar .web-btn {
    font-size: 16px;
}
/* Chat Page Work End */

/* Doctor Chat Page Start */
.chat-window .btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    min-width: auto;
}
.chat-window .chat-cont-right .chat-header .name-img {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
/* Doctor Chat Page End */

.home-blog-slider .card {
    margin-bottom: 0px;
}

.ph-product-listing .sortby-text {
    min-width: 70px;
}

.new-consultation-card {
    overflow: visible !important;
}
.new-consultation-card .consultation-details {
    justify-content: space-between;
}
.new-consultation-card .btn {
    align-self: center;
}

.ask-search-form {
    position: relative;
    margin-bottom: 20px;
}

.ask-search-form .search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    z-index: 99999;
    display: none;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ask-search-form .search-dropdown .dropdown-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    white-space: unset;
}

.ask-search-form .search-dropdown .dropdown-item:hover {
    background: #f5f5f5;
}

.ask-search-form .dropdown-title {
    font-weight: 600;
    padding: 8px 14px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.ask-search-form .search-icon {
    position: relative;
}
.ask-search-form .search-icon input {
    padding-right: 50px;
}
.ask-search-form .search-icon i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 14px;
    opacity: 0.5;
}

.review-prescription iframe {
    width: 100%;
    height: 700px;
    border: none;
}

/* cbc test work start */
.book-lab-test-online .box {
    background-color: #19838a10;
    padding: 13px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.book-lab-test-online .box .icon {
    width: 40px;
    height: 40px;
    background-color: #19838a20;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--greencolor);
}
.book-lab-test-online .box.blue-clr {
    background-color: #166bcd10;
}
.book-lab-test-online .box.blue-clr .icon {
    background-color: #166bcd20;
    color: #166bcd;
}
.book-lab-test-online .box p {
    margin: 0px;
    font-weight: 600;
    font-size: 16px;
}
.cbc-test-info ul,
.cbc-test-info ol {
    margin: 0px 0px 15px;
}
/* cbc work end */

/* Facescan Work Start */
.facescan-banner .box {
    border-radius: 20px;
    display: flex;
    align-items: end;
    background-color: #19838a20;
    color: var(--black);
    overflow: hidden;
    position: relative;
}
.facescan-banner .box:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #0d5d63;
    right: -50px;
    top: -50px;
}
.facescan-banner .box .content {
    padding: 50px;
    width: calc(100% - 400px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.facescan-banner .box .content .section-heading {
    font-size: 40px;
    font-weight: 700;
}
.facescan-banner .box .content p {
    font-size: 20px;
    margin-bottom: 30px;
}
.facescan-banner .box .content .btn {
    border-radius: 50px;
    width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.facescan-banner .box .img {
    width: 300px;
    height: 300px;
    border-radius: 100% 100% 0px 0px;
    background-color: var(--greencolor);
    margin: 30px 0px 0px;
    overflow: hidden;
    z-index: 1;
}
.facescan-banner .box .img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
    .facescan-banner .box {
        flex-direction: column;
        text-align: center;
    }
    .facescan-banner .box .content {
        width: 100%;
        padding: 30px;
    }
    .facescan-banner .box:after {
        display: none;
    }
    .facescan-banner .box .content .section-heading {
        font-size: 20px;
    }
    .facescan-banner .box .content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .facescan-banner .box .content .btn {
        margin: 0 auto;
    }
    .facescan-banner .box .img {
        margin: 0 auto;
        width: 200px;
        height: 200px;
    }
}
/* Facescan Work End */

/* Banner Skeleton Work Start */
.banner-skeleton {
    position: relative;
    width: 100%;
    height: 278px;
    background-color: #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}
.home-banner-slider.owl-loaded ~ .banner-skeleton {
    display: none;
}
.skeleton-shimmer {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
@media (max-width: 992px) {
    .banner-skeleton {
        height: 215px;
    }
}
@media (max-width: 767px) {
    .banner-skeleton {
        height: 160px;
    }
}
@media (max-width: 480px) {
    .banner-skeleton {
        height: 145px;
        border-radius: 14px;
    }
}
/* Banner Skeleton Work End */

/* Lab Slider Skeleton Work Start */
.lab-slider-skeleton {
    display: flex;
    gap: 15px;
    overflow: hidden;
}
.owl-carousel.owl-loaded + .lab-slider-skeleton {
    display: none;
}

/* Package Skeleton Card — 3 items desktop, gap 15px => 2 gaps = 30px */
.skeleton-card--package {
    flex: 0 0 calc((100% - 30px) / 3);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
}
.skeleton-card__top {
    display: flex;
    align-items: center;
    gap: 15px;
}
.skeleton-card__img {
    width: 100px;
    min-width: 100px;
    height: 95px;
    border-radius: 10px;
    background-color: #eee;
}
.skeleton-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.skeleton-bar {
    border-radius: 4px;
}
.skeleton-bar--logo {
    width: 80px;
    height: 25px;
}
.skeleton-bar--title {
    width: 100%;
    height: 20px;
}
.skeleton-bar--text {
    width: 70%;
    height: 12px;
}
.skeleton-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #ddd;
}
.skeleton-bar--price {
    width: 70px;
    height: 16px;
}
.skeleton-bar--btn {
    width: 100px;
    height: 34px;
    border-radius: 20px;
}

/* Popular Tests Skeleton Card — 6 items desktop, gap 15px => 5 gaps = 75px */
.skeleton-card--test {
    flex: 0 0 calc((100% - 75px) / 6);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.skeleton-card__icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
}
.skeleton-bar--test-name {
    width: 100%;
    height: 18px;
}

/* Health Scans Skeleton Card — 3 items desktop, gap 15px => 2 gaps = 30px */
.skeleton-card--scan {
    flex: 0 0 calc((100% - 30px) / 3);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.skeleton-card__img--scan {
    width: 150px;
    min-width: 150px;
    height: 100px;
    border-radius: 10px;
    background-color: #eee;
}
.skeleton-bar--link {
    width: 80px;
    height: 14px;
}

/* Featured Diagnostics Skeleton Card — 4 items desktop, gap 15px => 3 gaps = 45px */
.skeleton-card--diagnostic {
    flex: 0 0 calc((100% - 45px) / 4);
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 10px 20px 20px;
    text-align: center;
}
.skeleton-card__logo {
    width: 150px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 6px;
}
.skeleton-bar--des {
    height: 31px;
    margin: 0 -20px 20px;
    width: calc(100% + 40px);
}
.skeleton-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skeleton-bar--name {
    width: 60%;
    height: 14px;
}
.skeleton-bar--rating {
    width: 40px;
    height: 14px;
}

/* Lab Slider Skeleton Responsive */
/* Tablet: packages 2, tests 3, scans 2, diagnostics 2 */
@media (max-width: 1199px) {
    .skeleton-card--package {
        flex: 0 0 calc((100% - 15px) / 2);
    }
    .skeleton-card--diagnostic {
        flex: 0 0 calc((100% - 30px) / 3);
    }
}
@media (max-width: 999px) {
    .skeleton-card--scan {
        flex: 0 0 calc((100% - 15px) / 2);
    }
    .skeleton-card--diagnostic {
        flex: 0 0 calc((100% - 15px) / 2);
    }
}
/* Mobile: packages 1, tests 2, scans 1, diagnostics 1 */
@media (max-width: 767px) {
    .skeleton-card--package {
        flex: 0 0 100%;
    }
    .skeleton-card--test {
        flex: 0 0 calc((100% - 15px) / 2);
    }
    .skeleton-card--scan {
        flex: 0 0 100%;
    }
    .skeleton-card--diagnostic {
        flex: 0 0 100%;
    }
}
/* Lab Slider Skeleton Work End */

/* Pharmacy Slider Skeleton Work Start */
.pharma-slider-skeleton {
    display: flex;
    gap: 15px;
    overflow: hidden;
}
.owl-carousel.owl-loaded + .pharma-slider-skeleton {
    display: none;
}

/* Category / Health Concern Skeleton — 7 items desktop, gap 15px => 6 gaps = 90px */
.pharma-skel-item--category {
    flex: 0 0 calc((100% - 90px) / 7);
    text-align: center;
}
.pharma-skel-img--square {
    width: 130px !important;
    height: 130px !important;
    background-color: #44c09b5c;
    border-radius: 10px;
    margin: 0 auto 10px;
}
.pharma-skel-item--category:nth-child(even) .pharma-skel-img--square {
    background-color: #2987ca5c;
}
.pharma-skel-item .pharma-skel-bar {
    width: 80%;
    height: 36px;
    border-radius: 4px;
    margin: 0 auto;
}

/* Vendor Skeleton — 7 items desktop, gap 15px */
.pharma-skel-item--vendor {
    flex: 0 0 calc((100% - 90px) / 7);
    text-align: center;
}
.pharma-skel-img--circle {
    width: 130px !important;
    height: 130px !important;
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 2px solid #ddd;
}

/* Product Skeleton — 5 items desktop, gap 15px => 4 gaps = 60px */
.pharma-skel-item--product {
    flex: 0 0 calc((100% - 60px) / 5);
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.pharma-skel-product-top {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pharma-skel-product-img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}
.pharma-skel-product-content {
    background-color: #ededed;
    padding: 15px;
}
.pharma-skel-product-content .pharma-skel-bar--title {
    width: 100%;
    height: 16.8px;
    border-radius: 4px;
    margin: 0 0 5px;
}
.pharma-skel-product-content .pharma-skel-bar--brand {
    width: 55%;
    height: 21px;
    border-radius: 4px;
    margin: 0 0 5px;
}
.pharma-skel-product-content .pharma-skel-bar--price {
    width: 35%;
    height: 16.8px;
    border-radius: 4px;
    margin: 0 0 10px;
}
.pharma-skel-product-content .pharma-skel-bar--btn {
    width: 100%;
    height: 42.6px;
    border-radius: 10px;
}

/* Pharmacy Skeleton Responsive */
/* Tablet — 3 items for category/vendor, 2 for products */
@media (max-width: 999px) {
    .pharma-skel-item--category,
    .pharma-skel-item--vendor {
        flex: 0 0 calc((100% - 30px) / 3);
    }
    .pharma-skel-item--product {
        flex: 0 0 calc((100% - 15px) / 2);
    }
}
@media (max-width: 767px) {
    .pharma-skel-img--square {
        width: 110px !important;
        height: 110px !important;
    }
    .pharma-skel-img--circle {
        width: 110px !important;
        height: 110px !important;
    }
    .pharma-skel-product-top {
        height: 150px;
    }
    .pharma-skel-product-img {
        width: 100px;
        height: 100px;
    }
    .pharma-skel-vendor-logo {
        width: 50px;
        height: 35px;
        top: 5px;
        right: 5px;
    }
}
/* Pharmacy Slider Skeleton Work End */

/* ===== DIAGNOSTIC PAGE STYLES ===== */

/* Hero Section */
.diag-hero {
    background: linear-gradient(
        160deg,
        #19838a 0%,
        #22a6a0 35%,
        #19838a 70%,
        #22a6a0 100%
    );
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.diag-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.diag-hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.diag-hero .diag-floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: #fff;
}

.diag-hero .diag-floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
}

.diag-hero .diag-floating-shape:nth-child(2) {
    width: 50px;
    height: 50px;
    top: 60%;
    right: 12%;
}

.diag-hero .diag-floating-shape:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 30%;
    right: 25%;
}

.diag-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 20px;
}

.diag-hero-badge i {
    color: #89fcce;
    font-size: 14px;
}

.diag-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.diag-hero h1 span {
    background: linear-gradient(135deg, #89fcce, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.diag-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

/* Search bar inside hero */
.diag-hero-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.diag-hero-search .form-control {
    height: 56px;
    border-radius: 16px;
    padding: 10px 60px 10px 30px;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.diag-hero-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.diag-hero-search .form-control:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    outline: none;
}

.diag-hero-search .search-icon-left {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    pointer-events: none;
}

.diag-hero-search .diag-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #89fcce, #49e5ac);
    border: none;
    color: #0d2b2e;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.diag-hero-search .diag-search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(110, 231, 183, 0.4);
}

/* Stat strip at hero bottom */
.diag-stat-strip {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
}

.diag-stat-strip .stat-item {
    text-align: center;
    position: relative;
}

.diag-stat-strip .stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

.diag-stat-strip .stat-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px;
}

.diag-stat-strip .stat-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
}

/* Popular Test Tags */
.diag-popular-tags {
    background: #fff;
}

.diag-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
}

.diag-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 12px;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.diag-tag .tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #19838a;
    flex-shrink: 0;
}

.diag-tag i {
    font-size: 11px;
    color: #bbb;
    transition: all 0.25s ease;
}

.diag-tag:hover {
    background: #19838a;
    color: #fff;
    border-color: #19838a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 131, 138, 0.25);
}

.diag-tag:hover .tag-dot {
    background: #89fcce;
}

.diag-tag:hover i {
    color: #fff;
}

.diag-tag-hidden {
    display: none;
}

/* Explore More Section */
.diag-explore-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1.5px solid #e8f0ee;
    border-radius: 18px;
    padding: 28px 24px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.diag-explore-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(
        circle at top right,
        rgba(25, 131, 138, 0.06) 0%,
        transparent 70%
    );
    border-radius: 0 18px 0 0;
    pointer-events: none;
}

.diag-explore-card:hover {
    border-color: #19838a;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(25, 131, 138, 0.12);
    text-decoration: none;
    color: #333;
}

.diag-explore-card .diag-explore-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f5f3, #d0ede8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.diag-explore-card:hover .diag-explore-icon {
    background: linear-gradient(135deg, #19838a, #22a6a0);
}

.diag-explore-card .diag-explore-icon i {
    font-size: 26px;
    color: #19838a;
    transition: color 0.3s ease;
}

.diag-explore-card:hover .diag-explore-icon i {
    color: #fff;
}

.diag-explore-card .diag-explore-text h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.diag-explore-card .diag-explore-text p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

.diag-explore-card .diag-explore-arrow {
    margin-left: auto;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #f0f5f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #19838a;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.diag-explore-card:hover .diag-explore-arrow {
    background: #19838a;
    color: #fff;
}

/* Why Trust Section */
.diag-trust {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.diag-trust::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(25, 131, 138, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.diag-trust::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(25, 131, 138, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.diag-trust .section-heading2 {
    margin-bottom: 8px;
}

.diag-trust-subheading {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #19838a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.diag-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.diag-trust-badge {
    text-align: center;
    background: #fff;
    border: 1.5px solid #e0f0ed;
    border-radius: 16px;
    padding: 20px 30px;
    min-width: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(25, 131, 138, 0.04);
}

.diag-trust-badge:hover {
    border-color: #19838a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(25, 131, 138, 0.1);
}

.diag-trust-badge .badge-value {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    display: block;
    margin-bottom: 2px;
}

.diag-trust-badge .badge-label {
    font-size: 13px;
    color: #666;
    display: block;
}

.diag-trust-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 1;
}

.diag-trust-stat {
    background: #f8fafa;
    border: 1px solid #e8efed;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: left;
    flex: 1;
    min-width: 170px;
    max-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diag-trust-stat:hover {
    border-color: #19838a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 131, 138, 0.1);
}

.diag-trust-stat .stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 0 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f5f3, #d0ede8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.diag-trust-stat:hover .stat-icon {
    background: linear-gradient(135deg, #19838a, #22a6a0);
}

.diag-trust-stat .stat-icon i {
    font-size: 22px;
    color: #19838a;
    transition: color 0.3s ease;
}

.diag-trust-stat:hover .stat-icon i {
    color: #fff;
}

.diag-trust-stat h4 {
    font-size: 22px;
    font-weight: 800;
    color: #19838a;
    margin-bottom: 4px;
}

.diag-trust-stat p {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

.diag-trust-tagline {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e8f5f3, #d4f0eb);
    border: 1px solid #c8e6df;
    border-radius: 50px;
    padding: 14px 30px;
    max-width: 700px;
    margin: 0 auto;
    color: #19838a;
    position: relative;
    z-index: 1;
}

.diag-trust-tagline i {
    font-size: 18px;
    color: #19838a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .diag-hero {
        min-height: auto;
        padding: 50px 0 0;
    }

    .diag-hero h1 {
        font-size: 28px;
    }

    .diag-stat-strip .stat-item h3 {
        font-size: 20px;
    }

    .diag-trust-stats {
        gap: 14px;
    }

    .diag-trust-stat {
        min-width: 140px;
        padding: 18px 16px;
    }

    .diag-trust-badge {
        min-width: 150px;
        padding: 16px 22px;
    }

    .diag-explore-card {
        padding: 22px 18px;
    }
}

@media (max-width: 767px) {
    .diag-hero {
        padding: 40px 0 0;
    }

    .diag-hero h1 {
        font-size: 22px;
        text-align: center;
    }

    .diag-hero-subtitle {
        text-align: center;
        font-size: 14px;
    }

    .diag-hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .diag-hero-search .form-control {
        height: 48px;
        font-size: 14px;
        padding-left: 22px;
        padding-right: 52px;
    }

    .diag-hero-search .diag-search-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .diag-stat-strip {
        padding: 16px 0;
    }

    .diag-stat-strip .stat-item h3 {
        font-size: 18px;
    }

    .diag-stat-strip .stat-item p {
        font-size: 11px;
    }

    .diag-popular-tags {
        padding: 30px 0 10px;
    }

    .diag-popular-tags h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .diag-tag {
        padding: 9px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    .diag-explore {
        padding: 30px 0 15px;
    }

    .diag-explore h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .diag-explore-card {
        padding: 18px 14px;
        gap: 14px;
        border-radius: 14px;
    }

    .diag-explore-card .diag-explore-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }

    .diag-explore-card .diag-explore-icon i {
        font-size: 22px;
    }

    .diag-explore-card .diag-explore-text h3 {
        font-size: 15px;
    }

    .diag-explore-card .diag-explore-arrow {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }

    .diag-trust-badges {
        gap: 12px;
    }

    .diag-trust-badge {
        min-width: 0;
        flex: 1;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .diag-trust-badge .badge-value {
        font-size: 16px;
    }

    .diag-trust-badge .badge-label {
        font-size: 11px;
    }

    .diag-trust-stats {
        gap: 10px;
    }

    .diag-trust-stat {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        padding: 18px 14px;
        border-radius: 12px;
    }

    .diag-trust-stat .stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .diag-trust-stat .stat-icon i {
        font-size: 18px;
    }

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

    .diag-trust-tagline {
        font-size: 12px;
        padding: 12px 18px;
        border-radius: 14px;
    }
}

/* Blog Actions - Mobile one row */
.blog-actions {
    flex-wrap: nowrap !important;
    gap: 8px;
}

.blog-actions .cta-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
}

.blog-actions .cta-buttons .btn {
    white-space: nowrap;
    font-size: 13px;
    padding: 6px 12px;
}

@media (max-width: 576px) {
    .blog-actions .cta-buttons .btn {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* Share Dropdown */
.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-dropdown .share-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #0d9488;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.share-dropdown .share-btn:hover {
    background: #f0fdfa;
}

.share-dropdown .share-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
}

.share-dropdown.active .share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.share-dropdown .share-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.share-dropdown .share-menu a:hover {
    background: #f0fdfa;
}

.share-dropdown .share-menu a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.share-dropdown .share-menu a .fa-x-twitter {
    color: #000;
}

.share-dropdown .share-menu a .fa-whatsapp {
    color: #25d366;
}

.share-dropdown .share-menu a .fa-facebook-f {
    color: #1877f2;
}

.share-dropdown .share-menu a .fa-linkedin-in {
    color: #0a66c2;
}

.share-dropdown .share-menu a .fa-copy {
    color: #0d9488;
}
