
        body { font-family: 'Montserrat', sans-serif; margin:0; padding:0; background:#fff; }
        
        /* HERO */
        .page-hero {
            height: 600px;
            background: url('../images/hero-images-desktop/hero-image-portfolio.webp') center/cover no-repeat;
            position: relative;
        }
        .hero-overlay {
            position: absolute; width: 100%; height: 100%;
            background: rgba(0,0,0,0.45);
            display: flex; align-items: center; justify-content: center; flex-direction: column;
        }
        .hero-overlay h1 { 
            color: #fff; font-size: 42px; font-weight: 600; margin: 0; 
        }
         .hero-overlay p {
        color: #ddd;
        margin-top: 10px;
        font-size: 14px;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 70px;
    flex-wrap: wrap;
}

/* Buttons */
.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 42px;
    padding: 0 14px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;

    color: #111;
    text-decoration: none;

    border: 1px solid #e5e5e5;
    border-radius: 50px;

    background: #fff;

    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* Hover effect (premium feel) */
.pagination a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Active page */
.pagination a.active {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Prev/Next emphasis */
.pagination a:first-child,
.pagination a:last-child {
    font-weight: 600;
}

/* Mobile tuning */
@media (max-width: 500px) {
    .pagination {
        gap: 6px;
    }

    .pagination a {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
        padding: 0 10px;
    }
}

       /* SECTION & WRAPPER */
    .portfolio-section { 
            padding:70px 0; 
            display:flex; 
            justify-content:center; 
        }
        .portfolio-wrapper { 
            width:100%; 
            max-width:1100px; 
            padding:0 20px; 
        }

        /* CARD */
        .portfolio-card {
            display:flex; 
            gap:10px; 
            background:#fff; 
            margin-bottom:30px;
            border-radius:12px; 
            overflow:hidden;
            box-shadow:0 6px 20px rgba(0,0,0,0.06); align-items:center;
        }
       .portfolio-card img {
    width: 450px; 
    min-width: 450px; /* Prevents text from pushing the image to be smaller */
    flex-shrink: 0;   
    height: 450px;
    object-fit: cover;
    
}


.portfolio-card {
    display: flex;
    gap: 10px;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
        /* CONTENT */
       
        .portfolio-content {
    padding: 25px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex-grow: 1; /* This tells the text to take up all the REMAINING space */
}
       
        .portfolio-content h3 {
            font-size: 24px;
            margin-bottom: 6px;
            font-weight: 600;
        }
        .desc { font-size:13px; color:#444; margin-bottom:12px; line-height:1.6; }
        .meta { font-size:13px; color:#777; margin-bottom:5px; line-height:1.7;}
        .tags { font-size:12px; color:#555; margin-bottom:20px; line-height:1.5; }

        /* BUTTON */
        .btn-view-proj { margin-top: 20px; }
        .btn-view-proj a {
            display: inline-block; padding: 12px 30px;
            border: 1px solid #111; color: #111;
            text-decoration: none; transition: all 0.3s ease; font-size: 14px;
        }
        .btn-view-proj a:hover { background: #111; color: #fff; }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .page-hero { height: 550px; background-image: url('../images/hero-images-mobile/hero-image-portfolio-mobile.webp'); }
            .hero-overlay h1 { font-size: 28px; }
            .portfolio-card { flex-direction: column; align-items: flex-start; }
            .portfolio-card img { max-width: 100%; min-width: 100%; max-width: 100%; 
        height: auto;    /* Optional: let it grow naturally on mobile */
        aspect-ratio: 4 / 5;}
        }
      
        @media (max-width: 500px) {
            .portfolio-section { padding: 40px 0; }
            .hero-overlay h1 { font-size: 30px; }
        }
