        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 40px;
            background: white;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            width: 100%;
            height: 170px;

        }

        .logo span {
            font-size: 24px;
            font-weight: 700;
            color: #000;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #111;
            font-weight: 600;
            font-size: 14px;
        }

        .dropdown::after {
            content: '▾';
            margin-left: 5px;
            font-size: 10px;
        }

        .store-buttons {
            display: flex;
            gap: 10px;
            opacity: 2;
            z-index: 2;
            position: relative;
        }

        .store-buttons img {
            height: 40px;
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            nav {
                flex-wrap: wrap;
                gap: 15px;
            }

            .store-buttons {
                align-self: center;
            }

            .store-buttons img {
                height: 25px;
            }
        }

        .play-store {
            background-color: #9A07CE;
        }

        .hero {
            display: flex;
            justify-content: space-between;
            /* align-items: center; */
            flex-wrap: wrap;
            background: #fff;
        }

        .hero-text {
            max-width: 50%;
        }

        .hero-text h1 {
            font-size: 40px;
            font-weight: 700;
            color: #0B0E2C;
        }

        .hero-text h1 span {
            color: #379554;
            background: #F3E6FD;
            padding: 0 5px;
            border-radius: 3px;
        }

        .hero-text p {
            margin-top: 20px;
            font-size: 18px;
            color: #1D1E2C;
            line-height: 1.5;
            border-left: 4px solid #F18323;
            padding-left: 15px;
        }

        .reference {
            background: #F3E6FD;
            color: #379554;
            display: inline-block;
            margin-top: 25px;
            padding: 12px 18px;
            border-radius: 10px;
            font-weight: 600;
        }

        .social {
            margin-top: 30px;
        }

        .social p {
            font-size: 14px;
            margin-bottom: 10px;
            color: #1D1E2C;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icons a img {
            width: 40px;
            height: 40px;
            border-radius: 6px;
        }

        .hero-image {
            position: relative;
            /* width: 45%; */
        }

        .hero-image img.main {
            width: 100%;
            border-radius: 30px;
        }

        .badge {
            position: absolute;
            top: 50%;
            left: -40px;
            transform: translateY(-50%);
            width: 80px;
        }

        @media (max-width: 1024px) {
            .hero {
                display: flex;
                justify-content: space-between;
                align-items: center;
                position: relative;
                padding: 60px;
            }

            .hero-text,
            .hero-image {
                max-width: 100%;
                width: 100%;

            }

            .hero-image {
                position: relative;
            }

            .badge {
                position: absolute;
                left: -20px;
            }
        }


        .hero-image img.main {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 400px;
        }

        .circle-bg {
            position: absolute;
            top: -112px;
            right: 0;
            /* width: 200px;
            height: 582px; */
            /* background: linear-gradient(135deg, #9B5DE5, #6A4C93); */
            /* background: linear-gradient(146deg, #5c2cfe 0%, #379554 100%); */
            /* border-top-left-radius: 200px;
            border-bottom-left-radius: 200px; */
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            z-index: 0;
            /* transform: translate(50%, -10%); */
            opacity: 1;
        }

        .plans-section {
            text-align: center;
            padding: 10px 20px 50px 20px;
            background-color: #F2F2F2;
            font-family: 'Arial', sans-serif;
        }

        .plans-section .subtitle {
            color: #379554;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .plans-section h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 40px;
        }

        .plans-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .plan-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
            padding: 30px 20px;
            width: 240px;
            text-align: left;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .plan-card:hover {
            transform: translateY(-5px);
        }

        .plan-card h3 {
            font-size: 17px;
            margin-bottom: 10px;
        }

        .plan-card h2 {
            font-size: 24px;
            color: #379554;
            margin-bottom: 10px;
        }

        .plan-card ul {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }

        .plan-card ul li {
            margin: 6px 0;
            font-size: 15px;
        }

        .btn-outline {
            border: 2px solid #379554;
            color: #379554;
            padding: 10px 16px;
            background: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background-color: #379554;
            color: white;
        }

        .btn-solid {
            background: white;
            color: #379554;
            font-weight: bold;
            border-radius: 8px;
            padding: 10px 16px;
            border: none;
            width: 100%;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .btn-solid:hover {
            background: #fff;
            opacity: 0.9;
        }

        /* Featured Gradient Card */
        .featured {
            background: linear-gradient(135deg, #5c2cfe, #fc00ff, #ff9900);
            color: white;
        }

        .featured h3,
        .featured h2,
        .featured p,
        .featured ul li {
            color: white;
        }


        .plan-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
            padding: 30px 20px;
            width: 240px;
            height: 289px;
            text-align: left;
            position: relative;
            display: flex;
            z-index: 1;
            justify-content: space-around;
            transition: all 0.4s ease;
            color: #000;
            overflow: hidden;
            flex-direction: column;
        }


        .plan-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(159.68deg, #FF5675 -0.89%, #379554 95.24%);
            opacity: 0;
            z-index: 0;
            transition: opacity 0.4s ease;
            border-radius: 16px;
        }

        .plan-card:hover::before {
            opacity: 1;
        }

        .plan-card:hover h3,
        .plan-card:hover h2,
        .plan-card:hover p,
        .plan-card:hover ul li {
            color: white;
            position: relative;
            z-index: 2;
        }

        .plan-card ul li {
            margin: 6px 0;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .plan-card:hover .btn-outline {
            background-color: #379554;
            color: #fff;
            border: 2px solid #fff;
            position: relative;
            z-index: 2;
        }

        .btn-outline {
            border: 2px solid #379554;
            color: #379554;
            padding: 10px 16px;
            background: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            z-index: 2;
            position: relative;
        }

        /* Transformation_section */
        .transformations-section {
            /* padding: 60px 20px; */
            padding-bottom: 50px;
            background: #fff;
        }



        .text-section {
            max-width: 100%;
            text-align: center;
            margin-right: 40px;
        }

        .text-section .subtitle {
            color: #379554;
            font-weight: bold;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .text-section h2 {
            font-size: 32px;
            line-height: 1.3;
            color: #111;
        }

        .images-section {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .transformation-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
            max-width: 100%;
        }

        .transformation-card img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        .weight-tag {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: red;
            color: #fff;
            font-weight: bold;
            display: flex;
            justify-content: space-around;
            padding: 5px 0;
            font-size: 14px;
        }

        .cont-container {
            background-image: url('image/image.png');
            background-size: cover;
            background-repeat: no-repeat;
            /* display: flex; */
            justify-content: space-between;
            align-items: center;
            background-color: #379554;
            padding: 75px 50px;
            border-radius: 10px;
            position: relative;
            max-height: 320px;
            margin: 150px 0px 5px 0px;
        }

        /* .question-section {
            background: linear-gradient(135deg, #2E80FE, #D32FF1);
            border-radius: 16px;
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            color: white;
            overflow: hidden;
        } */

        .question-content {
            max-width: 50%;
        }

        .question-content h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .question-content p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .contact-btn {
            display: inline-block;
            background: white;
            color: black;
            padding: 10px 20px;
            border-radius: 999px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            transition: background 0.3s;
        }

        .contact-btn:hover {
            background: #f0f0f0;
        }

        .question-image {
            position: relative;
            display: flex;
            align-items: flex-end;
            gap: 10px;
        }

        .phone-img {
            height: 180px;
            z-index: 2;
        }

        .person-img {
            height: 400px;
            position: absolute;
            right: -50px;
            bottom: -76px;
            width: auto;
            object-fit: cover;
            border-radius: none;
        }

        .circle-bg-mob {
            display: none;
        }

        .bg-img {
            width: 176px;
            height: 274px;
        }

        .img-section {
            display: block;
        }

        .img-section-mob {
            display: none;
        }

        .transformations {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        @media (max-width:426px) {
            .text-section {

                margin-right: 0px;
            }

            .transformations {
                display: flex;
                flex-direction: column;

            }

            .img-section {
                display: none;
            }

            .img-section-mob {
                display: block;
            }

            header {
                flex-direction: row;
            }

            .app-ss-img {
                width: 100%;
            }

            .circle-bg-mob {
                display: block;
                position: absolute;
                top: 22px;
                right: 0;

                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
                z-index: 0;
                /* transform: translate(50%, -10%); */
                opacity: 1;
            }

            .circle-bg {
                display: none;
            }

            .bg-img {
                width: 176px;
                height: 274px;
            }

            .hero {
                padding: 0px;
            }

            .logo img {
                width: 100%;
            }

            .hero-image {
                margin-top: 30px;
            }

            .person-img {
                height: 153px;
                position: absolute;
                right: -8px;
                bottom: -61px;
                width: auto;
                object-fit: cover;
                border-radius: none;
            }

            .cont-container {

                background-size: cover;
                background-repeat: no-repeat;

                justify-content: space-between;

                background-color: #1a295e;
                padding: 59px 10px;
                border-radius: 10px;
                position: relative;
                max-height: 334px;
                margin: 70px 0px 5px 0px;
            }

            .question-content {
                max-width: 100%;
            }

            .hero-section {
                background-image: url(image/healthier_bg.png);
                color: white;
                padding: 60px 30px 80px;
            }

            .hero-content {
                max-width: 1200px;
                margin: 0 auto;
                text-align: left;
            }

            .hero-content h3 {
                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-size: 30px;
                line-height: 34px;
                vertical-align: middle;
            }

            .hero-content .hero-subtext {
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-size: 20px;
                margin-top: 20px;

            }

            .card-container {
                margin: 40px auto 0;
                display: grid;
                gap: 20px;
                justify-content: center;
            }

            .info-card {
                background: white;
                border-radius: 20px;
                padding: 15px;
                color: #333;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
                transition: transform 0.2s ease;
            }

            .info-card:hover {
                transform: translateY(-5px);
            }

            .icon {
                background-color: #f6eaff;
                border-radius: 12px;
                width: fit-content;
                margin-bottom: 20px;
            }

            .icon img {
                width: 100%;
                height: 100%;
            }

            .info-card h3 {
                margin-bottom: 10px;
                font-family: 'Inter', sans-serif;
                font-weight: 500;
                font-size: 20px;
                line-height: 28px;
                color: #3D2206;
            }

            .info-card p {
                margin-bottom: 15px;
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-size: 14px;
                line-height: 24px;
                color: #6B6842;
            }

            .info-card a {
                color: #ff6c00;
                font-weight: 600;
                text-decoration: none;
            }
        }

        /* Read more */
        .card-text.clamp-text {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .card-text.expanded {
            -webkit-line-clamp: unset;
            max-height: none;
        }

        .read-more-btn {
            background: none;
            border: none;
            color: #001eff;
            cursor: pointer;
            padding: 0;
            padding-left: 15px;
        }

        .btn-success {
            color: #fff;
            background-color: #379554;
            border-color: #379554;
        }

        .btn-success:hover {
            color: #fff;
            background-color: #379554;
            border-color: #379554;
        }

        dl,
        ol,
        ul {
            margin-top: 1rem;
            margin-bottom: 1rem;
            list-style: none;
            padding-left: 0rem;
        }

        .content li {
            font-family: Helvetica;
            font-weight: 400;
            font-size: 18px;
            line-height: 40px;
            letter-spacing: 0px;
            vertical-align: middle;
            color: #000000CC;
        }

        .h3,
        h3 {
            font-size: 42px;
            font-weight: 700;
            font-family: Helvetica;
        }

        @media (min-width:426px) {
            .hero-section {
                background-image: url(image/healthier_bg.png);
                color: white;
                padding: 60px 30px 80px;
            }

            .hero-content {
                max-width: 1200px;
                margin: 0 auto;
                text-align: left;
            }

            .hero-content h3 {
                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-size: 56px;
                line-height: 60px;
                vertical-align: middle;
            }

            .hero-content .hero-subtext {
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-size: 20px;
                margin-top: 20px;

            }

            .card-container {
                margin: 40px auto 0;
                display: flex;
                gap: 20px;
                justify-content: center;
            }

            .info-card {
                background: white;
                border-radius: 20px;
                padding: 30px;
                color: #333;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
                transition: transform 0.2s ease;
            }

            .info-card:hover {
                transform: translateY(-5px);
            }

            .icon {
                background-color: #f6eaff;
                border-radius: 12px;
                width: fit-content;
                margin-bottom: 20px;
            }

            .icon img {
                width: 100%;
                height: 100%;
            }

            .info-card h3 {
                margin-bottom: 10px;
                font-family: 'Inter', sans-serif;
                font-weight: 500;
                font-size: 20px;
                line-height: 28px;
                color: #3D2206;
            }

            .info-card p {
                margin-bottom: 15px;
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-size: 14px;
                line-height: 24px;
                color: #6B6842;
            }

            .info-card a {
                color: #ff6c00;
                font-weight: 600;
                text-decoration: none;
            }
        }
        .footer{
            background-color: #000!important;
            padding: 20px;
        }
        .h4, h4 {
    font-size: 34px !important;
}