.custom-slider-container {
    background-color: #003d2e;
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.custom-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.custom-slider-header .view-link {
    color: #ffa500;
    text-decoration: underline;
    font-weight: 600;
}

.slider-nav button {
    background: #ff8500;
    border: none;
    color: white;
    font-size: 18px;
    margin-left: 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: background 0.3s;
}
.slider-nav button:hover {
    background: #ff9f3f;
}

.custom-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.custom-slide {
    flex: 0 0 30%;
    padding: 10px;
    box-sizing: border-box;
}

.custom-card {
    background-color: #023f2f;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: scale(1.03);
}

.elementor .custom-slider .custom-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.custom-title {
    background: rgba(0, 90, 60, 0.8);
    color: white;
    /* padding: 15px; */
    font-weight: bold;
    font-size: 18px;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    margin: 0px 20px 20px;
    width: 95%;
    text-align: center;
}

.custom-title h3 {
    line-height: unset;
    color: var(--e-global-color-uicore_light);
}

.slider-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #000, rgba(54, 241, 205, 1));
    transition: width 0.3s ease;
}

.page-type {
    font-size: var(--uicore-typography--h2-s, "10px");
    color: var(--e-global-color-uicore_light);
}

.category-name {
    color: #ffa500;
    font-weight: 600;
    font-size: 16px;
}

.category-name:hover {
    color: #ffb84d;
}

/* Responsive */
@media (max-width: 991px) {
    .custom-slide {
        flex: 0 0 50%;
    }
}
@media (max-width: 600px) {
    .custom-slide {
        flex: 0 0 100%;
    }
}
