/* =====================================================
   Process Slider  —  process-slider.css
   ===================================================== */

.process-slider {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 24px 0 28px;
    background: #fff;
    font-family: "Poppins";
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #fff;
}

/* Row: arrow + viewport + arrow */
.ps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 8px;
}

/* Arrows */
.ps-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    color: #6A1115;
    line-height: 0;
    flex-shrink: 0;
    transition: color 0.2s, opacity 0.2s;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-arrow svg {
    width: 36px;
    height: 50px;
    display: block;
    stroke: currentColor;
}

.ps-arrow:hover,
.ps-arrow:focus {
    color: #3d0509;
    opacity: 0.75;
    outline: none;
}

/* Viewport clips the track */
.ps-viewport {
    flex: 1;
    overflow: hidden;
}

/* Track slides horizontally */
.ps-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.ps-slide {
    min-width: 100%;
    padding: 0 2px;
}

/* Cards */
.ps-card {
    background: #efefef;
    border-radius: 4px;
    padding: 28px 24px 32px;
    min-height: 300px;
}

.ps-card.ps-active {
    background: #8B1A1A;
}

.ps-number {
    font-size: 32px;
	font-family:"Poppins";
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    color: #999;
}

.ps-card.ps-active .ps-number {
    color: #fff;
}

.ps-title {
    font-size: 20px;
	font-family:"Poppins";
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
    color: #222;
}

.ps-card.ps-active .ps-title {
    color: #fff;
}

.ps-desc {
	font-family:"Poppins";
    font-size: 16px;
    line-height: 1.65;
    color: #555;
}

.ps-card.ps-active .ps-desc {
    color: rgba(255, 255, 255, 0.92);
}

/* Dots */
.ps-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.ps-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.ps-dot.ps-dot-active {
    background: #8B1A1A;
    transform: scale(1.3);
}

.ps-dot:focus {
    outline: 2px solid #8B1A1A;
    outline-offset: 2px;
}
