        /* Preloader */
        .local-logs-preloader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.1);
            z-index: 1000;
        }

        .local-logs-preloader-bar {
            height: 100%;
            width: 65.8667%;
            background: #11123d;
            transition: width 0.1s linear;
        }

        /* Slider Container */
        .local-logs-slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }
        
        /* Background Images Container */
        .local-logs-slides-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* Background Images */
        .local-logs-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
            will-change: transform, opacity;
            transform: scale(1);
            animation: none;
        }
        
        .local-logs-slide-bg.active {
            opacity: 1;
            z-index: 2;
            animation: local-logs-zoomEffect 20s linear infinite;
        }
        
        @keyframes local-logs-zoomEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        
        .local-logs-slide-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(137, 150, 127, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
        }
        
        /* Slide Content */
        .local-logs-slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 3;
            opacity: 0;
            transition: opacity 0.8s ease;
            pointer-events: none;
        }
        
        .local-logs-slide-content.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .local-logs-content-wrapper {
            max-width: 800px;
            padding: 0 20px;
            width: 100%;
        }

        /* Typography */
        .local-logs-small-cap {
            display: block;
            font-size: 1rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #fff;
            font-weight: 400;
            position: relative;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.6s ease 0.2s;
        }
        
        .local-logs-small-cap::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: #fff;
        }
        
        .local-logs-title {
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
            line-height: 1.5;
            opacity: 0;
            transform: perspective(500px) rotateX(15deg) translateY(30px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s;
            color: #fff;
        }
        
        .local-logs-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px !important;
            font-weight: 300;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s;
            color: #fff;
        }
        
/* Button Styles with Transparent Hover Effect */
.local-logs-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #dc1e26; /* Solid red - 100% opacity */
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #dc1e26; /* Solid red border */
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    z-index: 122;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.local-logs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.local-logs-btn:hover {
    color: #fff;
    background-color: transparent; /* 0% opacity - completely transparent */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.8); /* White border on hover */
}

.local-logs-btn:hover::before {
    left: 100%;
}

/* Active State for Animations */
.local-logs-slide-content.active .local-logs-btn {
    opacity: 1;
    transform: none;
}
        
        /* Active State for Animations */
        .local-logs-slide-content.active .local-logs-small-cap,
        .local-logs-slide-content.active .local-logs-title,
        .local-logs-slide-content.active .local-logs-subtitle,
        .local-logs-slide-content.active .local-logs-btn {
            opacity: 1;
            transform: none;
        }
        
        /* Navigation Arrows */
        .local-logs-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .local-logs-arrow:hover {
            background: rgb(141, 155, 131);
            transform: translateY(-50%) scale(1.1);
        }
        
        .local-logs-arrow-left {
            left: 30px;
        }
        
        .local-logs-arrow-right {
            right: 30px;
        }
        
        .local-logs-arrow svg {
            width: 30px;
            height: 30px;
        }

        .local-logs-arrow svg path {
            fill: #ffffff;
        }
        
        /* Slider Navigation Dots */
        .local-logs-slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
        }
        
        .local-logs-slider-dot {
            width: 14px;
            height: 14px;
            margin: 0 10px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            background: transparent;
        }
        
        .local-logs-slider-dot.active {
            background: #fff;
            border-color: #11123d;
            transform: scale(1.2);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .local-logs-title {
                font-size: 2rem;
            }
            
            .local-logs-arrow {
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .local-logs-slider-container {
                height: 500px;
            }
            
            .local-logs-title {
                font-size: 1.8rem;
            }
            
            .local-logs-subtitle {
                font-size: 1.1rem;
            }
            
            .local-logs-small-cap {
                font-size: 0.9rem;
                letter-spacing: 3px;
            }
            
            .local-logs-arrow {
                width: 40px;
                height: 40px;
            }
            
            .local-logs-arrow-left {
                left: 15px;
            }
            
            .local-logs-arrow-right {
                right: 15px;
            }
            
            .local-logs-btn {
                padding: 12px 30px;
                font-size: 0.7rem;
            }
			.local-logs-arrow svg {
    width: 22px;
    height: 22px;
}
        }
        
        @media (max-width: 576px) {
            .local-logs-slider-container {
                height: 500px;
            }
            
            .local-logs-title {
                font-size: 1.5rem;
            }
            
            .local-logs-subtitle {
                font-size: 1rem;
            }
            
            .local-logs-btn {
                padding: 10px 25px;
            }
			.local-logs-arrow svg {
    width: 22px;
    height: 22px;
}
        }
        
        .instructions {
            margin-top: 20px;
            text-align: center;
            padding: 15px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .instructions h3 {
            color: #dc1e26;
            margin-bottom: 10px;
        }