/* ===================================
   COLOR PALETTE
===================================

Primary Green : #eb4924
Dark Green    : #08452F
Gold Accent   : #D4AF37
Dark Text     : #1F2937
Light Text    : #6B7280
White         : #FFFFFF
Light BG      : #F8FAFC
Border Color  : #E5E7EB

=================================== */

:root{

--primary:#2E6B3F;      /* Herbal Green */
--primary-dark:#1E4D2B;

--secondary:#C79A3B;    /* Premium Gold */

--accent:#8B5E3C;       /* Herbal Brown */

--light:#F7F6F1;

--white:#ffffff;

--dark:#1F2937;

--text:#666;

}
/* ==========================
   RESET & GLOBAL
========================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root{

    /* Brand Colors */
    --primary:#2F6F45;
    --primary-dark:#1E5232;
    --secondary:#C89B3C;
    --accent:#8C6239;

    /* Neutral */
    --dark:#1C1C1C;
    --text:#5F5F5F;
    --white:#FFFFFF;
    --bg:#F8F7F3;
    --card:#FFFFFF;
    --border:#E8E3D8;

    /* Radius */
    --radius-xs:8px;
    --radius-sm:12px;
    --radius:18px;
    --radius-lg:28px;

    /* Shadow */
    --shadow-sm:0 6px 20px rgba(0,0,0,.05);
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    /* Animation */
    --transition:.35s ease;

}

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Outfit',sans-serif;
    font-size:16px;
    font-weight:400;
    color:var(--dark);
    background:var(--bg);
    line-height:1.8;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;

}

/* Selection */

::selection{
    background:var(--primary);
    color:#fff;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#efefef;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary-dark);
}

/* Images */

img{
    max-width:100%;
    display:block;
}

/* Links */

a{

    color:inherit;
    text-decoration:none;
    transition:var(--transition);

}

/* Lists */

ul,
ol{

    list-style:none;

}

/* Container */

.container{

    width:min(1280px,92%);
    margin:auto;

}

/* Paragraph */

p{

    color:var(--text);
    line-height:1.9;
    font-size:16px;

}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--dark);
    font-weight:700;
    line-height:1.3;

}

/* Sections */

section{

    padding:90px 0;

}

/* Common Button */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}
/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

/* ==========================
   HEADER
========================== */

.site-header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

/* FIX: stable header height */
.header-wrapper{
    max-width:1300px;
    margin:auto;
    padding:10px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:70px;
}

/*==========================
        LOGO
===========================*/

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:65px;
    height:65px;
    object-fit:contain;
    flex-shrink:0;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.company-name{
    font-size:24px;
    font-weight:700;
    color:#1F7A3D;
}

.company-tag{
    font-size:18px;
    font-weight:600;
    color:#EB4924;
    letter-spacing:1px;
}

/* Mobile */

@media(max-width:768px){

.logo img{
    width:50px;
    height:50px;
}

.company-name{
    font-size:18px;
}

.company-tag{
    font-size:14px;
}

}

/* ==========================
   MENU
========================== */

.menu{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:nowrap;
}

.menu>a,
.product-link{
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.menu>a:hover,
.product-link:hover{
    color:#0b7d35;
}

/* ==========================
   MEGA MENU
========================== */

.mega-parent{
    position:relative;
}

.mega-menu{
    position:absolute;
    left:0;
    top:100%;
    width:650px;
    background:#fff;
    display:none;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    border-radius:10px;

    max-height:420px;
    overflow:auto;
}

.mega-parent:hover .mega-menu{
    display:flex;
}

/* Left Category */

.category-list{
    width:220px;
    background:#f6f6f6;
    border-right:1px solid #eee;

    max-height:420px;
    overflow-y:auto;
}

.cat-item{
    padding:16px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.cat-item:hover,
.cat-item.active{
    background:#0b7d35;
    color:#fff;
}

/* Right Items */

.items-panel{
    flex:1;
    padding:20px;

    max-height:420px;
    overflow-y:auto;
}

.items-box{
    display:none;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    width:100%;
}

.items-box.active{
    display:grid;
}

.items-box a{
    text-decoration:none;
    color:#444;
    padding:8px;
    border-radius:5px;
    transition:.3s;
}

.items-box a:hover{
    background:#f5f5f5;
    color:#0b7d35;
}

/* ==========================
   HEADER BUTTONS
========================== */

.header-icons{
    display:flex;
    gap:10px;
}

.header-icons a{
    text-decoration:none;
    padding:10px 16px;
    border-radius:5px;
    font-size:14px;
    color:#fff;
    font-weight:600;
}

.call-btn{ background:#1565c0; }
.whatsapp-btn{ background:#25D366; }
.quote-btn{ background:#ff9800; }

.header-icons a:hover{
    opacity:.9;
}

/* ==========================
   MENU TOGGLE
========================== */

.menu-toggle{
    display:none;
    font-size:28px;
    background:none;
    border:none;
    cursor:pointer;
}

/* ==========================
   DESKTOP / MOBILE
========================== */

.desktop-only{
    display:none;
}

.mobile-only{
    display:flex;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.menu-toggle{
    display:block;
}

.mobile-only{
    display:none;
}

.desktop-only{
    display:flex;
    margin-top:20px;
}

.menu{
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
    gap:18px;
}

.menu.active{
    display:flex;
}

.menu>a{
    width:100%;
}

/* Mega Menu Mobile */

.mega-menu{
    position:static;
    width:100%;
    max-height:none;
    overflow:visible;
    box-shadow:none;
    margin-top:6px;
}

.category-list,
.items-panel{
    width:100%;
    max-height:none;
    overflow:visible;
}

.items-box{
    grid-template-columns:1fr;
}
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:576px){

.logo img{
    height:45px;
}

.header-wrapper{
    padding:12px;
}

.header-icons{
    flex-direction:column;
    width:100%;
}

.header-icons a{
    width:100%;
    text-align:center;
}
}
/* CATEGORY */
.category-list{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.cat-item{
    padding:10px;
    cursor:pointer;
    border-radius:6px;
}

.cat-item.active,
.cat-item:hover{
    background:#eb4924;
    color:#fff;
}

/* ITEMS */
.items-box{
    display:none;
    flex-direction:column;
    gap:10px;
}

.items-box.active{
    display:flex;
}

.items-box a{
    text-decoration:none;
    color:#555;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle{
    display:none;
    font-size:32px;
    background:none;
    border:none;
    cursor:pointer;
    position:relative;
    z-index:100001;
}

/* hide desktop/mobile blocks default */
.mobile-only{ display:none; }
.desktop-only{ display:flex; }

/* =========================
   MOBILE FIX
========================= */

@media(max-width:991px){

    .header-wrapper{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
    }

    /* FULL SCREEN MENU */
    .menu{
        position:fixed;
        top:0;
        left:0;

        width:100%;
        height:100vh;

        background:#fff;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:100px 20px 20px;

        gap:15px;

        transform:translateX(-100%);
        transition:0.3s ease;

        z-index:99999;

        overflow-y:auto;
    }

    .menu.active{
        transform:translateX(0);
    }

    .desktop-only{
        display:none !important;
    }

    .mobile-only{
        display:flex !important;
        flex-direction:column;
        gap:12px;
        margin-top:20px;
    }

    /* MOBILE MEGA MENU FIX */
    .mega-menu{
        position:static;
        transform:none;
        width:100%;
        box-shadow:none; 
        padding:0;
        display:none;
        grid-template-columns:1fr;
    }

    .mega-parent.open .mega-menu{
        display:grid;
        margin-top:10px;
    }
}
/* ==========================
   HERO BANNER
========================== */

.hero{
    padding:20px 15px;
    background:#f8fafc;
}

.hero-container{
    max-width:1200px;
    margin:auto;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.hero-container img{
    width:100%;
    height:auto;
    display:block;
    border-radius:16px;
}

/* Tablet */

@media (max-width:991px){

.hero{
    padding:15px;
}

.hero-container{
    border-radius:14px;
}

.hero-container img{
    border-radius:14px;
}

}

/* Mobile */

@media (max-width:576px){

.hero{
    padding:10px;
}

.hero-container{
    border-radius:10px;
}

.hero-container img{
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:10px;
}

}
/*==========================================
        PREMIUM CATEGORY SECTION
==========================================*/

.category-section{
    padding:90px 0;
    background:#fafaf7;
    position:relative;
    overflow:hidden;
}

.category-section::before{
    content:"";
    position:absolute;
    left:-80px;
    top:50px;
    width:220px;
    height:220px;
    background:rgba(32,92,46,.05);
    border-radius:50%;
    filter:blur(40px);
}

.category-section::after{
    content:"";
    position:absolute;
    right:-80px;
    bottom:30px;
    width:220px;
    height:220px;
    background:rgba(235,73,36,.05);
    border-radius:50%;
    filter:blur(40px);
}

/*=========================
      HEADING
==========================*/

.section-heading{
    text-align:center;
    max-width:820px;
    margin:0 auto 60px;
}

.sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#1f7a3d;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.sub-title i{
    color:#1f7a3d;
}

.section-heading h2{
    font-size:54px;
    font-weight:800;
    margin:18px 0;
    color:#222;
    line-height:1.2;
}

.section-heading h2 span{
    color:#eb4924;
}

.section-heading p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/*=========================
        GRID
==========================*/

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=========================
        CARD
==========================*/

.category-card{
    position:relative;
    display:block;
    height:380px;
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    transition:.45s;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,.18);
}

/*=========================
        IMAGE
==========================*/

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.category-card:hover img{
    transform:scale(1.08);
}

/*=========================
      OVERLAY
==========================*/

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.95) 0%,
        rgba(0,0,0,.70) 35%,
        rgba(0,0,0,.10) 100%);
}

/*=========================
      CONTENT
==========================*/

.card-content{
    position:absolute;
    left:30px;
    right:30px;
    bottom:28px;
    color:#fff;
    z-index:2;
}

.card-content h3{
    font-size:34px;
    margin:18px 0 12px;
    font-weight:700;
    color:#fff;
}

.card-content p{
    color:#f1f1f1;
    line-height:1.7;
    font-size:16px;
    margin-bottom:22px;
}

/*=========================
      ICON
==========================*/

.icon{
    width:68px;
    height:68px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    box-shadow:0 10px 20px rgba(0,0,0,.25);
}

.green{
    background:#2e7d32;
}

.orange{
    background:#eb4924;
}

.brown{
    background:#8d5b2c;
}

.pink{
    background:#c2185b;
}

/*=========================
      BUTTON
==========================*/

.btn-card{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#eb4924;
    padding:14px 24px;
    border-radius:40px;
    font-size:15px;
    font-weight:700;
    transition:.35s;
}

.category-card:hover .btn-card{
    background:#eb4924;
    color:#fff;
}

/*=========================
      BORDER EFFECT
==========================*/

.category-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    border:2px solid transparent;
    transition:.35s;
}

.category-card:hover::after{
    border-color:#d4af37;
}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:1200px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .category-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:38px;
    }

    .section-heading p{
        font-size:15px;
    }

    .category-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .category-card{
        height:330px;
    }

    .card-content{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .card-content h3{
        font-size:28px;
    }

    .card-content p{
        font-size:15px;
    }

}

@media(max-width:480px){

    .section-heading h2{
        font-size:32px;
    }

    .sub-title{
        font-size:13px;
    }

    .category-card{
        height:300px;
    }

    .icon{
        width:58px;
        height:58px;
        font-size:24px;
    }

    .btn-card{
        width:100%;
        text-align:center;
    }

}
/*====================================
        ABOUT SECTION
====================================*/

.about-section{
    padding:90px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* IMAGE */

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    right:-20px;
    bottom:30px;
    width:170px;
    background:#eb4924;
    color:#fff;
    padding:25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.experience-box span{
    display:block;
    font-size:42px;
    font-weight:700;
}

.experience-box p{
    margin-top:8px;
    font-size:15px;
}

/* CONTENT */

.sub-heading{
    color:#1f7a3d;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.about-content h2{
    font-size:46px;
    margin:20px 0;
    line-height:1.3;
    color:#222;
}

.about-content h2 span{
    color:#eb4924;
}

.about-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;
    margin-bottom:35px;
}

/* FEATURES */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.feature{
    background:#f7f7f7;
    padding:16px 20px;
    border-radius:12px;
    font-weight:600;
    color:#333;
    transition:.3s;
}

.feature:hover{
    background:#eb4924;
    color:#fff;
}

/* BUTTON */

.about-btn{
    display:inline-block;
    background:#eb4924;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#1f7a3d;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .experience-box{
        right:20px;
        bottom:20px;
        width:150px;
    }

}

@media(max-width:576px){

    .about-section{
        padding:70px 0;
    }

    .about-content h2{
        font-size:28px;
    }

    .experience-box{
        position:static;
        width:100%;
        margin-top:20px;
    }

}
/*==================================
        WHY CHOOSE US
===================================*/

.why-section{

padding:90px 0;
background:#f8fafc;

}

.why-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;

}

.why-card{

background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
transition:.35s;
box-shadow:0 8px 25px rgba(0,0,0,.08);
border:1px solid #eee;

}

.why-card:hover{

transform:translateY(-10px);
box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.why-icon{

width:80px;
height:80px;
margin:auto;
background:#eb4924;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:35px;
margin-bottom:25px;
transition:.3s;

}

.why-card:hover .why-icon{

background:#1f7a3d;
transform:rotate(10deg);

}

.why-card h3{

font-size:24px;
color:#222;
margin-bottom:15px;

}

.why-card p{

font-size:15px;
color:#666;
line-height:1.8;

}

@media(max-width:991px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

.why-section{

padding:70px 0;

}

}
/*==================================
      FEATURED PRODUCTS
==================================*/

.featured-products{
    padding:90px 0;
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.product-box{
    display:block;
    text-decoration:none;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.product-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.product-box img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.4s;
}

.product-box:hover img{
    transform:scale(1.08);
}

.product-info{
    padding:22px;
    text-align:center;
}

.product-info h3{
    color:#222;
    font-size:24px;
    margin-bottom:10px;
}

.product-info span{
    color:#eb4924;
    font-weight:600;
}

@media(max-width:991px){

.product-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.product-grid{
grid-template-columns:1fr;
}

}
/*==================================
    INDUSTRIES WE SERVE
===================================*/

.industry-section{
    padding:90px 0;
    background:#f8fafc;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.industry-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #ececec;
}

.industry-card:hover{
    transform:translateY(-10px);
    border-color:#eb4924;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.industry-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#eb4924;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:25px;
    transition:.35s;
}

.industry-card:hover .industry-icon{
    background:#1f7a3d;
    transform:rotate(10deg);
}

.industry-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.industry-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:991px){

.industry-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.industry-grid{
grid-template-columns:1fr;
}

.industry-section{
padding:70px 0;
}

}
/*==================================
        OUR PROCESS
===================================*/

.process-section{
    padding:90px 0;
    background:#ffffff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.process-card{
    position:relative;
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.process-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:50px;
    font-weight:700;
    color:rgba(235,73,36,.08);
}

.process-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#eb4924;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    margin-bottom:25px;
}

.process-card:hover .process-icon{
    background:#1f7a3d;
}

.process-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
}

.process-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

.process-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.process-grid{
grid-template-columns:1fr;
}

.process-section{
padding:70px 0;
}

}
/*==================================
        BULK CTA
===================================*/

.bulk-section{

padding:90px 0;
background:linear-gradient(135deg,#1f7a3d,#14532d);

}

.bulk-wrapper{

display:flex;
justify-content:space-between;
align-items:center;
gap:40px;

background:rgba(255,255,255,.08);

padding:60px;

border-radius:30px;

backdrop-filter:blur(10px);

}

.bulk-left{

flex:1;

}

.bulk-tag{

display:inline-block;

background:#fff;

color:#1f7a3d;

padding:8px 20px;

border-radius:30px;

font-size:13px;

font-weight:700;

letter-spacing:1px;

margin-bottom:20px;

}

.bulk-left h2{

font-size:48px;

color:#fff;

line-height:1.3;

margin-bottom:20px;

}

.bulk-left h2 span{

color:#FFD54F;

}

.bulk-left p{

color:#f1f1f1;

font-size:17px;

line-height:1.9;

max-width:700px;

}

.bulk-right{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.bulk-btn{

background:#eb4924;

color:#fff;

padding:16px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.bulk-btn:hover{

background:#fff;

color:#eb4924;

}

.bulk-btn2{

background:#fff;

color:#1f7a3d;

padding:16px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.bulk-btn2:hover{

background:#FFD54F;

color:#111;

}

@media(max-width:991px){

.bulk-wrapper{

flex-direction:column;

text-align:center;

padding:40px 30px;

}

.bulk-left h2{

font-size:34px;

}

.bulk-right{

justify-content:center;

}

}

@media(max-width:576px){

.bulk-left h2{

font-size:28px;

}

.bulk-btn,
.bulk-btn2{

width:100%;

text-align:center;

}

}
/*==================================
        OUR STRENGTHS
===================================*/

.strength-section{
    padding:90px 0;
    background:#fff;
}

.strength-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
    margin-top:60px;
}

.strength-card{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    border:1px solid #eee;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.strength-card:hover{
    transform:translateY(-8px);
    border-color:#eb4924;
}

.strength-card img{
    width:70px;
    margin-bottom:20px;
}

.strength-card h3{
    font-size:18px;
    color:#222;
}

@media(max-width:991px){

.strength-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.strength-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.strength-grid{
grid-template-columns:1fr;
}

}
/*==================================
        CONTACT CTA
===================================*/

.contact-cta{
    padding:90px 20px;
    background:linear-gradient(135deg,#1f7a3d,#14532d);
}

.cta-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.cta-tag{
    display:inline-block;
    background:#fff;
    color:#1f7a3d;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
    line-height:1.3;
}

.cta-box h2 span{
    color:#FFD54F;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 40px;
    color:#f2f2f2;
    font-size:17px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:50px;
    background:#eb4924;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.cta-btn:hover{
    background:#fff;
    color:#eb4924;
}

.cta-btn.outline{
    background:#fff;
    color:#1f7a3d;
}

.cta-btn.outline:hover{
    background:#FFD54F;
    color:#111;
}

.cta-btn.whatsapp{
    background:#25D366;
}

.cta-btn.whatsapp:hover{
    background:#1EBE5D;
    color:#fff;
}

@media(max-width:768px){

.cta-box h2{
    font-size:32px;
}

.cta-box p{
    font-size:15px;
}

.cta-buttons{
    flex-direction:column;
}

.cta-btn{
    width:100%;
}

}
/* product Section */
.featured-products{
    padding:60px 0;
    background:#f8fafc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.featured-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
    color:#1F2937;
}

/* GRID */
.featured-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

/* CARD */
.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* CONTENT */
.product-content{
    padding:15px;
}

.product-content h3{
    font-size:18px;
    margin-bottom:8px;
    color:#111827;
}

/* RATING */
.rating{
    color:#f5b301;
    font-size:14px;
    margin-bottom:10px;
}

.rating span{
    color:#6b7280;
    font-size:13px;
}

/* PRICE */
.price-box{
    margin-bottom:15px;
}

.sale-price{
    font-size:20px;
    font-weight:700;
    color:#c00000;
}

.old-price{
    text-decoration:line-through;
    color:#9ca3af;
    margin-left:8px;
}

/* BUTTONS */
.product-btns{
    display:flex;
    gap:10px;
}

/* VIEW BUTTON */
.view-btn{
    flex:1;
    text-align:center;
    padding:10px;
    border-radius:25px;
    background:#eb4924;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}

.view-btn:hover{
    background:#0b4f38;
}

/* WHATSAPP BUTTON */
.wa-btn{
    flex:1;
    text-align:center;
    padding:10px;
    border-radius:25px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}

.wa-btn:hover{
    background:#1da851;
}
.img-box{
    position:relative;
}

/* DISCOUNT BADGE */
.discount{
    position:absolute;
    top:10px;
    left:10px;
    background:#c00000;
    color:#fff;
    padding:6px 12px;
    font-size:13px;
    font-weight:700;
    border-radius:6px;
    z-index:2;
}
.discount{
    background:linear-gradient(135deg,#ff0000,#ff5e5e);
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}

/* RESPONSIVE */
@media(max-width:1024px){
    .featured-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:768px){
    .featured-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:500px){
    .featured-grid{
        grid-template-columns:1fr;
    }
}
/* about section */
.about{
    background:#f7f7f7;
    padding:60px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* TITLE */
.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:40px;
    font-weight:700;
    color:#1F2937;
}

/* GRID FIXED 4 COLUMN */
.features-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:24px;
}

/* CARD */
.feature-card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    text-align:center;
    transition:.3s;

    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.feature-card:hover{
    transform:translateY(-6px);
}

/* TEXT */
.feature-card h3{
    margin-bottom:10px;
    font-size:18px;
    color:#eb4924;
}

.feature-card p{
    font-size:14px;
    color:#555;
    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .features-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .features-grid{
        grid-template-columns:1fr;
    }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonials{
    padding:80px 0;
    background:#fff;
}

.testimonial-subtitle{
    text-align:center;
    color:#6B7280;
    max-width:700px;
    margin:0 auto 50px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    border:1px solid #E5E7EB;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
}

.testimonial-card::before{
    content:"❝";
    position:absolute;
    top:15px;
    right:20px;
    font-size:60px;
    color:#D4AF37;
    opacity:.25;
}

.stars{
    color:#D4AF37;
    font-size:18px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
    text-align:left;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-img{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#eb4924;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.client-info h4{
    color:#1F2937;
    margin-bottom:3px;
    font-size:16px;
}

.client-info span{
    color:#6B7280;
    font-size:13px;
}

/* Responsive */

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        padding:25px;
    }

}

.faq-item{border-bottom:1px solid #ddd;padding:15px 0}
.faq-q{cursor:pointer;font-weight:700}
.faq-a{display:none;padding-top:10px}

.cta{
padding:80px 0;
background:#eb4924;
text-align:center;
color:#fff;
}

.cta h2{
font-size:38px;
margin-bottom:15px;
}

.cta a{
display:inline-block;
margin-top:20px;
padding:15px 35px;
background:#D4AF37;
color:#000;
text-decoration:none;
border-radius:8px;
font-weight:700;
}

/*=====================================
            FOOTER
======================================*/

.footer{
    background:#0F172A;
    color:#fff;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
}

/* FOOTER LOGO */

.footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

/* FOOTER BOX */

.footer-box h3{
    font-size:22px;
    margin-bottom:25px;
    color:#fff;
    position:relative;
    padding-bottom:10px;
}

.footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:3px;
    background:#eb4924;
    border-radius:10px;
}

.footer-box p{
    color:#CBD5E1;
    line-height:1.9;
    font-size:15px;
    margin-bottom:15px;
}

.footer-box a{
    display:block;
    color:#CBD5E1;
    text-decoration:none;
    margin-bottom:14px;
    transition:.3s;
    font-size:15px;
}

.footer-box a:hover{
    color:#eb4924;
    padding-left:8px;
}

/* CONTACT */

.footer-box p a{
    display:inline;
    color:#CBD5E1;
}

.footer-box p a:hover{
    color:#eb4924;
    padding-left:0;
}

/* SOCIAL */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.35s;
    margin:0;
}

.footer-social a:hover{
    background:#eb4924;
    color:#fff;
    transform:translateY(-5px);
}

/* BOTTOM */

.footer-bottom{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.12);
    padding:25px 0;
    text-align:center;
}

.footer-bottom-links{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:15px;
}

.footer-bottom-links a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
    font-size:15px;
}

.footer-bottom-links a:hover{
    color:#eb4924;
}

.footer-bottom p{
    color:#94A3B8;
    font-size:14px;
    margin:0;
}

/*==============================
        RESPONSIVE
===============================*/

@media(max-width:991px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

}

@media(max-width:767px){

.footer{
    padding-top:50px;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-box h3::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-social{
    justify-content:center;
}

.footer-bottom-links{
    flex-direction:column;
    gap:12px;
}

}
.whatsapp{position:fixed;right:20px;bottom:20px;background:#25d366;color:#fff;padding:14px 18px;border-radius:50px;text-decoration:none}
@media(max-width:768px){
.hero h1{font-size:40px}
}
/* =========================
   Item page k liye
========================= */

.product-detail-section{
padding:80px 0;
background:#fff;
}

.product-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.main-image{
border:1px solid #eee;
padding:20px;
border-radius:15px;
}

.main-image img{
width:100%;
display:block;
}

.thumbs{
display:flex;
gap:12px;
margin-top:15px;
}

.thumbs img{
width:80px;
height:80px;
object-fit:cover;
border:1px solid #ddd;
padding:5px;
cursor:pointer;
border-radius:10px;
}

.product-category{
background:#eb4924;
color:#fff;
padding:6px 15px;
border-radius:30px;
font-size:13px;
}

.product-info h1{
font-size:42px;
margin:20px 0;
color:#1F2937;
}

.price-box{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.new-price{
font-size:34px;
font-weight:700;
color:#eb4924;
}

.old-price{
text-decoration:line-through;
color:#999;
font-size:22px;
}

.product-short{
line-height:1.8;
color:#666;
margin-bottom:25px;
}

.product-meta p{
margin-bottom:10px;
}

.product-actions{
display:flex;
gap:15px;
margin-top:30px;
}

.btn-enquiry{
background:#eb4924;
color:#fff;
padding:14px 30px;
text-decoration:none;
border-radius:8px;
}

.btn-whatsapp{
background:#25D366;
color:#fff;
padding:14px 30px;
text-decoration:none;
border-radius:8px;
}

.product-description,
.why-product,
.specifications{
padding:80px 0;
}

.product-description h2,
.why-product h2,
.specifications h2{
font-size:34px;
margin-bottom:25px;
}

.product-description ul{
margin-top:20px;
padding-left:20px;
}

.product-description li{
margin-bottom:12px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-box{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.why-box h3{
margin-bottom:10px;
}

.specifications table{
width:100%;
border-collapse:collapse;
}

.specifications td{
padding:15px;
border:1px solid #eee;
}

.product-cta{
padding:80px 0;
background:#eb4924;
text-align:center;
color:#fff;
}

.product-cta h2{
font-size:38px;
margin-bottom:15px;
}

.product-cta a{
display:inline-block;
margin-top:20px;
padding:15px 35px;
background:#D4AF37;
color:#000;
text-decoration:none;
border-radius:8px;
font-weight:700;
}

@media(max-width:991px){

.product-wrapper{
grid-template-columns:1fr;
}

.product-info h1{
font-size:32px;
}

.why-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:576px){

.why-grid{
grid-template-columns:1fr;
}

.product-actions{
flex-direction:column;
}

.new-price{
font-size:28px;
}

}
/*==========================
    PRODUCTS main page SECTION
==========================*/

.products-section{
    padding:80px 0;
    background:#f8fafc;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    transition:.35s;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(15,106,74,.18);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.product-content{
    padding:20px;
    text-align:center;
}

.product-content h3{
    font-size:20px;
    color:#0F6A4A;
    margin:0 0 12px;
    font-weight:700;
}

.product-content span{
    display:inline-block;
    color:#D4AF37;
    font-weight:600;
    transition:.3s;
}

.product-card:hover span{
    color:#0F6A4A;
}

/* Tablet */

@media(max-width:992px){

.products-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:576px){

.products-grid{
grid-template-columns:1fr;
gap:20px;
}

.product-card img{
height:240px;
}

.product-content{
padding:18px;
}

.product-content h3{
font-size:18px;
}

}
