.location-fields-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.location-fields-row .form-group {
    flex: 1 1 0;
    min-width: 150px;
}

@media (max-width: 1024px) {
    .location-fields-row {
        gap: 12px;
    }
    .location-fields-row .form-group {
        min-width: 120px;
    }
}
@media (max-width: 768px) {
    .location-fields-row {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .location-fields-row .form-group {
        width: 100%;
        min-width: 0;
    }
}
@media (max-width: 425px) {
    .location-fields-row {
        gap: 8px;
    }
    .location-fields-row .form-group {
        width: 100%;
        min-width: 0;
    }
    .location-input,
    .pincode-input {
        font-size: 14px;
        padding: 8px 10px;
    }
}
@media (max-width: 375px) {
    .location-fields-row {
        gap: 6px;
    }
    .location-fields-row .form-group {
        width: 100%;
    }
    .location-input,
    .pincode-input {
        font-size: 13px;
        padding: 7px 8px;
    }
}
@media (max-width: 320px) {
    .location-fields-row {
        gap: 4px;
    }
    .location-fields-row .form-group {
        width: 100%;
    }
    .location-input,
    .pincode-input {
        font-size: 12px;
        padding: 6px 6px;
    }
}

/* custom checkbox style */
.plan input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-content {
    border: 1px solid #e1e2e7;
    border-radius: 10px;
    padding: 15px;
    transition: box-shadow 0.3s, border 0.3s;
    cursor: pointer;
    position: relative;
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-content img {
    height: 50px;
    flex-shrink: 0;
}

.plan-content span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #0d2b20;
}

.plan-content p {
    font-size: 12px;
    color: #0d2b20;
    margin: 0;
    line-height: 15px;
}

.plan-content:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.plan input[type="radio"]:checked + .plan-content {
    border-color: #266431;
    background: #e7f9eb;
}

.plan input[type="radio"]:checked + .plan-content::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    height: 14px;
    width: 14px;
    background: #266431;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #266431;
}

/* On larger screens, stack like cards */
@media (min-width: 992px) {
    .plan-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .plan-content img {
        margin-bottom: 5px;
        height: 50px;
    }
}

/* inspiration */
.inspiration {
    font-size: 12px;
    margin-top: 50px;
    position: absolute;
    bottom: 10px;
    font-weight: 300;
}

.inspiration a {
    color: #666;
}
@media screen and (max-width: 767px) {
    /* inspiration */
    .inspiration {
        display: none;
    }
}

/* custom checkbox style */

/* custom select box style*/

.selectBox input {
    display: none;
}
.selectBox input:checked + label {
    border-color: var(--Secondary);
    background-color: var(--bg-4);
    color: var(--Secondary);
    z-index: 1;
    border-radius: 6px;
    /* box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1); */
}
.selectBox input:checked + label:before {
    background: var(--Secondary);;
    box-shadow: 0 0 0 1px #266431;
}
.selectBox label {
    border: 1px solid #f3eae5;
    position: relative;
    padding: 5px 5px 5px 35px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 10px;
    margin: 5px;
}
.selectBox label:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #ccc;
    border: 3px solid #fff;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.selectBox label:hover {
    border-color: #999;
    z-index: 1;
}
.selectBox.radio label:before {
    border-radius: 100%;
}

.selectBoxGroup {
    display: flex;
    flex-wrap: wrap;
}
.selectBoxGroup .selectBox {
    margin-left: 0px;
}
.selectBoxGroup .selectBox:first-child {
    margin-left: 0;
}
@media screen and (max-width: 568px) {
    .selectBoxGroup {
        flex-direction: row;
        gap: 5px;
    }
    .selectBoxGroup .selectBox {
        margin-left: 0;
    }
    .selectBoxGroup .selectBox label {
        width: 100%;
    }
}

/* custom select box style*/

/* custom BMI report */

.c-bmi {
    background-color: #e7f9eb;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: ui-sans-serif, system-ui, sans-serif;
    padding: 2.5rem;
    width: 100%;
}
.c-bmi fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
.c-bmi__group-text {
    display: none;
    font-size: small;
    order: 2;
    padding: 1rem 0;
    text-align: left;
    width: 100%;
}
.c-bmi__groups {
    border: 0;
    flex-wrap: wrap;
    font-size: medium;
    font-weight: 500;
    padding: 0;
    text-align: center;
    width: 100%;
}
.c-bmi__groups label {
    display: block;
    padding: 0.5rem;
    position: relative;
}

[for="bmi-g0"] {
    background-color: #4691e2;
}
[for="bmi-g1"] {
    background-color: #0cb764;
}
[for="bmi-g2"] {
    background-color: #febf18;
}
[for="bmi-g3"] {
    background-color: #fc8711;
}
[for="bmi-g4"] {
    background-color: #ff6455;
}
[for="bmi-g5"] {
    background-color: #cc1100;
    color: #fff;
}

.custom-title {
    font-weight: 500 !important;
}

.c-bmi__groups input:checked + label::before {
    background-color: #fff;
    clip-path: polygon(0% 0%, 0% 100%, 75% 50%);
    content: "";
    display: inline-block;
    height: 1rem;
    left: 0.5rem;
    position: absolute;
    top: 0.35rem;
    width: 1rem;
}
.c-bmi__groups input:checked + label + div {
    display: block;
    flex: 0 0 100%;
}
.c-bmi__label {
    display: block;
    font-size: medium;
    margin: 0 0 1.5rem 0;
    position: relative;
}
.c-bmi__label output {
    position: absolute;
    right: 0;
    top: 0;
}
.c-bmi__range {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    outline: none;
    width: 100%;
}
.c-bmi__range::-webkit-slider-runnable-track {
    background-image: linear-gradient(
        to bottom,
        transparent 45%,
        lightslategray 45%,
        lightslategray 55%,
        transparent 55%
    );
}
.c-bmi__range::-moz-range-track {
    background-image: linear-gradient(
        to bottom,
        transparent 45%,
        lightslategray 45%,
        lightslategray 55%,
        transparent 55%
    );
}
.c-bmi__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: hsl(133, 80%, 24%);
    border-radius: 50%;
    height: 20rem;
    width: 20rem;
}
.c-bmi__range::-moz-range-thumb {
    appearance: none;
    background-color: hsl(133, 80%, 24%);
    border-radius: 50%;
    height: 20rem;
    width: 20rem;
}
.c-bmi__range:focus::-webkit-slider-thumb {
    background-color: hsl(143, 79%, 46%);
    box-shadow: inset 0 0 0 0.25rem hsl(133, 80%, 24%);
}
.c-bmi__range:focus::-moz-range-thumb {
    background-color: hsl(143, 79%, 46%);
    box-shadow: inset 0 0 0 0.25rem hsl(133, 80%, 24%);
}
.c-bmi__result {
    display: block;
    font-size: 200%;
    text-align: right;
}
.c-bmi [type="radio"] {
    display: none;
}

/* RWD */
@media (min-width: 600px) {
    .c-bmi__groups {
        display: flex;
    }
    .c-bmi__groups input:checked + label::before {
        background-color: inherit;
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
        left: 50%;
        top: -1rem;
        transform: translateX(-50%);
        width: 1.5rem;
    }
    .c-bmi__groups label {
        flex: 1;
    }
    [for="bmi-g0"] {
        border-radius: 0.25rem 0 0 0.25rem;
    }
    [for="bmi-g5"] {
        border-radius: 0 0.25rem 0.25rem 0;
    }
}

.gender-group {
  display: flex;
  gap: 18px;
  align-items: center;
}

.gender-card {
  width: 140px;
  height: 85px;
  border-radius: 10px;
  border: 2px solid #e6e6e6;
  background: #f7f7f7;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease;
  position: relative;
  user-select: none;
}

/* Hide the radio */
.gender-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Center icon + text */
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.gender-card .icon {
  font-size: 22px;
  color: #b0b0b0;
}

.gender-card .text {
  font-size: 14px;
  font-weight: 600;
  color: #777;
}

/* Selected card styles */
.gender-card:has(input:checked) {
  background: #ffffff;
  border-color: #b8b8b8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Selected icon + text highlight */
.gender-card:has(input:checked) .icon {
  color: #ff7b1a;
}

.gender-card:has(input:checked) .text {
  color: #222;
}

/* Hover effect */
.gender-card:hover {
  border-color: #cfcfcf;
  background: #fff;
}

/* Info box 1 */
.info-box-1 {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--Border);
    /* max-width: 300px; */
    height: max-content;
}
.info-box-1 img {
    border-radius: 12px;
    margin-bottom: 15px;
}
.info-box-1 h6 {
    margin-bottom: 3px;
}
.info-box-1 p {
    margin-bottom: 0 !important;
}
/* Info box 1 */

.step-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.step-head-info {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: var(--Secondary) !important;
    text-transform: uppercase;
}

.program-card {
    border-radius: 18px;
    background: #fff;
    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
}

.card-header-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 38px 20px 0px 15px;
}

.dark-section {
    background: #000;
    padding: 70px 0;
}

.img-top {
    height: 252px;
    object-fit: cover;
    width: 100%;
}

.price-div {
    padding: 10px 0;
    align-items: flex-start;
    justify-content: center;
    display: flex;
}

.price-current {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.price-old {
    font-size: 20px;
    color: #fb5c5c;
    text-decoration: line-through;
    line-height: 1.7;
}

.card-right-image {
    right: 0 !important;
    bottom: 0 !important;
    position: absolute !important;
}

.card-content, .card-body {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 25px 20px;
}

@media screen and (max-width:991px) and (min-width:768px) {
    .card-right-image {
        width: 200px;
    }
}

@media screen and (max-width:767px) and (min-width:481px) {
    .card-right-image img {
        width: 180px;
        object-fit: contain;
    }

    .card-header-area {
        padding: 38px 20px 20px 15px;
    }
}

@media screen and (max-width:480px) {
    .card-right-image img {
        width: 160px;

    }
}

#header_main .header-inner .header-custom {
  line-height: 80px;
}

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


}

.counter .number-counter .counter-content span {
  font-size: 26px;
  color: #144835;
}

.text-price {
  font-size: 30px;
  color: #fbde37;
}

.blinking {
  animation: blinkingText 0.9s infinite;
}

.footer-bottom .content-text {
  font-size: 18px;
}

@keyframes blinkingText {
  0% {
    color: #ffffff;
  }

  30% {
    color: #fbde37;
  }

  60% {
    color: #ffffff;
  }

  100% {
    color: #fbde37;
  }

}

@media screen and (min-width: 768px) {
  .tf-btn.desktop-btn {
    display: block;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
    z-index: 9;
  }

  .tf-btn.mobile-btn {
    display: none;
  }

}

@media screen and (max-width: 767px) {
  .tf-btn.desktop-btn {
    display: none;
  }

  .footer-bottom del {
    display: none;
  }

  .footer-bottom .content-text {
    font-size: 15px;
    vertical-align: top;
    line-height: normal;
  }

}


/* timeline */

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  background: #f0fff5;
  width: 5px;
  height: 95%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  width: 100%;
  margin-bottom: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
  float: right;
  padding: 20px 30px;
}

.timeline-item:nth-child(even) .timeline-content .date {
  right: auto;
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: "";
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 30px;
  left: -15px;
  border-width: 10px 15px 10px 0;
  border-color: transparent #144835 transparent transparent;
}

.timeline-item::after {
  content: "";
  display: block;
  clear: both;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 20px 30px;
  border-radius: 16px;
  background: #f0fff5;
  border: 1px solid #144835;
}

.timeline-content::after {
  content: "";
  position: absolute;
  border-style: solid;
  width: 0;
  height: 0;
  top: 30px;
  right: -15px;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #144835;
}

.timeline-img {
  width: 20px;
  height: 20px;
  background: #144835;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-top: 31px;
  margin-left: -10px;
}

.timeline-card {
  padding: 0 !important;
}

.timeline-card p {
  padding: 0 20px;
}

.timeline-card a {
  margin-left: 20px;
}

.date {
  background: #dceaf8;
  display: inline-block;
  color: #3779c7;
  padding: 10px;
  border-radius: 16px 0 16px 0;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 50px;
  }

  .timeline .timeline-img {
    left: 50px;
  }

  .timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 70px;
  }

  .timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
  }

  .timeline .timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #144835 transparent transparent;
  }
}

.partner-logo img {
    max-height: 30px;
    max-width: 140px;
    opacity: 60%;
}

@media screen and (max-width: 768px) {
    .partner-logo img {
        max-height: 25px;
        max-width: 110px;
    }
}