#card-landing {
    min-height: 90vh;
    padding-top: 80px;
    background: radial-gradient(
        circle at top left,
        rgba(215, 228, 198, 0.18),
        transparent 60%
    );
}

.card-landing-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}


.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    padding: 60px 56px;
    max-width: 1100px;
    margin: 0 auto;
}
.card {
    background: rgba(215, 228, 198, 0.08);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.card h1 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #d7e4c6;
}

.card p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 10px;
}

.price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #e8f0dc;
    margin-bottom: 12px;
}

.card button {
    border: 1px solid rgba(215, 228, 198, 0.35);
    background: rgba(215, 228, 198, 0.12);
    color: #e8f0dc;
    padding: 12px 0;
    width: 100%;
    border-radius: 999px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.card button:hover {
    background: rgba(215, 228, 198, 0.25);
    transform: translateY(-1px);
}


