/* Tenders Page Specific Styles */

/* Tenders Hero Section */
.tenders-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tenders-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.tenders-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tenders-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.tenders-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
}

.tenders-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tenders-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Current Tenders Section */
.current-tenders {
    padding: 6rem 0;
    background: var(--white-color);
    position: relative;
}


.tenders-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tenders-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.tender-search-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-filters input,
.search-filters select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
}

/* Responsive Design for Tenders Page */
@media screen and (max-width: 768px) {
    .tenders-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .search-filters input,
    .search-filters select {
        width: 100%;
    }
}

