.pc-container-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pc-swiper {
    width: 100%;
    padding: 20px 0;
    overflow: visible !important; /* Allow slides to peak through */
}

.pc-swiper-slide {
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.95);
}

.pc-swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.pc-swiper-slide:not(.swiper-slide-active) .pc-slide-overlay {
    transition: opacity 0.4s ease;
}

.pc-slide-inner {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

.pc-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pc-slide-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #ffffff;
    max-width: 600px;
    text-align: left;
}

.pc-slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.pc-slide-description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 24px 0;
    color: rgba(255, 255, 255, 0.9);
}

.pc-slide-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.2;
}

.pc-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Nav Controls Customization */
.pc-swiper-btn {
    color: #ffffff !important;
    background: rgba(0,0,0,0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.pc-swiper-btn::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.pc-swiper-btn:hover {
    background: rgba(0,0,0,0.8);
}
