body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #f5f5f5;
}

.mobile-container {
    max-width: 430px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
}

.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

.top-navbar .left-icons,
.top-navbar .right-icons {
    display: flex;
    align-items: center;
}

.top-navbar .logo {
    height: 35px;
    margin-left: 10px;
}

.location-selector {
    position: relative;
    margin-right: 0px;
}

.location-button {
    background: none;
    border: none;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.location-button i {
    margin-left: 5px;
    font-size: 12px;
}

.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    width: 100px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.location-dropdown.active {
    display: block;
}

.location-dropdown div {
    padding: 5px 10px;
    cursor: pointer;
}

.location-dropdown div:hover {
    background-color: #f0f0f0;
}

.top-navbar img.icon {
    height: 20px;
    width: 20px;
    margin-left: 20px;
}

.location-icon {
    height: 15px;
    margin-left: 20px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 260px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    left: 0;
}

.sidebar h6 {
    font-weight: bold;
    margin-bottom: 2px;
}

.sidebar small {
    color: #777;
}

.sidebar .profile-section {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    flex-grow: 1;
}

.menu-list li {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-radius: 25px;
    cursor: pointer;
}

.menu-list li.active {
    background-color: #e5e5e5;
    font-weight: 600;
}

.menu-list li i {
    margin-right: 12px;
    font-size: 18px;
    color: #333;
}

.social-footer {
    margin-top: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background-color: #e1306c;
}

.linkedin {
    background-color: #0077b5;
}

.youtube {
    background-color: #ff0000;
}

#backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1040;
    display: none;
}

.toggle-tabs {
    background-color: #E6E6E6;
    padding: 0px;
    border-radius: 50px;
    justify-content: space-between;
    gap: 4px;
    height: 30px;
    margin-top: 0px !important;
}

.toggle-tabs .tab {
    flex: 1;
    text-align: center;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-tabs .active-tab {
    background-color: #1F71BE;
    color: #fff;
    font-weight: 600;
    box-shadow: 3px 0px 3.9px 0px #00000040;
}

.text-muted {
    color: #000000 !important;
    font-size: 12px;
}

.cart-wrapper {
    position: relative;
    margin-left: 0px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #c8102e;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
}

/* Search Bar */
.search-bar input {
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 14px;
    border: 0.5px solid #002140;
    color: black;
    border-radius: 25px;
}

.banner-content {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #000;
}

.banner-content h6 {
    font-size: 12px;
    color: #ff4e4e;
    margin-bottom: 3px;
}

.banner-content h5 {
    font-size: 16px;
    font-weight: 600;
}

.banner-content button {
    background: #f48a84;
    border: none;
    padding: 4px 10px;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    margin-top: 5px;
}

/* Booking Options */
.booking-options {
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

.option-box {
    border-radius: 12px;
    padding: 6px 8px;
    flex: 1 1 0;
    min-width: 0;
    font-size: 12px;
    height: 60px;
    display: flex;
    align-items: center;
    border: 1px solid #EBEBEB;
}

.option-box img {
    width: 30px;
    height: 30px;
    margin-right: 0px !important;
    margin-left: -7px;
}

.option-box small {
    font-size: 11px;
    line-height: 1.1;
    color: #000;
}

.option-box strong {
    font-size: 10px;
    color: #002140;
    font-weight: 600;
}

.phonesvg {
    margin-left: 0px !important;
}

/* Tabs */
.test-tabs button {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
}

.test-tabs button.active {
    background: #007bff;
    color: #fff;
}

.toggle-tabs .tab-btn.active-tab {
    box-shadow:
        -3px 0px 3.9px 0px #00000040,
        /* left shadow */
        3px 0px 3.9px 0px #00000040;
    /* right shadow */
}


/* Cards */
.test-card {
    font-size: 13px;
    border: 0.5px solid #CA6DA6 !important;
    padding: 13px;
    border-radius: 20px;
}

.test-card h6 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #002140;
}

.test-card p {
    font-size: 12px;
    margin-bottom: 4px;
    color: #6A6A6B;
}

.text-dark {
    font-weight: 600;
}

.book-btn {
    background: linear-gradient(102.63deg, #E4966D 18.37%, #C565B3 91.81%);
    color: white;
    border: none;
    padding: 6px;
    border-radius: 25px;
    font-size: 13px;
}

.book-btn-custom {
    background: linear-gradient(102.63deg, #E4966D 18.37%, #C565B3 91.81%);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 25px;
    font-size: 13px;
    width: 100px;
    white-space: nowrap;
}

.old-price {
    font-size: 11px;
    position: relative;
    color: #999;
    margin-left: 4px;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: red;
    transform: rotate(-15deg);
    transform-origin: center;
}

.discount {
    color: #28A5A1;
    font-size: 11px;
    margin-left: 4px;
    font-weight: 600;
}

.view-all-btn {
    display: block;
    text-align: center;
    padding: 8px;
    margin: 10px auto;
    background: #28A5A1;
    color: #fff;
    width: 50%;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
}

.category-tabs-wrapper {
    margin-top: 30px !important;
}

.search-input::placeholder {
    color: #002140 !important;
}

.search-icon {
    position: absolute;
    right: 25px;
    top: 57%;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    cursor: pointer;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-nav button {
    background: rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 50%;
}

.book-test-txt {
    font-size: 18px;
}

.category-tabs-scroll {
    gap: 10px;
    margin-top: 15px;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.category-tabs-scroll .tab {
    padding: 3px 16px;
    min-width: 115px;
    text-align: center;
    border-radius: 25px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 13px;
    color: #333;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.category-tabs-scroll .tab.active {
    background-color: #28A5A1;
    color: #fff;
    border-color: #28A5A1;
    font-weight: 600;
}

.dot-nav .dot {
    height: 6px;
    width: 6px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
}

.dot-nav .dot.active {
    background-color: #00bfa6;
}

.full-package-card {
    background-color: #fff;
    border: 0.5px solid #CA6DA6;
    font-size: 13px;
    border-radius: 20px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.full-package-card h6 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.full-package-card .price {
    font-weight: 600;
    font-size: 15px;
}

.full-package-card .old-price {
    font-size: 12px;
    position: relative;
    color: #999;
    margin-left: 5px;
}

.full-package-card .old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: red;
    transform: rotate(-15deg);
    transform-origin: center;
}

.offer-badge-wrapper {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 1;
}

.offer-badge {
    background-color: #00bfa6;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 6px;
    text-align: center;
    position: relative;
    width: 35px;
    height: 50px;
}

.offer-badge span {
    display: block;
    line-height: 1.1;
}

.offer-arrow {
    width: 0;
    height: 0;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-top: 17px solid white;
    position: absolute;
    bottom: 0px;
    left: -1px;
    rotate: 180deg;
}

.book-btn {
    background: linear-gradient(102.63deg, #E4966D 18.37%, #C565B3 91.81%);
    border: none;
    color: white;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 25px;
    width: 100px;
}

.view-btn {
    background-color: #00bfa6;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
}

.dot-nav .dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot-nav .dot.active {
    background-color: #00bfa6;
}

.select-category {
    font-size: 18px;
}

.popular-packages {
    font-size: 18px;
    margin-top: 20px;
}

.custom-text-muted {
    color: #6A6A6B;
}

.custom-text-mri {
    color: black;
}

.text-cst-muted {
    font-size: 16px;
}

.text-cst-primary {
    font-size: 18px;
    color: #28A5A1;
}

.timeline {
    background-color: #F6F6F6;
    margin-top: 1rem;
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.timeline img {
    max-width: 100%;
    height: auto;
}

.accredit-box {
    background-color: #FFF2EF;
    border-radius: 14px;
}

.text-cst-acc {
    font-size: 18px;
    color: #28A5A1;
    font-weight: 700;
}

.Quality {
    font-size: 9.5px;
    font-weight: 500;
}

.cap-quality {
    line-height: 0;
}

.video-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.video-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 5px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-card {
    min-width: 120px;
    height: 240px;
    border-radius: 10px;
    border: none;
    margin-right: 12px;
    scroll-snap-align: start;
}

.carousel-dots .dot {
    height: 8px;
    width: 8px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.carousel-dots .dot.active {
    background-color: #00BCD4;
}


.app-download-section {
    /* background: url('./assets/img/discount-download.svg') no-repeat center center; */
    /* background-size: cover; */
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #fff;
    position: relative;
    z-index: 1;
    background-color: #9F70CC;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.app-download-section .store-btn {
    width: 130px;
    height: auto;
}

.app-mockup-img {
    width: 140px;
    max-width: 100%;
}

.presence-section {
    background-color: #28A5A126;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 6px;
    font-size: 13px;
    line-height: 1.8;
}

.cities-list span {
    color: #333;
}

.blood-tests-section {
    background-color: #ffffff;
}

.blood-tests-section p {
    font-size: 13px;
    line-height: 1.6;
}

.separator {
    color: #C10B0B !important;
    margin-left: 0px;
    margin-right: 0px;
    font-weight: bold;
}

.border-bottom-red {
    border-bottom: 2px solid #C10B0B;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-section {
    background-color: #e7f3f7;
    /* Light blue */
    font-family: 'Poppins', sans-serif;
}

.footer-logo {
    width: 120px;
}

.footer-heading {
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background-color: #c8102e;
    /* Red underline */
}

.bottom-nav {
    border-top: 1px solid #ddd;
    z-index: 1000;
}

.nav-item {
    font-size: 12px;
    color: #444;
}

.nav-icon {
    font-size: 20px;
    display: block;
    margin-bottom: 3px;
    color: #444;
}

.nav-label {
    font-size: 12px;
    color: #505050;
}

.active-icon {
    color: #c8102e;
}

.active-label {
    color: #c8102e;
    font-weight: 600;
}

.sub-footer {
    background-color: #3a3480;
    height: 50px;
    z-index: 999;
    margin-bottom: 70px;
    font-size: 12px;
}

.callback-btn {
    background-color: #2dc7b7;
    padding: 6px 12px;
    border-radius: 20px 0 0 20px;
    color: white;
    font-size: 12px;
    line-height: 1.2;
}

.btn-callback:focus,
.btn-callback:active,
.btn-callback:hover {
    background-color: #2dc7b7 !important;
    outline: none;
    box-shadow: none;
}

.whatsapp-btn img {
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-text {
    font-size: 13px;
}

.floating-buttons {
    position: fixed;
    bottom: 70px;
    /* above bottom nav */
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 0 1rem;
}

/* Phone Icon Style */
.phone-icon {
    position: absolute;
    left: -6px;
    top: -6px;
    z-index: 1;
}

.phone-icon img {
    width: 60px;
    height: 60px;
}

/* Call Back Button */
.btn-callback {
    background-color: #28A5A1;
    padding-left: 3rem;
    /* padding-top: 0.75rem;
            padding-bottom: 0.75rem; */
    font-size: 0.9rem;
    border: none;
    text-align: left;
    border-radius: 10px;
    font-size: 13px;
}

/* WhatsApp Button */
.btn-purple {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.9rem;
    border: none;
    justify-content: right;
}

/* WhatsApp Icon */
.whatsapp-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.select-test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; */
    flex-wrap: nowrap;
    gap: 10px;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.select-test-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-test-title {
    flex: 1;
    min-width: 0;
}

.select-test-title span {
    display: block;
    font-size: 8px;
    color: #666;
}

.select-test-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}

.action-btn img {
    width: 16px;
    height: 16px;
}

.action-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.nav-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 8px;
    z-index: 10;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ff3e6c;
}

.sort-item {
    padding: 6px 4px;
    font-size: 14px;
    cursor: pointer;
}

.sort-item:hover {
    background-color: #f0f0f0;
}

.show {
    display: block;
}

.button-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Small round cart button */
.cart-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e49d76, #e6a07a);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Small round cart button */
.cart-btn {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #e49d76, #e6a07a);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-btn img {
    width: 18px;
    height: 18px;
}

.cart-btn img {
    width: 18px;
    height: 18px;
}

.icons-buttons-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.icon-item img {
    margin-right: 8px;
    /* Space between icon and text */
}

.right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.custom-price {
    font-size: 18px !important;
    color: #28A5A1;
}

.test-description {
    font-size: 10px;
}

.icon-row {
    font-size: 10px;
}

.know-more {
    text-decoration: none;
    color: black;
    font-weight: 600;
    font-size: 10px;
}

.parameters-faq {
    background: #fff;
}

.section-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 11px;
    color: #002140;
}

.parameters-list {
    columns: 2;
    column-gap: 40px;
    list-style-position: inside;
    padding-left: 0;
    color: #6A6A6B;
    font-size: 10px;
}

.parameters-list li {
    margin-bottom: 5px;
}

.faq-item {
    margin-top: 15px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 10px;
    color: #002140;
}

.faq-answer {
    margin-bottom: 5px;
    font-size: 10px;
    color: #6A6A6B;
}

.faq-item ul {
    list-style: disc;
    color: #6A6A6B;
    font-size: 10px;
}

.address-section {
    max-width: 500px;
    margin: auto;
}

.btn-add-address {
    background: linear-gradient(102.63deg, #E4966D 18.37%, #C565B3 91.81%);
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.address-card {
    display: flex;
    align-items: flex-start;
    border: 1px solid #C4C4C4;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 10px;
}

.address-card input[type="radio"] {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-top: 3px;
}

.address-card .address-content {
    flex: 1;
}

.address-card.active {
    border: 2px solid #1F71BE;
    background-color: #F4FAFF;
}

.btn-proceed {
    background: linear-gradient(102.63deg, #E4966D 18.37%, #C565B3 91.81%);
    color: white;
    padding: 10px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    display: block;
    margin: 0 auto;
}

.wrapper-address {
    font-size: 11px;
    font-weight: 600;
}

.custom-address {
    font-size: 13px;
    font-weight: 600;
}

.custom-text-muted {
    font-size: 11px;
    color: black;
}

.custom-edits {
    font-size: 11px;
    font-weight: 600;
}

.cutom-address-header {
    font-weight: 600;
}

.custom-small {
    font-size: 10px;
    text-align: left;
}

.declaration-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.custom-actions {
    float: right;
}