/* Portfolio Section Styles */
.portfolio.section {
    padding: 80px 0;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-3px);
}

.portfolio-image {
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-content {
    padding: 20px;
    text-align: center;
}

.portfolio-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.portfolio-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio.section {
        padding: 60px 0;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 15px;
    }
    
    .portfolio-content h4 {
        font-size: 1.1rem;
    }
    
    .portfolio-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-content {
        padding: 12px;
    }
}