/* Projects Page Custom Styles */
.single-project-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.single-project-item .project-image {
    position: relative;
    overflow: hidden;
}

.single-project-item .project-image img {
    transition: transform 0.3s ease;
}

.single-project-item:hover .project-image img {
    transform: scale(1.05);
}

.single-project-item .project-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.single-project-item .project-content .title a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-project-item .project-content .title a:hover {
    color: #667eea !important;
}

.rts-cta-wrapper {
    position: relative;
    overflow: hidden;
}

.rts-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.rts-cta-wrapper .btn-light {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rts-cta-wrapper .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-project-item .project-image img {
        height: 250px !important;
    }
    
    .rts-cta-wrapper {
        padding: 40px 20px !important;
    }
}
