/* Premium Carousel Styles */
.premium-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 30px 0;
    overflow: hidden; /* Prevent overflow for some 3D effects */
    padding: 20px 0; /* Space for shadows */
}

.pc-swiper {
    width: 100%;
    padding-bottom: 40px; /* Space for pagination */
}

.pc-slide {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto; /* Let content dictate height or flex it */
    display: flex;
    flex-direction: column;
}

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

/* Layout Box 1: Image Top, Text Bottom */
.pc-layout-box1 .pc-slide-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.pc-layout-box1 .pc-slide-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pc-layout-box1 h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

.pc-layout-box1 h3 a {
    color: inherit;
    text-decoration: none;
}

.pc-layout-box1 p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Layout Box 2: Background Image with Overlay */
.pc-layout-box2 .pc-slide-overlay {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.pc-layout-box2 .pc-slide-content {
    padding: 30px;
    width: 100%;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.pc-layout-box2 h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #fff;
}

.pc-layout-box2 p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Button */
.pc-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.pc-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
}

/* Swiper Controls Customization */
.pc-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}
.pc-swiper .swiper-pagination-bullet-active {
    background: #764ba2;
    width: 20px;
    border-radius: 10px;
}
.pc-swiper .swiper-button-next,
.pc-swiper .swiper-button-prev {
    color: #764ba2;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.pc-swiper .swiper-button-next:after,
.pc-swiper .swiper-button-prev:after {
    font-size: 18px;
}
