 /*SWIPER*/
 .cyberslider.swiper-container {
    width: 100%;
    overflow: hidden !important;
}

.cyberslider.swiper-slide {
    /*background: #fff;*/
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 475px;
}

.cyberslider.card-content {
    padding: 15px;
    text-align: center;
    height: 475px;
}

.cyberslider.card-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.cyberslider.card-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.swiper-pagination {
    margin-top: 20px;
}

.cyberstories-testimonial{
    position: absolute;
    top:0;
    height:475px;
    overflow: hidden;
}

.cyberstories-testimonial img.cyberstories-testimonial-img {
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.cyberstories-content {
    position: absolute;
    top: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.cyberstories-content:hover {
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 1s ease;
}

.cyberstories-content-name {
    font-size: 2rem;
    display: block;
    margin: 0 0 10px 0;
}

.cyberstories-content-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.cyberstories-content-readmore {
    display: inline-block;
    background-color: #F1EA39;
    width: 150px;
    height: 50px;
    font-size: 14px;
    text-align: center;
    border: none;
    cursor: pointer;
    clip-path: polygon(10% 0%, 100% 0%, 100% 80%, 90% 100%, 0% 100%, 0% 20%);
    transition: background-color 0.3s ease;
    color: black;
    font-weight: 700;
}

.cyberstories-content-readmore:hover {
    background-color: #2980b9;
    /* Darker shade for hover effect */
}

.cyberstories-content-readmore::before,
.cyberstories-content-readmore::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3498db;
    z-index: -1;
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
    transform: translate(-10px, -10px);
    opacity: 0;
    transition: all 0.2s ease;
}

.cyberstories-content-readmore:hover::before {
    background-color: #ff1d58;
    /* Glitch color 1 */
    opacity: 0.8;
    transform: translate(10px, -10px) skew(5deg);
}

.cyberstories-content-readmore:hover::after {
    background-color: #00ffff;
    /* Glitch color 2 */
    opacity: 0.6;
    transform: translate(-10px, 10px) skew(-5deg);
}

@keyframes glitch {
    0% {
        transform: translate(2px, -2px);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, 2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(1px, -1px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.cyberstories-content-readmore:hover {
    animation: glitch 0.2s infinite;
}

/*pagination style*/
.swiper-pagination.cyberpagination {
    position: relative;
}

.swiper-pagination.cyberpagination.light .swiper-pagination-bullet {
    background: white;
}