.site-header {
    background: #121212;
}

.site-footer {
    background: #121212;
}

.header-style-1 .header-topbar {
    background: #1b1b1b;
}

.footer-bottom {
    background: #1b1b1b;
}

.slider {
    position: relative;
    width: 100%;
    height: 600px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.buttons {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.buttons button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.buttons button:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
    .buttons button {
        font-size: 16px;
        padding: 8px 12px;
    }
}


.mobile-header-blue .header_mobile .mlogo_wrapper {
    background-color: #1b1b1b;
}

.mobile-header-blue .header_mobile .mobile_nav {
    background-color: #1b1b1b;
}