/* Portfolio Page Styles */

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f8fafd;
}

.portfolio-header {
    background: linear-gradient(90deg, #09b4ed 0%, #1a237e 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.portfolio-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.portfolio-header p {
    font-size: 1.15rem;
    margin-top: 12px;
    color: #eaf6fb;
}

.portfolio-grid .portfolio-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(30, 60, 120, 0.10);
    padding: 0;
    overflow: hidden;
    margin-bottom: 32px;
    transition: box-shadow 0.2s;
}

.portfolio-grid .portfolio-card:hover {
    box-shadow: 0 8px 32px rgba(9, 180, 237, 0.13);
}

.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 18px 16px 14px 16px;
}

.portfolio-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 8px;
}

.portfolio-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 767px) {
    .portfolio-header {
        padding: 36px 0 20px 0;
    }

    .portfolio-header h1 {
        font-size: 1.8rem;
    }

    .portfolio-img {
        height: 140px;
    }

    .portfolio-title {
        font-size: 0.95rem;
    }
}
