
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif !important;
    background:#f8f5ef !important;
    color:#3a2a1c !important;
}

/*img{
    max-width:100%;
    display:block;
}*/

.container{
    max-width:1400px;
    margin:auto;
}

/* ================= HEADER ================= */

.header {
    background: #fffdf84f;
    border-bottom: 1px solid #b8444626;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

.logo{
    font-size:52px;
    font-weight:700;
    color:#7b3f00;
    font-family:'Playfair Display', serif;
}
.logo > img {
    max-width: 180px;
}
.nav-links{
    display:flex;
    gap:42px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#3f3f3f;
    font-size:16px;
    font-weight:normal;
}

.verify-btn{
    background: #437820;
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
}

/* ================= HERO ================= */
/* ================= HERO SECTION ================= */

.hero-section{
    position:relative;
    width:100%;
    padding:0px 0 0px;
    overflow:hidden;
    background:#faf6eb;
    font-family:'Inter',sans-serif;
    margin-top: 85px;
}

/* BACKGROUND */

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(to right, rgba(255,248,230,0.95), rgba(255,248,230,0.70)),
    url('images/ghee-bg.jpg');
    background-size:cover;
    background-position:center;
    z-index:1;
}

.hero-container{
    width:95%;
    max-width:1600px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:30px;
    position:relative;
    z-index:2;
}

.hero-section .container {
    position: absolute;
    top: 0;
    margin: auto;
    right: 0;
    left: 0;
    display: flex;
    align-items: end;
    height: 100%;
    padding-bottom: 40px;
}

.hero-stats .hero-stat-card {
    border-radius: 12px;
    padding: 8px 15px;
	gap: 7px;
}
.hero-stats .hero-stat-card.col {
    flex-direction: column;
}

.hero-section .image > img {
	width:100%;
}

/* LEFT */

.hero-left h1{
    font-size:62px;
    line-height:1.08;
    color:#3a2113;
    margin-bottom:18px;
    font-family:'Playfair Display', serif !important;
    font-weight:700;
}

.hero-left p{
    font-size:22px;
    line-height:1.5;
    color:#5d5349;
    max-width:700px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:15px;
    margin:20px 0 25px;
}

.hero-btn{
    height: auto;
    padding: 10px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
    transition: 0.3s ease;
}

.primary-btn{
    background:#437820;
    color:#fff;
}

.primary-btn:hover{
    background:#3e7425;
}

.secondary-btn{
    background:#fff;
    border:1px solid #d7c6a8;
    color:#43352a;
}

/* TAGS */

.hero-tags {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 0px;
    margin-bottom: 120px;
    background: #ffffff;
    border: 1px solid #dfd0b6;
    width: 63%;
    border-radius: 40px;
    padding: 0 0;
    justify-content: space-evenly;
}

.hero-tag {
    background: transparent;
    border: 0px solid #dfd0b6;
    border-radius: 40px;
    padding: 17px 12px;
    font-size: 15px;
    color: #4a4037;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* STATS */

.hero-stats{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.hero-stat-card{
    background: #fffdfa;
    border: 1px solid #e7d9c8;
    border-radius: 18px;
    padding: 16px 20px;
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: auto;
    height: auto;
    border-radius: 50%;
    background: transparent;
    border: 0px solid #d9d9b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}


.hero-stat-card h3{
    font-size: 24px;
    color:#4f8d30;
    margin-bottom: 0px;
    /* font-family:'Playfair Display', serif; */
}

.hero-stat-card p{
    font-size: 15px;
    color:#5c5148;
    line-height:1.4;
}


/* RIGHT */

.hero-right{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-product img{
    width:100%;
    max-width:520px;
    animation:float 4s ease-in-out infinite;
}

@media (max-width:1600px) {
	.hero-left h1 {
		font-size: 52px;
	}
	.hero-left p {
		font-size: 18px;
	}
	.hero-tags {    
    margin-bottom: 70px;
	}
	.hero-tags {
		width: 57%;
	}
}

@media screen and (min-width:1501px) and (max-width:1680px) {
.container{
    max-width:1320px;
}
}
@media screen and (min-width:1401px) and (max-width:1500px) {
.container{
    max-width:1280px;
}
}
@media screen and (min-width:1200px) and (max-width:1400px) {
.container{
    max-width:1170px;
}
}

/* FLOAT */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-14px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* REPORT CARD */

.report-preview-card{
    position:absolute;
    top:40px;
    right:0;
    width:340px;
    background:#fffdfa;
    border-radius:18px;
    border:1px solid #eadbc8;
    padding:22px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.report-preview-card h4{
    font-size:20px;
    color:#3a2719;
    margin-bottom:16px;
}

.report-preview-card p{
    font-size:15px;
    color:#72675f;
    margin-bottom:8px;
}

.report-status{
    font-size:16px;
    margin:12px 0;
}

.report-status span{
    color:#4e9c30;
    font-weight:700;
}

.report-preview-card a{
    color:#a56720;
    font-size:15px;
    text-decoration:none;
    font-weight:600;
}

.verified-badge{
    position:absolute;
    top:22px;
    right:22px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#4e9d30;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* BADGES */

.hero-badges{
    position:absolute;
    bottom:40px;
    right:0;
    display:flex;
    gap:20px;
}

.badge-circle,
.badge-shield{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#fff7e4;
    border:4px solid #d7a548;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#6a481c;
    font-weight:700;
    line-height:1.4;
    font-size:18px;
}

.badge-shield{
    border-radius:24px;
    background:#8b5b18;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1400px){

    .hero-left h1{
        font-size:60px;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:992px){

    .hero-container{
        grid-template-columns:1fr;
    }

    .hero-left{
        text-align:center;
    }

    .hero-buttons,
    .hero-tags{
        justify-content:center;
    }

    .hero-right{
        margin-top:30px;
    }

}

@media(max-width:768px){

    .hero-left h1{
        font-size:42px;
    }

    .hero-left p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-btn{
        justify-content:center;
        width:100%;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .report-preview-card{
        position:relative;
        width:100%;
        margin-bottom:20px;
    }

    .hero-badges{
        position:relative;
        justify-content:center;
        margin-top:20px;
    }

}

.section{
    padding:70px 0;
}

.section-title{
    font-size:48px;
    margin-bottom:40px;
    font-family:'Playfair Display', serif;
}

/* ================= REPORTS ================= */

.report-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.report-card{
    background:#fff;
    border-radius:18px;
    border:1px solid #eadfcd;
    padding:24px;
    transition:0.3s;
}

.report-card:hover{
    transform:translateY(-8px);
}

.report-thumb{
    height:190px;
    background:#f2f2f2;
    border-radius:10px;
    margin-bottom:20px;
}

.report-id{
    font-size:17px;
    margin-bottom:12px;
    color:#555;
}

.report-status{
    color:#4b8f2f;
    font-weight:700;
    margin-bottom:18px;
}

.download-btn{
    width:100%;
    background:#fff;
    border:2px solid #4b8f2f;
    color:#4b8f2f;
    padding:14px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
}

/* ================= QUALITY CARDS ================= */

.quality-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.quality-card{
    background:#fff;
    border-radius:18px;
    border:1px solid #eadfcd;
    padding:30px;
}

.quality-card h3{
    font-size:26px;
    margin-bottom:14px;
    color:#4b8f2f;
}

.quality-card p{
    font-size:17px;
    line-height:1.7;
    color:#5e5e5e;
}

/* ================= PROCESS ================= */

.process{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
    text-align:center;
}

.process-card{
    background:#fff;
    border-radius:18px;
    border:1px solid #eadfcd;
    padding:26px 18px;
}

.process-circle{
    width:90px;
    height:90px;
    background:#fff6dc;
    border-radius:50%;
    margin:auto auto 18px;
}

/* ================= DASHBOARD ================= */

.dashboard{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.dashboard-card{
    background:#fff;
    border-radius:20px;
    border:1px solid #eadfcd;
    padding:34px;
}

.dashboard-number{
    font-size:60px;
    font-weight:700;
    color:#1d1d1d;
    margin-top:20px;
}

.progress{
    width:100%;
    height:14px;
    background:#eee;
    border-radius:30px;
    overflow:hidden;
    margin-top:18px;
}

.progress-fill{
    width:92%;
    height:100%;
    background:#4b8f2f;
}

/* ================= GALLERY ================= */

.gallery{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.gallery img{
    border-radius:18px;
    height:220px;
    object-fit:cover;
}

/* ================= TRUST ================= */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.trust-card{
    background:#fff;
    border:1px solid #eadfcd;
    border-radius:18px;
    padding:28px;
    text-align:center;
}

.trust-card h4{
    color:#4b8f2f;
    font-size:34px;
    margin-bottom:10px;
}

/* ================= LAB REPORT SECTION ================= */

.lab-report-section{
    padding:40px 0;
    font-family:'Inter',sans-serif;
}

.lab-report-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:22px;
}

.lab-report-header h2{
    font-size:32px;
    line-height:1.1;
    color:#3d2718;
    margin-bottom:6px;
    font-family:'Playfair Display', serif;
    font-weight:700;
}

.lab-report-header p{
    font-size:15px;
    color:#7d756c;
}

.view-all{
    text-decoration:none;
    color:#4f7d3a;
    font-size:15px;
    font-weight:600;
    margin-top:10px;
}

.report-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.report-card{
    background:#fffdf9;
    border:1px solid #e7d9c7;
    border-radius:14px;
    padding:14px;
    transition:0.3s ease;
}

.report-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.report-top{
    display:flex;
    gap:14px;
    margin-bottom:14px;
}

.report-pdf{
    width:88px;
    min-width:88px;
    height:118px;
    border:1px solid #ddd;
    border-radius:4px;
    overflow:hidden;
    background:#fafafa;
}

.report-pdf img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.report-content{
    flex:1;
}

.report-row{
    margin-bottom:12px;
}

.report-row span{
    display:block;
    font-size:11px;
    color:#888;
    margin-bottom:3px;
}

.report-row strong{
    font-size:14px;
    color:#2f2f2f;
    font-weight:600;
}

.status{
    display:flex;
    align-items:center;
    gap:7px;
    color:#4d8b36;
    font-weight:700;
    font-size:15px;
}

.lab-report-section .quality-icon {
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 50%;
    background: #5a982e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.dot{
    width:10px;
    height:10px;
    background:#4d8b36;
    border-radius:50%;
}

.download-btn{
    width:100%;
    height:42px;
    border:2px solid #6b9c54;
    background:#fff;
    border-radius:8px;
    color:#4d7d39;
    font-size:14px;
    font-weight:600;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:0.3s;
}

.download-btn:hover{
    background:#4d8b36;
    color:#fff;
}

@media(max-width:1200px){

    .report-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .report-grid{
        grid-template-columns:1fr;
    }

    .lab-report-header{
        flex-direction:column;
        gap:12px;
    }

}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .container{
        width:95%;
    }

    .hero-flex{
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .stats-grid,
    .report-grid,
    .quality-grid,
    .process,
    .dashboard,
    .gallery,
    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hero-title{
        font-size:48px;
    }

    .stats-grid,
    .report-grid,
    .quality-grid,
    .process,
    .dashboard,
    .gallery,
    .trust-grid,
    .faq-grid{
        grid-template-columns:1fr;
    }

}
 header.header.fixed {
    background: #eadfcd;
}

.understanding-simple-section {
	padding: 15px 0;
}
.understanding-simple-section .heading {
        font-size: 32px;
    line-height: 1.2;
    color: #3b2719;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
	padding-bottom: 10px;
    }

    .understanding-simple-section .cards {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .understanding-simple-section .card {
        flex: 1;
        min-width: 280px;
        background: #fff;
        border: 1px solid #f0e6d6;
        border-radius: 14px;
        padding: 18px 16px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    }

    .understanding-simple-section .icon {
        width: auto;
        height: auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .understanding-simple-section .icon img {
        width: auto;
        height: auto;
    }

    .understanding-simple-section .icon.yellow { background: transparent; }
    .understanding-simple-section .icon.blue { background: transparent; }
    .understanding-simple-section .icon.green { background: transparent; }

    .understanding-simple-section .content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #356910;
    font-family: 'Playfair Display', serif;
}

    .understanding-simple-section .content p {
        margin: 6px 0 0;
        font-size: 14px;
        color: #666;
        line-height: 1.4;
    }

/* ================= QUALITY STATUS SECTION ================= */

.quality-status-section{
    width:100%;
    padding:25px 0;
    font-family:'Inter',sans-serif;
}

.quality-title{
    font-size:32px;
    line-height:1.2;
    color:#3b2719;
    margin-bottom:18px;
    font-family:'Playfair Display', serif;
    font-weight:600;
}

.quality-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.quality-card{
    background:#fffdfa;
    border:1px solid #e5d5c0;
    border-radius:12px;
    padding:18px 18px 16px;
    transition:0.3s ease;
}

.quality-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 18px rgba(0,0,0,0.05);
}

.quality-top{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.quality-icon{
    width:30px;
    height:30px;
    min-width:30px;
    border-radius:50%;
    background:#5a982e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
}

.quality-content h4{
    font-size:16px;
    color:#3d352d;
    margin-bottom:4px;
    font-weight:600;
}

.quality-content p{
    font-size:14px;
    color:#6b6b6b;
}

.quality-progress-wrap{
    display:flex;
    align-items:center;
    gap:10px;
}

.progress-bar{
    flex:1;
    height:8px;
    background:#e7e7e7;
    border-radius:20px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    background:#67a936;
    border-radius:20px;
}

.quality-progress-wrap span{
    font-size:13px;
    color:#4c4c4c;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1400px) {
    .hero-tags {
        width: 89%;
    }
	
	.hero-left {
    width: 70%;
}
.hero-section .container {
    padding-bottom: 60px;
}
.hero-left h1 {
        font-size: 33px;
        max-width: 82%;
    }
	.hero-left p {
        font-size: 14px;
    }
	.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 14px 0;
}
.hero-btn {
    height: auto;
    padding: 6px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: normal;
    transition: 0.3s ease;
}
    .hero-tags {
        width: 100%;
        margin-bottom: 16px;
    }
	.hero-tag {
    background: transparent;
    border: 0px solid #dfd0b6;
    border-radius: 40px;
    padding: 8px 9px;
    font-size: 12px;
    color: #4a4037;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}
.hero-stats .hero-stat-card {
    border-radius: 12px;
    padding: 5px 7px;
    gap: 7px;
}
.stat-icon {
    width: 40px;
}
.hero-left h1 br {
    display: none;
}
.hero-stat-card h3 {
    font-size: 17px;
}
    .hero-left p {
        font-size: 12px;
    }
	.hero-stats .hero-stat-card {
        min-width: 171px;
    }
}

@media(max-width:1200px){

    .quality-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .quality-grid{
        grid-template-columns:1fr;
    }

    .quality-title{
        font-size:26px;
    }

}

/* ================= JOURNEY SECTION ================= */

.journey-section{
    width:100%;
    padding:40px 0;
    font-family:'Inter',sans-serif;
}

.journey-title{
    text-align:center;
    font-size:32px;
    line-height:1.2;
    color:#3c2718;
    margin-bottom:35px;
    font-family:'Playfair Display', serif;
    font-weight:600;
}

.journey-wrapper{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:18px;
}

.journey-item{
    width:170px;
    text-align:center;
    position:relative;
}

.journey-circle{
    width:120px;
    height:120px;
    margin:0 auto 14px;
    border:2px dashed #d7b37d;
    border-radius:50%;
    background:#fffdfa;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.journey-circle img{
    width:78px;
    height:78px;
    object-fit:contain;
}

.journey-number{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#fff8ea;
    border:1px solid #d6b27b;
    color:#7b5a24;
    font-size:13px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 10px;
}

.journey-item h4{
    font-size:16px;
    line-height:1.3;
    color:#3c2c20;
    margin-bottom:8px;
    font-weight:600;
}

.journey-item p{
    font-size:13px;
    line-height:1.5;
    color:#73685d;
}

.journey-arrow{
    font-size:44px;
    color:#d1a15a;
    margin-top:38px;
    font-weight:300;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .journey-wrapper{
        gap:28px;
    }

    .journey-arrow{
        display:none;
    }

}

@media(max-width:768px){

    .journey-title{
        font-size:30px;
    }

    .journey-item{
        width:100%;
    }

}


.live-dashboard{
    width:100%;
    padding:40px 0;
    font-family:'Inter',sans-serif;
}

/* TOP */

.dashboard-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
}

.dashboard-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.dashboard-left h2{
    font-size:32px;
    color:#342014;
    font-family:'Playfair Display', serif;
    font-weight:600;
}

.live-badge{
    display:flex;
    align-items:center;
    gap:6px;
    color:#59a530;
    font-size:14px;
    font-weight:600;
}

.live-badge small{
    color:#8b8b8b;
    font-weight:400;
}

.live-dot{
    width:8px;
    height:8px;
    background:#59a530;
    border-radius:50%;
}

.dashboard-time{
    font-size:13px;
    color:#8c8c8c;
}

/* GRID */

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/* CARD */

.dashboard-card{
    background:#fffdfa;
    border:1px solid #eadcc8;
    border-radius:18px;
    padding:22px;
    min-height:190px;
}

.dashboard-card h4{
    font-size:20px;
    color:#3c2b1f;
    margin-bottom:16px;
    font-weight:500;
}

.dashboard-value{
    font-size:42px;
    line-height:1;
    font-weight:700;
    color:#1f1f1f;
    margin-bottom:12px;
}

.dashboard-value.green{
    color:#409f32;
}

.dashboard-growth{
    display:flex;
    align-items:center;
    gap:4px;
    color:#56a12e;
    font-size:14px;
    margin-bottom:14px;
}

/* CHARTS */

.chart-container{
    width:100%;
    height:70px;
}

#lineChart,
#barChart{
    width:100% !important;
    height:70px !important;
}

/* DONUT */

.donut-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.donut-chart-wrap{
    width:120px;
    height:120px;
}

#donutChart{
    width:100% !important;
    height:100% !important;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .dashboard-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .dashboard-top{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .dashboard-left{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .dashboard-left h2{
        font-size:28px;
    }

    .dashboard-value{
        font-size:48px;
    }

    .donut-card{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

}


/* ================= LAB GALLERY SECTION ================= */

.lab-gallery-section{
    width:100%;
    padding:30px 0;
    font-family:'Inter',sans-serif;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    height:180px;
    background:#f3f3f3;
    border:0px solid #e5d9c7;
    transition:0.4s ease;
    cursor:pointer;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

/* HOVER EFFECT */

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-card:hover{
    box-shadow:0 12px 25px rgba(0,0,0,0.10);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-card{
        height:150px;
    }

}

@media(max-width:480px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

}

/* ================= TRUSTED SECTION ================= */

.trusted-section{
    width:100%;
    padding:40px 0;
    font-family:'Inter',sans-serif;
}

.trusted-title{
    font-size:34px;
    color:#382417;
    margin-bottom:24px;
    font-family:'Playfair Display', serif;
    font-weight:600;
}

/* GRID */

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin-bottom:34px;
}

/* CARD */

.trusted-card{
    background: #ffffff;
    border: 1px solid #e7d7c3;
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.3s ease;
}

.trusted-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.trusted-icon{
    width:58px;
    height:auto;
    min-width:58px;
    border-radius:0;
    background:#fff5e8;
    border:0px solid #e6c58f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.trusted-content h3{
    font-size:20px;
    color:#4b7f2f;
    margin-bottom:5px;
    font-weight:700;
    line-height:1;
}

.trusted-content p{
    font-size:14px;
    color:#4a4038;
    line-height:1.4;
}

/* CERTIFICATIONS */

.certification-row{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
    align-items:center;
}

.certification-item{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.certification-item img{
    max-width:100%;
    height:80px;
    object-fit:contain;
    filter:grayscale(0%);
    transition:0.3s ease;
}

.certification-item:hover img{
    transform:scale(1.05);
}

/* RESPONSIVE */

@media(max-width:1200px){

    .trusted-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .certification-row{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .trusted-grid{
        grid-template-columns:1fr;
    }

    .certification-row{
        grid-template-columns:repeat(2,1fr);
    }

    .trusted-title{
        font-size:28px;
    }

}

@media(max-width:480px){

    .certification-row{
        grid-template-columns:1fr;
    }

}

/* ================= FAQ SECTION ================= */

.faq-section{
    width:100%;
    padding:50px 0;
    font-family:'Inter',sans-serif;
}

.faq-title{
    font-size:34px;
    color:#392518;
    margin-bottom:28px;
    font-family:'Playfair Display', serif;
    font-weight:600;
}

/* GRID */

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.faq-column{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* FAQ ITEM */

.faq-item{
    border:1px solid #e7d7c5;
    border-radius:12px;
    background:#fffdfa;
    overflow:hidden;
    transition:0.3s ease;
}

.faq-item.active{
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

/* QUESTION */

.faq-question{
    width:100%;
    background:none;
    border:none;
    outline:none;
    padding:22px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    color:#3b2a1d;
    font-weight:500;
    text-align:left;
}

/* ICON */

.faq-icon{
    font-size:24px;
    color:#8b6a3d;
    transition:0.3s ease;
    line-height:1;
}

/* ANSWER */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    padding:0 24px;
}

.faq-item.active .faq-answer{
    max-height:220px;
    padding-bottom:22px;
}

.faq-answer p{
    font-size:15px;
    line-height:1.7;
    color:#6e655d;
}

/* HOVER */

.faq-item:hover{
    border-color:#d9bc93;
}

/* RESPONSIVE */

@media(max-width:992px){

    .faq-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

}

@media(max-width:768px){

    .faq-title{
        font-size:28px;
    }

    .faq-question{
        font-size:16px;
        padding:18px 18px;
    }

    .faq-answer{
        padding:0 18px;
    }

    .faq-item.active .faq-answer{
        padding-bottom:18px;
    }

}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    padding:0 24px;
}

.faq-answer p{
    padding-bottom:20px;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

/* ================= FOOTER SECTION ================= */

.footer-section{
    width:100%;
    font-family:'Inter',sans-serif;
    padding:30px 0;
}

/* TOP BAR */

.footer-top{
    background:linear-gradient(90deg,#3d7428 0%, #184f1f 50%, #2f6b27 100%);
    border-radius:16px;
    padding:12px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
	background: #295226;
}

.footer-logo img {
    max-width: 150px;
}

/* FEATURES */

.footer-feature{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:18px;
    font-weight:500;
    white-space:nowrap;
}

.footer-icon{
    width:auto;
    height:auto;
    border-radius:0;
    border:0px solid rgba(255,255,255,0.25);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    background:rgba(255,255,255,0.08);
}

/* LOGO */

.footer-logo{
    font-size:52px;
    color:#fff4d7;
    font-family:'Playfair Display', serif;
    font-weight:700;
    letter-spacing:2px;
    text-align:center;
}

/* BOTTOM */

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 8px 0;
    gap:20px;
    flex-wrap:wrap;
}

.footer-copy{
    font-size:13px;
    color:#8a8a8a;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:14px;
}

.footer-links a{
    text-decoration:none;
    color:#6d6d6d;
    font-size:13px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#2f6b27;
}

.footer-links span{
    color:#b4b4b4;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .footer-top{
        justify-content:center;
        text-align:center;
    }

}

@media(max-width:768px){

    .footer-top{
        flex-direction:column;
        padding:26px 20px;
    }

    .footer-logo{
        font-size:38px;
    }

    .footer-feature{
        justify-content:center;
        font-size:16px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
	
	.header {
		position: relative;
	}

	.logo > img {
		max-width: 150px;
	}
	.verify-btn {
		padding: 10px 14px;
		font-size: 15px;
	}
 
	 .hero-left {
        width: 100%;
    }
	    .hero-left h1 {
        max-width: 100%; 
        padding-top: 15px;
    }
	.hero-section .container {
        position: relative;
        padding-bottom: 0;
    }
	.hero-stats {
        grid-template-columns: repeat(2, 1fr);
	}
	
	.journey-wrapper {
		flex-wrap: wrap;
	}
	.journey-item {
        width: 40%;
	}
	section.faq-section {
        padding: 0;
    }

}

@media(max-width:680px){
    .navbar {
        padding: 10px 0;
    }
    .logo > img {
        max-width: 110px;
    }
    .verify-btn {
        padding: 7px 14px;
        font-size: 14px;
    }
    .lab-report-header h2, .understanding-simple-section .heading, .quality-title, .journey-title, .dashboard-left h2, .trusted-title, .faq-title {
        font-size: 22px;
    }
    .hero-section .container {
        position: relative;
        padding-bottom: 0;
        margin-top: -180px;
    }
    .hero-left {
        text-align: left;
    }
    
	
    .hero-left h1 {
        max-width: 60%;
        padding-top: 15px;
        text-align: left;
        font-size: 21px;
    }
    .hero-left > p {
    width: 55%;
    }
    .hero-left > p br {
        display: none;
    }
    
    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
    }

}