﻿/* ============================================================
   FAYVOR LANDING PAGE CSS
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lato:wght@300;400;700;900&display=swap');

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
    --green-dark: #4a6741;
    --green-mid: #6b8f5e;
    --green-light: #e8ede6;
    --white: #ffffff;
    --off-white: #f7f7f7;
    --text-dark: #222222;
    --text-body: #444444;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ============================================================
   RESET
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
   HERO SECTION FULL WIDTH
   ============================================================ */
/* ===== HERO SECTION ===== */
.hero-section {
    background: #f5ede0;
    overflow: hidden;
    min-height: 465px;
    position: relative;
    left:0%;
    margin:0px;
}
/* LAYER 1 - Full width beige background */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* center align */
    width: 100%;
    height: 80%;
    max-width: 1520px;
    background: #f5ede0;
    z-index: 0;
}
/* ---------- INNER WRAPPER ---------- */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    max-width: 1520px;
    margin:auto;
    min-height: 300px;
    position: relative;
    z-index: 1;
}
/* ---------- LEFT CONTENT ---------- */
.hero-content {
    padding: 31px 32px 0px 65px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.3;
}

    .hero-title .highlight {
        color: #4a6b1a;
        display: block;
    }

.hero-desc {
    font-size: 14px;
    color: #555 !important;
    line-height: 1.6;
    margin: 14px 0px 9px 2px;
    text-decoration: none !important;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

/* ---------- FEATURES ---------- */
.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

    .hero-features li {
        display: flex;
        align-items: center;
        gap: 14px;
        color: #fff;
        margin-bottom: 16px;
        font-size: 1.8rem;
    }

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: bold;
}

/* ---------- BUTTON ---------- */
.btn-assessment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5A6837;
    color: #fff !important;
    border-radius: 999px;
    margin-top:20px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

    .btn-assessment .arrow {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #FFFFFF;
        color:black;

        border: 2px solid rgba(255,255,255,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* ---------- RIGHT IMAGE ---------- */
.hero-image {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 130%;
    z-index: 1;
    pointer-events: none;
}

    .hero-image img {
        width: 100%;
        height: 98%;
        object-fit: cover;
        object-position: center top;
    }
.hero-stats {
    padding: 40px 10px 10px 0px;
    display: flex;
    right:40%;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 3;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* text left, icon right */
    gap: 10px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center; /* right ki jagah center */
    flex-shrink: 0;
}

    .stat-icon img {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

.stat-label {
    font-size: 16px;
    color: #888;
    font-weight: 500;
}

.stat-value {
    font-size: 29px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.3;
}

    .stat-value span {
        font-size: 11px;
        font-weight: 500;
        color: #888;
        margin-left: 3px;
    }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   MOBILE RESPONSIVE - HERO SECTION ONLY
   ============================================================ */


@media (max-width: 768px) {
    .hero-section {
        width: 100%;
        background: linear-gradient(to left, #A4BB5E, #5A6837);
        padding: 0;
        margin: 0;
        min-height: unset;
        height: auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0px 0px 0 0px; /* sirf 15px upar */
        gap: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        box-sizing: border-box;
        flex: 1;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .hero-title {
        max-width: 100%;
        font-size: 2.6rem;
        padding-top: 30px;
        margin-bottom: 0px;
        text-align: center; /* center */
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 12px;
        text-align: center; /* center */
    }

    .hero-features {
        margin-bottom: 15px;
        padding: 0;
        width: 100%;
        align-items: flex-start;
    }

        .hero-features li {
            font-size: 1.4rem;
            margin-bottom: 8px;
            text-align: left;
            gap: 10px;
        }

    .check-icon {
        flex-shrink: 0;
        margin-top: 2px;
        width: 22px;
        height: 22px;
        font-size: 1.2rem;
    }

    .btn-assessment {
        font-size: 1.6rem;
        padding: 12px 28px;
        margin-bottom: 15px;
        display: block;
        width: fit-content;
        margin-left: auto; /* center */
        margin-right: auto; /* center */
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        line-height: 0;
    }

        .hero-image img {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
            display: block;
            vertical-align: bottom;
        }
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    padding: 10px 0px;
    text-align: center;
    background: #fff;
}

.journey-title {
    font-size: 35px;
    font-weight: 900;
    color: #2a2a2a;
    margin-bottom: 50px;
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
}

/* STEP ICON */
.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: none;
}

    .step-icon img {
        width: 120px;
        height: 120px;
        object-fit: contain;
        border-radius: 50%;
    }

/* STEP 1 - DOUBLE CIRCLE */
.step-icon-double {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
}

.step-icon-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

    .step-icon-outer img {
        width: 120px;
        height: 120px;
        object-fit: contain;
    }

.step-icon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .step-icon-inner img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

/* TITLES & DESC */
.step-title {
    font-size: 22px;
    font-weight: 800;
    color: #3d5016;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 8px;
    color: #666;
    line-height: 1.2;
}


.journey-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-bottom: 120px; /* circle 100px hai → 100/2 - arrow_height/2 ≈ 38px */
    margin: 0 0px;
}

    .journey-arrow img {
        width: 100px; /* apni arrow image ke hisaab se adjust karo */
        height: auto;
        display: block;
    }

/* Mobile */
@media (max-width: 768px) {
    .journey-section {
        padding: 40px 20px;
    }

    .journey-steps {
        flex-direction: column;
        gap: 30px;
    }

    .journey-arrow {
        transform: rotate(90deg);
        padding-bottom: 0;
    }

    .journey-step {
        max-width: 100%;
    }
}
/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    width: 100%;
    background: #f6f6f6;
    padding: 20px 0;
}

/* ---------- CENTER CONTAINER ---------- */
.container-custom {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0px;
    padding-bottom: 10px;
}

/* ---------- TOP AREA ---------- */
.how-top {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.how-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #677744;
}

.how-subtitle {
    font-size: 2.0rem;
    color: #444;
    font-weight: 400;
}
/* ---------- STEPS ---------- */
.steps-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap; /* IMPORTANT */
}

/* ---------- CARD ---------- */
.step-card {
    width: 33.33%;
    text-align: center;
}

/* ---------- STEP TEXT ---------- */
.step-action {
    font-size: 3.5rem;
    font-weight: 900;
    color: #677744;
    line-height: 1;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 1.4rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 24px;
}

/* ---------- IMAGE ---------- */
.step-image {
    width: 100%;
    max-width: 260px;
    height: 260px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .step-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;
    }

.step-card:hover .step-image img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    /* Container ko thoda breathing room dein */
    .container-custom {
        margin-top: 0px;
        padding: 0;
    }

    /* Title aur Subtitle ka size mobile ke liye thoda kam karein */
    .how-title {
        font-size: 3.5rem;
    }

    .how-subtitle {
        font-size: 1.6rem;
        margin-bottom: 0px;
    }

    /* Cards ko stack karein aur gap barhayein */
    .steps-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .step-card {
        width: 100%;
    }

    /* Images ka size thoda adjust karein taake wo mobile par na zyada choti hon na bari */
    .step-image {
        max-width: 220px;
        height: 220px;
    }

    /* Text spacing mobile par mazeed behtar */
    .step-action {
        font-size: 3rem;
    }

    .step-desc {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
}
/* ============================================================
   TRUST SECTION
   ============================================================ */
/* ============================================================
   TRUST SECTION
   ============================================================ */


/* ===== TRUST / SKIN ANALYSIS SECTION ===== */
.trust-section {
    width: 100%;
    background: #c8db8a;
    padding: 10px 0px;
}

.container-trust {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
    flex-wrap: nowrap;
}

/* ===== PHONE IMAGE ===== */
.trust-phone {
    width: 260px;
    flex-shrink: 0;
}

    .trust-phone img {
        width: 100%;
        border-radius: 0;
        display: block;
    }

/* ===== SKIN CARD (RIGHT SIDE) ===== */
.skin-card {
    flex: 1;
    background: transparent;
    padding: 0;
    max-width: none;
    font-family: Arial, sans-serif;
}

    .skin-card h2 {
        font-size: 33px;
        font-weight: 900;
        color: #1a2e05;
        margin-bottom: 26px;
    }

    .skin-card .desc {
        font-size: 19px;
        color: #3a4a20;
        line-height: 1.6;
        margin-bottom: 22px;
    }

/* ===== METRIC ROWS ===== */
.metric-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a2e05;
    width: 145px;
    flex-shrink: 0;
}

.bar-wrap {
    flex: 1;
    background: #ffffff;
    border-radius: 3px;
    height: 13px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
    background: #3a5c15;
}

.metric-pct {
    font-size: 14px;
    font-weight: 700;
    color: #1a2e05;
    width: 40px;
    text-align: right;
    flex-shrink: 0;
}

.metric-status {
    font-size: 14px;
    font-weight: 700;
    color: #3a5c15;
    width: 75px;
    text-align: right;
    flex-shrink: 0;
}

/* ===== BUTTON ===== */
.btn-analyse {
    margin-top: 22px;
    padding: 11px 30px;
    border: 2.5px solid #3a5c15;
    border-radius: 30px;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #1a2e05;
    cursor: pointer;
    display: inline-block;
}

    .btn-analyse:hover {
        background: rgba(0, 0, 0, 0.06);
    }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .container-trust {
        flex-direction: column; /* Content upar, image niche ke liye */
        padding: 0px 5%;
    }

    .trust-text {
        order: 1; /* Text ko pehle rakhein */
        max-width: 100%;
        text-align: center; /* Mobile par text ko center karna zyada acha lagta hai */
    }

    .trust-body {
        font-size: 1.5rem;
        color: rgba(255,255,255,0.9);
        line-height: 1.5;
        margin-bottom: 30px;
        text-align: center;
    }

    .our-assessment-title {
        font-size: 1.9rem;
        color: #fff;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .trust-phone {
        order: 2; /* Image ko niche (text ke baad) rakhein */
        width: 220px;
        padding: 0px;
        margin-top: 0px; /* Text aur image ke beech thodi jagah */
    }

    /* Mobile ke liye fonts ko thoda adjust karein */
    .trust-title {
        font-size: 3.5rem;
    }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {

    .hero-title {
        font-size: 3rem;
    }

    .how-title {
        font-size: 3rem;
    }

    .steps-container {
        gap: 10px;
    }
}

@media (max-width: 992px) {

    .hero-section {
        width: 100%;
        padding: 0px;
        min-height: unset;
        height: auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .hero-features li {
        justify-content: left;
    }

    .trust-section {
        flex-direction: column;
        text-align: center;
    }

    .assessment-points li {
        line-height: 1.5;
        font-size: 1.4rem;
        text-align: left;
    }

    .steps-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.5rem;
    }

    .how-title {
        font-size: 2.4rem;
    }

    .how-subtitle {
        font-size: 1.1rem;
    }

    .step-card {
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

    .step-image {
        width: 240px;
        height: 240px;
    }

    .trust-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {

    .hero-section {
        padding: 0px 5%
    }

    .hero-title {
        margin-bottom: 20px;
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .how-it-works {
        padding: 20px 0;
    }

    .how-title {
        padding: 0px;
        margin: 0px;
        margin-bottom: 12px;
        font-size: 2.4rem;
    }

    .step-action {
        font-size: 2.4rem;
    }

    .step-image {
        width: 210px;
        height: 210px;
    }

    .trust-phone {
        width: fit-content;
    }
}

/* =========================================================
   DISCOVER SECTION
   ========================================================= */
/* ===== PERSONALIZED SKIN CARE SECTION ===== */
.skincare-section {
    width: 100%;

    background: #fff;
    padding: 40px 80px;
    border-top: 3px solid #c8db8a;
}

.skincare-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10%;
    flex-wrap: nowrap;
}

/* ===== LEFT ===== */
.skincare-left {
    width: 47%;
    height:500px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.skincare-title {
    font-size: 35px;
    font-weight: 900;
    color: #1a2e05;
    line-height: 1.3;
    margin-bottom: 14px;
}

    .skincare-title span {
        color: #4a7c20;
        font-size: 36px;
        font-weight: 900;
    }

.skincare-desc {
    font-size: 20px;
    color: #444;
    line-height: 1.3;
    text-align: justify;
    margin-bottom: 0;
    padding-bottom: 10px;
}

/* ===== FEATURES ===== */
.skincare-features {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 0;
    gap: 0px;
}

.feature-item {
    flex: 1;
    max-width:38%;
}

    .feature-item:first-child {
        padding-right: 20px;
    }

    .feature-item:last-child {
        padding-left: 20px;
    }
/* ===== FEATURES & ICONS (BACKGROUND CIRCLE FIXED) ===== */
.feature-icon, .contact-icon {
    width: 54px;
    height: 54px;
    object-fit: scale-down; /* SVG/PNG icons proper center align honge */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #CDE684; /* Light green background circle */
    border-radius: 10%;
    padding: 0px; /* Circle ke andar padding spacing ke liye */
    margin-bottom: 0px;
    box-sizing: border-box;
}

/* Contact icon update */
.contact-icon {
    margin-bottom: 0; /* Align perfectly with contact text */
}


.feature-item h4 {
    font-size: 14px;
    font-weight: 900;
    color: #1a2e05;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13.9px;
    color: #555;
    line-height: 1.55;
}


/* ===== BOTTOM ROW ===== */
.skincare-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-top: 18px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    background: #5A6837;
    color: #fff !important; /* Normal state me bhi color white locked */
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    margin-right: 30px;
    transition: background 0.2s;
}

/* Mouse le jaane par (Hover), Click karne par (Active), aur Select hone par (Focus) */
.btn-book:hover,
.btn-book:focus,
.btn-book:active {
    background: #5A6837;
    color: #fff !important; /* Mouse le jaane par text color 100% white hi rahega */
    text-decoration: none; /* Kisi bhi qism ki underline ko khatam karne ke liye */
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    border-left: 1.5px solid #b0c878;
}



.contact-box strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #1a2e05;
}

.contact-box span {
    display: block;
    font-size: 16px;
    color: #555;
}

/* ===== RIGHT — IMAGE GRID (PERFECT ALIGNMENT) ===== */
.skincare-right {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 15px; /* Dono columns ke beech ka perfect gap */
    min-width: 0;
    height: 500px;
}

/* LEFT COLUMN — 2 stacked images */
.img-left-col {
    flex: 1; /* Pure layout ka aadha hissa lega */
    display: flex;
    margin-top:20px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 15px; /* Dono choti images ke beech ka vertical gap */
}

/* RIGHT COLUMN — 1 tall image */
.img-right-col {
    flex: 1; /* Pure layout ka baaki aadha hissa lega */
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

/* Dynamic Wrapper Box for Images */
.img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* FIXED: Isse dono choti images vertical space barabar distribute karengi */
.img-small-top,
.img-small-bottom {
    flex: 1;
    width: 80%;
    height: 100%;
}

/* FIXED: Isse tall image apni wrapper boundary ko perfectly fill karegi */
.img-tall {
    width: 75%;
    height: 100%;
    margin-left:-70px;
}

/* ===== EXPERIENCE BADGE ===== */
.exp-badge {
    position: absolute;
    top: 54%;
    left: 41%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.exp-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.exp-inner {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #4a7c20; /* Perfect matching green color */
    border: 3.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.exp-number {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .skincare-section {
        padding: 30px 30px;
    }

    .skincare-container {
        flex-direction: column;
        gap: 30px;
    }

    .skincare-left {
        width: 100%;
    }

    .skincare-right {
        width: 100%;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .skincare-section {
        padding: 20px 16px;
    }

    .skincare-right {
        height: 300px;
    }

    .skincare-bottom {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-book {
        margin-right: 0;
    }

    .contact-box {
        border-left: none;
        padding-left: 0;
    }
}
/* =========================================================
   GRID
   ========================================================= */

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* =========================================================
   CARD
   ========================================================= */

.discover-card {
    text-align: center;
}

/* =========================================================
   IMAGE WRAP
   ========================================================= */

.discover-image-wrap {
    position: relative;
    width: 230px;
    margin: 0 auto 24px;
}

/* MAIN ROUND IMAGE */

.discover-main-image {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    object-fit: cover;
}

/* SMALL PILL IMAGE */

.discover-pill-image {
    position: absolute;
    left: -15px;
    bottom: 5px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* =========================================================
   TEXT
   ========================================================= */

.discover-card-title {
    font-size: 3rem;
    font-weight: 800;
    color: #5f7141;
    margin-bottom: 6px;
}

.discover-card-subtitle {
    font-size: 1.7rem;
    color: #333;
}

/* =========================================================
   HOVER
   ========================================================= */

.discover-card:hover .discover-main-image {
    transform: scale(1.04);
    transition: 0.4s ease;
}


/* SMALL CIRCLE */
.small-pill-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    left: -15px;
    bottom: 5px;
    z-index: 5;
}

/* ROUND BACKGROUND */
.circle-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* CAPSULE IMAGE */
.capsule-small {
    position: absolute;
    width: 55px;
    height: 55px;
    object-fit: contain;
    top: 8px;
    left: 8px;
    transform: rotate(-5deg);
}
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {
    .discover-section {
        width: 100%;
        background: #ffffff;
        padding: 0px 0;
    }

    .discover-container {
        width: 100%;
        margin: 0;
        padding: 0 10px;
        gap: 0px;
    }

    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0px;
        padding: 0px;
        gap: 20px;
    }

    .discover-title {
        font-size: 2.5rem;
    }

    .discover-link {
        font-size: 1.7rem;
        margin: 0px;
        padding: 0px;
        color: #222;
        font-weight: 700;
        text-decoration: underline;
    }
}

@media (max-width: 768px) {

    .discover-grid {
        padding: 10px;
        grid-template-columns: 1fr;
    }

    .discover-title {
        font-size: 2rem;
    }

    .discover-subtitle {
        margin: 10px;
        padding: 0px;
        font-size: 1.2rem;
    }

    .discover-image-wrap {
        width: 200px;
    }

    .discover-main-image {
        width: 200px;
        height: 200px;
    }

    .discover-pill-image {
        width: 60px;
        height: 60px;
    }

    .discover-card {
        padding: 0px;
        text-align: center;
    }

    .discover-card-title {
        font-size: 1.7rem;
    }

    .discover-card-subtitle {
        font-size: 1.1rem;
    }
}


/* =========================================================
   SCIENCE SECTION
========================================================= */
/* ===== BENEFITS BANNER SECTION ===== */
.benefits-banner-section {
    width: 100%;
    background-color: #CDE684; /* Exact light green background from the image */
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-banner-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 43px; /* Blocks ke beech ka barabar distance */
    flex-wrap: wrap; /* Mobile par automatic wrap hone ke liye */
}

/* ===== INDIVIDUAL CARD ===== */
.benefit-card {
    background-color: #5a6837; /* Dark olive green background */
    border-radius: 20px; /* Perfectly rounded corners */
    padding: 16px 28px;
    display: inline-flex;
    align-items: center;
    gap: 15px; /* Icon aur text ke beech ka horizontal gap */
    min-width: 250px; /* Ensures text stays beautifully structured */
}

/* ===== CARD ICON ===== */
.benefit-card-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

/* ===== CARD TEXT ===== */
.benefit-card-text {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff; /* White text color */
    line-height: 1.25;
    text-align: left;
    font-family: sans-serif; /* Agar aap koi specific font use kar rahe hain to yahan change karein */
}

    .benefit-card-text span {
        font-weight: 600; /* Bottom line ko thoda bold look dene ke liye */
    }

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 768px) {
    .benefits-banner-section {
        padding: 20px 15px;
    }

    .benefits-banner-container {
        flex-direction: column; /* Mobile par blocks ek ke niche ek aa jayenge */
        gap: 15px;
        width: 100%;
    }

    .benefit-card {
        width: 100%; /* Mobile screen par cards responsive full width le lenge */
        max-width: 340px; /* Lekin bohot zyada stretch nahi honge */
        box-sizing: border-box;
    }
}

/* =========================================================
   EXPERT SUPPORT SECTION
   ========================================================= */

/* ===== MAIN SECTION ===== */
.why-choose-section {
    width: 100%;
    background: #ffffff;
    padding: 20px 40px;
    box-sizing: border-box;
}

.why-choose-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== LEFT COLUMN ===== */
.choose-left {
    flex: 1;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-tag {
    background-color: #CDE684;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.choose-title {
    font-size: 35px;
    font-weight: 800;
    color: #222222;
    line-height: 1.25;
    margin-bottom: 20px;
}

    .choose-title span {
        color: #5A6837; /* Dark olive green shade */
    }

.choose-desc p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #5A6837;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: 15px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s;
}

    .btn-learn:hover, .btn-learn:focus, .btn-learn:active {
        background: #47532a;
        color: #ffffff !important;
        text-decoration: none;
    }

/* ===== CENTER COLUMN (PRODUCT IMAGE) ===== */
.choose-center {
    flex: 1;
    max-width: 22%;
    display: flex;
    justify-content: center;
}

.product-img-box {
    width: 100%;
    overflow: hidden;
    border-radius: 24px; /* Image container rounded corners */
}

    .product-img-box img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

/* ===== RIGHT COLUMN (FEATURES) ===== */
.choose-right {
    flex: 1;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Distance between feature items */
}

.choose-feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

/* Icons Background Circle Fix */
.feature-icon-circle {
    width: 46px;
    margin-top:20px;
    height: 46px;
    flex-shrink: 0;
    background-color: #dbe7b5; /* Light green circle backdrop */
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
}

    .feature-icon-circle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.feature-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.9;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .why-choose-container {
        flex-direction: column;
        gap: 50px;
    }

    .choose-left, .choose-center, .choose-right {
        max-width: 100%;
        width: 100%;
    }

    .choose-center {
        max-width: 450px; /* Tablet par main image zyada screen na ghere */
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }

    .choose-title {
        font-size: 26px;
    }

    .choose-feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* =========================================================
   HEALTH SECTION
   ========================================================= */

.health-section {
    width: 100%;
    background: #c9df79;
    padding: 20px 0;
}

.health-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT */

.health-content {
    flex: 1;
    max-width: 550px;
}

.health-title {
    font-size: 4rem;
    font-weight: 900;
    color: #222;
    line-height: 1.1;
    margin-bottom: 24px;
}

.health-text {
    font-size: 1.8rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 28px;
}

.health-subtitle {
    font-size: 4.34rem;
    font-weight: 350;
    color: #222;
    line-height: 1.1;
}

/* RIGHT */

.health-image-box {
    width: 520px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.health-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.health-caption {
    padding: 18px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .health-container {
        flex-direction: column;
        margin: 0 auto;
        padding: 0 17px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .health-image-box {
        height: auto;
        width: 100%;
        max-width: 550px;
    }

    .health-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {

    .expert-grid {
        grid-template-columns: 1fr;
    }

    .expert-title {
        font-size: 2.3rem;
    }

    .expert-subtitle {
        margin: 0 auto 20px;
        font-size: 1.6rem;
        line-height: 1.4;
        color: #333;
    }

    .health-title {
        padding: 0px;
        margin: 0px;
        text-align: center;
        font-size: 2.1rem;
    }

    .health-text {
        font-size: 1.4rem;
        line-height: 1.3;
        color: #333;
        margin: 7px;
    }

    .health-subtitle {
        margin: 5px;
        text-align: center;
        font-size: 1.7rem;
    }

    .health-caption {
        padding: 10px 9%;
        text-align: center;
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
    }

    .expert-btn {
        display: inline-block;
        padding: 9px 20px;
        background: #66773f;
        color: #fff;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 700;
        font-size: 2rem;
        transition: 0.3s ease;
    }

    .expert-image {
        height: 280px;
    }

    .expert-top {
        text-align: center;
        margin-bottom: 40px;
    }
}

/* =========================================================
   TESTIMONIAL SECTION
   ========================================================= */

.testimonial-section {
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
}

.testimonial-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* =========================================================
   TOP AREA
   ========================================================= */

.testimonial-top {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-title {
    font-size: 4rem;
    font-weight: 800;
    color: #66773f;
    margin-bottom: 12px;
}

.testimonial-review {
    font-size: 2.0rem;
    font-weight: 800;
    color: #333;
    text-decoration: underline;
    margin-bottom: 10px;
}

.testimonial-subtitle {
    font-size: 1.9rem;
    color: #666;
    margin-bottom: 0px;
}
/* CARDS */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.t-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.t-stars {
    font-size: 2.7rem;
    color: #4a6741;
    padding: 10px 20px 10px;
}

.t-text {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.7;
    padding: 0 20px 20px;
    text-align: justify;
}

.t-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

    .t-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonial-cards {
        display: flex;
        overflow: hidden;
        width: 100%;
    }

    .t-card {
        min-width: 100%; /* har card full width le */
        box-sizing: border-box;
    }

    .testimonial-top {
        text-align: center;
        margin-bottom: 20px;
    }

    .testimonial-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: #66773f;
        margin-bottom: 12px;
    }

    .testimonial-review {
        font-size: 1.7rem;
        font-weight: 800;
        color: #333;
        text-decoration: underline;
        margin: 10px;
    }

    .testimonial-subtitle {
        font-size: 1.4rem;
        color: #666;
        margin: 5px;
    }
}

/* ---------- HERO SECTION ---------- */

.fayvor-hero {
    background-color: #ffffff;
    padding: 20px 0;
    margin-bottom: 0px;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.fayvor-hero .hero-inner {
    display: flex;
    align-items: stretch;
    gap: 40px;
    min-height: 320px;
}

.fayvor-hero .hero-image-box {
    flex: 1; /* fixed width — flex: 1 hatao */
    max-width: 50%; /* max width limit */
    max-height: 50%; /* height limit */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fayvor-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fayvor-hero .hero-content-box {
    flex: 1; /* fixed width — flex: 1 hatao */
    max-width: 50%; /* max width limit */
    max-height: 50%; /* height limit */
    background-color: #CDE684;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fayvor-hero .hero-title {
    font-size: 35px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 16px;
}

.fayvor-hero .hero-subtitle {
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 28px;
    max-width: 380px;
}

.fayvor-hero .btn-hero {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    padding: 14px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .fayvor-hero .btn-hero:hover {
        background-color: #333333;
        color: #ffffff;
        text-decoration: none;
    }

@media (max-width: 768px) {

    .fayvor-hero .hero-inner {
        display: flex;
        align-items: stretch;
        gap: 10px;
        min-height: 320px;
        flex-direction: column;
    }

    .fayvor-hero .hero-image-box {
        order: 2;
        height: 250px;
        flex: 1; /* fixed width — flex: 1 hatao */
        max-width: 100%; /* max width limit */
        max-height: 100%; /* height limit */
        margin: 0px;
        padding: 0px;
    }

    .fayvor-hero .hero-title {
        margin: 05px;
        font-size: 1.9rem;
        font-weight: 700;
        color: #1a1a1a;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1px;
    }

    .fayvor-hero .hero-content-box {
        order: 1;
        padding: 10px 0px;
        flex: 1; /* fixed width — flex: 1 hatao */
        max-width: 100%; /* max width limit */
        max-height: 100%; /* height limit */
        background-color: #CDE684;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .fayvor-hero .hero-subtitle {
        font-size: 13px;
        color: #333333;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 18px;
        padding: 4px 4%;
    }

    .fayvor-hero .btn-hero {
        display: inline-block;
        background-color: #1a1a1a;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        padding: 14px 28px;
        border-radius: 30px;
        transition: all 0.3s ease;
    }
}
/* ---------- FAQ SECTION ---------- */
.fayvor-faq {
    background-color: #ffffff;
    padding: 0px 0 0px;
    margin-top: 20px;
}

.faq-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.fayvor-faq .faq-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.fayvor-faq .faq-left {
    flex: 0 0 550px;
    max-width: 550px;
}

.faq-icon-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0px;
}

.fayvor-faq .faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.fayvor-faq .faq-heading {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 1.3;
}

.fayvor-faq .faq-sub {
    font-size: 28px;
    color: #555555;
    margin-bottom: 14px;
}

.fayvor-faq .faq-link {
    font-size: 30px;
    color: #5A6837;
    text-decoration: underline;
    font-weight: 500;
}

    .fayvor-faq .faq-link:hover {
        color: #4a7c3f;
    }

.fayvor-faq .faq-right {
    flex: 1 200px;
    max-width: 100%;
}

.fayvor-faq .faq-accordion {
    border-top: none;
}

.fayvor-faq .faq-item {
    border-bottom: none;
    margin-bottom: 8px;
}

.fayvor-faq .faq-question {
    width: 100%;
    background-color: #e8e8e8;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    font-size: 25px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 4px;
}

    .fayvor-faq .faq-question:hover {
        color: #4a7c3f;
        background-color: #dcdcdc;
    }

.fayvor-faq .faq-arrow {
    font-size: 40px;
    font-weight: 100;
    color: #444444;
    transition: transform 0.3s ease;
    flex-shrink: 1;
    margin-left: 12px;
}

.fayvor-faq .faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: #4a7c3f;
}

.fayvor-faq .faq-item.open .faq-question {
    color: #4a7c3f;
    background-color: #e8e8e8;
}

.fayvor-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    padding: 0 16px;
}

.fayvor-faq .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 10px 0px 0px;
}

.fayvor-faq .faq-answer p {
    font-size: 25px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .fayvor-faq .faq-inner {
        flex-direction: column;
        gap: 23px;
    }

    .fayvor-faq .faq-left {
        flex: none;
        max-width: 100%;
    }

    .faq-container {
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }

    .faq-icon-img {
        width: 100%;
        height: 100%;
        display: block;
        margin-bottom: 0px;
    }

    .fayvor-faq .faq-heading {
        font-size: 34px;
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 0px;
        margin-bottom: 0px;
        line-height: 1.3;
    }

    .fayvor-faq .faq-sub {
        font-size: 25px;
        color: #555555;
        margin-bottom: 14px;
    }

    .fayvor-faq .faq-link {
        font-size: 25px;
        color: #5A6837;
        text-decoration: underline;
        font-weight: 500;
    }

    .fayvor-faq .faq-question {
        width: 100%;
        background-color: #e8e8e8;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 3px 10px;
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
        text-align: left;
        transition: color 0.2s ease, background-color 0.2s ease;
        border-radius: 4px;
    }

    .fayvor-faq .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.2s ease;
        padding: 0 16px;
    }

    .fayvor-faq .faq-item.open .faq-answer {
        max-height: 200px;
        padding: 10px 3px 0px;
    }

    .fayvor-faq .faq-answer p {
        font-size: 15px;
        color: #555555;
        line-height: 1.5;
        margin: 0;
    }
}
