.almft-slider-container {
            width: 90%;
    max-width: 1200px;
    display: block;
    position: relative;
    left: 50%;
    transform: translate(-50%, -0%);
    border-radius: 15px;
    background: #1a1a1a;
    margin-top: 20px;
        }

        /* --- Slider Wrapper --- */
        .almft-slider-slider {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 500px; 
        }

        /* --- Individual Slide Item (Stacking Style) --- */
        .almft-slider-slide {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
            transform: scale(1.05);
        }

        .almft-slider-slide.almft-slider-active {
            opacity: 1;
            z-index: 2;
            transform: scale(1);
            visibility: visible;
        }

        .almft-slider-slide img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
        
        /* --- Caption Styling --- */
        .almft-slider-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: #fff;
            padding: 40px 20px 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.7);
        }

        .almft-slider-caption h3 {
            margin: 0 0 5px 0;
            font-size: 1.8rem;
            color: #00ffff;
        }

        .almft-slider-caption p {
            margin: 0;
            font-size: 1rem;
            font-family: Arial, sans-serif;
        }

        /* --- Navigation Buttons (Original Style) --- */
        .almft-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 255, 255, 0.5);
            color: #121212;
            border: none;
            cursor: pointer;
            padding: 15px;
            font-size: 24px;
            font-weight: bold;
            z-index: 10;
            user-select: none;
            transition: all 0.3s ease;
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
        }

        .almft-slider-nav:hover {
            background-color: rgba(0, 255, 255, 1);
            box-shadow: 0 0 10px #00ffff;
        }

        .almft-slider-prev {
            left: 15px;
            padding-left: 20px;
        }

        .almft-slider-next {
            right: 15px;
            padding-right: 20px;
            clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
        }

        /* --- Indicator Dots --- */
        .almft-slider-dots {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .almft-slider-dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            background-color: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .almft-slider-dot.almft-slider-active,
        .almft-slider-dot:hover {
            background-color: #00ffff;
            transform: scale(1.2);
            box-shadow: 0 0 8px #00ffff;
        }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            .almft-slider-slider {
                height: 250px;
            }
            .almft-slider-caption h3 {
                font-size: 1.4rem;
            }
            .almft-slider-caption p {
                font-size: 0.9rem;
            }
            .almft-slider-nav {
                padding: 10px;
                font-size: 18px;
            }
            .almft-slider-prev {
                left: 15px;
                padding-left: 15px;
            }
            .almft-slider-next {
                right: 15px;
                padding-right: 15px;
            }
        }