.projects {
    padding: 90px 0;
    background: #ffffff;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.project-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 16px;
    background: #082544;
    box-shadow: 0 18px 45px rgba(8, 37, 68, 0.12);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(8, 37, 68, 0.05) 20%,
            rgba(8, 37, 68, 0.9) 100%
        );
}

.project-card:hover img {
    transform: scale(1.07);
}

.project-content {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #ffffff;
}

.project-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: #f5b82e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-content h3 {
    font-size: 26px;
    line-height: 1.35;
}
.project-card-wide {
    grid-column: 1 / -1;
    min-height: 430px;
}

.project-card-wide .project-content {
    max-width: 700px;
}

.project-card-wide .project-content h3 {
    font-size: 34px;
}

@media (max-width: 760px) {
    .projects {
        padding: 65px 0;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        min-height: 300px;
    }
    .projects .section-heading{
    max-width: 1400px;
}
}