    /* --- Gauge container --- */
    .gauge-wrapper {
        position: relative;
        width: 260px;
        height: 130px;
        margin: 0 auto;
    }

    /* --- Gauge bar --- */
    .gauge {
        width: 260px;
        height: 130px;
        border-top-left-radius: 260px;
        border-top-right-radius: 260px;
        background: conic-gradient(#9e9e9e 0deg 60deg,
                /* Underweight (Grey) */
                #f44336 60deg 150deg,
                /* Normal (Green) */
                #ff9800 150deg 210deg,
                /* Overweight (Orange) */
                #28a745 210deg 270deg
                /* Obesity (Red) */
            );
        transform: rotate(-0deg);
        position: absolute;
        bottom: 0;
        overflow: hidden;
    }


    /* --- Inner white mask --- */
    .gauge::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 100px;
        background: #fffaf0;
        /* Slight off-white */
        border-top-left-radius: 200px;
        border-top-right-radius: 200px;
        bottom: 0;
        left: 30px;
        z-index: 1;
    }


    /* --- Needle --- */
    .needle {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 3px;
        height: 120px;
        background: #000;
        transform-origin: bottom center;
        transform: rotate(-90deg);
        transition: transform 1s ease-in-out;
        z-index: 3;
    }

    /* --- Center dot --- */

    .center-dot {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        width: 24px;
        height: 24px;
        background: #00bcd4;
        border: 3px solid #fff;
        border-radius: 50%;
        z-index: 4;
    }

    #bmiResult {
        font-size: 1.1rem;
        font-weight: 600;
        color: #444;
    }


    /* --- Gender icons --- */
    .gender-options img {
        width: 70px;
        cursor: pointer;
        border: 2px solid transparent;
        border-radius: 50%;
        padding: 5px;
    }

    .gender-options input:checked+img {
        border-color: #ffc107;
        background-color: #fffbe6;
    }

   .input-dubble {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .input-dubble .label {
        color: #222E48;
        font-size: 18px;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .gauge-wrapper {
            width: 200px;
            height: 110px;
            margin: 0px;
        }

        .needle {
            height: 90px;
        }
    }

    .bg-footer {
        background-color: #161616;
    }

    @media screen and (max-width:1924px) and (min-width:574px) {

        .loan-reviews .loan-reviews_card .loan-reviews__part-one {
            flex: 1;
        }

        .loan-reviews .loan-reviews_card .loan-reviews__part-two {
            flex: 1.4;
        }

        .loan-reviews .loan-reviews_card .loan-reviews__part-three {
            flex: 0.7;
        }
    }

    @media screen and (max-width:767px) {
        .reviews-details .reviews-details__area .reviews-details__part .loan-reviews--quaternary .loan-reviews_card {
            flex-wrap: wrap;
            flex-direction: column;
        }

        .loan-reviews .loan-reviews_card .loan-reviews__part-one,
        .loan-reviews .loan-reviews_card .loan-reviews__part-two {
            width: 100%;
        }
    }

    .interest-badge {
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        background: #012060;
        padding: 10px 30px;
        position: absolute;
        top: 0;
        right: 0;
        white-space: nowrap;
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0% 100%, 7% 50%, 0% 0%);
        clip-path: polygon(100% 0, 100% 100%, 0% 100%, 7% 50%, 0% 0%);
    }

    @media (max-width: 992px) {
        .interest-badge {
            font-size: 11px;
            padding: 8px 35px;
        }
    }

    @media (max-width: 576px) {
        .interest-badge {
            font-size: 10px;
            padding: 6px 22px;
            top: 5px;
            right: 5px;
        }
    }

    .income-wrapper {
        display: flex;
        align-items: center;
        gap: 25px;
        padding: 25px 30px 25px 0px;
        flex-wrap: wrap;
    }

    /* LEFT SIDE */
    .income-left {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .badge-red {
        background: #d60000;
        color: #fff;
        padding: 6px 28px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 27px;
        text-align: center;
        min-width: 180px;
    }

    /* RIGHT SIDE */
    .income-right {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.1;
        color: #0b2a6f;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* ===================== */
    /* 📱 TABLET (≤ 992px) */
    /* ===================== */
    @media (max-width: 992px) {
        .income-right {
            font-size: 38px;
        }

        .badge-red {
            font-size: 16px;
            min-width: 160px;
        }
    }

    /* ===================== */
    /* 📱 MOBILE (≤ 576px) */
    /* ===================== */
    @media (max-width: 576px) {
        .income-wrapper {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }

        .income-left {
            flex-direction: row;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .badge-red {
            padding: 10px 16px;
            font-size: 14px;
            min-width: auto;
        }

        .income-right {
            font-size: 30px;
            line-height: 1.2;
        }
    }

    .diet-hero {
        padding: 80px 0;
        background: #ffffff;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        gap: 60px;
    }

    /* IMAGE */
    .hero-image {
        position: relative;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
        /* max-width: 420px; */
        border-radius: 10%;
        object-fit: cover;
    }

    /* EXPERIENCE BADGE */
    .experience-badge {
        position: absolute;
        bottom: 10px;
        left: 20px;
        background: #fff;
        border: 2px solid #f28c28;
        padding: 10px 18px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .experience-badge .count {
        background: #f28c28;
        color: #000;
        font-weight: 700;
        padding: 10px;
        border-radius: 50%;
    }

    .experience-badge .text {
        font-size: 14px;
        font-weight: 600;
    }

    /* CONTENT */
    .hero-content h1 {
        font-size: 44px;
        font-weight: 700;
        line-height: 1.2;
    }

    .highlight-orange {
        color: #d47a00;
    }

    .highlight-green {
        color: #2f6b1c;
        text-decoration: underline;
    }

    .sub-text {
        font-style: italic;
        margin: 15px 0 5px;
    }

    .hero-content h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    /* POINTS */
    .hero-points {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .hero-points li {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* FOOTER */
    .hero-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 2px solid #000;
        padding-top: 15px;
    }

    .presented {
        font-size: 15px;
    }

    .btn-start {
        font-weight: 600;
        color: #000;
        text-decoration: none;
        border-bottom: 2px solid #000;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-footer {
            flex-direction: column;
            gap: 10px;
        }
    }

    .offer_wgl {
        background: #8BC34A;
        border-radius: 10px;
    }

    .testimonial-slider-main {
        gap: 2%;
    }

    .testimonials-slider .testimonials__author{
        width: 24%;
    }

        .testimonials-slider .testimonials__author-review{
            width: 74%;
        }

        @media screen and (max-width:767px) {
              .testimonials-slider .testimonials__author{
        width: 100%;
    }

        .testimonials-slider .testimonials__author-review{
            width: 100%;
        }  
        }
       