/* Portfolio Slideshow with Zones CSS */
/* Container Styles */
.psz-slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
/* Slideshow Wrapper */
.psz-slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
/* Individual Slides */
.psz-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.psz-slide.active {
    opacity: 1;
}
/* Slide Images */
.psz-slide img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Clickable Zones */
.psz-zone-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 10;
}
.psz-zone {
    flex: 1;
    height: 100%;
    cursor: e-resize;
    position: relative;
    transition: background-color 0.3s ease;
}
.psz-zone:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.psz-zone-center{
	cursor:pointer;
}
.psz-zone-left::after,
.psz-zone-right::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.psz-zone-left:hover::after,
.psz-zone-right:hover::after {
    opacity: 0.7;
}
.psz-zone-left::after {
    left: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M15.5 19l-7-7 7-7"/></svg>') no-repeat center;
    background-size: contain;
}
.psz-zone-right::after {
    right: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M8.5 5l7 7-7 7"/></svg>') no-repeat center;
    background-size: contain;
}
/* Slide Info */
.psz-slide-info {
	display:none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 20;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.psz-slideshow-wrapper:hover .psz-slide-info {
    opacity: 1;
}
.psz-slide-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.psz-slide-desc {
    font-size: 14px;
    opacity: 0.9;
}
/* Thumbnail Navigation */
.psz-thumbnail-container {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #f5f5f5;
    overflow-x: auto;
    justify-content: center;
    flex-wrap: wrap;
	display:none;
}
.psz-thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}
.psz-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}
.psz-thumbnail.active {
    opacity: 1;
    border-color: #333;
}
.psz-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Responsive */
@media (max-width: 768px) {
    .psz-slideshow-wrapper {
        height: 60vh;
        min-height: 400px;
    }
    .psz-zone-left::after,
    .psz-zone-right::after {
        width: 30px;
        height: 30px;
    }
    .psz-slide-info {
        font-size: 14px;
        padding: 8px 15px;
    }
    .psz-thumbnail {
        width: 60px;
        height: 60px;
    }
}