body {
    font-family: 'Sora', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222
}

.site-header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgb(0 0 0 / .06);
    border-bottom: 3px solid #111
}

.btn {
    background: #2c7be5;
    color: #fff;
    padding: 12px 26px !important;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden
}

.btn:hover {
    background: #1a5edb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(44 123 229 / .35)
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgb(255 255 255 / .4), transparent);
    transition: 0.6s
}

.btn:hover::before {
    left: 100%
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0
}

.logo a {
    font-size: 27px;
    font-weight: 700;
    color: #111;
    text-decoration: none
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px
}

.nav-menu {
    display: flex;
    gap: 25px
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px
}

.nav-menu a:hover {
    color: #2c7be5
}

.order-btn {
    background: #ffd21f;
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block
}

.order-btn:hover {
    background: #1a5edb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(44 123 229 / .35)
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer
}

.menu-toggle span {
    width: 22px;
    height: 3px;
    background: #111;
    margin: 3px 0
}

@media(max-width:900px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        box-shadow: 0 10px 20px rgb(0 0 0 / .08)
    }
    .nav-menu.active {
        display: flex
    }
    .menu-toggle {
        display: flex
    }
    .nav-menu a {
        padding: 12px 0;
        width: 100%;
        text-align: center
    }
}

@media(max-width:768px) {
    .logo a {
        font-size: 20px
    }
    .order-btn {
        padding: 8px 18px;
        font-size: 14px
    }
    .nav-wrap {
        padding: 12px 0
    }
}

.pricing-premium {
    background: linear-gradient(180deg, #0f5f9c, #0a3e6b);
    padding: 30px 20px;
    text-align: center
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px
}

.step {
    color: rgb(255 255 255 / .6);
    text-align: center
}

.step span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / .1);
    border-radius: 50%;
    margin: auto;
    font-weight: 700
}

.step.active span {
    background: #ffc400;
    color: #000
}

.step.active {
    color: #fff
}

.step p {
    font-size: 12px;
    margin-top: 6px
}

.line {
    width: 50px;
    height: 3px;
    background: rgb(255 255 255 / .2)
}

.title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 40px
}

.pricing-wrap {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap
}

.card {
    background: #E2F8FF;
    border-radius: 18px;
    padding: 25px;
    width: 300px;
    position: relative;
    box-shadow: 0 20px 50px rgb(0 0 0 / .2)
}

.card-head {
    background: #8b8f97;
    color: #fff;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 13px
}

.card.featured {
    background: linear-gradient(180deg, #062b4f, #021c33);
    color: #fff;
    transform: scale(1.05)
}

.best {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d2ff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700
}

.card img {
    width: 200px;
    height: 180px; /* 🔥 fix height */
    object-fit: contain; /* 🔥 image squeeze nahi hogi */

    margin: 20px auto;
    display: block;
}

.price {
    font-size: 34px;
    font-weight: 700
}

.price.big {
    font-size: 42px
}

.badge {
    background: rgb(0 0 0 / .05);
    padding: 8px;
    margin: 8px 0;
    border-radius: 8px;
    font-size: 14px
}

.card.featured .badge {
    background: rgb(255 255 255 / .1)
}

.btn {
    display: block;
    padding: 14px;
    margin: 12px 0;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none
}

.btn.green {
    background: #a8d5a2;
    color: #000
}

.btn.yellow {
    background: #ffc400;
    color: #000
}

.total {
    font-size: 14px
}

@media(max-width:768px) {
    .pricing-wrap {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }
    .card,
    .card.featured {
        width: 95%;
        transform: none;
        padding: 16px
    }
    .card {
        display: grid;
        grid-template-columns: 210px 1fr;
        gap: 14px;
        align-items: start;
        text-align: left
    }
    .mobile-left {
        grid-column: 1
    }
    .mobile-left h3 {
        font-size: 15px;
        margin: 0;
        line-height: 1.2;
        text-align: var(--h3-align, center);
        align-self: var(--h3-align-self, flex-start)
    }
    .mobile-left p {
        font-size: 11px;
        margin: 3px 0 6px;
        text-align: var(--h3-align, center);
        align-self: var(--h3-align-self, flex-start)
    }
    .mobile-left img {
        width: 110px;
        display: block;
        margin-top: 4px
    }
    .mobile-right {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        gap: 6px
    }
    .price {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2;
        margin: 0
    }
    .price.big {
        font-size: 26px
    }
    .badge {
        font-size: 11px;
        padding: 5px;
        margin: 0;
        border-radius: 6px
    }
    .btn {
        width: 60%;
        padding: 9px;
        font-size: 13px;
        margin: 4px 0;
        border-radius: 8px
    }
    .total {
        font-size: 12px;
        margin-top: 2px;
        line-height: 1.3
    }
    .card-head {
        font-size: 11px;
        padding: 5px;
        margin-bottom: 6px;
        text-align: var(--h3-align, center);
        align-self: var(--h3-align-self, flex-start)
    }
    .best {
        top: -10px;
        font-size: 11px;
        padding: 5px 12px
    }
}


.benefits {
    padding: 30px 0;
    background: #fff;
    text-align: center
}

.benefits-title {
    font-size: 38px;
    margin-bottom: 15px
}

.benefits-intro {
    max-width: 720px;
    margin: 0 auto 60px;
    color: #555;
    line-height: 1.7
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: auto
}

.benefit-card {
    background: #005598;
    padding: 35px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgb(0 0 0 / .06);
    text-align: left;
    transition: .3s
}

.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #fff
}

.benefit-card p {
    color: #fff;
    line-height: 1.6
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgb(0 0 0 / .12)
}

@media(max-width:900px) {
    .benefits-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important
    }
    .benefit-card {
        padding: 18px 14px !important;
        border-radius: 10px;
        box-shadow: 0 5px 14px rgb(0 0 0 / .06)
    }
    .benefit-card h3 {
        font-size: 15px;
        margin-bottom: 4px
    }
    .benefit-card p {
        font-size: 13px;
        line-height: 1.45
    }
}

.ingredient-strip {
    padding: 50px 0
}

.ingredient-box {
    background: linear-gradient(120deg, #005598, #003f73, #001f3a);
    border-radius: 18px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: #fff;
    max-width: 850px;
    margin: auto
}

.ingredient-text h2 {
    font-size: 33px;
    margin-bottom: 25px
}

.ingredient-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px
}

.ingredient-text li {
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
    padding-left: 28px
}

.ingredient-text li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #57e2b2;
    font-weight: 700
}

.badges {
    max-width: 360px;
    margin-top: 20px
}

.ingredient-image img {
    max-width: 270px;
    animation: floatBottle 4s ease-in-out infinite
}

@keyframes floatBottle {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
    100% {
        transform: translateY(0)
    }
}

@media(max-width:900px) {
    .ingredient-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px
    }
    .ingredient-text li {
        padding-left: 0
    }
    .ingredient-text li:before {
        position: static;
        margin-right: 8px
    }
    .ingredient-image img {
        max-width: 200px
    }
}



.guarantee {
    padding: 10px 0;
    background: #f7fbff
}

.guarantee-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px
}

.guarantee-img img {
    max-width: 150px
}

.guarantee-text {
    max-width: 520px
}

.guarantee-text h2 {
    font-size: 22px;
    margin-bottom: 6px
}

.guarantee-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px
}

.guarantee-btn {
    margin-top: 6px;
    padding: 8px 16px;
    font-size: 14px;
    display: inline-block !important;
    width: auto !important;
    white-space: nowrap;
    border-radius: 8px
}

@media(max-width:900px) {
    .guarantee-wrap {
        flex-direction: column;
        text-align: center;
        gap: 12px
    }
    .guarantee-img img {
        max-width: 90px
    }
}


.reviews {
    padding: 20px 0;
    background: #f7fbff;
    text-align: center
}

.reviews-title {
    font-size: 36px;
    margin-bottom: 55px;
    color: #005598
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto
}

.review-card {
    background: linear-gradient(120deg, #005598, #003f73, #001f3a);
    padding: 35px 28px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgb(0 0 0 / .12);
    transition: .3s;
    text-align: center;
    color: #fff
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgb(0 0 0 / .15)
}

.review-avatar {
    width: 140px;
    height: 130px;
    margin: 0 auto 18px;
    overflow: hidden;
    border-radius: 12px
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.review-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #fff
}

.review-meta {
    font-size: 13px;
    color: #fff;
    display: block;
    margin-bottom: 10px
}

.stars {
    color: #f5b400;
    margin-bottom: 12px;
    font-size: 18px
}

.review-card p {
    color: #444;
    line-height: 1.6;
    font-size: 15px;
    color: #fff
}

@media(max-width:900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 22px
    }
}

.how-use {
    padding: 110px 0;
    background: #f7fbff;
    text-align: center
}

.how-use-title {
    font-size: 34px;
    color: #005598;
    margin-bottom: 55px
}

.how-use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: auto
}

.use-step {
    background: #fff;
    padding: 30px 26px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgb(0 0 0 / .07);
    transition: .3s
}

.use-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgb(0 0 0 / .12)
}

.step-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #005598;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 14px
}

.use-step h3 {
    margin-bottom: 8px;
    font-size: 18px
}

.use-step p {
    color: #555;
    font-size: 15px;
    line-height: 1.6
}

@media(max-width:900px) {
    .how-use-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-width: 520px;
        margin: auto
    }
    .use-step {
        padding: 18px 14px;
        border-radius: 12px;
        min-height: 180px
    }
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-bottom: 8px
    }
    .use-step h3 {
        font-size: 14px;
        margin-bottom: 6px
    }
    .use-step p {
        font-size: 12px;
        line-height: 1.4
    }
    .how-use-grid .use-step:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 70%;
        margin: auto
    }
}

.final-cta {
    padding-bottom: 90px;
    background: #f7fbff;
    text-align: center
}

.cta-bar {
    background: #005598;
    color: #fff;
    padding: 11px;
    font-weight: 600;
    font-size: 36px
}

.cta-content {
    padding-top: 20px
}

.cta-image {
    max-width: 560px;
    margin: 30px auto;
    display: block
}

.old-price {
    color: #666;
    font-size: 22px;
    margin-bottom: 8px
}

.new-price {
    font-size: 32px;
    margin-bottom: 20px
}

.cta-btn {
    display: inline-block;
    background: #ffd21f;
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgb(0 0 0 / .18)
}

@media(max-width:900px) {
    .cta-image {
        max-width: 260px
    }
    .cta-bar {
        font-size: 16px;
        padding: 14px
    }
}

.faqs {
    padding: 20px 0;
    background: #f7fbff
}

.faqs-title {
    text-align: center;
    font-size: 34px;
    color: #005598;
    margin-bottom: 50px
}

.faq-item {
    max-width: 850px;
    margin: 0 auto 14px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d6e4f2;
    background: #fff
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    color: #005598
}

.faq-item.active .faq-question:after {
    content: "–"
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    padding: 0 20px;
    color: #555;
    line-height: 1.6
}

.faq-item.active .faq-answer {
    padding: 0 20px 18px;
    max-height: 200px
}

.site-footer {
    background: linear-gradient(180deg, #2b2b2b, #1f1f1f);
    color: #ddd;
    text-align: center
}

.footer-top {
    padding: 20px 20px 20px;
    max-width: 900px;
    margin: auto
}

.footer-top h3 {
    margin-bottom: 18px;
    font-size: 22px;
    color: #fff
}

.footer-top p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: #ccc
}

.footer-bottom {
    background: #1a1a1a;
    padding: 22px 20px
}

.footer-links {
    margin-bottom: 10px
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px
}

.footer-links a:hover {
    color: #fff
}

.copyright {
    font-size: 13px;
    color: #aaa
}

@media(max-width:700px) {
    .footer-links a {
        display: block;
        margin: 6px 0
    }
}

section {
    scroll-margin-top: 60px
}

html {
    scroll-behavior: smooth
}



.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 7%;
    min-height: 100vh;

    /* ONLY background image — no color */
    background: url("../img/bg.png") no-repeat center center/cover;

    color: #fff;
    gap: 40px;
}

/* LEFT CONTENT */
.hero-content {
    max-width: 560px;

    /* FORCE NO CARD */
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* HEADING */
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 15px;
}

/* ORANGE HIGHLIGHT (same as image) */
.hero h1 span {
    background: #ff8a2a;
    font-size: 30px;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
}

/* TEXT */
.hero p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}


/* guarantee */
.guarantee-clean {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 20px; 
    color: #fff;
}

/* rating */
.rating {
    margin: 15px 0;
    font-weight: 500;
    font-size: 20px; 
}

.stars {
    color: gold;
    margin-left: 10px;
    font-size: 22px;
}

/* BUTTON */
.btnn {
    display: block;
    width: 100%;
    max-width: 460px; /* control width */
    text-align: center;

    margin-top: 20px;
    padding: 16px 0;

    background: #8BE000;
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    border: 3px solid #000;
}

.btn:hover {
    transform: scale(1.05);
}

/* PAYMENT ICONS */
.payments {
    display: flex;
    justify-content: center; /* 🔥 center */
    margin-top: 15px;
}

.payments img {
    height: 30px;
}

/* RIGHT IMAGE */
.hero-image img {
    width: 420px;
    max-width: 100%;
}

/* MOBILE FIX */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .hero-image img {
        width: 280px;
        margin-top: 20px;
    }

    .btn {
        padding: 10px 05px;
    }
}





/* SECTION */
.ingredients {
    background: #fff;
    padding: 90px 20px 70px;
    text-align: center;
}

/* HEADING */
.ingredients h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.ingredients h2 span {
    color: #0B4274;
}

/* SUBTEXT */
.subtitle {
    max-width: 720px;
    margin: 15px auto 50px;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

/* GRID */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    margin-top: 50px;
}

/* CARD */
.ingredient-card {
    padding: 35px 25px 30px;
    border-radius: 14px;
    color: #fff;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-4px);
}

/* CARD COLORS */
.ingredient-card.orange {
    background: #CAE4FD;
    color: #000;
}

.ingredient-card.dark {
    background: #0B4274;
    color: #fff;
}

/* TEXT */
.ingredient-card h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
}

.ingredient-card p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
    padding: 0 10px;
}

/* BUTTON */
.order-btnn {
    display: inline-block;
    margin-top: 100px;
    padding: 14px 100px;
    background: #8BE000;
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    border: 2px solid #000;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}



.about-tabs {
    padding: 100px 20px;
    background: #f5f5f5;
}

.about-tabs-wrap {
    max-width: 1100px;
    margin: auto;
}

.tabs-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.tabs-content h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #0B4274;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.tabs-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #8BE000;
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .about-tabs {
        padding: 70px 15px;
    }

    .tabs-content {
        padding: 25px;
    }

    .tabs-content h2 {
        font-size: 28px;
    }

    .tabs-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-btn {
        width: 50%;
        text-align: center !important;
    }
}


.benefits-sec {
    padding: 30px 20px;
    background: url("../img/benefits-bg.png") no-repeat center/cover;
    color: #fff;
}

.benefits-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.benefits-left {
    flex: 1;
}

.benefits-left h2 {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* LIST */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.6;
}

/* ICON */
.benefits-list span {
    background: #fff;
    color: #0B4274;
    font-weight: bold;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 5px;
}

/* RIGHT IMAGE */
.benefits-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.benefits-right img {
    width: 420px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* MOBILE */
@media (max-width: 900px) {
    .benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .benefits-list li {
        justify-content: center;
        text-align: left;
    }

     .benefits-right img {
        width: 260px; /* 🔥 reduce size */
        margin-top: 20px;
    }
}