 .tender-section {
        background: linear-gradient(135deg, #eef9ff, #f5fcff);
    }

    .tender-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(14px);
        border-radius: 22px;
        padding: 35px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        transition: 0.4s ease;
    }

    .tender-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 35px 80px rgba(6, 163, 218, 0.22);
    }

    .tender-list {
        list-style: none;
        padding-left: 0;
    }

    .tender-list li {
        padding-left: 28px;
        position: relative;
        margin-bottom: 10px;
    }

    .tender-list li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #06A3DA;
        font-weight: bold;
    }

    .cta-box {
        background: linear-gradient(135deg, #e6f7ff, #d6f0ff);
        border-radius: 16px;
        padding: 20px;
    }

    .cta-box .btn {
        background: linear-gradient(135deg, #06A3DA, #058bb8);
        color: white;
        border: none;
        font-weight: 600;
    }

    .cta-box .btn:hover {
        box-shadow: 0 10px 25px rgba(6, 163, 218, 0.35);
        transform: translateY(-2px);
    }

    .tender-image-card {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .tender-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

    .tender-image-card:hover img {
        transform: scale(1.08);
    }

    /* SERVICES */
    .services-section {
        background: #ffffff;
    }

    .service-card {
        background: #fff;
        padding: 28px;
        border-radius: 18px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
        transition: 0.35s;
        border-top: 4px solid #06A3DA;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(6, 163, 218, 0.22);
    }