/* ===== Projects slider ===== */
.ps-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
    z-index: 0;
    pointer-events: none;
}
#projects {
    position: relative;
}
#projects .kt-row-layout-overlay {
    z-index: 1;
}
#projects .kt-row-column-wrap {
    position: relative;
    z-index: 2;
}
.ps-wrap {
    color: #fff;
}
.ps-nav {
    display: flex;
    gap: 0.4em;
    margin-bottom: 2.5em;
}
.ps-prev,
.ps-next {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.ps-prev:hover,
.ps-next:hover,
.ps-prev:focus,
.ps-next:focus,
.ps-prev:active,
.ps-next:active {
    opacity: 1;
    background: none !important;
    background-color: transparent !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}
.ps-slides {
    display: grid;
}
.ps-slide {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    max-width: 420px;
    transition: opacity 0.3s ease;
}
.ps-slide--active {
    opacity: 1;
    pointer-events: auto;
    transition: none;
    animation: ps-content-in 0.55s cubic-bezier(0.25, 1, 0.5, 1) both;
}
@keyframes ps-content-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ps-location {
    display: flex;
    align-items: center;
    gap: 0.35em;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.9em;
}
.ps-pin {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    opacity: 0.75;
}
.ps-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    margin: 0 0 1.1em 0;
}
.ps-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5em 0;
    color: #fff;
    line-height: 1.2;
}
.ps-intro {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 1.6em 0;
    color: rgba(255, 255, 255, 0.88);
}
.ps-btn {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 2em;
    padding: 0.55em 1.5em;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ps-btn:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}
.ps-btn:focus,
.ps-btn:active {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}
