
        .spice-products-grid-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .spice-products-grid-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .spice-product-card-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            text-decoration: none;
        }

        .spice-product-card-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .spice-product-img-wrap {
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

        .spice-product-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .spice-product-content-area {
            padding: 20px;
            background: white;
        }

        .spice-product-title-main {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            line-height: 1.4;
            min-height: 50px;
        }

        .spice-product-subtitle-scientific {
            font-size: 14px;
            color: #7f8c8d;
            margin-top: 5px;
            font-style: italic;
        }

        .spice-product-badge-label {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.95);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #e74c3c;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        @media (max-width: 768px) {
            .spice-products-grid-row {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .spice-product-img-wrap {
                height: 220px;
            }
        }


/*contact button css */
.footer-contact-title {
    text-align: center;
}

.contact-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.35);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Animation */
.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.55);
    color: #fff;
}

/* Shine Effect */
.contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.contact-btn:hover::before {
    left: 120%;
}


/*contact button css */

/*logo slider css start */

        .auravista__logo__carousel__wrapper {
            width: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 60px 0;
            overflow: hidden;
            position: relative;
        }

        .auravista__logo__carousel__wrapper::before,
        .auravista__logo__carousel__wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .auravista__logo__carousel__wrapper::before {
            left: 0;
            background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        }

        .auravista__logo__carousel__wrapper::after {
            right: 0;
            background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        }

        .auravista__logo__carousel__section__title {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .auravista__logo__carousel__section__title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #2c3e35;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }

        .auravista__logo__carousel__section__title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2ecc71, #27ae60);
            border-radius: 2px;
        }

        .auravista__logo__carousel__section__title p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 20px auto 0;
        }

        /* Slider Container */
        .auravista__logo__carousel__container {
            position: relative;
            width: 100%;
            overflow: hidden;
            cursor: grab;
            user-select: none;
        }

        .auravista__logo__carousel__container:active {
            cursor: grabbing;
        }

        .auravista__logo__carousel__track {
            display: flex;
            gap: 40px;
            width: fit-content;
            animation: auravista__scroll__animation 30s linear infinite;
        }

        .auravista__logo__carousel__container:hover .auravista__logo__carousel__track {
            animation-play-state: paused;
        }

        @keyframes auravista__scroll__animation {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Logo Items */
        .auravista__logo__carousel__item {
            flex-shrink: 0;
            width: 200px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .auravista__logo__carousel__item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
            transition: left 0.6s;
        }

        .auravista__logo__carousel__item:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 30px rgba(46, 204, 113, 0.2);
        }

        .auravista__logo__carousel__item:hover::before {
            left: 100%;
        }

        .auravista__logo__carousel__item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .auravista__logo__carousel__item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .auravista__logo__carousel__section__title h2 {
                font-size: 30px;
            }

            .auravista__logo__carousel__item {
                width: 180px;
                height: 110px;
            }

            .auravista__logo__carousel__track {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .auravista__logo__carousel__wrapper {
                padding: 40px 0;
            }

            .auravista__logo__carousel__section__title h2 {
                font-size: 26px;
            }

            .auravista__logo__carousel__section__title p {
                font-size: 14px;
            }

            .auravista__logo__carousel__item {
                width: 160px;
                height: 100px;
                padding: 15px;
            }

            .auravista__logo__carousel__track {
                gap: 25px;
                animation-duration: 25s;
            }

            .auravista__logo__carousel__wrapper::before,
            .auravista__logo__carousel__wrapper::after {
                width: 80px;
            }
        }

        @media (max-width: 480px) {
            .auravista__logo__carousel__wrapper {
                padding: 30px 0;
            }

            .auravista__logo__carousel__section__title h2 {
                font-size: 22px;
            }

            .auravista__logo__carousel__item {
                width: 140px;
                height: 90px;
                padding: 12px;
            }

            .auravista__logo__carousel__track {
                gap: 20px;
                animation-duration: 20s;
            }

            .auravista__logo__carousel__wrapper::before,
            .auravista__logo__carousel__wrapper::after {
                width: 50px;
            }
        }

/*logo slider css end */