  .bangalorecafe-slider-section {
            padding-bottom: 60px;
            padding-top: 40px;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .bangalorecafe-slider-title {
            text-align: center;
            font-size: 48px;
            color: #f4b942;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .bangalorecafe-slider-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .bangalorecafe-slider-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 30px;
        }

        .bangalorecafe-slider-card {
            min-width: calc(25% - 23px);
            background-color: #2a2a2a;
            border: 2px solid #4a4a4a;
            /* border-radius: 15px; */
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

       

        .bangalorecafe-slider-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(74, 30, 30, 0.8) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .bangalorecafe-slider-card:hover::before {
            opacity: 1;
        }

        .bangalorecafe-slider-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            /* background: linear-gradient(135deg, #4a1e1e 0%, #2a2a2a 50%, #f4b942 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #f4b942;
            font-weight: bold;
            text-align: center;
            /* padding: 20px; */
        }
        .bangalorecafe-slider-image  img{
            width: 100%;
            height: 100%;
        }

        .bangalorecafe-slider-content {
            padding-top: 15px;
            padding-bottom: 12px;
            text-align: center;
            position: relative;
            z-index: 2;
            border-top: 2px solid #4a4a4a;
        }

        .bangalorecafe-slider-category {
            font-size: 14px;
            color: #ffffff;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .bangalorecafe-slider-count {
            font-size: 16px;
            color: #f4b942;
            font-weight: 500;
        }

        .bangalorecafe-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background-color: rgba(74, 30, 30, 0.9);
            border: 2px solid #f4b942;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            color: #f4b942;
            font-size: 24px;
            font-weight: bold;
        }

        .bangalorecafe-slider-arrow:hover {
            background-color: #f4b942;
            color: #4a1e1e;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(244, 185, 66, 0.5);
        }

        .bangalorecafe-slider-arrow-left {
            left: 20px;
        }

        .bangalorecafe-slider-arrow-right {
            right: 20px;
        }

        .bangalorecafe-slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .bangalorecafe-slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #4a4a4a;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .bangalorecafe-slider-dot.active {
            background-color: #f4b942;
            border-color: #f4b942;
            transform: scale(1.3);
        }

        .bangalorecafe-slider-dot:hover {
            background-color: #d4a574;
            transform: scale(1.2);
        }

        @media screen and (max-width: 1200px) {
            .bangalorecafe-slider-card {
                min-width: calc(33.333% - 20px);
            }
        }

        @media screen and (max-width: 768px) {
            .bangalorecafe-slider-title {
                font-size: 32px;
                margin-bottom: 30px;
            }

            .bangalorecafe-slider-card {
                min-width: calc(50% - 15px);
            }

            .bangalorecafe-slider-image {
                height: 200px;
            }

            .bangalorecafe-slider-arrow {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .bangalorecafe-slider-arrow-left {
                left: 10px;
            }

            .bangalorecafe-slider-arrow-right {
                right: 10px;
            }
        }

        @media screen and (max-width: 480px) {
            .bangalorecafe-slider-section {
                padding: 50px 10px;
            }

            .bangalorecafe-slider-card {
                min-width: calc(100% - 10px);
            }

            .bangalorecafe-slider-wrapper {
                gap: 15px;
            }

            .bangalorecafe-slider-category {
                font-size: 20px;
            }
        }