@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 400;
}
.hidden{
    display: none;
}
.heading-h1,
.heading-h2,
.heading-h3,
.heading-h4,
.heading-h5,
.heading-h6 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1.5;
}
.heading-h1 {
    font-size: 50px;
    line-height: 1.2;
}
.heading-h2 {
    font-size: 2rem;
    line-height: 1.3;
}
.heading-h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}
.heading-h4 {
    font-size: 1.25rem;
}
.heading-h5 {
    font-size: 1rem;
}
.heading-h6 {
    font-size: 0.875rem;
}
.container {
    max-width: 1200px;
    margin: auto;
}
/* Button outside the card */
.next-button-wrapper {
    text-align: right;
    margin-top: 20px;
}

.btn-next {
    background: #5bc88f;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 30px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-left: auto;
}
/* ===================== Page 1 ======================= */
.heartTestSec {
    padding-block: 60px;
    padding-inline: 5%;
}
.heartTestSec .banner {
    background: linear-gradient(90deg, #3e4365 58.57%, rgba(124, 135, 203, 0) 78.25%), url(img/heartTestImg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 2px solid #5bc88f;
    margin: auto;
    padding: 90px 40% 90px 60px;
    color: #ffffff;
    text-align: left;
}

.heartTestSec .text-box h1 {
    margin-bottom: 20px;
}

.text-box h1 span {
    color: #e97281;
}

.heartTestSec .text-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.heartTestSec .buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.heartTestSec .btnLink {
    padding: 10px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.heartTestSec .btnLink.start {
    background: #5bc88f;
    color: white;
}

.heartTestSec .btnLink.time {
    background: white;
    color: #5bc88f;
    border: 2px solid #5bc88f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.heartTestSec .btnLink img {
    width: 18px;
    margin-top: 2px;
}
/* ===================== Page 2 ======================= */
.step-wrapper-sec {
    padding-block: 60px;
padding-inline: 5%;
}

.step-wrapper-sec .step-wrapper {
    margin: auto;
}

.step-wrapper-sec .step-card {
    background: #ecececc9;
    border-radius: 12px;
    padding: 30px 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #2b2f48;
}

.step-wrapper-sec .back-link {
    color: #e97281;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: underline;
}

.step-wrapper-sec .step-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.step-wrapper-sec .step-card .step-number {
    background: #e97281;
    color: white;
    font-size: 1.2rem;
    padding: 4px 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.step-wrapper-sec .highlight {
    color: E97281;
}

.step-wrapper-sec .options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
}

.step-wrapper-sec .option {
    flex: 1;
    background-color: #2f345e;
    color: white;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 4px solid transparent;
}
.step-wrapper-sec .option a{
    display: inline-block;
    padding: 40px 20px;
    color: currentColor;
    text-decoration: none;
}
.step-wrapper-sec .option img {
    width: 80px;
    margin-bottom: 20px;
}

.step-wrapper-sec .option p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 80%;
    margin: auto;
}

.step-wrapper-sec .option.selected {
    /* border: 4px solid #52b27f; */
    border: 4px solid #e97281;
}

/* ===================== Page 3 ======================= */
.symptomsSec {
    padding-block: 60px;
padding-inline: 5%;
}
.symptomsSec .wrapper {
    margin: auto;
}

.symptomsSec .card,
.activitySec .card,
.eligibilitySec .card {
    background: #f2f2f2;
    padding: 40px;
    border-radius: 14px;
    border: 1px solid #3e4365;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.symptomsSec .top-bar,
.activitySec .top-bar,
.eligibilitySec .top-bar,
.recommendationSec .top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    width: 100%;
}

.symptomsSec .back,
.activitySec .back,
.eligibilitySec .back,
.recommendationSec .back,
.symptomsSec .reset,
.activitySec .reset,
.eligibilitySec .reset,
.recommendationSec .reset {
    color: #e97281;
    font-weight: bold;
    text-decoration: underline;
    font-size: 1rem;
    display: flex;
    gap: 5px;
    align-items: center;
}
.symptomsSec h2 {
    margin-bottom: 10px;
}
.symptomsSec h2,
.activitySec h2,
.eligibilitySec h2,
.recommendationSec h2 {
    color: #2f345e;
}

.symptomsSec h2 .step,
.activitySec h2 .step {
    background: #e97281;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.symptomsSec .stepBox,
.activitySec .stepBox {
    display: inline-block;
    position: relative;
    top: -4px;
}
.symptomsSec h2 .highlight,
.activitySec h2 .highlight,
.eligibilitySec h2 .highlight {
    color: #d56577;
}

.symptomsSec h2 small {
    display: block;
    color: #3e4365;
    margin-top: 5px;
    padding-left: 45px;
}

.symptomsSec .symptom-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-right: 24%;
}

.symptomsSec .symptom {
    background: #2f345e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
    border: 3px solid transparent;
    transition: 0.5s ease all;
}
.symptomsSec .symptom.selected {
    border: 3px solid #e97281;
    transition: 0.5s ease all;
}

.symptomsSec .symptom img {
    width: 25px;
    height: 25px;
}

.symptomsSec .iconBoxP {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.symptomsSec .iconBoxP img {
    padding: 3px;
}
/* ===================== Page 4 ======================= */
.activitySec {
    padding-block: 60px;
padding-inline: 5%;
}
.activitySec .wrapper {
    margin: auto;
}

.activitySec .activity-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.activitySec .activity {
    flex: 1 1 30%;
    background-color: #2f345e;
    color: white;
    text-align: center;
    border-radius: 14px;
    padding: 40px 20px;
    transition: 0.3s ease;
    border: 4px solid transparent;
}

.activitySec .activity.selected {
    border: 4px solid #e97281;
}

.activitySec .iconBoxP {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid #e97281;
}

.activitySec .iconBoxP img {
    height: 100%;
    object-fit: contain;
    width: 100%;
    padding: 10px;
}

.activitySec .activity h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.activitySec .activity p {
    font-size: 16px;
    color: #ddd;
}

.activitySec .next-button-wrapper {
    text-align: right;
    margin-top: 24px;
}

/* ===================== Page 5 ======================= */
.eligibilitySec {
    padding-block: 60px;
padding-inline: 5%;
}
.eligibilitySec .eligibilityInner {
    margin: auto;
    border-radius: 16px;
    padding: 30px 50px;
    background-color: #f4f4f4c9;
    border: 1px solid #2b2f48;
}
.eligibilitySec .eligibilityInner .card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    border: none;
    background: transparent;
    padding-inline: 0;
    padding-block: 30px 20px;
}

.eligibilitySec .form-section {
    flex: 1 1 40%;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #d1d1d1;
}

.eligibilitySec .form-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #2f345e;
}

.eligibilitySec .form-section h2 .highlight {
    color: #d56577;
}

.eligibilitySec .form-group {
    margin-bottom: 16px;
    position: relative;
}
form ::placeholder {
    color: #3e4365;
    opacity: 1 !important;
    font-weight: 500 !important;
    font-family: "Inter" !important;
}
.eligibilitySec .form-group input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    border: 1px solid #c0c0c0;
    background: #f8f9fd;
    font-family: "Inter" !important;
    cursor: pointer;
}
.eligibilitySec .form-group:has(input#datepicker):after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    right: 15px;
    background: url("img/icon/calIcon.png") no-repeat;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    background-size: 18px;
    background-position: center center;
}
.eligibilitySec .form-group input[type="date"] {
    padding-right: 20px;
    color: #3e4365;
    opacity: 1 !important;
    font-weight: 500 !important;
    font-family: "Inter" !important;
}

/* .eligibilitySec .recaptcha {
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
} */
.eligibilitySec .recaptcha {
    display: flex;
    align-items: center;
    border: 1px solid #d3d3d3;
    border-radius: 30px;
    padding: 8px 16px;
    width: 200px;
    background-color: #f9f9f9;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
    margin: 16px 0;
}

.eligibilitySec .recaptcha input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border: 2px solid #999;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}

.eligibilitySec .recaptcha input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    background-color: #5bc88f;
    border-radius: 50%;
    transform: translate(-53%, -53%);
}

.eligibilitySec .recaptcha label {
    flex-grow: 1;
    cursor: pointer;
    user-select: none;
}

.eligibilitySec .recaptcha-logo {
    width: 25px;
    height: 25px;
    background-image: url('img/icon/recaptcha.png');
    background-size: contain;
    background-repeat: no-repeat;
}


.eligibilitySec .submit-btn {
    background: #5bc88f;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.eligibilitySec .image-section {
    flex: 1 1 55%;
    padding: 40px;
    background-color: #2f345e;
    border-radius: 20px;
    color: #fff;
}
.eligibilitySec .image-section h1.heading-h1 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 24px;
  }
.eligibilitySec .image-section img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 180px;
}
.eligibilitySec .highlight {
    color: #fff;
  }
  
.eligibilitySec .pink {
    color: #f3758d;
  }
  
.eligibilitySec .study-link {
    display: inline-block;
    margin: 10px 0 30px;
    padding: 10px 20px;
    background-color: rgb(44 44 63 / 60%);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .eligibilitySec .study-link .underline {
    text-decoration: underline;
    color: #e280a3;
  }
  
  .eligibilitySec .study-link i {
    margin-left: 8px;
  }
  
  .eligibilitySec  blockquote {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
  }
  
  .eligibilitySec  .author {
    color: #9ca3af;
    font-weight: 400;
    margin-bottom: 30px;
  }
  
  .eligibilitySec  .trustpilot {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .eligibilitySec  .trust-logo {
    height: 18px;
  }
  
  .eligibilitySec  .stars i {
    color: #00b67a;
    margin-right: 2px;
  }
  
  .eligibilitySec  .heartbeat {
    font-size: 16px;
    color: #fff;
  }
  
  .eligibilitySec .heartbeat .pink {
    color: #f3758d;
  }
  .grecaptcha-badge {
    visibility: hidden;
 }
@media (max-width: 768px) {
    .eligibilitySec .card {
        flex-direction: column;
    }

    .eligibilitySec .image-section,
    .form-section {
        flex: 1 1 100%;
    }
}
/* ============= Progress Bar Css ================== */
.mainWrapperProgress {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    justify-items: stretch;
}
.progress-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    padding: 0;
}

.progress-indicator .bar {
    width: 12px;
    border-radius: 6px;
    background-color: #ddd;
    flex: 1;
}

.progress-indicator .bar.active {
    background-color: #4caf84; /* green */
}

/* ================= Product Recommendation ================= */
.recommendationSec {
    padding-block: 60px;
padding-inline: 5%;
}
.recommendationSec .recommendation-Inner {
    background: #f2f2f2;
    padding: 40px 40px 60px;
    border-radius: 14px;
    border: 1px solid #3e4365;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.recommendationSec .recommendation-Inner .card {
    background: linear-gradient(146.17deg, #171a2e 54.29%, #6872ae 132.25%);
    border-radius: 16px;
    color: #fff;
    padding: 24px 30px 40px;
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.recommendationSec .recommendation-Inner .heading-h2 {
    width: 100%;
}
.recommendationSec .badge {
    color: #f47c90;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 25px;
}
.recommendationSec .badgeTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.recommendationSec .badge::before {
    content: "★";
    margin-right: 6px;
}

.recommendationSec .price-tag {
    border: 3px solid #52b27f;
    color: #52b27f;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    width: max-content;
}

.recommendationSec .card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 18px 0;
}

.recommendationSec .card p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.recommendationSec .package-box {
    background: linear-gradient(90deg, #2b2f48 42.51%, #6872ae 112.68%);
    border-radius: 16px;
    padding: 20px 20px 0;
    margin: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.recommendationSec .package-info {
    flex: 1;
}

.recommendationSec .package-title {
    color: #e87184;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.recommendationSec .package-info ul {
    list-style: none;
    padding: 0 0 20px;
    margin: 0;
}

.recommendationSec .package-info ul li::before {
    content: "▶";
    color: #e87184;
    margin-right: 8px;
}

.recommendationSec .package-info ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.recommendationSec .doctor-img {
    max-width: 158px;
    height: auto;
    margin-top: -44px;
}

.recommendationSec .book-btn {
    background-color: #49b77f;
    color: #fff;
    padding: 14px 28px;
    border: none;
    font-size: 16px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
}

.recommendationSec .book-btn:hover {
    background-color: #3fa66f;
}
.recommendationSec .price-select-box {
    display: flex;
    gap: 16px;
    margin: 20px 0;
}

.recommendationSec .price-option {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 16px 24px;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    max-width: 160px;
}

.recommendationSec .price-option.active {
    border-color: #49b77f;
    background-color: #f9fffb;
}

.recommendationSec .option-title {
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 8px;
    font-size: 18px;
}

.recommendationSec .option-price {
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 16px;
    display: inline-block;
}

.recommendationSec .option-price.green {
    background-color: #49b77f;
    color: #fff;
}

.recommendationSec .option-price.gray {
    background-color: #e6e6f2;
    color: #7d7d93;
}
/* =================== Header =================== */
.header-container{
    padding-inline: 5%;
}
.main_header {
    position: relative;
    background: #f8f9fd;
    border-bottom: 1px solid #e1e3f0;
}
.main_header .main_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 15px 0;
}
.main_header_inner .main_header_logo {
    display: inline-block;
    width: 200px;
}
.main_header_inner .main_header_logo img {
    width: 100%;
}
.main_header_inner .main_header_right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main_header_inner .header_btn {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -.48px;
    border-radius: 4px;
}
.main_header_inner .main_header_right .header_call {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #171a2e;
    transition: .3s all ease;
}
.main_header_inner .main_header_right .header_call svg {
    width: 16px;
    
}
.main_header_inner .main_header_right .header_call svg path{
    fill: #151a30;
}
.main_header_inner .main_header_right .icon-cart-empty{
    width: 46px;
    height: 46px;
    margin-bottom: -5px;
}
.main_header_inner .main_header_right .icon-cart-empty path{
    fill: #000;
}
.main_header_inner .main_header_right .header_call a {
    color: currentColor;
    text-decoration: none;
    font-weight: 500;
}
.main_header_inner .main_header_right .header_call:hover {
    color: #e97281;
}
.main_header_inner .main_header_right #cart-icon-bubble {
    display: none !important;
}
.main_header_inner .main_header_right #cart-icon-bubble .cart-count-bubble {
    background: #52b27f;
}
/* -========== Footer ==========- */
footer .main_footer{
    padding-block: 80px;
}
.mfooter_inner {
    display: flex;
    gap: 40px;
}
.mfooter_inner .mfooter_col {
    width: 25%;
}
.mfooter_inner .inter_para {
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.51px;
}
.mfooter_inner .mfooter_col.mfooter_info_col,
.mfooter_inner .mfooter_col.mfooter_paypart_col {
    width: 35%;
}
.mfooter_inner .mfooter_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mfooter_inner .mfooter_info img {
    width: 100%;
    max-width: 160px;
}
.mfooter_inner .mfooter_info .mfooter_info_para a {
    color: currentColor;
    text-decoration: none;
    transition: .3s all ease;
}
.mfooter_inner .mfooter_info .mfooter_info_para a:hover {
    color: #e97281 !important;
}
.mfooter_inner .mfooter_nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mfooter_nav .footer_navig_ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mfooter_nav .footer_navig_ul li a {
    text-decoration: none;
    transition: .3s all ease;
}
.mfooter_nav .footer_navig_ul li a:hover {
    color: #e97281 !important;
}
.mfooter_nav .list-social {
    display: flex;
    gap: 5px;
    list-style: none;
}
.mfooter_nav .list-social li {
}
.mfooter_nav .list-social li a {}
.mfooter_nav .list-social li a svg {
    width: 28px;
    height: 28px;
    color: #fff;
}
.mfooter_inner .mfooter_cont {
    
}
.mfooter_inner .mfooter_cont .mfooter_cont_para {
    
}
.mfooter_inner .mfooter_cont .mfooter_cont_para a {
    display: inline-block;
    color: currentColor;
    text-decoration: none;
    transition: .3s all ease;
}
.mfooter_inner .mfooter_cont .mfooter_cont_para a:hover {
    color: #e97281 !important;
}
.mfooter_inner .mfooter_paypart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mfooter_paypart .list.list-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mfooter_paypart .list.list-payment li {
    display: flex;
}
.mfooter_paypart .mfooter_partner_list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.mfooter_paypart .mfooter_partner_list img {
    height: 60px;
}

/* ================ Responsive  =============== */
/* ========== Responsive CSS for Tablet and Mobile ========== */
@media screen and (max-width: 1024px) {
    .heading-h1 {
        font-size: 40px;
    }

    .heartTestSec .banner {
        padding: 70px 20% 70px 40px;
    }
    .step-wrapper-sec {
        padding-block: 40px;
      }
    
      .step-wrapper-sec .step-card {
        padding: 30px 30px;
      }
    
      .symptomsSec {
        padding-block: 40px;
      }
    
      .symptomsSec .card {
        padding: 30px;
      }
    
      .symptomsSec .symptom-grid {
        padding-right: 0;
      }
      .activitySec {
        padding-block: 40px;
      }
    
      .activitySec .activity-grid {
        gap: 20px;
      }
    
      .activitySec .activity {
        flex: 1 1 45%;
        padding: 30px 20px;
      }
    
      .activitySec .activity h3 {
        font-size: 20px;
      }
    
      .activitySec .activity p {
        font-size: 15px;
      }
      .eligibilitySec {
        padding-block: 40px;
      }
      .eligibilitySec .eligibilityInner .card {
        flex-direction: column;
      }
      .eligibilitySec .eligibilityInner {
        padding: 20px 30px;
      }
    
      .eligibilitySec .form-section,
      .eligibilitySec .image-section {
        flex: 1 1 100%;
        padding: 24px;
      }
    
      .eligibilitySec .form-section h2 {
        font-size: 1.4rem;
      }
    
      .eligibilitySec .image-section h1.heading-h1 {
        font-size: 28px;
      }
      .recommendationSec .recommendation-Inner .card {
        flex: 1 1 100%;
    }
      .recommendationSec .doctor-img {
        width: 100px;
        margin: 0 auto 16px;
        display: none;
      }

    /* ============ Footer ============ */
    .mfooter_inner {
        flex-wrap: wrap;
        gap: 30px;
      }
    
      .mfooter_inner .mfooter_col {
        width: 48%;
      }
    
      .mfooter_inner .mfooter_col.mfooter_info_col,
      .mfooter_inner .mfooter_col.mfooter_paypart_col {
        width: 100%;
      }
}

@media screen and (max-width: 768px) {
    .heading-h1 {
        font-size: 32px;
    }

    .heading-h2 {
        font-size: 1.75rem;
    }

    .heading-h3 {
        font-size: 1.3rem;
    }

    .heading-h4 {
        font-size: 1.1rem;
    }

    .heading-h5 {
        font-size: 0.95rem;
    }

    .heading-h6 {
        font-size: 0.8rem;
    }

    .heartTestSec {
        padding-block: 40px;
    }

    .heartTestSec .banner {
        padding: 50px 20px;
        text-align: center;
        background-position: center;
    }

    .heartTestSec .text-box h1 {
        font-size: 28px;
    }

    .heartTestSec .text-box p {
        font-size: 0.95rem;
    }

    .heartTestSec .buttons {
        justify-content: center;
    }

    .btn-next {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .step-wrapper-sec .step-card h2,
  .symptomsSec h2 {
    font-size: 1.5rem;
  }

  .step-wrapper-sec .option a {
    padding: 30px 15px;
  }

  .step-wrapper-sec .option img {
    width: 60px;
    margin-bottom: 16px;
  }

  .step-wrapper-sec .option p {
    font-size: 18px;
    max-width: 100%;
  }
  .symptomsSec .card, .activitySec .card, .eligibilitySec .card {
    padding: 40px 20px;
  }
  .eligibilitySec .eligibilityInner{
    padding: 20px;
  }
  .symptomsSec .card {
    flex-direction: column;
    padding: 20px;
  }

  .symptomsSec .symptom-grid {
    padding-right: 0;
    gap: 12px;
  }

  .symptomsSec .symptom {
    font-size: 15px;
    padding: 8px 16px;
  }

  .symptomsSec .symptom img {
    width: 22px;
    height: 22px;
  }

  .symptomsSec .iconBoxP {
    width: 26px;
    height: 26px;
  }

  .activitySec .activity {
    flex: 1 1 100%;
    padding: 24px 16px;
  }

  .activitySec .iconBoxP {
    width: 60px;
    height: 60px;
  }

  .activitySec .activity h3 {
    font-size: 18px;
  }
  .eligibilitySec .eligibilityInner .card {
    flex-direction: column;
  }

  .eligibilitySec .form-section,
  .eligibilitySec .image-section {
    flex: 1 1 100%;
    padding: 24px;
  }

  .eligibilitySec .image-section img {
    width: 140px;
  }

  .eligibilitySec blockquote {
    font-size: 18px;
  }

  .eligibilitySec .submit-btn {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  .recommendationSec .recommendation-Inner {
    flex-direction: column;
    padding: 24px 16px;
  }

  .recommendationSec .recommendation-Inner .card {
    padding: 20px;
  }

  .recommendationSec .badge {
    font-size: 20px;
  }

  .recommendationSec .card h3 {
    font-size: 16px;
    margin: 12px 0;
  }

  .recommendationSec .package-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .recommendationSec .book-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .recommendationSec .option-title {
    font-size: 16px;
  }

  .recommendationSec .option-price {
    font-size: 14px;
    padding: 6px 12px;
  }

  .recommendationSec .doctor-img {
    width: 100px;
    margin: 0 auto 16px;
    display: none;
  }
    /* ============ Footer ============== */
    footer .main_footer {
        padding-block: 50px;
      }
    
      .mfooter_inner {
        flex-direction: column;
        gap: 30px;
      }
    
      .mfooter_inner .mfooter_col,
      .mfooter_inner .mfooter_col.mfooter_info_col,
      .mfooter_inner .mfooter_col.mfooter_paypart_col {
        width: 100%;
      }
    
      .mfooter_inner .mfooter_info img {
        max-width: 140px;
      }
    
      .mfooter_nav .list-social li a svg {
        width: 24px;
        height: 24px;
      }
    
      .mfooter_inner .mfooter_paypart .mfooter_partner_list img {
        height: 48px;
      }
}

@media screen and (max-width: 480px) {
    .heading-h1 {
        font-size: 26px;
    }

    .heading-h2 {
        font-size: 1.5rem;
    }

    .heading-h3 {
        font-size: 1.2rem;
    }

    .container {
        padding-inline: 15px;
    }

    .heartTestSec .banner {
        padding: 40px 16px;
        border-radius: 16px;
    }

    .heartTestSec .btnLink {
        font-size: 16px;
        padding: 10px 20px;
    }

    .heartTestSec .btnLink.time img {
        width: 16px;
    }

    .btn-next {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .step-wrapper-sec .options {
        flex-direction: column;
    }
    .step-wrapper-sec .step-card {
        padding: 20px;
      }
    
      .step-wrapper-sec .step-card h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
      }
    
      .step-wrapper-sec .option a {
        padding: 25px 10px;
      }
    
      .step-wrapper-sec .option img {
        width: 50px;
        margin-bottom: 12px;
      }
    
      .step-wrapper-sec .option p {
        font-size: 16px;
      }
    
      .symptomsSec h2 {
        font-size: 1.3rem;
      }
    
      .symptomsSec h2 small {
        font-size: 0.9rem;
        padding-left: 0px;
      }
    
      .symptomsSec .symptom {
        font-size: 14px;
        padding: 8px 12px;
      }
    
      .symptomsSec .iconBoxP {
        width: 24px;
        height: 24px;
      }
    
      .symptomsSec .iconBoxP img {
        padding: 2px;
      }
      .recommendationSec .badgeTop{
        flex-wrap: wrap;
      }
    /* =========== Header ================ */
    .main_header .main_header_inner {
        gap: 25px;
    }
    .main_header_inner .main_header_logo {
        width: 140px;
    }
    .main_header_inner .main_header_right .header_call a{
        font-size: 15px;
    }
    /* ================= Footer ================ */
    .mfooter_inner .inter_para {
        font-size: 15px;
        line-height: 22px;
      }
    
      .mfooter_nav .footer_navig_ul li a {
        font-size: 15px;
      }
    
      .mfooter_nav .list-social {
        gap: 10px;
        justify-content: center;
      }
    
      .mfooter_inner .mfooter_paypart .mfooter_partner_list {
        justify-content: center;
      }
    
      .mfooter_inner .mfooter_info img {
        max-width: 120px;
      }
}
div#req_response {
    font-size: 14px;
    padding: 2%;
}
div.error {
    color: red;
}
div.success {
    color: green;
    font-size: 13px;
}
.ajax_loader {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    padding: 16%;
    text-align: center;
    background: #fffffff0;
}
.ajax_loader img{
    max-width: 100px;
}
p.notice {
    font-size: 11px;
    line-height: 15px;
    color: #2f345e;
    display: inline-flex;
    gap: 5px;
    margin-top: 20px;
}
p.notice a{
    display: inline-block;
    color: #2f345e !important;
    text-decoration: underline;
}
p.notice span.info {
    font-weight: bolder;
    font-size: 14px;
    padding-left: 5px;
    color: red;
    line-height: 28px;
}
