body{
	padding: 0 !important;
	margin: 0 !important;
}

body, html{
	width: 100%;
	overflow-x: hidden;
}

.brand-box h3{
	margin: 10px 10px;
}

.brand-box{
	transition: transform 0.3s ease;
}
.brand-box:hover{
	transform: translateY(-10px);
}

.product-list img{
	filter: drop-shadow(2px 6px 6px rgba(0, 0, 0, 0.22));
}


.bunch-img{
	filter: drop-shadow(7px 4px 4px rgba(0, 0, 0, 0.33))
}


.product-box img{
	border-radius: 0 12px 12px 0;
}





@media (max-width: 768px) {
  .service-card {
    padding-bottom: 20px; /* card ke andar space */
  }

  .service-card img {
    margin-bottom: 15px; /* image ke neeche space */
  }
	
	
.email p{
	word-break: break-word;
}

}






/* product page design css */

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

.namkeen-products-section{

    width:100%;

    padding:80px 20px;

    background:#ffffff;
}

/* =========================================
   GRID
========================================= */

.namkeen-products-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:34px;

    max-width:1500px;

    margin:auto;
}

/* =========================================
   CARD
========================================= */

.namkeen-product-card{

    background:#f7f7f7;

    border-radius:34px;

    padding:32px 26px 38px;

    text-align:center;

    transition:
    transform .5s ease,
    background .5s ease,
    box-shadow .5s ease;

    border:1px solid #ececec;

    overflow:hidden;

    position:relative;
}

/* CARD HOVER */

.namkeen-product-card:hover{

    transform:
    translateY(-10px);

    background:#f6eedf;

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);
}

/* =========================================
   IMAGE
========================================= */

.namkeen-product-image{

    width:220px;

    height:220px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:
    transform .6s ease;
}

/* IMAGE */

.namkeen-product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    display:block;

    transition:
    transform .7s ease,
    filter .5s ease;
}

/* IMAGE HOVER */

.namkeen-product-card:hover
.namkeen-product-image{

    transform:
    scale(1.04);
}

.namkeen-product-card:hover
.namkeen-product-image img{

    transform:
    scale(1.08);

    filter:
    drop-shadow(
    0 12px 20px rgba(0,0,0,.12)
    );
}

/* =========================================
   CONTENT
========================================= */

.namkeen-product-content{

    margin-top:24px;
}

/* =========================================
   TITLE
========================================= */

.namkeen-product-title{

    font-size:28px;

    line-height:1.3;

    font-weight:700;

    color:#8b2d1f;

    margin-bottom:20px;

    transition:
    color .4s ease,
    transform .4s ease;
}

/* TITLE HOVER */

.namkeen-product-card:hover
.namkeen-product-title{

    color:#a63b28;

    transform:
    translateY(-2px);
}

/* =========================================
   DESCRIPTION
========================================= */

.namkeen-product-desc{

    font-size:17px;

    line-height:1.9;

    color:#5f5f5f;

    transition:
    color .4s ease;
}

/* DESCRIPTION HOVER */

.namkeen-product-card:hover
.namkeen-product-desc{

    color:#444;
}

/* =========================================
   LAPTOP
========================================= */

@media(max-width:1200px){

    .namkeen-products-grid{

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

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .namkeen-products-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:26px;
    }

    .namkeen-product-card{

        padding:28px 22px 32px;
    }

    .namkeen-product-image{

        width:190px;
        height:190px;
    }

    .namkeen-product-title{

        font-size:24px;
    }

    .namkeen-product-desc{

        font-size:15px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

    .namkeen-products-section{

        padding:50px 15px;
    }

    .namkeen-products-grid{

        grid-template-columns:1fr;

        gap:22px;
    }

    .namkeen-product-card{

        border-radius:26px;

        padding:24px 20px 30px;
    }

    .namkeen-product-image{

        width:180px;
        height:180px;
    }

    .namkeen-product-content{

        margin-top:18px;
    }

    .namkeen-product-title{

        font-size:24px;

        margin-bottom:16px;
    }

    .namkeen-product-desc{

        font-size:15px;

        line-height:1.7;
    }

    .namkeen-product-card:hover{

        transform:
        translateY(-6px);
    }
}