/* HERO SECTION */
.portfolio-hero {
    padding: 100px 20px;
    background: #f6f8f7;
}

/* SMALL TAG */
.portfolio-tag {
    color: #2e8b6f;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* MAIN HEADING */
.portfolio-heading {
    font-size: 38px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* SUBTEXT */
.portfolio-subtext {
    font-size: 16px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .portfolio-hero {
        padding: 60px 15px;
    }

    .portfolio-hero h1 {
        font-size: 26px;
    }

    .portfolio-hero p {
        font-size: 14px;
    }
}

/*====================== STATS ============================*/

.portfolio-stats {
    padding: 60px 0;
    background: #ffffff;
}

.portfolio-stats h2 {
    color: #2e8b6f;
    font-weight: 700;
    font-size: 36px;
}

.portfolio-stats p {
    color: #6c757d;
    margin-top: 5px;
}


@media (max-width: 768px) {

    .portfolio-stats .row {
        display: flex;
        flex-wrap: wrap;
    }

    .portfolio-stats .col-md-3 {
        width: 50%;
        padding: 10px;
    }

}
/*=================================================================*/

/*==================== Portfoli0o CARDS ======================================*/

.portfolio-projects {
    padding: 60px 0;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-tag {
    color: #2e8b6f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.project-content h5 {
    margin: 8px 0;
    font-weight: 600;
}

.project-content p {
    font-size: 14px;
    color: #6c757d;
}

/*===========================================================================*/



/*============================================================== CTA SECTION ==============================================*/

.portfolio-cta {
    background: #2e8b6f;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.portfolio-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #2e8b6f;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #f1f1f1;
}

@media (max-width: 768px) {

    .portfolio-cta {
        padding: 60px 20px; /* side breathing space */
    }

    .portfolio-cta h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .portfolio-cta p {
        font-size: 14px;
        padding: 0 10px;
    }

    .portfolio-cta .btn,
    .portfolio-cta a {
        display: inline-block;
        margin-top: 15px;
        padding: 12px 25px;
        font-size: 14px;
    }

}
/*===================================================================================================================*/








