/* Custom styles for AFRA Construction */

/* Fix for check icon spacing */
.fas.fa-check {
    margin-right: 10px;
    position: relative;
    top: 4px;
}

/* Full-height image container */
.image-container {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Project cards styling */
.project-card {
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.project-features {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    font-size: 0.9rem;
}

.project-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.project-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5f4dee;
}