/* ====== ستايل عام ====== */
.project-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 49, 95, 0.158);
}

.project-image {
    width: 100%;
    display: block;
    transition: .4s;
}

.project-image:hover {
    transform: scale(1.03);
}

.list-group-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.list-group-item strong {
    color: #00315F;
}

.project-details {
    padding-right: 50px;
}

.project-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.project-details p {
    line-height: 1.9;
    font-size: 16px;
    color: #666;
}

.btn-primary {
    border-radius: 16px;
    padding: 14px 35px;
    font-weight: 600;
    transition: all .3s ease;
    background: #005A9C;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #2D9CDB;
}

/* ====== الجوال ====== */
@media (max-width: 600px) {
    .project-image-wrapper {
        border-radius: 15px;
        max-height: 260px;
        overflow: hidden;
    }

    .project-image {
        height: 100%;
        max-height: 260px;
        object-fit: cover;
        border-radius: 15px;
    }

    .project-details {
        margin-top: 25px;
        padding-right: 0;
        text-align: right;
    }

    .project-details h2 {
        font-size: 24px;
    }

    .project-details p {
        font-size: 15px;
    }

    .list-group-item {
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn-primary {
        display: block;
        width: 50%;
        margin: 0 auto;
        padding: 12px;
        text-align: center;
    }
}

