.site-logo-img img{
    filter:none !important;
}

.owl-carousel .item {
    padding: 20px;
}

.custom-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    min-height: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.custom-slide .text {
    flex: 1;
}

.custom-slide .image {
    flex: 1;
    text-align: center;
}

.custom-slide .image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.custom-slide .text h2 {
    font-size: 28px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease;
}

.custom-slide .text p {
    font-size: 18px;
    color: #555;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

/* Animate on active slide */
.owl-item.active .custom-slide .text h2 {
    opacity: 1;
    transform: translateY(0);
}

.owl-item.active .custom-slide .text p {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background: #333;
    color: #fff;
    padding: 10px 15px;
    margin: 10px;
    border-radius: 50%;
    font-size: 18px;
    border: none;
}

.owl-nav {
    text-align: center;
}

.owl-dots .owl-dot span {
    background: #ccc;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots .owl-dot.active span {
    background: #333;
}

.site-logo-img img {
    filter: none !important;
}

@media (max-width: 768px) {
    .custom-slide {
        flex-direction: column;
        text-align: center;
    }

    .custom-slide .text,
    .custom-slide .image {
        width: 100%;
    }
}

/* other css */
.img-fluid {
    max-width: 100%;
    height: auto;
}

