/* ===============================
 BANNER
=============================== */
.projects-banner {
    height: 320px;
    background: url('../img/banner.jpg') center/cover no-repeat;
    position: relative;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-overlay h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
}

/* ===============================
 PROJECT SECTION
=============================== */
.projects-section {
    padding: 100px 20px;
    font-family: "Segoe UI", system-ui, sans-serif;
}
.projects-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
}

/* ===============================
 PROJECT ITEM
=============================== */
.project-item {
    display: flex;
    gap: 25px;
}
.project-icon {
    width: 70px;
    height: 70px;
    background: #f2543f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 28px;
    color: #fff;
}
.project-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.project-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}
.project-link {
    font-size: 13px;
    font-weight: 700;
    color: #f2543f;
    text-decoration: none;
}
.project-link:hover {
    text-decoration: underline;
}

/* ===============================
 PAGINATION
=============================== */
.pagination {
    margin-top: 60px;
    text-align: center;
}
.pagination button {
    padding: 10px 18px;
    margin: 0 10px;
    background: #f2543f;
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
}
.pagination span {
    font-weight: 700;
}

/* ===============================
 RESPONSIVE
=============================== */
@media (max-width: 900px) {
    .projects-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
