.its-slider-widget-c4c3a176 {
    position: relative;
    width: 100%;
}

.its-slider-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.its-slider-track-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.its-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}

.its-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    box-sizing: border-box;
}

.its-slide-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px; /* Increased vertical padding */
    background-color: #000;
}

.its-slide-title {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.its-slide-desc {
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.its-slide-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.its-button {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.its-button:hover {
    background-color: #eee;
    color: #000;
}

.its-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s ease;
}

.its-link:hover {
    color: #ccc;
}

.its-slide-image-right {
    flex: 1;
    display: flex;
    background-color: #e5e5e5;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.its-navigation-wrapper {
    display: flex;
    align-items: center;
    padding-top: 15px;
    gap: 15px;
}

.its-nav-arrows {
    display: flex;
    gap: 10px;
}

.its-nav-btn {
    background: transparent;
    color: #000;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.its-pagination {
    flex: 1;
    height: 2px;
    background-color: #e5e5e5;
    position: relative;
}

.its-progress-bar {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.its-progress-fill {
    height: 100%;
    background-color: #000;
    width: 50%;
    transition: width 0.4s ease-in-out;
}

/* Responsive */
@media (max-width: 767px) {
    .its-slide {
        flex-direction: column;
    }
    
    .its-slide-content-left {
        padding: 50px 20px; /* Adjusted vertical padding for mobile */
    }
    
    .its-slide-image-right {
        padding: 0;
        min-height: 200px;
    }
}