/* === FEATURED PROJECTS SECTION (WHITE THEME) === */

.featured-projects-area {
    background-color: #ffffff !important;
    padding: 80px 0 50px !important;
    position: relative;
    z-index: 5;
}

.featured-projects-area .section-header {
    margin-bottom: 50px;
}

.featured-projects-area .section-header h2 {
    color: #0F0D0D !important;
    font-size: 36px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.featured-projects-area .section-header p {
    color: #5B5D61 !important;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Card Container */
.project-item-white {
    margin-bottom: 40px;
    transition: all 0.4s ease;
    border-radius: 12px;
    background: #fff;
    /* Optional: subtle border or just clean */
}

/* Image Wrapper */
.project-item-white .img-holder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    /* Controlled height */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.project-item-white .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effect - Zoom Image */
.project-item-white:hover .img-holder img {
    transform: scale(1.08);
}

/* Content (Text Below Image) */
.project-item-white .content-holder {
    text-align: left;
    /* Clean left alignment */
    padding: 0 5px;
}

.project-item-white .content-holder h4 {
    color: #0F0D0D;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.project-item-white:hover .content-holder h4 {
    color: #0050b3;
    /* Highlight color on hover */
}

.project-item-white .content-holder p {
    color: #5B5D61;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .project-item-white .img-holder {
        height: 240px;
    }
}