
    /* ============================================== */
    #business-image-slider{margin-top: 1.5rem;}
    .carousel-container {perspective: 1200px;width: 100%;height: 300px;position: relative;}
    .carousel {position: relative;width: 100%;height: 100%;transform-style: preserve-3d;}
    .carousel-item {
        position: absolute;
        width: auto;
        height: 200px;
        left: 52.25%;
        top: 50%;
        margin-left: -125px;
        margin-top: -100px;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        cursor: pointer;
        opacity: 0.7;
        filter: blur(1px);
        transform-origin: center center;}
    .carousel-item.active {opacity: 1;filter: blur(0px);z-index: 10;}
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        pointer-events: none;
        user-select: none;
    }

    .controls {position: absolute;top: 50%;width: 100%;display: flex;justify-content: space-between;padding: 0 20px;transform: translateY(-50%);z-index: 20;}
    .control-btn {background: rgba(255,255,255,0.9);border: none;width: 50px;height: 50px;border-radius: 50%;cursor: pointer;font-size: 20px;transition: all 0.3s ease;box-shadow: 0 4px 15px rgba(0,0,0,0.2);display: flex;align-items: center;justify-content: center;}
    .control-btn:hover {background: white;transform: scale(1.1);}
    .carousel-text-section {text-align: center;padding: 30px;width: 100%;margin-top: 5.5rem;}
    .slider-title {font-size: 2rem;font-weight: bold;margin-bottom: 15px;color: #333;transition: all 0.5s ease;}
    /* .slider-description {font-size: 1.1rem;color: #666;line-height: 1.6;transition: all 0.5s ease;} */
    @media (max-width: 768px) {
        #business-image-slider{margin-top: -1rem;}
        .carousel-container {height: 250px;}
        .carousel-item {width: auto;height: 120px;margin-left: -70px;margin-top: -60px;}
        .control-btn {width: 40px;height: 40px;font-size: 16px;}
        .carousel-text-section {margin-top: .5rem;}
        .slider-title {font-size: 1.75rem;}
    }
    
    @media (max-width: 480px) {
        #business-image-slider{margin-top: -4rem;}
        .carousel-container {height: 200px;}
        .carousel-item {width: 100px;height: 100px;margin-left: -60px;margin-top: -50px;}
        .control-btn {width: 35px;height: 35px;font-size: 14px;}
        .carousel-text-section {margin-top: -1.5rem;}
        .slider-title {font-size: 1.5rem;}
    }