.spst-slider1-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 20px auto;
}

.spst-slider1 {
    position: relative;
    width: 100%;
    height: auto;
    margin: 10px ;
    padding: 20px 10px;
}

.spst-slide {
    overflow: hidden;
    flex-direction: column;
    display: flex;
    height: 100%;
    min-height: 400px; 
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
    border: solid 2px;
    background: #fff;
    border-color: #007bff;
    justify-content: space-between;   
}


.spst-slide:hover {
    transform: translateY(-5px);
}

.spst-slide-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}


.spst-slide img,
.spst-slide .video-wrapper {
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    max-height: 250px;
    background-color: #f8f8f8;
    object-fit: contain;
    display: block;
    border-radius: 8px;   
}

.spst-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-wrapper video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
}

.spst-slide h3 {
    color: #222;
    margin: 10px 0;
    font-size: 20px;
    font-weight: 600;   
}

.spst-slide p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.learn-more1-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    background: #007bff;
    color: white !important;
    border-radius: 6px;
    transition: background 0.3s ease;
    padding: 8px 15px;
    text-decoration: none !important;
}

.learn-more1-btn:hover {
    background: #0056b3;
    text-decoration: none;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .spst-slide img,
    .spst-slide .video-wrapper {
        max-height: 250px;
    }

    .spst-slide h3 {
        font-size: 18px;
    }

    .spst-slide p {
        font-size: 14px;
    }
}



.swiper-wrapper {
    display: flex;
     transition-timing-function: ease-in-out !important;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    height: 100% !important;
}


