﻿.tender-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    transition: 0.4s;
}

    .tender-card:hover {
        transform: translateY(-10px);
    }

.tender-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.pdf-box {
    height: 260px;
    background: linear-gradient(45deg,#2e7d32,#43a047);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pdf-box i {
        font-size: 90px;
        color: white;
    }

.tender-content {
    padding: 30px;
}

    .tender-content h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .tender-content p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 25px;
    }
