        /* 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: 0;
            background: #00270d;
            transition: width 0.1s linear;
        }

        /* Slider Container */
        .local-logs-slider-container {
            position: relative;
            width: 100%;
            height: 80vh;
            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(0, 39, 13, 0.7) 0%, rgba(0, 0, 0, 0.4) 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;
        }
        
        .local-logs-slide-content.active {
            opacity: 1;
        }
        
        .local-logs-content-wrapper {
            max-width: 800px;
            padding: 0 20px;
            width: 100%;
        }

        /* Logo */
        .local-logs-logo {
            width: 180px;
            height: auto;
            margin: 0 auto 30px;
            display: block;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.6s ease;
        }
.local-logs-logo {
    width: 260px;
  	background:#fff;
    padding: 10px;
    border-radius: 4px;
}
.local-logs-content-wrapper img.local-logs-logo {   border-radius: 4px;}
        /* 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: 4.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.2;
            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
        }
        
        .local-logs-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #00270d;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 2px;
            border-radius: 4px;
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s;
            border: 2px solid #00270d;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.95);z-index: 122;
        }
        
        .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.2), transparent);
            transition: 0.5s;
        }
        
        .local-logs-btn:hover {
            background-color: transparent;
            color: #00270d;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
        }
        
        .local-logs-btn:hover::before {
            left: 100%;
        }

        /* Active State for Animations */
        .local-logs-slide-content.active .local-logs-logo,
        .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: rgba(0, 39, 13, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .local-logs-arrow-left {
            left: 30px;
        }
        
        .local-logs-arrow-right {
            right: 30px;
        }
        
        .local-logs-arrow i {
            font-size: 1.5rem;
            color: #fff;
        }
        
        /* Slider Navigation Dots */
        .local-logs-slider-nav {
            position: absolute;
            bottom: 40px;
            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: #00270d;
            transform: scale(1.2);
        }
        .local-logs-arrow svg {
    width: 30px;
    height: 30px;
}

.local-logs-arrow svg path {
    fill: #ffffff; /* white color */
}

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .local-logs-title {
                font-size: 3.5rem;
            }
            
            .local-logs-arrow {
                width: 50px;
                height: 50px;
            }

            .local-logs-logo {
                width: 150px;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .local-logs-title {
                font-size: 2.5rem;
            }
            
            .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-logo {
                width: 120px;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .local-logs-title {
                font-size: 2rem;
            }
            
            .local-logs-btn {
                padding: 12px 30px;
            }

            .local-logs-logo {
                width: 100px;
            }
        }