
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}
.tender {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.tender:hover {
    transform: scale(1.05);
}
.tender button {
    background: #e77d11;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}
.tender button:hover {
    background: #a32525;
}
footer {
    background: linear-gradient(to right, #a32525, #e77d11);
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    text-shadow: 1px 1px 2px #000;
}