/* ==== Header Blur Box ==== */
.page-header-blur {
    backdrop-filter: blur(6px);
    padding: 15px;
    border-radius: 16px;
    color: white;
}

.page-title{
    color: white; 
    font-size:3rem; 
    font-weight: 100;
}

/* Careers Page Search Bar */

#job-search,
#job-location {
    background: rgba(255, 255, 255, 0.05); 
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    backdrop-filter: blur(6px); 
    transition: all 0.3s ease;
}

#job-search::placeholder,
#job-location::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar-container {
    display: flex;            
    max-width: 99%;             
    justify-content: space-between; 
    align-items: center;        
    margin: 10px auto;          
    gap: 30px;                
    flex-wrap: nowrap;           
}

#job-search {
    flex: 1 1 25%; 
    min-width: 200px;
}

#job-location {
    flex: 1 1 25%; 
    min-width: 150px;
}

/* ==== Job Card Styling ==== */
.job-card {
    backdrop-filter: blur(6px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.014);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-checkbox:hover {
    transform: scale(0.9);
    filter: drop-shadow(0 0 4px rgba(0, 242, 255, 0.9)); 
}

/* ==== Text Colors ==== */
.text-light {
    color: #e0e0e0 !important;
}

.text-muted {
    color: #bbb !important;
}

.text-white {
    color: white;
}

/* ==== Animated Gradient Button ==== */
.btn-gradient {
    background: linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.8),
                    rgba(180, 180, 180, 0.6),
                    rgba(255, 255, 255, 0.8),
                    rgba(50, 50, 50, 0.7),
                    rgba(255, 255, 255, 0.8)
                );
    background-size: 300% 100%;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    animation: iridescentBW 3s linear infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-gradient:hover{
    transform: translateY(-5px);
    box-shadow: 0 1px 10px #00f2ff, inset 0 1px 0 #00f2ff; 
}

.btn-gradient1 {
    background: linear-gradient(90deg, #88ff00, #00f2ff, #88ff00);
    background-size: 200% auto;
    color: white;
    animation: sparkle 2s linear infinite;
    font-weight: 600;
    border: none;
    
}

.btn-gradient1:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #3ea645, #257f4c) !important;
}

/* Responsive - no wrapping */
@media (max-width: 768px) {
    .search-bar-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .page-title{
        font-size: 28px;
    }

    .lead{
        font-size: 17px;
    }
    
    #job-search,
    #job-location,
    #job-filter-btn {
        flex: 1 1 100%;
        width: 100%;
    }
}
