*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    font-family: "Plus Jakarta Sans", sans-serif;
    color:#fff;
}
.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}
/* Header */
.header{
    position:absolute;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:#fff;
    padding:18px 0;
}
.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo img{
    height:58px;
}
.navbar ul{
    display:flex;
    list-style:none;
    gap:40px;
}
.navbar a {
    text-decoration: none;
    color: #1E372A;
    font-size: 17px;
    font-weight: 500;
    transition: .3s;
}
.navbar a.active{
    color:#00853d;
    position:relative;
}
.navbar a.active::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #008641;
    position: absolute;
    left: 0;
    right: 2%;
    left: 2%;
    margin-left: auto;
    margin-right: auto;
    bottom: -13px;
}
.quote-btn {
    background: #058c3d;
    color: #fff;
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 40px;
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 14px;
}
/* Hero */
.hero {
    background: url(images/banner-image.jpg) center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    height: calc(100vh - 96px);
    margin-top: 96px;
}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1340px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.subtitle {
    color: #f0a31d;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 47px;
    margin: 15px 0 20px;
    font-weight: 500;
}
.hero p {
    font-size: 15px;
    line-height: 1.8;
    color: #ececec;
    margin-bottom: 20px;
    letter-spacing: 2%;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .6);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 15px;
    transition: .3s;
    width: 185px;
}
.hero-btn:hover{

    background:#058c3d;

    border-color:#058c3d;

}

.hero-btn i{

    font-size:24px;

}

/* Responsive */

@media(max-width:991px){

.header .container{
    flex-direction:column;
    gap:20px;
}

.navbar ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.hero h1{
    font-size:48px;
}

.hero p{
    font-size:18px;
}

}

@media(max-width:768px){

.hero{
    text-align:center;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:38px;
}

.subtitle{
    font-size:16px;
}

.hero-btn{
    font-size:18px;
    width: 225px;
    margin: 0 auto;
}

}
.stats-section{
    background:#fff;
    padding:25px 0;
}

.stats-section .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.stat-item{
    flex:1;
    text-align:center;
}
.stat-item h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #17392c;
    margin-bottom: 18px;
    line-height: 1;
}
.stat-item p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #008641;
    letter-spacing: 0.3px;
}
.divider{
    width:1px;
    height:135px;
    background:#d8d8d8;
}

.product-details{
    /* max-height:0; */
    overflow:hidden;
    transition:max-height .4s ease;
}

.product-details.show{
    max-height:220px;
    margin:15px 0;
}

.product-details p {
    /* background: #f8f9f6; */
    /* border-left: 4px solid #168b4a; */
    padding: 0;
    border-radius: 6px;
    color: #5f6862;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
    /* min-height: 195px; */
}

.product-btn i{
    transition:.3s;
}

.product-btn.active i{
    transform:rotate(180deg);
}


@media (max-width:768px){

.stats-section .container{
    flex-direction:column;
    gap:35px;
}

.divider{
    width:80%;
    height:1px;
}

.stat-item h2{
    font-size:52px;
}

.stat-item p{
    font-size:20px;
}

}
.about-section{
    padding:120px 0;
    background:#fff;
}

.about-section .container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.about-image{
    position:relative;
}

.about-image img:first-child{
    width:100%;
    position:relative;
    z-index:2;
}

.leaf-pattern{
    position:absolute;
    width:70%;
    top:30px;
    left:120px;
    z-index:1;
    opacity:.25;
}

.section-subtitle{
    display:inline-block;
    color:#00853d;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.about-content h2{
    font-family:'Playfair Display', serif;
    font-size:38px;
    line-height:1.2;
    color:#1d342d;
    font-weight:700;
    margin-bottom:15px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #6A6D6B;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px 40px;
    margin-bottom:25px;
}

.feature{
    display:flex;
    align-items:center;
    gap:14px;
}

.feature i{
    color:#0b5e2d;
    font-size:28px;
}

.feature span{
    color:#4d4d4d;
    font-size:15px;
    font-weight:500;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    background: #0a6b34;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    box-shadow: 0 18px 35px rgba(0, 120, 60, .20);
    transition: .3s;
}

.about-btn:hover{
    background:#08552a;
}

.about-btn i{
    font-size:22px;
}
@media (max-width:991px){

.about-section{
    padding:80px 0;
}

.about-section .container{
    grid-template-columns:1fr;
    gap:50px;
}

.about-content{
    text-align:center;
}

.about-content h2{
    font-size:42px;
}

.about-content p{
    font-size:18px;
}

.about-features{
    grid-template-columns:1fr;
}

.about-btn{
    margin:auto;
}

.leaf-pattern{
    width:60%;
    left:50%;
    transform:translateX(-50%);
}

}

@media (max-width:768px){

.about-content h2{
    font-size:34px;
}

.feature span{
    font-size:18px;
}

.about-btn{
    width:100%;
    justify-content:center;
}

}
.products-section{
    padding:120px 0;
    background:#faf8f5;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#00853d;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.section-title h2{
    margin-top:15px;
    font-family:'Playfair Display',serif;
    font-size:62px;
    color:#1f332d;
    font-weight:700;
}

/* .products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}
.product-card:hover{
    transform:translateY(-8px);
}
.product-image{
    height:190px;
}
.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.product-content{
    padding:30px;
}
.product-content h3 {
    font-size: 20px;
    color: #2C3241;
    margin-bottom: 20px;
}
.product-features{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:35px;
}

.product-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6A6D6B;
    font-size: 13px;
    font-weight: 500;
}

.product-features i{
    font-size:22px;
    color:#333;
}
.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border: 1.5px solid #6fa482;
    border-radius: 12px;
    text-decoration: none;
    color: #0b6b34;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}
.product-btn:hover{
    background:#0b6b34;
    color:#fff;
}

.product-btn i{
    font-size:24px;
}

.products-bottom{
    text-align:center;
    margin-top:60px;
}
.all-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #0b6b34;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    box-shadow: 0 15px 35px rgba(0, 120, 60, .20);
    font-size: 13px;
}
.all-products-btn i{
    font-size:22px;
} */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;

    /* ADD */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    height: 190px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 30px;

    /* ADD */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    font-size: 20px;
    color: #2C3241;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 35px;
}

.product-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6A6D6B;
    font-size: 13px;
    font-weight: 500;
}

.product-features i {
    font-size: 22px;
    color: #333;
}

/* ADD */
.product-details {
    flex: 1;
}

/* ADD */
.product-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border: 1.5px solid #6fa482;
    border-radius: 12px;
    text-decoration: none;
    color: #0b6b34;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.product-btn:hover {
    background: #0b6b34;
    color: #fff;
}

.product-btn i {
    font-size: 24px;
}

.products-bottom {
    text-align: center;
    margin-top: 60px;
}

.all-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #0b6b34;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    box-shadow: 0 15px 35px rgba(0, 120, 60, .20);
    font-size: 13px;
}

.all-products-btn i {
    font-size: 22px;
}
@media(max-width:991px){

.products-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:42px;
}

.product-features{
    flex-direction:column;
    align-items:flex-start;
}

}

@media(max-width:768px){

.products-section{
    padding:80px 0;
}

.section-title h2{
    font-size:34px;
}

.product-content{
    padding:25px;
}

.product-btn{
    width:100%;
    justify-content:center;
}

.all-products-btn{
    width:100%;
    justify-content:center;
}

}
.why-choose{
    padding:90px 0;
    background:#fff;
}

.why-choose .section-title{
    text-align:center;
    margin-bottom:70px;
}

.why-choose .section-title span{
    display:inline-block;
    color:#00853d;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:15px;
}

/* .why-choose .section-title h2{
    font-family:'Playfair Display',serif;
    font-size:62px;
    color:#1d342d;
    font-weight:700;
} */

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.why-card {
    background: #f8f5f2;
    border-radius: 18px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    gap: 0;
    transition: .35s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.why-icon{
    width:90px;
    height:90px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0b6b34;
    font-size:58px;
}
.why-content h3{
    font-size:16px;
    color:#2f3747;
    margin-bottom:10px;
    font-weight:600;
}
.why-content p {
    color: #6A6D6B;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}
@media(max-width:1200px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-choose{
    padding:80px 0;
}

.why-grid{
    grid-template-columns:1fr;
}

.why-choose .section-title h2{
    font-size:36px;
}

.why-card{
    flex-direction:column;
    text-align:center;
    padding:35px 25px;
}

.why-icon{
    width:70px;
    height:70px;
    font-size:46px;
}

.why-content h3{
    font-size:22px;
}

.why-content p{
    font-size:16px;
}

}
.process-section{

    position:relative;

    padding:120px 0;

    background:url("images/process-bg.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.process-section .overlay{
    position:absolute;
    inset:0;
    /* background: rgb(18 66 39); */
}

.process-section .container{

    position:relative;

    z-index:2;

}

.section-title{

    text-align:center;

    margin-bottom:45px;

}
section.process-section h2 {
    color: #fff;
}
section.process-section .section-title span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.section-title h2 {
    color: #1D3026;
    font-size: 38px;
    font-family: 'Playfair Display', serif;
}

.process-wrapper{

    display:flex;

    align-items:flex-start;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.process-item{

    width:180px;

    text-align:center;

    color:#fff;

}

.icon{

    width:120px;

    height:120px;

    margin:auto;

    background:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    transition:.4s;

}

.icon i{

    font-size:54px;

    color:#0b8f42;

}

.process-item:hover .icon{

    transform:translateY(-10px);

    background:#0b8f42;

}

.process-item:hover .icon i{

    color:#fff;

}
.process-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.process-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: .95;
}

.arrow{
    color:#fff;
    font-size:50px;
    margin-top:35px;
}

@media(max-width:992px){
.process-wrapper{
    flex-direction:column;
    align-items:center;
}

.arrow{
    transform:rotate(90deg);
    margin:10px 0;
}

.process-item{
    width:100%;
    max-width:350px;

}
.section-title h2{
    font-size:42px;
}
}
.global-reach{
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

.global-reach .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}
.reach-content{
    width:45%;
}
.section-tag{
    color:#0a8d42;
    font-weight:700;
    letter-spacing:1px;
    display:block;
    margin-bottom:18px;
}

.reach-content h2{
    font-family:'Playfair Display',serif;
    font-size:38px;
    color:#21342c;
    line-height:1.15;
    margin-bottom:30px;
}
.reach-content p {
    font-size: 16px;
    color: #6A6D6B;
    line-height: 1.9;
    max-width: 500px;
    font-weight: 500;
}
.certifications{
    display:flex;
    gap:35px;
    align-items:center;
    margin-top:60px;
    flex-wrap:wrap;
}
.certifications img{
    height:auto;
    filter:grayscale(10%);
    transition:.4s;
}
.certifications img:hover{
    transform:translateY(-8px);
}
.reach-map{
    width:55%;
    position:relative;
}
.world-map{
    width:100%;
}
.india-pin {
    position: absolute;
    top: 43%;
    left: 72%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}
.india-pin i{
    color:#d89a17;
    font-size:48px;
}
.india-pin span{
    font-size:28px;
    font-family:'Playfair Display',serif;
    color:#222;
}

@keyframes bounce{

0%,100%{

transform:translate(-50%,-50%);

}

50%{

transform:translate(-50%,-58%);

}

}
/* ================================
Floating Buttons
================================ */

.floating-actions{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.floating-btn{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#fff;
    padding:14px 18px;
    border-radius:50px;
    font-weight:600;
    font-size:15px;
    box-shadow:0 12px 25px rgba(0,0,0,.15);
    transition:.3s;
}

.floating-btn:hover{
    transform:translateY(-4px);
}

.floating-btn i{
    font-size:22px;
}

.pdf{
    background:#D32F2F;
}

.enquiry{
    background:#1565C0;
}

.whatsapp{
    background:#25D366;
}
section#rate-card p {
    color: #000;
}
@media(max-width:768px){

.floating-actions{
    right:15px;
    bottom:15px;
}

.floating-btn{
    width:56px;
    height:56px;
    border-radius:50%;
    justify-content:center;
    padding:0;
}

.floating-btn span{
    display:none;
}

.floating-btn i{
    font-size:24px;
}

}
@media(max-width:991px){

.global-reach .container{

flex-direction:column;

text-align:center;

}

.reach-content{

width:100%;

}

.reach-map{

width:100%;

margin-top:40px;

}

.reach-content h2{

font-size:42px;

}

.certifications{

justify-content:center;

}

.india-pin{

left:58%;

top:42%;

}

}
/* =============================
   TESTIMONIALS
============================= */

.testimonial-section{

padding:110px 0;

background:#f8f6f2;

}

.section-heading{

text-align:center;

margin-bottom:70px;

}

.section-heading span{

color:#0b8f42;

font-weight:700;

letter-spacing:2px;

}

.section-heading h2{

font-size:38px;

font-family:'Playfair Display',serif;

margin-top:15px;

color:#21342c;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.testimonial-card{

background:#fff;

padding:20px;

border-radius:18px;

box-shadow:0 8px 30px rgba(0,0,0,.08);

transition:.4s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.quote{

font-size:70px;

color:#0b8f42;

line-height:1;

margin-bottom:0;

}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #6A6D6B;
    margin-bottom: 10px;
}

.client h4{

font-size:16px;

color:#21342c;

margin-bottom:8px;

}

.client span{

color:#777;

font-size:16px;

}

/* =============================
CTA
============================= */

.cta-section{

position:relative;

padding:100px 0;

background:url(images/cta-bg.jpg) center center/cover;

overflow:hidden;

}

.cta-section .overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.25);

}

.cta-content{

position:relative;

z-index:2;

text-align:center;

max-width:900px;

margin:auto;

}

.cta-content h2{

font-size:38px;

font-family:'Playfair Display',serif;

color:#fff;

margin-bottom:20px;

}

.cta-content p{

font-size:24px;

color:#eee;

margin-bottom:45px;

}

.cta-btn{

display:inline-flex;

align-items:center;

gap:15px;

padding:18px 45px;

background:#c88b18;

color:#fff;

border-radius:50px;

text-decoration:none;

font-size:20px;

font-weight:600;

transition:.4s;

}

.cta-btn:hover{

background:#0b8f42;

transform:translateY(-4px);

}

@media(max-width:991px){

.testimonial-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:42px;

}

.cta-content h2{

font-size:42px;

}

.cta-content p{

font-size:18px;

}

}
.market-prices{
    padding:70px 0;
    background:#faf8f5;
    font-family:"Plus Jakarta Sans",sans-serif;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.market-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    flex-wrap:wrap;
    gap:20px;
}

.market-header .left{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.market-header h2{
    font-size:28px;
    font-weight:700;
    color:#111;
}

.market-header span{
    font-size:14px;
    color:#666;
    display:flex;
    align-items:center;
    gap:7px;
}

.updated{
    color:#2e7d32 !important;
    font-weight:600;
}

.view-all{
    text-decoration:none;
    color:#111;
    background:#fff;
    padding:12px 22px;
    border-radius:40px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.view-all:hover{
    transform:translateY(-3px);
}

.price-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.price-card{
    background:#fff;
    border-radius:20px;
    padding:22px;
    text-align:left;
    border:1px solid #efefef;
    transition:.35s;
}

.price-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.price-card img{
    width:200px;
    height:auto;
    object-fit:contain;
    display:block;
    margin:auto;
}

.price-card h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #17392c;
}

.price-card p{
    color:#777;
    font-size:14px;
    margin:4px 0 18px;
}
.price-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
    margin-top: 10px;
}
.price-card h4 span{
    font-size:14px;
    color:#777;
    font-weight:500;
}

.price-up{
    color:#e53935;
    font-weight:600;
    font-size:15px;
}

.price-down{
    color:#2e7d32;
    font-weight:600;
    font-size:15px;
}

@media(max-width:1200px){

.price-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.market-header{
flex-direction:column;
align-items:flex-start;
}

.market-header .left{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.price-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.price-grid{
grid-template-columns:1fr;
}

}
/*==========================
        FOOTER
==========================*/

.footer{
    background:#0f3d1d;
    color:#ffffff;
    overflow:hidden;
}

.footer a{
    text-decoration:none;
    transition:.3s ease;
}

/*==========================
      TOP CONTACT BAR
==========================*/

.footer-top{
    padding:45px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
}

.contact-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:#89c43f;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    margin-right:18px;
}

.contact-content span {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}
.contact-content h4 {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    color: #fff;
    margin: 0;
    margin-bottom: 15px;
}

.contact-content h4 a{
    color:#fff;
}

/*==========================
      MAIN FOOTER
==========================*/

.footer-main{
    padding:80px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:70px;
}

.footer-logo{
    width:260px;
    margin-bottom:25px;
}

.footer-about p{
    font-size:16px;
    line-height:2;
    color:#d5e4d0;
    max-width:520px;
}

.footer h3{
    font-family:'Playfair Display',serif;
    color:#89c43f;
    font-size:24px;
    font-weight:500;
    margin-bottom:35px;
}

/*==========================
      SOCIAL ICONS
==========================*/

.social-icons{
    display:flex;
    gap:18px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #89c43f;
    font-size: 17px;
}

.social-icons a:hover{
    background:#89c43f;
    color:#fff;
}

/*==========================
      FOOTER LINKS
==========================*/

.footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:18px;
}

.footer-links a{
    color:#ffffff;
    font-size:15px;
}

.footer-links a:hover{
    color:#89c43f;
    padding-left:6px;
}

/*==========================
      BOTTOM
==========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:28px 0;
}

.bottom-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    align-items:center;
    color:#f1f1f1;
    font-size:15px;
}

.bottom-grid div:nth-child(2){
    text-align:center;
}

.bottom-grid div:last-child{
    text-align:right;
}

.bottom-grid a{
    color:#25d366;
    font-weight:600;
}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:1200px){

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-grid{
grid-template-columns:1fr;
}

.bottom-grid{
grid-template-columns:1fr;
gap:15px;
text-align:center;
}

.bottom-grid div:last-child,
.bottom-grid div:nth-child(2){
text-align:center;
}

}

@media(max-width:768px){

.footer-main{
padding:60px 0;
}

.footer-grid{
grid-template-columns:1fr;
gap:45px;
}

.footer h3{
font-size:34px;
margin-bottom:20px;
}

.contact-content h4{
font-size:20px;
}

.footer-about p{
font-size:16px;
line-height:1.8;
}

.footer-logo{
width:220px;
}

.social-icons{
justify-content:flex-start;
flex-wrap:wrap;
}

.social-icons a{
width:50px;
height:50px;
font-size:20px;
}

.footer-links a{
font-size:17px;
}

}
/* Product Grade */
.product-grade {
font-size: 20px;
font-weight: 700;
line-height: 1.3;
color: #173f2a;
margin-bottom: 8px;
}

/* Grade Legend */
.grade-legend {
display: inline-block;
width: fit-content;
padding: 5px 10px;
border-radius: 20px;
background: #edf4ee;
color: #245b3b;
font-size: 11px;
font-weight: 700;
margin-bottom: 15px;
}

/* Current Price */
.product-price {
padding: 12px 0;
border-top: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
margin-bottom: 14px;
}

.product-price span {
display: block;
font-size: 11px;
color: #777;
text-transform: uppercase;
letter-spacing: .5px;
margin-bottom: 3px;
}

.product-price strong {
font-size: 22px;
font-weight: 700;
color: #173f2a;
}

.product-price small {
font-size: 11px;
color: #777;
font-weight: 500;
}

/* MOQ / GST / Logistics */
.product-info {
margin-bottom: 15px;
}

.product-info div {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 12px;
line-height: 1.5;
color: #5f6862;
margin-bottom: 7px;
}

.product-info i {
color: #c69a43;
font-size: 14px;
margin-top: 2px;
}

/* Buttons */
.product-actions {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-top: auto;
}

.product-btn,
.bulk-order-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 11px 8px;
border-radius: 4px;
font-size: 11px;
font-weight: 700;
text-align: center;
text-decoration: none;
}

.product-btn {
border: 1px solid #173f2a;
color: #173f2a;
display: none;
}

.product-btn:hover {
background: #173f2a;
color: #fff;
}

.bulk-order-btn {
background: #168b4a;
color: #fff;
}

.bulk-order-btn:hover {
background: #0f713b;
color: #fff;
}

/* Mobile */
@media (max-width: 600px) {

.product-actions {
    grid-template-columns: 1fr;
}

.product-grade {
    font-size: 19px;
}

.product-price strong {
    font-size: 20px;
}

}
.rate-card-section {
background: #f7f3eb;
padding: 90px 0;
}

.rate-card-wrapper {
width: 100%;
overflow-x: auto;
background: #ffffff;
border-radius: 10px;
border: 1px solid #e4e1d8;
box-shadow: 0 10px 35px rgba(23, 63, 42, 0.06);
}

.rate-card-table {
width: 100%;
min-width: 1050px;
border-collapse: collapse;
}

.rate-card-table thead {
background: #173f2a;
color: #ffffff;
}

.rate-card-table th {
padding: 16px 14px;
text-align: left;
font-size: 11px;
text-transform: uppercase;
letter-spacing: .5px;
font-weight: 700;
white-space: nowrap;
}

.rate-card-table td {
padding: 16px 14px;
border-bottom: 1px solid #e9e7df;
font-size: 12px;
color: #5c665f;
vertical-align: middle;
}

.rate-card-table tbody tr:last-child td {
border-bottom: none;
}

.rate-card-table tbody tr:hover {
background: #fafcf9;
}

.rate-card-table td:first-child {
min-width: 220px;
}

.rate-card-table td:first-child strong {
display: block;
color: #173f2a;
font-size: 13px;
margin-bottom: 3px;
}

.rate-card-table td:first-child span {
display: block;
font-size: 10px;
color: #8a938c;
}

/* Price */

.rate-price {
color: #173f2a !important;
font-size: 17px !important;
font-weight: 800;
white-space: nowrap;
}

/* Grade badges */

.rate-badge {
display: inline-block;
padding: 5px 9px;
border-radius: 20px;
font-size: 10px;
font-weight: 700;
white-space: nowrap;
}

.rate-badge.export {
background: #e6f2e8;
color: #1e6338;
}

.rate-badge.premium {
background: #f4edda;
color: #85651e;
}

.rate-badge.commercial {
background: #edf0e7;
color: #52633c;
}

.rate-badge.farm {
background: #f0eee7;
color: #6a6250;
}

.rate-badge.extraction {
background: #e9eef4;
color: #3f5870;
}

.rate-badge.industrial {
background: #eee9e6;
color: #765b4d;
}

/* WhatsApp */

.rate-whatsapp {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
background: #168b4a;
color: #ffffff;
padding: 8px 12px;
border-radius: 4px;
font-size: 10px;
font-weight: 700;
white-space: nowrap;
transition: .2s ease;
text-decoration: none;
}

.rate-whatsapp:hover {
background: #0e713b;
color: #ffffff;
}

/* Note */

.rate-card-note {
display: flex;
align-items: flex-start;
gap: 10px;
margin-top: 18px;
padding: 15px 18px;
background: #ffffff;
border-left: 3px solid #c69a43;
color: #68736b;
font-size: 12px;
line-height: 1.6;
}

.rate-card-note i {
color: #c69a43;
font-size: 17px;
margin-top: 2px;
}
/* =========================
   ENQUIRY POPUP
========================= */

.enquiry-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.enquiry-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.enquiry-modal {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: enquiryPopupIn 0.25s ease;
}

@keyframes enquiryPopupIn {

    from {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.enquiry-close {
    position: absolute;
    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #f3f3f3;

    font-size: 28px;
    line-height: 38px;

    cursor: pointer;
}

.enquiry-close:hover {
    background: #e5e5e5;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 25px;
}

.enquiry-header span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.enquiry-header h2 {
    margin: 8px 0;
    font-size: 28px;
}

.enquiry-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.bulk-enquiry-form {
    display: grid;
    gap: 17px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid #d9d9d9;
    border-radius: 7px;

    font-size: 14px;

    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #555;
}

.form-note {
    padding: 12px 14px;

    background: #f7f7f7;
    border-radius: 7px;

    font-size: 13px;
    color: #555;
}

.form-note i {
    margin-right: 6px;
}

.enquiry-submit {
    width: 100%;
    border: none;

    padding: 14px 20px;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}

.enquiry-submit i {
    margin-left: 8px;
}


/* Mobile */

@media (max-width: 600px) {

    .enquiry-modal {
        width: 90%;
        padding: 25px 20px;
        max-height: 88vh;
    }

    .enquiry-header h2 {
        font-size: 23px;
    }

}
/* Mobile */

@media (max-width: 768px) {

.rate-card-section {
    padding: 65px 0;
}

.rate-card-wrapper {
    border-radius: 7px;
}

.rate-card-table {
    min-width: 1000px;
}

.rate-card-table th,
.rate-card-table td {
    padding: 12px 10px;
}

.rate-card-note {
    font-size: 11px;
}


}
/* ================================
   MOBILE MENU
================================ */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.mobile-menu-btn span {
    display: block;

    width: 26px;
    height: 2px;

    background: #1E372A;

    transition: 0.3s ease;
}


/* ================================
   TABLET & MOBILE
================================ */

@media (max-width: 991px) {

    .header .container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 0;
    }

    /* Logo */

    .logo {
        margin-right: auto;
    }

    .logo img {
        height: 50px;
    }

    /* Hamburger */

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    /* Hide quote button */

    .header .quote-btn {
        display: none;
    }

    /* Hide navigation */

    .header .navbar {
        display: none;

        width: 100%;

        order: 10;

        margin-top: 15px;
    }

    /* Show navigation */

    .header .navbar.active {
        display: block;
    }

    /* Mobile list */

    .header .navbar ul {
        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 0;

        padding: 10px 0;

        border-top: 1px solid #eee;
    }

    .header .navbar ul li {
        width: 100%;
    }

    .header .navbar ul li a {
        display: block;

        width: 100%;

        padding: 13px 10px;

        border-bottom: 1px solid #eee;

        font-size: 15px;
    }

    /* Remove desktop active underline */

    .header .navbar a.active::after {
        display: none;
    }
.hero {
    margin-top: 0;
}
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 575px) {

    .header {
        padding: 12px 0;
    }

    .logo img {
        height: 60px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-btn span {
        width: 24px;
    }

}
.vanyora-story {
    position: relative;
    padding: 90px 0;
    background: #f6f3eb;
    overflow: hidden;
    padding-bottom: 0;
}

.vanyora-story::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -200px;
    border: 1px solid rgba(154,118,40,.15);
    border-radius: 50%;
}


/* =====================================
   INTRO
===================================== */

.story-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 90px;
}

.story-eyebrow,
.story-label {
    display: block;
    color: #a07b2b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.story-intro h2 {
    margin: 15px 0 0;
    color: #173b2b;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 600;
}

.story-intro h2 span {
    color: #a07b2b;
}

.story-intro > p {
    max-width: 350px;
    margin: 0 0 5px;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


/* =====================================
   ROOTS
===================================== */

.roots-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}


/* Image */

.roots-image {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.roots-image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.roots-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    border-right: 1px solid #a07b2b;
    border-bottom: 1px solid #a07b2b;
    z-index: 0;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: 2;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #173b2b;
    color: #fff;
    text-align: center;
}

.experience-badge strong {
    color: #d2ad58;
    font-size: 45px;
    line-height: 1;
}

.experience-badge span {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 1.5px;
}


/* Content */

.roots-text {
    max-width: 570px;
}

.story-number {
    display: inline-block;
    margin-right: 12px;
    color: #b59654;
    font-size: 13px;
    font-weight: 600;
}

.roots-text h3 {
    margin: 18px 0 25px;
    color: #173b2b;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
}

.roots-text h3 em {
    color: #a07b2b;
    font-style: normal;
}

.roots-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.roots-text strong {
    color: #173b2b;
}


/* =====================================
   MISSION
===================================== */

.mission-panel {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr 100px;
    gap: 40px;
    align-items: center;
    margin: 120px 0;
    padding: 70px 75px;
    background: #173b2b;
    overflow: hidden;
}

.mission-panel::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -150px;
    top: -150px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.mission-decoration span {
    color: #d2ad58;
    font-size: 14px;
    letter-spacing: 2px;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission-content .story-label {
    color: #d2ad58;
}

.mission-content h3 {
    margin: 15px 0 25px;
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
}

.mission-content p {
    max-width: 800px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.9;
}

.mission-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85px;
    height: 85px;
    border: 1px solid rgba(210,173,88,.4);
    border-radius: 50%;
}

.mission-mark i {
    color: #d2ad58;
    font-size: 35px;
}


/* =====================================
   PROMISE
===================================== */

.promise-heading {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 45px;
}

.promise-heading h3 {
    margin: 15px 0 0;
    color: #173b2b;
    font-size: 40px;
    line-height: 1.2;
}

.promise-heading h3 span {
    color: #a07b2b;
}


/* Cards */

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.promise-card {
    position: relative;
    padding: 40px;
    background: #fff;
    border: 1px solid #e4dfd3;
    transition: all .35s ease;
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(23,59,43,.1);
}

.promise-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.promise-top > span {
    color: #c8c0ae;
    font-size: 13px;
}

.promise-icon {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f3eddf;
    color: #a07b2b;
    font-size: 23px;
}

.promise-card h4 {
    margin: 0 0 12px;
    color: #173b2b;
    font-size: 24px;
    font-weight: 600;
}

.promise-card p {
    max-width: 450px;
    margin: 0;
    color: #707070;
    font-size: 14px;
    line-height: 1.9;
}

.promise-line {
    width: 45px;
    height: 2px;
    margin-top: 30px;
    background: #a07b2b;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .vanyora-story {
        padding: 80px 20px;
    }

    .story-intro {
        margin-bottom: 60px;
    }

    .story-intro h2 {
        font-size: 42px;
    }

    .roots-layout {
        gap: 50px;
    }

    .roots-text h3 {
        font-size: 34px;
    }

    .mission-panel {
        grid-template-columns: 50px 1fr;
        padding: 55px;
    }

    .mission-mark {
        display: none;
    }

}


@media (max-width: 767px) {

    .vanyora-story {
        padding: 65px 15px;
    }

    .story-intro {
        display: block;
        margin-bottom: 50px;
    }

    .story-intro h2 {
        font-size: 36px;
    }

    .story-intro > p {
        margin-top: 20px;
    }

    .roots-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .roots-image {
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .roots-image img {
        height: 380px;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        right: -2px;
    }

    .experience-badge strong {
        font-size: 36px;
    }

    .roots-text h3 {
        font-size: 31px;
    }

    .mission-panel {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 70px 0;
        padding: 40px 30px;
    }

    .mission-content h3 {
        font-size: 30px;
    }

    .promise-heading {
        gap: 15px;
    }

    .promise-heading h3 {
        font-size: 30px;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .promise-card {
        padding: 30px;
    }

}

.industries-section {
    padding: 100px 0;
    background: #f7f5ef;
}

.industries-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    color: #9a7628;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.industries-heading h2 {
    margin: 12px 0 0;
    color: #173b2b;
    font-size: 42px;
    font-weight: 600;
}

.industries-heading h2 span {
    color: #9a7628;
}


/* Grid */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ddd8ca;
    border-bottom: 1px solid #ddd8ca;
}


/* Card */

.industry-card {
    position: relative;
    min-height: 260px;
    padding: 35px 30px;
    border-right: 1px solid #ddd8ca;
    transition: .3s ease;
}

.industry-card:last-child {
    border-right: 0;
}

.industry-number {
    display: block;
    color: #b9b19f;
    font-size: 12px;
    letter-spacing: 1px;
}

.industry-card i {
    display: block;
    margin: 45px 0 25px;
    color: #9a7628;
    font-size: 28px;
}

.industry-card h3 {
    margin: 0;
    color: #173b2b;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
}


/* Creative hover */

.industry-card::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #9a7628;
    transition: .3s ease;
}

.industry-card:hover {
    background: #fff;
}

.industry-card:hover::after {
    width: calc(100% - 60px);
}

.industry-card:hover i {
    transform: translateY(-4px);
    transition: .3s ease;
}


/* Tablet */

@media (max-width: 991px) {

    .industries-section {
        padding: 80px 20px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-card:nth-child(2) {
        border-right: 0;
    }

    .industry-card:nth-child(-n+2) {
        border-bottom: 1px solid #ddd8ca;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .industries-section {
        padding: 65px 15px;
    }

    .industries-heading h2 {
        font-size: 32px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: 200px;
        border-right: 0;
        border-bottom: 1px solid #ddd8ca;
    }

    .industry-card:last-child {
        border-bottom: 0;
    }

}
.mission-decoration {
    border: 1px solid #d29439;
    width: 60px;
    height: 60px;
    line-height: 40px;
    border-radius: 45px;
    text-align: center;
}
.mission-decoration span {
    color: #d2ad58;
    font-size: 30px;
    letter-spacing: 2px;
}