/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{
    background:#f8f8f8;
    color:#333;
}

/* =========================
   HEADER
========================= */

header{
    background:#003300;
    padding:15px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
	/* LOGO */
.logo img{
    height:10px;       /* change size here */
    width:auto;        /* keeps proportions */
    display:block;
}
}
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
}

/* =========================
   BUTTON
========================= */

.btn{
    display:inline-block;
    padding:12px 25px;
    background:#f4a825;
    color:#000;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
}

/* =========================
   SLIDER (FIXED)
========================= */

.hero-slider{
    position:relative;
    width:100%;
    height:80vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
    top:50%;
    transform:translateY(-50%);
}

.content h1{
    font-size:45px;
}

/* =========================
   SECTIONS
========================= */

.section{
    padding:70px 0;
}

.title{
    text-align:center;
    font-size:40px;
    color:#1f5f2f;
    margin-bottom:40px;
}

/* =========================
   GRID
========================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

/* =========================
   CARD
========================= */

.card{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    text-decoration:none;
    color:#333;
}

/* =========================
   PRODUCTS
========================= */

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.product-info{
    padding:15px;
}

.product-info h3{
    color:#1f5f2f;
}

.product-info button{
    margin-top:10px;
    width:100%;
    padding:10px;
    border:none;
    background:#1f5f2f;
    color:#fff;
    cursor:pointer;
}

/* =========================
   STATS
========================= */

.stats{
    background:#1f5f2f;
    color:#fff;
    text-align:center;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
}

/* =========================
   CTA
========================= */

.cta{
    background:#f4a825;
    text-align:center;
    padding:60px 20px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:#fff;
    padding:50px 0;
    text-align:center;
}
/* =========================
   ABOUT PAGE BANNER
========================= */

.page-banner{
    height:60vh;
    background:url('images/spices.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.page-banner::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h1{
    font-size:50px;
}
/* =========================
   PRODUCTS PAGE BANNER
========================= */

.page-banner{
    height:60vh;
    background:url('images/grains.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.page-banner::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h1{
    font-size:50px;
}

.banner-content p{
    font-size:18px;
}
/* =========================
   PROFESSIONAL FOOTER
========================= */

.main-footer{
    background:#111;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-box h3{
    margin-bottom:20px;
    color:#f4a825;
}

.footer-logo{
    color:#fff;
    margin-bottom:20px;
}

.footer-box p{
    line-height:1.8;
    color:#ccc;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#f4a825;
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    display:inline-block;
    margin-right:15px;
    color:#fff;
    text-decoration:none;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:20px;
    color:#aaa;
}
/*
/* =========================
   UNIVERSAL PAGE BANNER
========================= */

.page-banner{
    height:60vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.page-banner::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h1{
    font-size:50px;
}

.banner-content p{
    font-size:18px;
}
/* =========================
   SINGLE PRODUCT PAGE
========================= */

.product-page{
    padding:80px 0;
}

.product-box{
    display:flex;
    gap:40px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    align-items:center;
    flex-wrap:wrap;
}

.product-box img{
    width:100%;
    max-width:450px;
    border-radius:12px;
}

.product-details{
    flex:1;
}

.product-details h1{
    font-size:42px;
    color:#1f5f2f;
    margin-bottom:20px;
}

.product-details p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

/* =========================
   SEO PRODUCT DETAILS
========================= */

.seo-details{
    padding:80px 0;
    background:#fff;
}

.seo-details h2{
    text-align:center;
    font-size:40px;
    color:#1f5f2f;
    margin-bottom:30px;
}

.seo-details p{
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

.seo-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:40px;
}

.seo-gallery img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:12px;
}
/* =========================
   PRODUCT PAGE BUTTONS
========================= */

.product-buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
    flex-wrap:wrap;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
    display:inline-block;
    padding:12px 25px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#1da851;
}
```css
/* =========================
   SINGLE PRODUCT PAGE
========================= */

.product-page{
    padding:80px 0;
}

.product-box{
    display:flex;
    gap:50px;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    flex-wrap:wrap;
    align-items:center;
}

.product-box img{
    width:100%;
    max-width:500px;
    border-radius:12px;
}

.product-details{
    flex:1;
}

.product-details h1{
    font-size:46px;
    color:#1f5f2f;
    margin-bottom:20px;
}

.short-desc{
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

/* BUTTONS */

.product-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.whatsapp-btn{
    display:inline-block;
    padding:12px 25px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
}

/* SEO DETAILS */

.seo-details{
    padding:80px 0;
    background:#fff;
}

.seo-details h2{
    font-size:38px;
    color:#1f5f2f;
    margin-bottom:25px;
    margin-top:40px;
}

.seo-details p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.industry-list{
    margin-top:20px;
    padding-left:20px;
}

.industry-list li{
    margin-bottom:15px;
    font-size:17px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.why-box{
    background:#f8f8f8;
    padding:30px;
    border-radius:10px;
}

.why-box h3{
    color:#1f5f2f;
    margin-bottom:15px;
}

.seo-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:30px;
}

.seo-gallery img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:12px;
}
```
/* =========================
   SEO KEYWORD TAGS
========================= */

.seo-tags{
    margin-top:50px;
}

.seo-tags h3{
    color:#1f5f2f;
    margin-bottom:20px;
    font-size:24px;
}

.seo-tags span{
    display:inline-block;
    margin:6px;
    padding:10px 18px;
    background:#f4f4f4;
    border:1px solid #ddd;
    border-radius:30px;
    font-size:14px;
    color:#333;
    transition:0.3s;
}

.seo-tags span:hover{
    background:#1f5f2f;
    color:#fff;
    border-color:#1f5f2f;
}
.whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:12px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    margin-top:15px;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:50px 0;
}

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.product-info{
    padding:15px;
}

.product-info h3{
    color:#1f5f2f;
    margin-bottom:10px;
}
/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f8f8f8;
    color:#333;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HEADER
========================= */
.logo img{
    background:#003300;
    padding:8px;
    border-radius:6px; /* optional */
    display:block;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    font-size:26px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:12px 25px;
    background:#f4a825;
    color:#000;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#d89210;
}

/* =========================
   PAGE BANNER (FIXED - SINGLE VERSION)
========================= */

.page-banner{
    height:60vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.page-banner::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-content h1{
    font-size:50px;
}

.banner-content p{
    font-size:18px;
}

/* =========================
   SECTIONS
========================= */

.section{
    padding:70px 0;
}

.title{
    text-align:center;
    font-size:40px;
    color:#1f5f2f;
    margin-bottom:40px;
}

/* =========================
   GRID SYSTEM
========================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

/* =========================
   PRODUCT GRID
========================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:50px 0;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.product-info{
    padding:15px;
}

.product-info h3{
    color:#1f5f2f;
    margin-bottom:10px;
}

/* =========================
   CTA
========================= */

.cta{
    background:#f4a825;
    text-align:center;
    padding:60px 20px;
}

/* =========================
   FOOTER (CLEAN + STABLE)
========================= */

footer{
    background:#111;
    color:#fff;
    padding:50px 0;
    text-align:center;
}

.main-footer{
    background:#111;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-box h3{
    margin-bottom:20px;
    color:#f4a825;
}

.footer-logo{
    color:#fff;
    margin-bottom:20px;
}

.footer-box p{
    line-height:1.8;
    color:#ccc;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
}

.footer-box ul li a:hover{
    color:#f4a825;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:20px;
    color:#aaa;
}

/* =========================
   PRODUCT PAGE
========================= */

.product-page{
    padding:80px 0;
}

.product-box{
    display:flex;
    gap:40px;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    flex-wrap:wrap;
    align-items:center;
}

.product-box img{
    width:100%;
    max-width:450px;
    border-radius:12px;
}

.product-details{
    flex:1;
}

.product-details h1{
    font-size:42px;
    color:#1f5f2f;
    margin-bottom:20px;
}

.product-details p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

/* =========================
   SEO SECTION
========================= */

.seo-details{
    padding:80px 0;
    background:#fff;
}

.seo-details h2{
    text-align:center;
    font-size:40px;
    color:#1f5f2f;
    margin-bottom:30px;
}

.seo-details p{
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
    display:inline-block;
    padding:12px 25px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#1da851;
}

/* =========================
   SEO TAGS
========================= */

.seo-tags{
    margin-top:50px;
}

.seo-tags h3{
    color:#1f5f2f;
    margin-bottom:20px;
    font-size:24px;
}

.seo-tags span{
    display:inline-block;
    margin:6px;
    padding:10px 18px;
    background:#f4f4f4;
    border:1px solid #ddd;
    border-radius:30px;
    font-size:14px;
    color:#333;
    transition:0.3s;
}

.seo-tags span:hover{
    background:#1f5f2f;
    color:#fff;
    border-color:#1f5f2f;
}

/* =========================
   SAFETY FIX
========================= */

img{
    max-width:100%;
    display:block;
}
.seo-keywords {
  padding: 40px 0;
  background: #f8f8f8;
}

.seo-keywords h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #333;
  transition: 0.2s ease;
  cursor: default;
}

.tag:hover {
  background: #2e7d32;
  color: #fff;
  border-color: #2e7d32;
}
.sponsor-section{
    background:#f8f9fa;
}

.sponsor-box{
    display:flex;
    align-items:center;
    gap:30px;
    max-width:1000px;
    margin:auto;
    padding:30px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.sponsor-logo{
    width:180px;
    height:auto;
    transition:0.3s;
}

.sponsor-logo:hover{
    transform:scale(1.05);
}

.sponsor-content h3{
    margin-bottom:15px;
}

.sponsor-content h3 a{
    text-decoration:none;
    color:#0a5d2c;
}

.sponsor-content p{
    margin-bottom:20px;
    line-height:1.8;
}

@media(max-width:768px){
    .sponsor-box{
        flex-direction:column;
        text-align:center;
    }

    .sponsor-logo{
        width:140px;
    }
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #28a745; /* use your button color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #218838;
}
/* ===== PRODUCT GALLERY GRID FIX ===== */
.seo-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.seo-gallery .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    background: #fff;
}

.seo-gallery .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.seo-gallery .gallery-item img:hover {
    transform: scale(1.05);
}
/* ================================
   ABOUT PAGE GALLERY
================================ */

.about-gallery-section {
    padding: 40px 0;
}

.about-gallery-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.about-gallery-section p {
    text-align: center;
    margin-bottom: 25px;
    color: #555;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.about-gallery-item {
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    background: #fff;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-gallery-item img:hover {
    transform: scale(1.05);
}