.tgis-testimonial-carousel {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.tgis-carousel-slide {
    outline: none;
}

.tgis-slide-image {
    height: 500px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tgis-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 150, 255, 0.3);
}

.tgis-slide-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.slick-current .tgis-slide-content {
    opacity: 1;
    transform: scale(1);
}

.tgis-slide-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tgis-slide-excerpt {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tgis-slide-button {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 0;
    background-color: transparent;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.tgis-slide-button:hover {
    background-color: white;
    color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .tgis-slide-image {
        height: 400px;
    }
    
    .tgis-slide-title {
        font-size: 2rem;
    }
    
    .tgis-slide-excerpt {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tgis-slide-image {
        height: 350px;
    }
    
    .tgis-slide-title {
        font-size: 1.5rem;
    }
}