
  /* Default grayscale effect */
  .grayscale-hover {
  	filter: grayscale(100%);
    transition: filter 0.3s ease; /* Smooth transition for the hover effect */
  }

  /* Remove grayscale on hover */
  .grayscale-hover:hover {
    filter: grayscale(0%); /* Restore full color */
  }
/* General Styles */
.about-box-main,
.categories-shop,
.ready-to-eat-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.noo-sh-title-top {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.noo-sh-title-top span {
    color: #b0b435; /* Base Color */
}

.lead {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Buttons */
.btn.hvr-hover {
    background-color: #b0b435; /* Base Color */
    color: #fff;
    border-radius: 25px;
    padding: 10px 25px;
    transition: background-color 0.3s ease-in-out;
}

.btn.hvr-hover:hover {
    background-color: #9eae2a; /* Darker Shade of Base Color */
}

/* Highlight Blocks */
.highlight-block,
.service-block-inner {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    min-height: 310px;
}

.highlight-block:hover,
.service-block-inner:hover {
    transform: translateY(-5px);
}

.highlight-block h3,
.service-block-inner h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.highlight-block p,
.service-block-inner p {
    font-size: 16px;
    color: #666;
}

/* Director Profiles */
.director-profile img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
    border: 5px solid #b0b435; /* Base Color */
}

.director-profile h4 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.director-profile p {
    font-size: 16px;
    color: #666;
}

/* Shop Category Boxes */
.shop-cat-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.shop-cat-box:hover {
    transform: translateY(-5px);
}

.shop-cat-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Ready-to-Eat Section */
.savory-items h3,
.sri-lankan-sweets h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.list-unstyled li {
    font-size: 16px;
    color: #666;
}

.list-unstyled li i {
    margin-right: 10px;
}

.list-unstyled li:hover {
    color: #b0b435; /* Base Color on Hover */
}