/* PREMIUM CONTAINER & WRAPPER STYLES */
.cs-1283ae39-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
/*     background-color: #0b0f19; */
    padding: 40px 20px;
    border-radius: 12px;
    box-sizing: border-box;
}

/* CARDS STYLING */
.cs-1283ae39-swiper {
    width: 100%;
    overflow: hidden;
}

.cs-1283ae39-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Top header & Bottom footer stack */
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none !important;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    box-sizing: border-box;
}

.cs-1283ae39-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Smooth Premium Gradients matching UI */
.cs-1283ae39-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.2) 0%, rgba(11, 15, 25, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* CARD HEADER (Top counter number and tag placement matching the reference image) */
.cs-1283ae39-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Counter Style */
.cs-1283ae39-num {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
    margin: 0;
}

/* Tag Line Capsule Style */
.cs-1283ae39-tag-wrapper {
    display: block;
}

.cs-1283ae39-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Footer/Interactive Area */
.cs-1283ae39-card-footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* Title text */
.cs-1283ae39-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

/* SMOOTH HOVER SHOW DESCRIPTION */
.cs-1283ae39-hover-expandable {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), margin-bottom 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-bottom: 0;
}

.cs-1283ae39-card:hover .cs-1283ae39-hover-expandable {
    grid-template-rows: 1fr;
    margin-bottom: 12px;
}

.cs-1283ae39-desc {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.5s ease;
    opacity: 0;
}

.cs-1283ae39-card:hover .cs-1283ae39-desc {
    opacity: 1;
}

/* Button & Arrow */
.cs-1283ae39-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    width: fit-content;
    margin-top: 5px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.cs-1283ae39-btn-arrow {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cs-1283ae39-btn:hover .cs-1283ae39-btn-arrow {
    transform: translateX(5px);
}

/* CONTROLS (PROGRESS BAR & PAGINATION NUMBERS) */
.cs-1283ae39-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 10px;
}

.cs-1283ae39-progress-bar-container {
    flex-grow: 1;
    margin-right: 40px;
    position: relative;
}

.cs-1283ae39-progress-line-bg {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    width: 100%;
    border-radius: 2px;
}

.cs-1283ae39-progress-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #fc751c59;
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cs-1283ae39-progress-icon {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    color: #FC751C;
    font-size: 20px;
    transition: left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-1283ae39-progress-icon i,
.cs-1283ae39-progress-icon svg,
.cs-1283ae39-custom-progress-img {
    display: block;
    width: 24px;
    height: 24px;
    fill: #a3e635;
    object-fit: contain;
}

.default-progress-bullet {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #a3e635;
}

/* Pagination numbers */
.cs-1283ae39-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.cs-1283ae39-current-slide {
    color: #ffffff;
}

.cs-1283ae39-separator {
    color: rgba(255, 255, 255, 0.2);
}
